-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCsv.php
More file actions
253 lines (204 loc) · 7.18 KB
/
Csv.php
File metadata and controls
253 lines (204 loc) · 7.18 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
<?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 $deviceForCsvImports;
private Reader $database;
public function __construct(
string $resourceId,
string $filePath,
Device $deviceForCsvImports,
?UtopiaDatabase $dbForProject
) {
$this->filePath = $filePath;
$this->resourceId = $resourceId;
$this->deviceForCsvImports = $deviceForCsvImports;
$this->database = new DatabaseReader($dbForProject);
}
public static function getName(): string
{
return 'Csv';
}
public static function getSupportedResources(): array
{
return [
Resource::TYPE_DOCUMENT,
];
}
public function report(array $resources = []): array
{
return [];
}
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->deviceForCsvImports->delete($this->filePath);
}
}
/**
* @throws Exception|\Utopia\Database\Exception
*/
private function exportDocuments(int $batchSize): void
{
if (! $this->deviceForCsvImports->exists($this->filePath)) {
return;
}
$stream = fopen($this->filePath, 'r');
if (! $stream) {
return;
}
$headers = fgetcsv($stream);
if (! is_array($headers) || count($headers) === 0) {
fclose($stream);
return;
}
$allAttributes = [];
$lastAttribute = null;
[$databaseId, $collectionId] = explode(':', $this->resourceId);
// TODO: @itznotabug, @jake - do we need to check for permissions here or db handles it?
$collection = new Collection(new Database($databaseId, ''), '', $collectionId);
while (true) {
// paginate over the attributes
$queries = [$this->database->queryLimit($batchSize)];
if ($lastAttribute) {
$queries[] = $this->database->queryCursorAfter($lastAttribute);
}
$fetched = $this->database->listAttributes($collection, $queries);
if (empty($fetched)) {
break;
}
$allAttributes = array_merge($allAttributes, $fetched);
$lastAttribute = $fetched[count($fetched) - 1];
if (count($fetched) < $batchSize) {
break;
}
}
$attributeTypes = [];
$manyToManyKeys = [];
foreach ($allAttributes as $attribute) {
$key = $attribute['key'];
if (
// Skip child-side relationships entirely
$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;
}
}
$buffer = [];
while (($row = fgetcsv($stream)) !== false) {
$data = array_combine($headers, $row);
if ($data === false) {
continue;
}
$parsedData = $data;
foreach ($data as $key => $value) {
if (! isset($attributeTypes[$key])) {
continue;
}
$type = $attributeTypes[$key];
$parsedValue = trim($value);
if ($parsedValue === '') {
$parsedData[$key] = null;
continue;
}
// TODO: @itznotabug, @jake - should we support Relationships like these?
if (in_array($key, $manyToManyKeys, true)) {
$parsedData[$key] = str_contains($parsedValue, ',')
? array_map('trim', explode(',', $parsedValue))
: [$parsedValue];
continue;
}
switch ($type) {
case Attribute::TYPE_INTEGER:
$parsedData[$key] = is_numeric($parsedValue) ? (int) $parsedValue : null;
break;
case Attribute::TYPE_FLOAT:
$parsedData[$key] = is_numeric($parsedValue) ? (float) $parsedValue : null;
break;
case Attribute::TYPE_BOOLEAN:
$parsedData[$key] = filter_var($parsedValue, FILTER_VALIDATE_BOOLEAN);
break;
default:
break;
}
}
$docId = $parsedData['$id'] ?? 'unique()';
$document = new Document($docId, $collection, $parsedData);
$buffer[] = $document;
if (count($buffer) === $batchSize) {
$this->callback($buffer);
$buffer = [];
}
}
fclose($stream);
if (! empty($buffer)) {
$this->callback($buffer);
}
}
protected function exportGroupStorage(int $batchSize, array $resources): void
{
throw new \Exception('Not Implemented');
}
protected function exportBuckets(int $batchSize): void
{
throw new \Exception('Not Implemented');
}
private function exportFiles(int $batchSize): void
{
throw new \Exception('Not Implemented');
}
private function exportFile(File $file): void
{
throw new \Exception('Not Implemented');
}
protected function exportGroupFunctions(int $batchSize, array $resources): void
{
throw new \Exception('Not Implemented');
}
}