-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCSV.php
More file actions
280 lines (229 loc) · 7.73 KB
/
CSV.php
File metadata and controls
280 lines (229 loc) · 7.73 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
<?php
namespace Utopia\Migration\Sources;
use Utopia\Database\Database as UtopiaDatabase;
use Utopia\Migration\Exception;
use Utopia\Migration\Resource;
use Utopia\Migration\Resources\Database\Attribute;
use Utopia\Migration\Resources\Database\Collection;
use Utopia\Migration\Resources\Database\Database;
use Utopia\Migration\Resources\Database\Document;
use Utopia\Migration\Resources\Storage\File;
use Utopia\Migration\Source;
use Utopia\Migration\Sources\Appwrite\Reader;
use Utopia\Migration\Sources\Appwrite\Reader\Database as DatabaseReader;
use Utopia\Migration\Transfer;
use Utopia\Storage\Device;
class CSV extends Source
{
private string $filePath;
/**
* format: `{databaseId:collectionId}`
*/
private string $resourceId;
private Device $device;
private Reader $database;
public function __construct(
string $resourceId,
string $filePath,
Device $device,
?UtopiaDatabase $dbForProject
) {
$this->device = $device;
$this->filePath = $filePath;
$this->resourceId = $resourceId;
$this->database = new DatabaseReader($dbForProject);
}
public static function getName(): string
{
return 'CSV';
}
public static function getSupportedResources(): array
{
return [
Resource::TYPE_DOCUMENT,
];
}
// called before the `exportGroupDatabases`.
public function report(array $resources = []): array
{
$report = [];
if (! $this->device->exists($this->filePath)) {
return $report;
}
$file = new \SplFileObject($this->filePath, 'r');
$file->setFlags(\SplFileObject::READ_CSV | \SplFileObject::SKIP_EMPTY);
$file->seek(PHP_INT_MAX);
$rowCount = max(0, $file->key());
$rowCount = $rowCount > 0 ? $rowCount - 1 : 0;
$report[Resource::TYPE_DOCUMENT] = $rowCount;
return $report;
}
/**
* @throws \Exception
*/
protected function exportGroupAuth(int $batchSize, array $resources): void
{
throw new \Exception('Not Implemented');
}
protected function exportGroupDatabases(int $batchSize, array $resources): void
{
try {
if (\in_array(Resource::TYPE_DOCUMENT, $resources)) {
$this->exportDocuments($batchSize);
}
} catch (\Throwable $e) {
$this->addError(
new Exception(
Resource::TYPE_DOCUMENT,
Transfer::GROUP_DATABASES,
message: $e->getMessage(),
code: $e->getCode(),
previous: $e
)
);
} finally {
// delete the temporary file!
$this->device->delete($this->filePath);
}
}
/**
* @throws \Exception
*/
private function exportDocuments(int $batchSize): void
{
$attributes = [];
$lastAttribute = null;
[$databaseId, $collectionId] = explode(':', $this->resourceId);
$database = new Database($databaseId, '');
$collection = new Collection($database, '', $collectionId);
while (true) {
$queries = [$this->database->queryLimit($batchSize)];
if ($lastAttribute) {
$queries[] = $this->database->queryCursorAfter($lastAttribute);
}
$fetched = $this->database->listAttributes($collection, $queries);
if (empty($fetched)) {
break;
}
array_push($attributes, ...$fetched);
$lastAttribute = $fetched[count($fetched) - 1];
if (count($fetched) < $batchSize) {
break;
}
}
$attributeTypes = [];
$manyToManyKeys = [];
foreach ($attributes as $attribute) {
$key = $attribute['key'];
if (
$attribute['type'] === Attribute::TYPE_RELATIONSHIP &&
($attribute['side'] ?? '') === UtopiaDatabase::RELATION_SIDE_CHILD
) {
continue;
}
$attributeTypes[$key] = $attribute['type'];
if (
$attribute['type'] === Attribute::TYPE_RELATIONSHIP &&
($attribute['relationType'] ?? '') === 'manyToMany' &&
($attribute['side'] ?? '') === 'parent'
) {
$manyToManyKeys[] = $key;
}
}
$this->withCSVStream(function ($stream) use ($attributeTypes, $manyToManyKeys, $collection, $batchSize) {
$headers = fgetcsv($stream);
if (! is_array($headers) || count($headers) === 0) {
return;
}
$buffer = [];
while (($row = fgetcsv($stream)) !== false) {
$data = array_combine($headers, $row);
if ($data === false) {
continue;
}
$parsedData = $data;
foreach ($data as $key => $value) {
$parsedValue = trim($value);
$type = $attributeTypes[$key] ?? null;
if (! isset($type) || $parsedValue === '') {
continue;
}
if (in_array($key, $manyToManyKeys, true)) {
$parsedData[$key] = str_contains($parsedValue, ',')
? array_map('trim', explode(',', $parsedValue))
: [$parsedValue];
continue;
}
$parsedData[$key] = match ($type) {
Attribute::TYPE_INTEGER => is_numeric($parsedValue) ? (int) $parsedValue : null,
Attribute::TYPE_FLOAT => is_numeric($parsedValue) ? (float) $parsedValue : null,
Attribute::TYPE_BOOLEAN => filter_var($parsedValue, FILTER_VALIDATE_BOOLEAN),
default => $parsedValue,
};
}
$documentId = $parsedData['$id'] ?? 'unique()';
// `$id`, `$permissions` in the doc can cause issues!
unset($parsedData['$id'], $parsedData['$permissions']);
$document = new Document($documentId, $collection, $parsedData);
$buffer[] = $document;
if (count($buffer) === $batchSize) {
$this->callback($buffer);
$buffer = [];
}
}
if (! empty($buffer)) {
$this->callback($buffer);
}
});
}
/**
* @throws \Exception
*/
protected function exportGroupStorage(int $batchSize, array $resources): void
{
throw new \Exception('Not Implemented');
}
/**
* @throws \Exception
*/
protected function exportBuckets(int $batchSize): void
{
throw new \Exception('Not Implemented');
}
/**
* @throws \Exception
*/
private function exportFiles(int $batchSize): void
{
throw new \Exception('Not Implemented');
}
/**
* @throws \Exception
*/
private function exportFile(File $file): void
{
throw new \Exception('Not Implemented');
}
/**
* @throws \Exception
*/
protected function exportGroupFunctions(int $batchSize, array $resources): void
{
throw new \Exception('Not Implemented');
}
private function withCsvStream(callable $fn): void
{
if (! $this->device->exists($this->filePath)) {
return;
}
$stream = fopen($this->filePath, 'r');
if (! $stream) {
return;
}
try {
$fn($stream);
} finally {
fclose($stream);
}
}
}