-
Notifications
You must be signed in to change notification settings - Fork 6
/
google_spreadsheet.php
658 lines (510 loc) · 23.7 KB
/
google_spreadsheet.php
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
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
<?php
/*
* Google Spreadsheet Library
* https://github.com/AlmirKadric/GoogleSpreadsheet-PHP
*
* Copyright 2012, Almir Kadric
* https://almirkadric.com/
*
* Licensed under the MIT license:
* http://www.opensource.org/licenses/MIT
*/
class GoogleSpreadsheet {
private $token;
private $spreadsheet;
private $worksheet;
private $cellLinks;
private $listLinks;
function __construct($username, $password) {
if (!$this->authenticate($username, $password)) return false;
}
function authenticate($username, $password) {
$this->token = null;
$this->spreadsheet = null;
$this->worksheet = null;
$this->cellLinks = null;
$this->listLinks = null;
$url = "https://www.google.com/accounts/ClientLogin";
$fields = array(
"accountType" => "HOSTED_OR_GOOGLE",
"Email" => $username,
"Passwd" => $password,
"service" => "wise",
"source" => "pfbc"
);
if ($response = $this->post($url, false, $fields)) {
if (stripos($response, "auth=") !== false) {
$matches = array();
preg_match("/auth=([a-z0-9_\-]+)/i", $response, $matches);
$this->token = $matches[1];
}
return true;
}
echo "\nError Authenticating User!\n";
return false;
}
function listSpreadsheets()
{
}
function listWorksheets()
{
if (empty($this->token) || empty($this->spreadsheet)) return false;
$url = $this->spreadsheet['links']['content'];
$headers = array(
"Content-Type: application/atom+xml",
"Authorization: GoogleLogin auth=" . $this->token,
"GData-Version: 3.0"
);
if ($response = $this->post($url, $headers))
{
$responseXml = simplexml_load_string($response);
$responseNss = $responseXml->getNamespaces(true);
$worksheets = array();
for ($i = 0; $i < $responseXml->entry->count(); $i++) $worksheets[] = (string)$responseXml->entry[$i]->title;
return $worksheets;
} else {
echo "\nError retrieving worksheets list!\n";
return false;
}
}
function createSpreadsheet($title)
{
echo "\nError creating spreadsheet!\n";
echo "\nNOT IMPLEMENTED YET!\n";
return false;
}
function createWorksheet($title, $columnNames)
{
if (empty($this->token) || empty($this->spreadsheet)) return false;
$url = $this->spreadsheet['links']['content'];
$headers = array(
"Content-Type: application/atom+xml",
"Authorization: GoogleLogin auth=" . $this->token,
"GData-Version: 3.0"
);
$xml = "<entry xmlns=\"http://www.w3.org/2005/Atom\" xmlns:gs=\"http://schemas.google.com/spreadsheets/2006\">" . "\n";
$xml .= " <title>" . $title . "</title>" . "\n";
$xml .= " <gs:rowCount>1</gs:rowCount>" . "\n";
$xml .= " <gs:colCount>" . count($columnNames) . "</gs:colCount>" . "\n";
$xml .= "</entry>" . "\n";
// If couldn't create return error
if (!$response = $this->post($url, $headers, $xml))
{
echo "\nError creating new worksheet!\n";
return false;
}
// Otherwise set the worksheet and insert column names
$this->useWorksheet($title);
foreach ($columnNames as $i => $columnName) $this->updateCell(1, ($i + 1), $columnName);
return true;
}
function useSpreadsheet($title) {
$this->spreadsheet = array();
$this->worksheet = null;
$this->cellLinks = null;
$this->listLinks = null;
if (empty($this->token)) return false;
$url = "https://spreadsheets.google.com/feeds/spreadsheets/private/full?title=" . urlencode($title);
$headers = array(
"Authorization: GoogleLogin auth=" . $this->token,
"GData-Version: 3.0"
);
if ($response = $this->post($url, $headers)) {
$spreadsheetXml = simplexml_load_string($response);
$spreadsheetNss = $spreadsheetXml->getNamespaces(true);
if ($spreadsheetXml->entry) {
$this->spreadsheet['id'] = basename(trim($spreadsheetXml->entry[0]->id));
$this->spreadsheet['title'] = (string)$spreadsheetXml->entry[0]->title;
$this->spreadsheet['updated'] = (string)$spreadsheetXml->entry[0]->updated;
$this->spreadsheet['author'] = array(
'name' => (string)$spreadsheetXml->entry[0]->author->name,
'email' => (string)$spreadsheetXml->entry[0]->author->email
);
$this->spreadsheet['links']['content'] = (string)$spreadsheetXml->entry[0]->content->attributes()->src;
for ($i = 0; $i < $spreadsheetXml->entry[0]->link->count(); $i++) {
$rel = (string)$spreadsheetXml->entry[0]->link[$i]->attributes()->rel;
$href = (string)$spreadsheetXml->entry[0]->link[$i]->attributes()->href;
$this->spreadsheet['links'][$rel] = $href;
}
return true;
} else {
return $this->createSpreadsheet($title, $columnNames);
}
}
echo "\nError setting spreadsheet!\n";
return false;
}
function useWorksheet($title, $columnNames = false) {
$this->worksheet = array();
$this->cellLinks = null;
$this->listLinks = null;
if (empty($this->token) || empty($this->spreadsheet)) return false;
$url = $this->spreadsheet['links']['content'] . "?title=" . urlencode($title);
$headers = array(
"Authorization: GoogleLogin auth=" . $this->token,
"GData-Version: 3.0"
);
if ($response = $this->post($url, $headers)) {
$worksheetXml = simplexml_load_string($response);
$worksheetNss = $worksheetXml->getNamespaces(true);
if ($worksheetXml->entry) {
$this->worksheet['id'] = basename(trim($worksheetXml->entry[0]->id));
$this->worksheet['title'] = (string)$worksheetXml->entry[0]->title;
$this->worksheet['updated'] = (string)$worksheetXml->entry[0]->updated;
$this->worksheet['links']['content'] = (string)$worksheetXml->entry[0]->content->attributes()->src;
for ($i = 0; $i < $worksheetXml->entry[0]->link->count(); $i++) {
$rel = (string)$worksheetXml->entry[0]->link[$i]->attributes()->rel;
$href = (string)$worksheetXml->entry[0]->link[$i]->attributes()->href;
$this->worksheet['links'][$rel] = $href;
}
$gsChildren = $worksheetXml->entry[0]->children($worksheetNss['gs']);
$this->worksheet['rows'] = (string)$gsChildren->rowCount - 1;
$this->worksheet['columns'] = (string)$gsChildren->colCount;
return true;
} else {
if ($columnNames) {
return $this->createWorksheet($title, $columnNames);
} else {
echo "\nCould not auto-create worksheet!\n";
echo "\nMust specify column names!\n";
return false;
}
}
}
echo "\nError setting worksheet!\n";
return false;
}
function getCellUrls() {
$this->cellLinks = array();
if (empty($this->token) || empty($this->worksheet)) return false;
$url = $this->worksheet['links']['http://schemas.google.com/spreadsheets/2006#cellsfeed'] . "?q=''";
$headers = array(
"Authorization: GoogleLogin auth=" . $this->token,
"GData-Version: 3.0"
);
if ($response = $this->post($url, $headers)) {
$cellfeedXml = simplexml_load_string($response);
$cellfeedNss = $cellfeedXml->getNamespaces(true);
for ($i = 0; $i < $cellfeedXml->link->count(); $i++) {
$rel = (string)$cellfeedXml->link[$i]->attributes()->rel;
$href = (string)$cellfeedXml->link[$i]->attributes()->href;
$this->cellLinks[$rel] = $href;
}
}
}
function getListUrls() {
$this->listLinks = array();
if (empty($this->token) || empty($this->worksheet)) return false;
$url = $this->worksheet['links']['content'] . "?q=''";
$headers = array(
"Authorization: GoogleLogin auth=" . $this->token,
"GData-Version: 3.0"
);
if ($response = $this->post($url, $headers)) {
$listfeedXml = simplexml_load_string($response);
$listfeedNss = $listfeedXml->getNamespaces(true);
for ($i = 0; $i < $listfeedXml->link->count(); $i++) {
$rel = (string)$listfeedXml->link[$i]->attributes()->rel;
$href = (string)$listfeedXml->link[$i]->attributes()->href;
$this->listLinks[$rel] = $href;
}
}
}
function getCellFeedUrl()
{
if (empty($this->cellLinks)) $this->getCellUrls();
return $this->cellLinks['http://schemas.google.com/g/2005#feed'];
}
function getCellBatchUrl()
{
if (empty($this->cellLinks)) $this->getCellUrls();
return $this->cellLinks['http://schemas.google.com/g/2005#batch'];
}
function getCellPostUrl()
{
if (empty($this->cellLinks)) $this->getCellUrls();
return $this->cellLinks['http://schemas.google.com/g/2005#post'];
}
function getListFeedUrl()
{
if (empty($this->listLinks)) $this->getListUrls();
return $this->listLinks['http://schemas.google.com/g/2005#feed'];
}
function getListPostUrl()
{
if (empty($this->listLinks)) $this->getListUrls();
return $this->listLinks['http://schemas.google.com/g/2005#post'];
}
function getColumnNames() {
if (empty($this->token) || empty($this->worksheet)) return false;
$url = $this->getCellFeedUrl() . "?min-row=1&max-row=1";
$headers = array(
"Authorization: GoogleLogin auth=" . $this->token,
"GData-Version: 3.0"
);
if ($response = $this->post($url, $headers)) {
$columnXml = simplexml_load_string($response);
$columnNss = $columnXml->getNamespaces(true);
$columns = array();
for ($i = 0; $i < $columnXml->entry->count(); $i++) {
$gsChildren = $columnXml->entry[$i]->children($columnNss['gs']);
$columnName = (string)$gsChildren[0]->attributes()->inputValue;
$columnNumber = (string)$gsChildren[0]->attributes()->col;
$columns[$columnName] = $columnNumber;
$columns[$columnNumber] = $columnName;
}
return $columns;
}
echo "\nError grabbing column names!\n";
return false;
}
function getRowCount()
{
if (empty($this->token) || empty($this->worksheet)) return false;
$url = $this->worksheet['links']['self'];
$headers = array(
"Content-Type: application/atom+xml",
"Authorization: GoogleLogin auth=" . $this->token,
"GData-Version: 3.0"
);
if ($response = $this->post($url, $headers)) {
$returnXml = simplexml_load_string($response);
$returnNss = $returnXml->getNamespaces(true);
$gsChildren = $returnXml->children($returnNss['gs']);
return (string)$gsChildren->rowCount;
} else {
echo "\nError retrieving row count!\n";
return false;
}
}
function getCellRows($startRow = null, $endRow = null, $startCol = null, $endCol = null)
{
if (empty($this->token) || empty($this->worksheet)) return false;
$url = $this->getCellFeedUrl() . "?";
if ($startRow !== null) $url .= "min-row=$startRow&";
if ($endRow !== null) $url .= "max-row=$endRow&";
if ($startCol !== null) $url .= "min-col=$startCol&";
if ($endCol !== null) $url .= "max-col=$endCol&";
$headers = array(
"Content-Type: application/atom+xml",
"Authorization: GoogleLogin auth=" . $this->token,
"GData-Version: 3.0"
);
if ($response = $this->post($url, $headers)) {
$rowsXml = simplexml_load_string($response);
$rowsNss = $rowsXml->getNamespaces(true);
$rows = array();
for ($i = 0; $i < $rowsXml->entry->count(); $i++) {
$gsChildren = $rowsXml->entry[$i]->children($rowsNss['gs']);
$row = (string)$gsChildren[0]->attributes()->row;
$column = (string)$gsChildren[0]->attributes()->col;
$value = (string)$rowsXml->entry[$i]->content;
$rows[$row][$column] = $value;
}
return $rows;
} else {
echo "\nError retrieving rows!\n";
return false;
}
}
function insertRow($row)
{
if (empty($this->token) || empty($this->worksheet)) return false;
$url = $this->getListPostUrl();
$headers = array(
"Content-Type: application/atom+xml",
"Authorization: GoogleLogin auth=" . $this->token,
"GData-Version: 3.0"
);
$xml = "<entry xmlns=\"http://www.w3.org/2005/Atom\" xmlns:gsx=\"http://schemas.google.com/spreadsheets/2006/extended\">" . "\n";
foreach ($row as $key => $value) {
$key = strtolower($key);
$xml .= "<gsx:$key>$value</gsx:$key>" . "\n";
}
$xml .= "</entry>" . "\n";
if ($response = $this->post($url, $headers, $xml)) {
$returnXml = simplexml_load_string($response);
$returnNss = $returnXml->getNamespaces(true);
// TODO NEED TO HANDLE BUGGY GOOGLE RESPONSES
// Additional section to handle formulas within the insert
//$this->updateFormulas();
} else {
echo "\nError inserting new row into worksheet!\n";
return false;
}
return true;
}
function updateCell($row, $column, $value)
{
if (empty($this->token) || empty($this->worksheet)) return false;
$url = $this->getCellPostUrl();
$headers = array(
"Content-Type: application/atom+xml",
"Authorization: GoogleLogin auth=" . $this->token,
"GData-Version: 3.0"
);
$xml = "<entry xmlns=\"http://www.w3.org/2005/Atom\" xmlns:gs=\"http://schemas.google.com/spreadsheets/2006\">" . "\n";
$xml .= "<id>" . $this->getCellFeedUrl() . "/" . $this->generateAddress($row, $column, false, false) . "</id>" . "\n";
$xml .= "<link rel=\"edit\" type=\"application/atom+xml\" href=\"" . $this->getCellFeedUrl() . "/" . $this->generateAddress($row, $column, false, false) . "\"/>" . "\n";
$xml .= "<gs:cell row=\"" . $row . "\" col=\"" . $column . "\" inputValue=\"" . htmlentities($value) . "\"/>" . "\n";
$xml .= "</entry>" . "\n";
if ($response = $this->post($url, $headers, $xml)) {
$returnXml = simplexml_load_string($response);
$returnNss = $returnXml->getNamespaces(true);
// TODO NEED TO HANDLE BUGGY GOOGLE RESPONSES
} else {
echo "\nError updating cell data! (".$this->generateAddress($row, $column).")\n";
return false;
}
return true;
}
function updateCells($data)
{
if (empty($this->token) || empty($this->worksheet)) return false;
$batchUrl = $this->getCellBatchUrl();
$headers = array(
"Content-Type: application/atom+xml",
"Authorization: GoogleLogin auth=" . $this->token,
"GData-Version: 3.0",
"If-Match: *"
);
$xml = "<feed xmlns=\"http://www.w3.org/2005/Atom\"" . "\n" .
"xmlns:batch=\"http://schemas.google.com/gdata/batch\"" . "\n" .
"xmlns:gs=\"http://schemas.google.com/spreadsheets/2006\">" . "\n";
$xml .= "<id>" . $batchUrl . "</id>" . "\n";
foreach ($data as $row => $entry) {
foreach ($entry as $column => $value) {
$xml .= "<entry>" . "\n";
$xml .= "<batch:id>" . $this->generateAddress($row, $column) . "</batch:id>" . "\n";
$xml .= "<batch:operation type=\"update\"/>" . "\n";
$xml .= "<title type=\"text\">" . $this->generateAddress($row, $column) . "</title>" . "\n";
$xml .= "<id>" . $this->getCellFeedUrl() . "/" . $this->generateAddress($row, $column, false, false) . "</id>" . "\n";
$xml .= "<link rel=\"edit\" type=\"application/atom+xml\" href=\"" . $this->getCellFeedUrl() . "/" . $this->generateAddress($row, $column, false, false) . "/0" . "\"/>" . "\n";
$xml .= "<gs:cell row=\"" . $row . "\" col=\"" . $column . "\" inputValue=\"" . htmlentities($value) . "\"/>" . "\n";
$xml .= "</entry>" . "\n";
}
}
$xml .= "</feed>" . "\n";
if ($response = $this->post($batchUrl, $headers, $xml)) {
$returnXml = simplexml_load_string($response);
$returnNss = $returnXml->getNamespaces(true);
// TODO NEED TO HANDLE BUGGY GOOGLE RESPONSES
} else {
echo "\nError saving data to worksheet! (".$this->generateAddress($row, $column).")\n";
return false;
}
return true;
}
function deleteRow($row)
{
if (empty($this->token) || empty($this->worksheet)) return false;
$columns = $this->getColumnNames();
$query = array();
foreach($row as $col => $value) $query[] = strtolower($columns[$col]) . " = \"" . $value . "\"";
$query = urlencode(implode(" AND ", $query));
$url = $this->getListFeedUrl() . "?sq=$query";
$headers = array(
"Content-Type: application/atom+xml",
"Authorization: GoogleLogin auth=" . $this->token,
"GData-Version: 3.0",
"If-Match: *"
);
if ($response = $this->post($url, $headers)) {
$rowXml = simplexml_load_string($response);
$deleteUrl = (string)$rowXml->entry[$rowXml->entry->count() - 1]->link->attributes()->href;
if (($response = $this->post($deleteUrl, $headers, null, "DELETE", $status)) === false) {
echo "\nError deleting row!\n";
return false;
}
return true;
} else {
echo "\nError retrieving row during delete operation!\n";
return false;
}
}
function post($url, $headers = false, $post = false, $request = null, &$status = null, &$error = null, $retryCount = 0)
{
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
if ($headers) curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
if ($post) {
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $post);
}
if ($request) {
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $request);
}
$response = curl_exec($curl);
$status = curl_getinfo($curl, CURLINFO_HTTP_CODE);
curl_close($curl);
// If Successfull return results
if(in_array($status, array('200', '201'))) return $response;
// If server error, keepy trying
if (in_array($status, array('400'))) {
echo html_entity_decode($response) . "\n";
var_dump($url);
var_dump($headers);
var_dump($post);
var_dump($request);
echo "Retrying in 30 seconds...\n\n";
sleep(30);
if ($retryCount < 60) {
$retryCount++;
return $this->post($url, $headers, $post, $request, $status, $error, $retryCount);
}
}
// Failed, return an error
$error = $response;
echo $error . "\n";
echo "\nStatus: $status\n";
return false;
}
function xmlPretty($xml)
{
$xml = str_replace(array(">", "</"), array(">\n", "\n</"), $xml);
$xml = explode("\n", $xml);
$tabIndex = 0;
$tabSize = 4;
foreach ($xml as $i => &$string) {
// Remove empty lines
if ($string == "") {
unset($xml[$i]);
continue;
}
// Shorten indent size if closing element
if (preg_match("/^<\//", trim($string))) $tabIndex--;
// Indent string accordingly
for ($j = 0; $j < ($tabIndex * $tabSize); $j++) $string = " " . $string;
// Increase indent size if opening element
if (preg_match("/^</", trim($string)) && !preg_match("/^<\?|^<\/|\/>$/", trim($string))) $tabIndex++;
// Make single value elements 1 liners
if (preg_match("/^<\//", trim($string))) {
if (isset($xml[$i - 1]) && isset($xml[$i - 1])) {
if (preg_match("/^</", trim($xml[$i - 2])) && !preg_match("/^<\?|^<\/|\/>$/", trim($xml[$i - 2]))) {
if (!preg_match("/^</", trim($xml[$i - 1]))) {
$xml[$i - 2] .= trim($xml[$i - 1]) . trim($string);
unset($xml[$i - 1]);
unset($xml[$i]);
}
}
}
}
// Decode URL html entities
$string = html_entity_decode($string);
}
return implode("\n", $xml);
}
function generateColAplha($number)
{
if ($number > 26) return "Z" . $this->generateColAplha($number - 26);
else return chr(64 + $number);
}
function generateAddress($row, $column, $absolute = false, $reference = true)
{
if ($reference) return (($absolute)?"$":"") . $this->generateColAplha($column) . (($absolute)?"$":"") . $row;
else return "R" . $row . "C" . $column;
}
}
?>