-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathGoogleSheetsPathManager.php
148 lines (131 loc) · 3.92 KB
/
GoogleSheetsPathManager.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
<?php
/**
* LocalPathManager.php.
*/
namespace PrivateIT\FlySystem\GoogleDrive;
use Illuminate\Filesystem\FilesystemAdapter;
/**
* Class LocalPathManager
* @package PrivateIT\FlySystem\GoogleDrive
*/
class GoogleSheetsPathManager implements PathManager
{
/**
* @var \Google_Service_Sheets
*/
public $service;
/**
* @var string
*/
public $spreadsheetId;
/**
* @var FilesystemAdapter
*/
public $storage;
/**
* @var string
*/
public $cacheFile = 'google-drive-paths.csv';
/**
* @var array
*/
public $cache = [];
public function __construct(\Google_Service_Sheets $service, $spreadsheetId, FilesystemAdapter $storage)
{
$this->service = $service;
$this->spreadsheetId = $spreadsheetId;
$this->storage = $storage;
}
public function readPath($path)
{
if (isset($this->cache[$path])) return $this->cache[$path];
$result = $this->findPath($path);
if (isset($result[0]['fileId'])) {
return $this->cache[$path] = $result[0]['fileId'];
}
return false;
}
public function findPath($path, $asDir = false)
{
$output = [];
exec('grep -ni ",' . $path . ($asDir ? '' : ',') . '" ' . $this->storage->path($this->cacheFile), $output);
if (!empty($output) && sizeof($output)) {
$results = [];
foreach ($output as $item) {
list($index, $path, $fileId) = explode(',', $output[0]);
$index = explode(':', $index);
$index = array_shift($index);
$results[] = compact('index', 'path', 'fileId');
}
return $results;
}
return false;
}
public function writePath($path, $fileId)
{
$range = 'A1:C1';
$response = $this->service->spreadsheets_values->append(
$this->spreadsheetId,
$range,
new \Google_Service_Sheets_ValueRange(
[
"range" => $range,
"majorDimension" => "ROWS",
'values' => [
['#', $path, $fileId]
]
]
),
[
"valueInputOption" => "USER_ENTERED",
]
);
if (!isset($response->updates)) {
return false;
}
if (!isset($response->updates->updatedRows)) {
return false;
}
if ($response->updates->updatedRows != 1) {
return false;
}
return $this->updateCacheFile();
}
public function removePath($path)
{
$results = $this->findPath($path, true);
if (!$results) return null;
foreach ($results as $result) {
$response = $this->service->spreadsheets->batchUpdate($this->spreadsheetId,
new \Google_Service_Sheets_BatchUpdateSpreadsheetRequest([
'requests' =>
[[
'deleteDimension' => [
'range' => [
'sheetId' => 0,
'dimension' => 'ROWS',
'startIndex' => $result['index'] - 1,
'endIndex' => $result['index']
]
]
]]
])
);
if (!$response) {
return false;
}
}
return $this->updateCacheFile();
}
public function updateCacheFile()
{
return $this->storage->put(
$this->cacheFile,
file_get_contents(
'https://docs.google.com/spreadsheets/u/0/d/' . $this->spreadsheetId .
'/export?format=csv&id=' . $this->spreadsheetId .
'&gid=0'
)
);
}
}