-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFilesController.js
More file actions
executable file
·403 lines (325 loc) · 10.3 KB
/
Copy pathFilesController.js
File metadata and controls
executable file
·403 lines (325 loc) · 10.3 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
// module that handles file storage endpoints
import { ObjectId } from 'mongodb';
import { v4 as uuidv4 } from 'uuid';
import path from 'path';
import mime from 'mime-types';
import fs from 'fs';
import { promisify } from 'util';
import redisClient from '../utils/redis';
import dbClient from '../utils/db';
class FilesController {
static async postUpload(req, res) {
try {
const user = await FilesController.retrieveUserBasedOnToken(req);
if (!user) {
return res.status(401).send({
error: 'Unauthorized',
});
}
const {
name, type, parentId, isPublic, data,
} = req.body;
if (!name) {
return res.status(400).send({
error: 'Missing name',
});
}
if (!type || !['folder', 'file', 'image'].includes(type)) {
return res.status(400).send({
error: 'Missing type',
});
}
if (!data && type !== 'folder') {
return res.status(400).send({
error: 'Missing data',
});
}
if (parentId) {
const parent = await FilesController.getFileById(parentId);
if (!parent) {
return res.status(400).send({
error: 'Parent not found',
});
}
if (parent.type !== 'folder') {
return res.status(400).send({
error: 'Parent is not a folder',
});
}
}
const newFile = {
userId: user._id.toString(),
name,
type,
isPublic: isPublic || false,
parentId: parentId || 0,
};
if (type === 'folder') {
const result = await FilesController.insertFile(newFile);
const writeResp = {
id: result.insertedId.toString(),
...newFile,
};
delete writeResp._id;
delete writeResp.localPath;
return res.status(201).send(writeResp);
}
const storeFolderPath = process.env.FOLDER_PATH || '/tmp/files_manager';
const fileName = uuidv4();
const filePath = path.join(storeFolderPath, fileName);
newFile.localPath = filePath;
const decodedData = Buffer.from(data, 'base64');
const pathExists = await FilesController.pathExists(storeFolderPath);
if (!pathExists) {
// await fs.mkdir(storeFolderPath, { recursive: true });
const mkdirAsync = promisify(fs.mkdir);
try {
await mkdirAsync(storeFolderPath, { recursive: true });
} catch (error) {
console.error('Error creating directory:', error);
return res.status(500).send({
error: 'Internal Server Error',
});
}
}
fs.writeFile(filePath, decodedData, 'utf-8', (error) => {
if (error) {
console.error('Error writing file:', error);
return res.status(500).send({
error: 'Internal Server Error',
});
}
return undefined;
});
const result = await FilesController.insertFile(newFile);
const writeResp = {
id: result.insertedId,
...newFile,
};
delete writeResp._id;
delete writeResp.localPath;
return res.status(201).send(writeResp);
} catch (error) {
console.error('Error in postUpload:', error);
return res.status(500).send({
error: 'Internal Server Error',
});
}
}
static async retrieveUserBasedOnToken(req) {
const authToken = req.header('X-Token') || null;
if (!authToken) return null;
const token = `auth_${authToken}`;
const userId = await redisClient.get(token);
if (!userId) return null;
return FilesController.getUserById(userId);
}
static async getUserById(userId) {
const usersCollection = dbClient.client.db().collection('users');
return usersCollection.findOne({ _id: ObjectId(userId) });
}
static async getFileById(fileId) {
const filesCollection = dbClient.client.db().collection('files');
return filesCollection.findOne({ _id: ObjectId(fileId) });
}
static async insertFile(file) {
const filesCollection = dbClient.client.db().collection('files');
return filesCollection.insertOne(file);
}
static async pathExists(path) {
return promisify(fs.access)(path, fs.constants.F_OK)
.then(() => true)
.catch(() => false);
}
static async getShow(req, res) {
try {
const user = await FilesController.retrieveUserBasedOnToken(req);
if (!user) {
return res.status(401).send({
error: 'Unauthorized',
});
}
const fileId = req.params.id;
if (!fileId) {
return res.status(400).send({
error: 'Unauthorized',
});
}
const file = await FilesController.getFileById(fileId);
if (!file || file.userId.toString() !== user._id.toString()) {
return res.status(404).send({
error: 'Not found',
});
}
// return res.status(200).send(file);
const mappedFile = {
id: file._id.toString(),
...file,
parentId: file.parentId,
};
delete mappedFile._id;
delete mappedFile.localPath;
return res.status(200).send(mappedFile);
} catch (error) {
console.error('Error in getShow:', error);
return res.status(500).send({
error: 'Internal Server Error',
});
}
}
static async getIndex(req, res) {
try {
const user = await FilesController.retrieveUserBasedOnToken(req);
if (!user) {
return res.status(401).send({
error: 'Unauthorized',
});
}
const parentId = req.query.parentId || 0;
const page = req.query.page || 0;
const pageSize = 20;
const files = await FilesController.getFilesByParentId(
user._id.toString(), parentId, page, pageSize,
);
return res.status(200).send(files);
} catch (error) {
console.error('Error in getIndex:', error);
return res.status(500).send({
error: 'Internal Server Error',
});
}
}
static async getFilesByParentId(userId, parentId, page, pageSize) {
try {
const filesCollection = dbClient.client.db().collection('files');
const skip = page * pageSize;
const query = { userId, parentId: parentId === '0' ? 0 : parentId };
const files = await filesCollection.find(query).skip(skip).limit(pageSize).toArray();
const mappedFiles = files.map((file) => {
const { _id, localPath, ...rest } = file;
return { id: _id.toString(), ...rest };
});
return mappedFiles;
} catch (error) {
console.error('Error in getFilesByParentId:', error);
throw new Error('Internal Server Error');
}
}
static async putPublish(req, res) {
try {
const user = await FilesController.retrieveUserBasedOnToken(req);
if (!user) {
return res.status(401).send({
error: 'Unauthorized',
});
}
const fileId = req.params.id;
if (!fileId) {
return res.status(404).send({
error: 'Not found',
});
}
const file = await FilesController.getFileById(fileId);
if (!file || file.userId.toString() !== user._id.toString()) {
return res.status(404).send({
error: 'Not found',
});
}
const updatedFile = await FilesController.updateFilePublishStatus(fileId, true);
return res.status(200).send(updatedFile);
} catch (error) {
console.error('Error in putPublish:', error);
return res.status(500).send({
error: 'Internal Server Error',
});
}
}
static async putUnpublish(req, res) {
try {
const user = await FilesController.retrieveUserBasedOnToken(req);
if (!user) {
return res.status(401).send({
error: 'Unauthorized',
});
}
const fileId = req.params.id;
if (!fileId) {
return res.status(404).send({
error: 'Not found',
});
}
const file = await FilesController.getFileById(fileId);
if (!file || file.userId.toString() !== user._id.toString()) {
return res.status(404).send({
error: 'Not found',
});
}
const updatedFile = await FilesController.updateFilePublishStatus(fileId, false);
return res.status(200).send(updatedFile);
} catch (error) {
console.error('Error in putUnpublish:', error);
return res.status(500).send({
error: 'Internal Server Error',
});
}
}
static async updateFilePublishStatus(fileId, isPublic) {
const filesCollection = dbClient.client.db().collection('files');
const result = await filesCollection.findOneAndUpdate(
{ _id: ObjectId(fileId) },
{ $set: { isPublic } },
{ returnDocument: 'after' },
);
const updatedFile = result.value;
if (!updatedFile) {
throw new Error('Failed to update file status');
}
const { _id, localPath, ...rest } = updatedFile;
return { id: _id.toString(), ...rest };
}
static async getFile(req, res) {
try {
const user = await FilesController.retrieveUserBasedOnToken(req);
const fileId = req.params.id;
if (!fileId) {
return res.status(404).send({
error: 'Not found',
});
}
const file = await FilesController.getFileById(fileId);
if (!file) {
return res.status(404).send({
error: 'Not found',
});
}
if (!file.isPublic && (!user || file.userId.toString() !== user._id.toString())) {
return res.status(404).send({
error: 'Not found',
});
}
if (file.type === 'folder') {
return res.status(400).send({
error: "A folder doesn't have content",
});
}
const filePath = file.localPath;
const pathExists = await FilesController.pathExists(filePath);
if (!pathExists) {
return res.status(404).send({
error: 'Not found',
});
}
const mimeType = mime.lookup(file.name);
const readFileAsync = promisify(fs.readFile);
const fileContent = await readFileAsync(filePath, 'utf-8');
res.setHeader('Content-Type', mimeType);
return res.status(200).send(fileContent);
} catch (error) {
console.error('Error in getFile:', error);
return res.status(500).send({
error: 'Internal Server Error',
});
}
}
}
export default FilesController;