p5.js-web-editor/server/controllers/file.controller.js

59 lines
1.9 KiB
JavaScript
Raw Normal View History

2016-08-24 23:29:44 +02:00
import Project from '../models/project';
// Bug -> timestamps don't get created, but it seems like this will
// be fixed in mongoose soon
// https://github.com/Automattic/mongoose/issues/4049
export function createFile(req, res) {
Project.findByIdAndUpdate(req.params.project_id,
{
$push: {
'files': req.body
}
},
{
new: true
}, (err, updatedProject) => {
2016-08-24 23:29:44 +02:00
if (err) {
console.log(err);
return res.json({ success: false });
}
2016-08-24 01:40:47 +02:00
const newFile = updatedProject.files[updatedProject.files.length - 1];
2016-08-24 23:29:44 +02:00
updatedProject.files.id(req.body.parentId).children.push(newFile.id);
updatedProject.save(innerErr => {
if (innerErr) {
console.log(innerErr);
return res.json({ success: false });
}
return res.json(updatedProject.files[updatedProject.files.length - 1]);
});
// console.log(updatedProject.files);
// console.log(req.body.parentId);
// Project.findByIdAndUpdate(
// {"_id": req.params.project_id, "files._id": ObjectId(req.body.parentId)},
// {
// $push: {
// 'files.$.children': newFile._id
// }
// },
// {
// new: true
// }, (errAgain, updatedProjectAgain) => {
// if (errAgain) {
// console.log(errAgain);
// return res.json({ success: false });
// }
// return res.json(updatedProject.files[updatedProject.files.length - 1]);
// });
});
2016-08-24 23:59:15 +02:00
}
export function deleteFile(req, res) {
Project.findById(req.params.project_id, (err, project) => {
project.files.id(req.params.file_id).remove();
const childrenArray = project.files.id(req.query.parentId).children;
project.files.id(req.query.parentId).children = childrenArray.filter(id => id !== req.params.file_id);
project.save(innerErr => {
res.json(project.files);
})
});
}