-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathGoogleSpreadsheetAPI.class.php
More file actions
608 lines (469 loc) · 15.4 KB
/
GoogleSpreadsheetAPI.class.php
File metadata and controls
608 lines (469 loc) · 15.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
<?php
/**
* GoogleAnalyticsAPI
* Simple class which provides methods to set up OAuth 2.0 with Google and query the Google Analytics API v3 with PHP.
*
* cURL is required.
*
* There are two possibilities to get the Oauth 2.0 tokens from Google:
* 1) OAuth 2.0 for Web Applications (end-user involved)
* 2) OAuth 2.0 for Server to Server Applications (openssl required)
*
* Please note that this class does not handle error codes returned from Google. But the the http status code
* is returned along with the data. You can check for the array-key 'status_code', which should be 200 if everything worked.
*
* See the readme on GitHub for instructions and examples how to use the class
*
* @author Stefan Wanzenried
* @copyright Stefan Wanzenried
* <www.everchanging.ch>
*
* @version 1.1
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*
*/
class GoogleSpreadsheetAPI {
const API_URL = 'https://spreadsheets.google.com/feeds/spreadsheets/private/full';
public $auth = null;
protected $accessToken = '';
protected $accountId = '';
protected $assoc = true;
/**
* Default query parameters
*
*/
protected $defaultQueryParams = array();
/**
* Constructor
*
* @access public
* @param String $auth (default: 'web') 'web' for Web-applications with end-users involved, 'service' for service applications (server-to-server)
*/
public function __construct($auth='web') {
if (!function_exists('curl_init')) throw new Exception('The curl extension for PHP is required.');
$this->auth = ($auth == 'web') ? new GoogleOauthWeb() : new GoogleOauthService();
}
public function __set($key, $value) {
switch ($key) {
case 'auth' :
if (($value instanceof GoogleOauth) == false) {
throw new Exception('auth needs to be a subclass of GoogleOauth');
}
$this->auth = $value;
break;
case 'defaultQueryParams' :
$this->setDefaultQueryParams($value);
break;
default:
$this->{$key} = $value;
}
}
public function setAccessToken($token) {
$this->accessToken = $token;
}
public function setAccountId($id) {
$this->accountId = $id;
}
/**
* Set default query parameters
* Useful settings: start-date, end-date, max-results
*
* @access public
* @param array() $params Query parameters
*/
public function setDefaultQueryParams(array $params) {
$params = array_merge($this->defaultQueryParams, $params);
$this->defaultQueryParams = $params;
}
/**
* Return objects from json_decode instead of arrays
*
* @access public
* @param mixed $bool true to return objects
*/
public function returnObjects($bool) {
$this->assoc = !$bool;
$this->auth->returnObjects($bool);
}
/**
* Query the Google Analytics API
*
* @access public
* @param array $params (default: array()) Query parameters
* @return array data
*/
public function query($params=array()) {
return $this->_query($params);
}
public function getSpreadsheets() {
if (!$this->accessToken) throw new Exception('You must provide an accessToken');
$data = Http::curl(self::API_URL, array('v'=>'3.0','access_token' => $this->accessToken));
return json_decode($data, $this->assoc);
}
public function getSpreadsheet($spreadsheet_url) {
if (!$this->accessToken) throw new Exception('You must provide an accessToken');
$data = Http::curl($spreadsheet_url, array('v'=>'3.0','access_token' => $this->accessToken));
return json_decode($data, $this->assoc);
}
private function checkForEndingDoubleQuote($str) {
if (substr($str, -1) === '"') {
return substr($str, 0, -1); // Remove the last character
}
return $str;
}
// Function to convert CSV into associative array
private function csvToArray($file, $delimiter) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $file);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$handle = curl_exec($ch) ;
$lines = explode(PHP_EOL, $handle);
$array = array();
$counter = 0;
foreach ($lines as $line) {
$row = str_getcsv($line,",",'"');
if (sizeOf($row) == 1) {
$previousCounter = $counter-1;
$prevData = $array[$previousCounter][1];
$array[$previousCounter][1] = $prevData . $row[0]; //concat the new row
$array[$previousCounter][1] = $this->checkForEndingDoubleQuote($array[$previousCounter][1]);
} else {
/* if the first element has a space, its not a key, and the row only has two values **/
if (strpos($row[0], ' ') !== false && sizeOf($row) == 2) {
$previousCounter = $counter-1;
$prevData = $array[$previousCounter][1];
$array[$previousCounter][1] = $prevData . $row[0]; //concat the new row
$array[$previousCounter][1] = $this->checkForEndingDoubleQuote($array[$previousCounter][1]);
} else {
/* normal processsing **/
$array[$counter] = $row;
$counter++;
}
}
}
return $array;
}
public function getWorksheet($worksheet_url,$params) {
if (!$this->accessToken) throw new Exception('You must provide an accessToken');
$params = array_merge(array('ndplr'=>'1','v'=>'3.0','access_token' => $this->accessToken),$params);
$worksheet_url = $worksheet_url . "?" . http_build_query($params,'','&');
//echo $worksheet_url; echo "<br/>";
// Arrays we'll use later
$keys = array();
$newArray = array();
// Do it
$data = $this->csvToArray($worksheet_url, ',');
// print_r($data);
// Set number of elements (minus 1 because we shift off the first row)
$count = count($data) - 1;
//Use first row for names
$labels = array_shift($data);
foreach ($labels as $label) {
$keys[] = $label;
}
// Add Ids, just in case we want them later
$keys[] = 'id';
for ($i = 0; $i < $count; $i++) {
$data[$i][] = $i;
}
// Bring it all together
for ($j = 0; $j < $count; $j++) {
/* echo "-------:<br/> keys --";
print_r($keys);
echo "-------:<br/> data -- ";
print_r($data[$j]);
echo "------- END<br/><br/>";
*/
$d = array_combine($keys, $data[$j]);
$newArray[$j] = $d;
}
return $newArray;
}
protected function _query($params=array()){
if (!$this->accessToken || !$this->accountId) {
throw new Exception('You must provide the accessToken and an accountId');
}
$_params = array_merge($this->defaultQueryParams, array('access_token' => $this->accessToken, 'ids' => $this->accountId));
$queryParams = array_merge($_params, $params);
$data = Http::curl(self::API_URL, $queryParams);
return json_decode($data, $this->assoc);
}
}
/**
* Abstract Auth class
*
*/
abstract class GoogleOauth {
const TOKEN_URL = 'https://accounts.google.com/o/oauth2/token';
const SCOPE_URL = 'https://spreadsheets.google.com/feeds';
protected $assoc = true;
protected $clientId = '';
public function __set($key, $value) {
$this->{$key} = $value;
}
public function setClientId($id) {
$this->clientId = $id;
}
public function returnObjects($bool) {
$this->assoc = !$bool;
}
/**
* To be implemented by the subclasses
*
*/
public function getAccessToken($data=null) {}
}
/**
* Oauth 2.0 for service applications requiring a private key
* openssl extension for PHP is required!
* @extends GoogleOauth
*
*/
class GoogleOauthService extends GoogleOauth {
const MAX_LIFETIME_SECONDS = 3600;
const GRANT_TYPE = 'urn:ietf:params:oauth:grant-type:jwt-bearer';
protected $email = '';
protected $privateKey = null;
protected $password = 'notasecret';
/**
* Constructor
*
* @access public
* @param string $clientId (default: '') Client-ID of your project from the Google APIs console
* @param string $email (default: '') E-Mail address of your project from the Google APIs console
* @param mixed $privateKey (default: null) Path to your private key file (*.p12)
*/
public function __construct($clientId='', $email='', $privateKey=null) {
if (!function_exists('openssl_sign')) throw new Exception('openssl extension for PHP is needed.');
$this->clientId = $clientId;
$this->email = $email;
$this->privateKey = $privateKey;
}
public function setEmail($email) {
$this->email = $email;
}
public function setPrivateKey($key) {
$this->privateKey = $key;
}
/**
* Get the accessToken in exchange with the JWT
*
* @access public
* @param mixed $data (default: null) No data needed in this implementation
* @return array Array with keys: access_token, expires_in
*/
public function getAccessToken($data=null) {
if (!$this->clientId || !$this->email || !$this->privateKey) {
throw new Exception('You must provide the clientId, email and a path to your private Key');
}
$jwt = $this->generateSignedJWT();
$params = array(
'grant_type' => self::GRANT_TYPE,
'assertion' => $jwt,
);
$auth = Http::curl(GoogleOauth::TOKEN_URL, $params, true);
return json_decode($auth, $this->assoc);
}
/**
* Generate and sign a JWT request
* See: https://developers.google.com/accounts/docs/OAuth2ServiceAccount
*
* @access protected
*/
protected function generateSignedJWT() {
// Check if a valid privateKey file is provided
if (!file_exists($this->privateKey) || !is_file($this->privateKey)) {
throw new Exception('Private key does not exist');
}
// Create header, claim and signature
$header = array(
'alg' => 'RS256',
'typ' => 'JWT',
);
$t = time();
$params = array(
'iss' => $this->email,
'scope' => GoogleOauth::SCOPE_URL,
'aud' => GoogleOauth::TOKEN_URL,
'exp' => $t + self::MAX_LIFETIME_SECONDS,
'iat' => $t,
);
$encodings = array(
base64_encode(json_encode($header)),
base64_encode(json_encode($params)),
);
// Compute Signature
$input = implode('.', $encodings);
$certs = array();
$pkcs12 = file_get_contents($this->privateKey);
if (!openssl_pkcs12_read($pkcs12, $certs, $this->password)) {
throw new Exception('Could not parse .p12 file');
}
if (!isset($certs['pkey'])) {
throw new Exception('Could not find private key in .p12 file');
}
$keyId = openssl_pkey_get_private($certs['pkey']);
if (!openssl_sign($input, $sig, $keyId, 'sha256')) {
throw new Exception('Could not sign data');
}
// Generate JWT
$encodings[] = base64_encode($sig);
$jwt = implode('.', $encodings);
return $jwt;
}
}
/**
* Oauth 2.0 for web applications
* @extends GoogleOauth
*
*/
class GoogleOauthWeb extends GoogleOauth {
const AUTH_URL = 'https://accounts.google.com/o/oauth2/auth';
const REVOKE_URL = 'https://accounts.google.com/o/oauth2/revoke';
protected $clientSecret = '';
protected $redirectUri = '';
/**
* Constructor
*
* @access public
* @param string $clientId (default: '') Client-ID of your web application from the Google APIs console
* @param string $clientSecret (default: '') Client-Secret of your web application from the Google APIs console
* @param string $redirectUri (default: '') Redirect URI to your app - must match with an URL provided in the Google APIs console
*/
public function __construct($clientId='', $clientSecret='', $redirectUri='') {
$this->clientId = $clientId;
$this->clientSecret = $clientSecret;
$this->redirectUri = $redirectUri;
}
public function setClientSecret($secret) {
$this->clientSecret = $secret;
}
public function setRedirectUri($uri) {
$this->redirectUri = $uri;
}
/**
* Build auth url
* The user has to login with his Google Account and give your app access to the Analytics API
*
* @access public
* @param array $params Custom parameters
* @return string The auth login-url
*/
public function buildAuthUrl($params = array()) {
if (!$this->clientId || !$this->redirectUri) {
throw new Exception('You must provide the clientId and a redirectUri');
}
$defaults = array(
'response_type' => 'code',
'client_id' => $this->clientId,
'redirect_uri' => $this->redirectUri,
'scope' => GoogleOauth::SCOPE_URL,
'access_type' => 'offline',
'approval_prompt' => 'force',
);
$params = array_merge($defaults, $params);
$url = self::AUTH_URL . '?' . http_build_query($params,'','&');
return $url;
}
/**
* Get the AccessToken in exchange with the code from the auth along with a refreshToken
*
* @access public
* @param mixed $data The code received with GET after auth
* @return array Array with the following keys: access_token, refresh_token, expires_in
*/
public function getAccessToken($data=null) {
if (!$this->clientId || !$this->clientSecret || !$this->redirectUri) {
throw new Exception('You must provide the clientId, clientSecret and a redirectUri');
}
$params = array(
'code' => $data,
'client_id' => $this->clientId,
'client_secret' => $this->clientSecret,
'redirect_uri' => $this->redirectUri,
'grant_type' => 'authorization_code',
);
$auth = Http::curl(GoogleOauth::TOKEN_URL, $params, true);
return json_decode($auth, $this->assoc);
}
/**
* Get a new accessToken with the refreshToken
*
* @access public
* @param mixed $refreshToken The refreshToken
* @return array Array with the following keys: access_token, expires_in
*/
public function refreshAccessToken($refreshToken) {
if (!$this->clientId || !$this->clientSecret) {
throw new Exception('You must provide the clientId and clientSecret');
}
$params = array(
'client_id' => $this->clientId,
'client_secret' => $this->clientSecret,
'refresh_token' => $refreshToken,
'grant_type' => 'refresh_token',
);
$auth = Http::curl(GoogleOauth::TOKEN_URL, $params, true);
return json_decode($auth, $this->assoc);
}
/**
* Revoke access
*
* @access public
* @param mixed $token accessToken or refreshToken
*/
public function revokeAccess($token) {
$params = array('token' => $token);
$data = Http::curl(self::REVOKE_URL, $params);
return json_decode($data, $this->assoc);
}
}
/**
* Send data with curl
*
*/
class Http {
/**
* Send http requests with curl
*
* @access public
* @static
* @param mixed $url The url to send data
* @param array $params (default: array()) Array with key/value pairs to send
* @param bool $post (default: false) True when sending with POST
*/
public static function curl($url, $params=array(), $post=false) {
if (empty($url)) return false;
if (!$post && !empty($params)) {
$url = $url . "?" . http_build_query($params,'','&');
}
$curl = curl_init($url);
if ($post) {
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $params);
}
curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$data = curl_exec($curl);
$http_code = (int) curl_getinfo($curl, CURLINFO_HTTP_CODE);
// Add the status code to the json data, useful for error-checking
$data = preg_replace('/^{/', '{"http_code":'.$http_code.',', $data);
curl_close($curl);
return $data;
}
}
?>