-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfilesystem.js
More file actions
464 lines (392 loc) · 12.8 KB
/
filesystem.js
File metadata and controls
464 lines (392 loc) · 12.8 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
// fileSystem.js
class FileSystem {
constructor(model, options) {
this.model = model;
this.options = options || {};
}
static async create(config) {
const { model, ...options } = config;
switch (model) {
case 'localStorage':
return new LocalStorageFileSystem(options);
case 'sessionStorage':
return new SessionStorageFileSystem(options);
case 'file':
return new FileSystemInput(options);
case 'google-drive':
return new GoogleDriveFileSystem(options);
case 'jszip':
return new JSZipFileSystem(options);
default:
throw new Error(`Unsupported file system model: ${model}`);
}
}
async read_content(filename) {
throw new Error('Not implemented');
}
async write_content(filename, content) {
throw new Error('Not implemented');
}
async read_object(filename) {
const content = await this.read_content(filename);
return content === undefined ? undefined : JSON.parse(content);
}
async write_object(filename, obj) {
await this.write_content(filename, JSON.stringify(obj));
}
async list(dir) {
throw new Error('Not implemented');
}
async delete(filename) {
throw new Error('Not implemented');
}
}
// Implementations for each model
// 1. localStorage
class LocalStorageFileSystem extends FileSystem {
constructor(options) {
super('localStorage', options);
this.prefix = options.prefix || ''; // Add prefix support
}
async read_content(filename) {
const content = localStorage.getItem(this.prefix + filename);
return content === null ? undefined : content;
}
async write_content(filename, content) {
localStorage.setItem(this.prefix + filename, content);
}
async list(dir) {
const files = [];
for (let i = 0; i < localStorage.length; i++) {
const key = localStorage.key(i);
if (key.startsWith(this.prefix)) {
files.push({ type: 'file', filename: key.slice(this.prefix.length) });
}
}
return files;
}
async delete(filename) {
localStorage.removeItem(this.prefix + filename);
}
}
// 2. sessionStorage
class SessionStorageFileSystem extends FileSystem {
constructor(options) {
super('sessionStorage', options);
this.prefix = options.prefix || ''; // Add prefix support
}
async read_content(filename) {
const content = sessionStorage.getItem(this.prefix + filename);
return content === null ? undefined : content;
}
async write_content(filename, content) {
sessionStorage.setItem(this.prefix + filename, content);
}
async list(dir) {
const files = [];
for (let i = 0; i < sessionStorage.length; i++) {
const key = sessionStorage.key(i);
if (key.startsWith(this.prefix)) {
files.push({ type: 'file', filename: key.slice(this.prefix.length) });
}
}
return files;
}
async delete(filename) {
sessionStorage.removeItem(this.prefix + filename);
}
}
// 3. File (using <input> and download)
class FileSystemInput extends FileSystem {
constructor(options) {
super('file', options);
}
async read_content(filename) {
return new Promise((resolve, reject) => {
const input = document.createElement('input');
input.type = 'file';
input.accept = this.options.accept || '*';
input.onchange = async (event) => {
const file = event.target.files[0];
if (!file) {
reject(new Error("没有选择文件喵!"));
return;
}
const reader = new FileReader();
reader.onload = async (e) => {
const arrayBuffer = e.target.result;
const mimeType = file.type || 'application/octet-stream'; // 获取文件的 MIME 类型,或者使用默认值
const blob = new Blob([arrayBuffer], { type: mimeType });
const blobFunc = async () => blob;
const textFunc = async () => {
return new Promise((resolve, reject) => {
const reader = new FileReader();
reader.onload = () => resolve(reader.result);
reader.onerror = reject;
reader.readAsText(blob);
});
};
const loadzipFunc = async () => {
if (typeof JSZip === 'undefined') {
throw new Error("JSZip 未定义喵! 需要先引入 JSZip 库哦!");
}
try {
const zip = await JSZip.loadAsync(blob);
return zip;
} catch (error) {
throw new Error("加载 JSZip 失败喵!" + error.message);
}
};
resolve({
blob: blobFunc,
text: textFunc,
loadzip: loadzipFunc,
json: async () => JSON.parse(await textFunc()),
});
};
reader.onerror = (e) => {
reject(e);
};
reader.readAsArrayBuffer(file); // 使用 readAsArrayBuffer
};
input.click();
});
}
async write_content(filename, content) {
const blob = new Blob([content], { type: this.options.contentType || 'text/plain' });
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = filename;
document.body.appendChild(a); // Required for Firefox
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(url);
}
async list(dir) {
return []; // Not supported
}
async delete(filename){
//Do nothing, local files do not persist, cannot be deleted.
}
}
// 4. Google Drive (Simplified)
class GoogleDriveFileSystem extends FileSystem {
constructor(options) {
super('google-drive', options);
this.folderId = options.folderId; // Add folderId option
}
async read_content(filename) {
try {
const fileId = await this.getFileId(filename);
const response = await gapi.client.drive.files.get({
fileId: fileId,
alt: 'media',
});
return response.body;
} catch (error) {
console.error('Error reading file:', error);
throw error;
}
}
async write_content(filename, content) {
try {
const fileId = await this.getFileId(filename);
const blob = new Blob([content], { type: 'text/plain' }); // Adjust mime type as needed
const metadata = {
name: filename,
parents: [this.folderId || await this.createOrGetFolder()], // Use folderId or default folder
};
const media = {
mimeType: 'text/plain', // Adjust mime type as needed
body: blob,
};
let response;
if (fileId) {
// Update existing file
response = await gapi.client.drive.files.update({
fileId: fileId,
resource: metadata,
media: media,
});
} else {
// Create new file
response = await gapi.client.drive.files.create({
resource: metadata,
media: media,
fields: 'id', // Request the 'id' field in the response
});
}
const newFileId = response.result.id || fileId;
return newFileId; // return the file ID
} catch (error) {
console.error('Error writing file:', error);
throw error;
}
}
async list(dir) {
try {
const folderId = this.folderId || await this.createOrGetFolder();
const response = await gapi.client.drive.files.list({
q: `'${folderId}' in parents and trashed=false`,
fields: 'files(id, name, mimeType)',
});
const files = response.result.files;
return files.map(file => ({
type: file.mimeType === 'application/vnd.google-apps.folder' ? 'dir' : 'file',
filename: file.name,
id: file.id, // Include the file ID for later use
}));
} catch (error) {
console.error('Error listing files:', error);
throw error;
}
}
async delete(filename) {
try {
const fileId = await this.getFileId(filename);
if (!fileId) {
throw new Error(`File "${filename}" not found in Google Drive.`);
}
await gapi.client.drive.files.delete({ fileId: fileId });
} catch (error) {
console.error("Error deleting file:", error);
throw error;
}
}
// Helper functions
async getFileId(filename) {
try {
const folderId = this.folderId || await this.createOrGetFolder();
const response = await gapi.client.drive.files.list({
q: `name='${filename}' and '${folderId}' in parents and trashed=false`,
fields: 'files(id)',
});
const files = response.result.files;
return files.length > 0 ? files[0].id : null;
} catch (error) {
console.error('Error getting file ID:', error);
return null; // Or throw an error if appropriate
}
}
async createOrGetFolder(folderName = 'My App Folder') {
try {
const folderId = await this.findFolder(folderName);
if (folderId) {
return folderId;
} else {
const fileMetadata = {
name: folderName,
mimeType: 'application/vnd.google-apps.folder',
};
const response = await gapi.client.drive.files.create({
resource: fileMetadata,
fields: 'id',
});
return response.result.id;
}
} catch (error) {
console.error('Error creating or getting folder:', error);
throw error;
}
}
async findFolder(folderName) {
const query = `mimeType='application/vnd.google-apps.folder' and name='${folderName}' and trashed=false`;
try {
const response = await gapi.client.drive.files.list({
q: query,
fields: 'files(id, name)',
});
const files = response.result.files;
return files && files.length > 0 ? files[0].id : null;
} catch (error) {
console.error('Error searching for folder:', error);
return null;
}
}
}
// 5. JSZip File System
class JSZipFileSystem extends FileSystem {
constructor(options) {
super('jszip', options);
this.zip = new JSZip(); // Create a new JSZip object
}
async read_content(filename) {
try {
const file = this.zip.file(filename);
if (!file) {
return undefined; // File not found
}
return await file.async('string'); // Read as text
} catch (error) {
console.error('Error reading file from zip:', error);
throw error;
}
}
async write_content(filename, content) {
try {
this.zip.file(filename, content);
} catch (error) {
console.error('Error writing file to zip:', error);
throw error;
}
}
async list(dir) {
// JSZip doesn't directly support directories in the same way as a file system.
// We'll iterate over the files in the zip and return those that start with the given directory.
const files = [];
this.zip.forEach((relativePath, zipEntry) => {
if (relativePath.startsWith(dir)) {
const filename = relativePath;
let type = 'file';
if (relativePath.endsWith('/')) {
type = 'dir';
}
files.push({ type: type, filename: filename });
}
});
return files;
}
async generate() {
try {
const content = await this.zip.generateAsync({ type: "blob" });
return content;
} catch (error) {
console.error("Error generate zip file:", error);
throw error;
}
}
async save(filename) {
try {
const content = await this.zip.generateAsync({ type: "blob" });
const url = URL.createObjectURL(content);
const a = document.createElement('a');
a.href = url;
a.download = filename;
document.body.appendChild(a); // Required for Firefox
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(url);
} catch (error) {
console.error("Error saving zip file:", error);
throw error;
}
}
async load(blob) {
try {
this.zip = await new JSZip().loadAsync(blob); // Reset zip object on load
} catch (error) {
console.error("Error loading zip file:", error);
throw error;
}
}
async delete(filename) {
try {
this.zip.remove(filename);
} catch (error) {
console.error("Error deleting file from zip:", error);
throw error;
}
}
}
export default FileSystem;