-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmongodb.js
More file actions
417 lines (329 loc) · 12 KB
/
mongodb.js
File metadata and controls
417 lines (329 loc) · 12 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
import express from 'express';
import { MongoClient, ObjectId } from 'mongodb';
import dotenv from 'dotenv';
import cors from 'cors';
import { v4 as uuidv4 } from 'uuid';
import JSZip from 'jszip';
dotenv.config();
const app = express();
const port = 5001;
const uri = process.env.MONGODB_URI;
const client = new MongoClient(uri);
app.use(cors({
origin: 'http://localhost:3000',
methods: ['GET', 'POST', 'PUT', 'DELETE'],
allowedHeaders: ['Content-Type'],
}));
app.use(express.json());
let db;
async function connectToMongoDB() {
try {
await client.connect();
console.log('Connected to MongoDB');
db = client.db('codeEditor');
} catch (error) {
console.error('Error connecting to MongoDB:', error);
process.exit(1);
}
}
const updateFileInTree = (tree, fileId, content, language) => {
console.log(`Updating file in tree: fileId=${fileId}, content length=${content.length}`);
if (tree.id === fileId && tree.type === 'file') {
console.log(`Found file ${fileId}, updating content`);
return { ...tree, content, language, updatedAt: new Date() };
}
if (tree.children) {
return {
...tree,
children: tree.children.map((child) => updateFileInTree(child, fileId, content, language)),
};
}
return tree;
};
app.get('/', (req, res) => {
res.send('Backend server is running');
});
app.get('/api/projects', async (req, res) => {
const { uid } = req.query;
if (!uid) {
return res.status(400).json({ message: 'Missing uid' });
}
try {
const fileTrees = db.collection('fileTrees');
const userProjects = await fileTrees.find({ uid }).sort({ updatedAt: -1 }).toArray();
console.log(`Fetched ${userProjects.length} projects for uid=${uid}`);
const projects = userProjects.map((doc) => ({
_id: doc._id,
projectId: doc.projectId,
name: doc.name,
description: doc.description,
createdAt: doc.createdAt,
updatedAt: doc.updatedAt,
}));
res.status(200).json({ projects });
} catch (error) {
console.error('Error retrieving projects:', error);
res.status(500).json({ error: 'Failed to retrieve projects', details: error.message });
}
});
app.post('/api/projects', async (req, res) => {
const { name, description, uid } = req.body;
if (!uid) {
return res.status(400).json({ message: 'Missing uid' });
}
if (!name || name.trim() === '') {
return res.status(400).json({ message: 'Project name is required' });
}
try {
const fileTrees = db.collection('fileTrees');
const projectId = uuidv4();
const defaultFileTree = {
id: 'root',
type: 'folder',
name: 'welcome',
children: [
{
id: `file-${uuidv4()}`,
type: 'file',
name: 'index.js',
content: '// Welcome to your new project!\nconsole.log("Hello, World!");',
language: 'javascript',
},
],
};
const newProject = {
_id: new ObjectId(),
projectId,
name: name.trim(),
description: description?.trim() || '',
uid,
createdAt: new Date(),
updatedAt: new Date(),
fileTree: defaultFileTree,
};
const result = await fileTrees.insertOne(newProject);
console.log(`Created project: projectId=${projectId}`);
const createdProject = {
_id: result.insertedId,
projectId,
name: newProject.name,
description: newProject.description,
createdAt: newProject.createdAt,
updatedAt: newProject.updatedAt,
};
res.status(201).json({
message: 'Project created successfully',
project: createdProject,
});
} catch (error) {
console.error('Error creating project:', error);
res.status(500).json({ error: 'Failed to create project', details: error.message });
}
});
app.put('/api/projects/:projectId', async (req, res) => {
const { projectId } = req.params;
const { name, description, uid } = req.body;
if (!uid) {
return res.status(400).json({ message: 'Missing uid' });
}
try {
const fileTrees = db.collection('fileTrees');
const updateData = { updatedAt: new Date() };
if (name !== undefined) updateData.name = name.trim();
if (description !== undefined) updateData.description = description.trim();
const result = await fileTrees.updateOne(
{ projectId, uid },
{ $set: updateData }
);
if (result.matchedCount === 0) {
return res.status(404).json({ message: 'Project not found' });
}
console.log(`Updated project: projectId=${projectId}`);
res.status(200).json({ message: 'Project updated successfully' });
} catch (error) {
console.error('Error updating project:', error);
res.status(500).json({ error: 'Failed to update project', details: error.message });
}
});
app.delete('/api/projects/:projectId', async (req, res) => {
const { projectId } = req.params;
const { uid } = req.query;
if (!uid) {
return res.status(400).json({ message: 'Missing uid' });
}
try {
const fileTrees = db.collection('fileTrees');
console.log(`Attempting to delete project: projectId=${projectId}, uid=${uid}`);
const query = { projectId: String(projectId), uid: String(uid) };
console.log('Delete query:', query);
const project = await fileTrees.findOne(query);
if (!project) {
console.log(`No project found for projectId=${projectId}, uid=${uid}`);
return res.status(404).json({ message: 'Project not found' });
}
const result = await fileTrees.deleteOne(query);
console.log(`Delete result: matchedCount=${result.matchedCount}, deletedCount=${result.deletedCount}`);
if (result.deletedCount === 0) {
console.log(`No project deleted for projectId=${projectId}, uid=${uid}`);
return res.status(404).json({ message: 'Project not found' });
}
console.log(`Deleted project: projectId=${projectId}`);
res.status(200).json({ message: 'Project deleted successfully' });
} catch (error) {
console.error('Error deleting project:', error);
res.status(500).json({ error: 'Failed to delete project', details: error.message });
}
});
app.get('/api/projects/:projectId/download', async (req, res) => {
try {
const { projectId } = req.params;
const { uid } = req.query;
console.log(`Download request - ProjectID: ${projectId}, UID: ${uid}`);
if (!projectId || !uid) {
return res.status(400).json({
message: 'Missing required parameters: projectId and uid'
});
}
const fileTrees = db.collection('fileTrees');
const project = await fileTrees.findOne({
projectId: projectId,
uid: uid
});
if (!project) {
console.log(`Project not found - ProjectID: ${projectId}, UID: ${uid}`);
return res.status(404).json({
message: 'Project not found or you do not have permission to access it'
});
}
console.log(`Project found: ${project.name}`);
if (!project.fileTree || !project.fileTree.children) {
console.log('No files found in project');
return res.status(404).json({
message: 'No files found in this project'
});
}
const zip = new JSZip();
function addToZip(node, currentPath = '') {
if (node.type === 'file') {
const filePath = currentPath ? `${currentPath}/${node.name}` : node.name;
const content = node.content || '';
console.log(`Adding file: ${filePath}`);
zip.file(filePath, content);
} else if (node.type === 'folder' && node.children) {
const folderPath = currentPath ? `${currentPath}/${node.name}` : node.name;
console.log(`Processing folder: ${folderPath}`);
node.children.forEach(child => {
addToZip(child, folderPath);
});
if (node.children.length === 0) {
zip.folder(folderPath);
}
}
}
if (project.fileTree.children && project.fileTree.children.length > 0) {
project.fileTree.children.forEach(child => {
addToZip(child);
});
} else {
return res.status(404).json({
message: 'No files found in this project'
});
}
console.log('Generating ZIP file...');
const zipBuffer = await zip.generateAsync({
type: 'nodebuffer',
compression: 'DEFLATE',
compressionOptions: { level: 6 }
});
const sanitizedName = project.name.replace(/[^\w\s-]/g, '').replace(/\s+/g, '_');
const filename = `${sanitizedName}_project.zip`;
console.log(`Sending ZIP file: ${filename} (${zipBuffer.length} bytes)`);
res.set({
'Content-Type': 'application/zip',
'Content-Disposition': `attachment; filename="${filename}"`,
'Content-Length': zipBuffer.length
});
res.send(zipBuffer);
} catch (error) {
console.error('Error creating project download:', error);
res.status(500).json({
message: 'Failed to create project download',
error: process.env.NODE_ENV === 'development' ? error.message : undefined
});
}
});
app.post('/api/saveFile', async (req, res) => {
const { fileId, content, language, uid, projectId } = req.body;
if (!uid || !projectId || !fileId) {
return res.status(400).json({ message: 'Missing uid, projectId, or fileId' });
}
try {
const fileTrees = db.collection('fileTrees');
const project = await fileTrees.findOne({ projectId, uid });
if (!project) {
console.error(`Project not found: projectId=${projectId}, uid=${uid}`);
return res.status(404).json({ message: 'Project not found' });
}
const updatedFileTree = updateFileInTree(project.fileTree, fileId, content, language);
console.log(`Updated fileTree for projectId=${projectId}, fileId=${fileId}`);
const result = await fileTrees.updateOne(
{ projectId, uid },
{ $set: { fileTree: updatedFileTree, updatedAt: new Date() } }
);
if (result.matchedCount === 0) {
console.error(`No project matched for update: projectId=${projectId}, uid=${uid}`);
return res.status(404).json({ message: 'Project not found' });
}
res.status(200).json({ message: 'File saved successfully' });
} catch (error) {
console.error('Error saving file:', error);
res.status(500).json({ error: 'Failed to save file', details: error.message });
}
});
app.get('/api/getFileTree', async (req, res) => {
const { uid, projectId } = req.query;
console.log(`GET /api/getFileTree: uid=${uid}, projectId=${projectId}`);
if (!uid || !projectId) {
return res.status(400).json({ message: 'Missing uid or projectId' });
}
try {
const fileTrees = db.collection('fileTrees');
const project = await fileTrees.findOne({ uid, projectId });
if (!project) {
console.error(`No project found: uid=${uid}, projectId=${projectId}`);
return res.status(404).json({ message: 'No file tree found for this user and project' });
}
res.status(200).json(project.fileTree);
} catch (error) {
console.error('Error retrieving file tree:', error);
res.status(500).json({ error: 'Failed to retrieve file tree', details: error.message });
}
});
app.post('/api/saveFileTree', async (req, res) => {
const { fileTree, uid, projectId } = req.body;
if (!fileTree || !uid || !projectId) {
return res.status(400).json({ message: 'Missing required fields: fileTree, uid, or projectId' });
}
try {
const fileTrees = db.collection('fileTrees');
const result = await fileTrees.updateOne(
{ uid, projectId },
{ $set: { fileTree, updatedAt: new Date() } },
{ upsert: false }
);
if (result.matchedCount === 0) {
console.error(`No project matched for file tree update: projectId=${projectId}, uid=${uid}`);
return res.status(404).json({ message: 'Project not found' });
}
console.log(`Saved fileTree for projectId=${projectId}`);
res.status(200).json({ message: 'File tree saved successfully' });
} catch (error) {
console.error('Error saving file tree:', error);
res.status(500).json({ error: 'Failed to save file tree', details: error.message });
}
});
connectToMongoDB().then(() => {
app.listen(port, () => {
console.log(`Server running at http://localhost:${port}`);
});
});