2016-06-23 22:29:55 +00:00
|
|
|
import Project from '../models/project';
|
2016-08-17 19:53:25 +00:00
|
|
|
import User from '../models/user';
|
2016-11-02 18:08:53 +00:00
|
|
|
import archiver from 'archiver';
|
|
|
|
import request from 'request';
|
|
|
|
|
2016-06-17 18:11:52 +00:00
|
|
|
|
|
|
|
export function createProject(req, res) {
|
2017-01-13 22:32:06 +00:00
|
|
|
if (!req.user) {
|
|
|
|
return res.status(403).send({ success: false, message: 'Session does not match owner of project.'});
|
|
|
|
}
|
|
|
|
|
2016-07-15 17:36:33 +00:00
|
|
|
let projectValues = {
|
2017-01-13 22:32:06 +00:00
|
|
|
user: req.user._id
|
2016-06-23 22:29:55 +00:00
|
|
|
};
|
2016-06-20 20:29:08 +00:00
|
|
|
|
2016-07-15 17:36:33 +00:00
|
|
|
projectValues = Object.assign(projectValues, req.body);
|
2016-06-23 22:29:55 +00:00
|
|
|
|
|
|
|
Project.create(projectValues, (err, newProject) => {
|
|
|
|
if (err) { return res.json({ success: false }); }
|
2016-07-15 15:54:47 +00:00
|
|
|
Project.populate(newProject,
|
2016-11-17 16:15:35 +00:00
|
|
|
{ path: 'user', select: 'username' },
|
2016-07-15 15:54:47 +00:00
|
|
|
(innerErr, newProjectWithUser) => {
|
|
|
|
if (innerErr) { return res.json({ success: false }); }
|
|
|
|
return res.json(newProjectWithUser);
|
2016-11-17 16:15:35 +00:00
|
|
|
});
|
2016-06-23 22:29:55 +00:00
|
|
|
});
|
2016-06-18 22:33:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function updateProject(req, res) {
|
2017-01-13 22:17:31 +00:00
|
|
|
Project.findById(req.params.project_id, (err, project) => {
|
|
|
|
if (!req.user || !project.user.equals(req.user._id)) {
|
|
|
|
return res.status(403).send({ success: false, message: 'Session does not match owner of project.'});
|
|
|
|
}
|
|
|
|
Project.findByIdAndUpdate(req.params.project_id,
|
|
|
|
{
|
|
|
|
$set: req.body
|
|
|
|
})
|
|
|
|
.populate('user', 'username')
|
|
|
|
.exec((err, updatedProject) => {
|
|
|
|
if (err) {
|
|
|
|
console.log(err);
|
|
|
|
return res.json({ success: false });
|
|
|
|
}
|
|
|
|
if (updatedProject.files.length !== req.body.files.length) {
|
|
|
|
const oldFileIds = updatedProject.files.map(file => file.id);
|
|
|
|
const newFileIds = req.body.files.map(file => file.id);
|
|
|
|
const staleIds = oldFileIds.filter(id => newFileIds.indexOf(id) === -1);
|
|
|
|
staleIds.forEach(staleId => {
|
|
|
|
updatedProject.files.id(staleId).remove();
|
|
|
|
});
|
|
|
|
updatedProject.save((innerErr) => {
|
|
|
|
if (innerErr) {
|
|
|
|
console.log(innerErr);
|
|
|
|
return res.json({ success: false });
|
|
|
|
}
|
|
|
|
return res.json(updatedProject);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return res.json(updatedProject);
|
|
|
|
});
|
|
|
|
});
|
2016-06-18 22:33:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function getProject(req, res) {
|
2016-07-15 15:54:47 +00:00
|
|
|
Project.findById(req.params.project_id)
|
|
|
|
.populate('user', 'username')
|
|
|
|
.exec((err, project) => {
|
|
|
|
if (err) {
|
|
|
|
return res.status(404).send({ message: 'Project with that id does not exist' });
|
|
|
|
}
|
|
|
|
return res.json(project);
|
|
|
|
});
|
2016-06-23 22:29:55 +00:00
|
|
|
}
|
2016-07-01 15:30:40 +00:00
|
|
|
|
2016-10-12 18:24:53 +00:00
|
|
|
export function deleteProject(req, res) {
|
2017-01-13 22:17:31 +00:00
|
|
|
Project.findById(req.params.project_id, (err, project) => {
|
|
|
|
if (!req.user || !project.user.equals(req.user._id)) {
|
|
|
|
return res.status(403).json({ success: false, message: 'Session does not match owner of project.'});
|
2016-10-12 18:24:53 +00:00
|
|
|
}
|
2017-01-13 22:17:31 +00:00
|
|
|
Project.remove({ _id: req.params.project_id }, (err) => {
|
|
|
|
if (err) {
|
|
|
|
return res.status(404).send({ message: 'Project with that id does not exist' });
|
|
|
|
}
|
|
|
|
return res.json({ success: true });
|
|
|
|
});
|
2016-10-12 18:24:53 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-07-01 15:30:40 +00:00
|
|
|
export function getProjects(req, res) {
|
|
|
|
if (req.user) {
|
2016-11-17 16:15:35 +00:00
|
|
|
Project.find({ user: req.user._id }) // eslint-disable-line no-underscore-dangle
|
2016-07-01 15:30:40 +00:00
|
|
|
.sort('-createdAt')
|
2016-08-09 22:45:59 +00:00
|
|
|
.select('name files id createdAt updatedAt')
|
2016-07-01 15:30:40 +00:00
|
|
|
.exec((err, projects) => {
|
|
|
|
res.json(projects);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// could just move this to client side
|
|
|
|
return res.json([]);
|
|
|
|
}
|
|
|
|
}
|
2016-08-17 19:53:25 +00:00
|
|
|
|
|
|
|
export function getProjectsForUser(req, res) {
|
|
|
|
if (req.params.username) {
|
|
|
|
User.findOne({ username: req.params.username }, (err, user) => {
|
2017-01-06 18:08:03 +00:00
|
|
|
if (!user) {
|
|
|
|
return res.status(404).json({ message: 'User with that username does not exist.' });
|
|
|
|
} else {
|
|
|
|
Project.find({ user: user._id }) // eslint-disable-line no-underscore-dangle
|
|
|
|
.sort('-createdAt')
|
|
|
|
.select('name files id createdAt updatedAt')
|
|
|
|
.exec((err, projects) => res.json(projects));
|
|
|
|
}
|
|
|
|
return null;
|
2016-08-17 19:53:25 +00:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// could just move this to client side
|
|
|
|
return res.json([]);
|
|
|
|
}
|
2017-01-06 18:08:03 +00:00
|
|
|
return null;
|
2016-08-17 19:53:25 +00:00
|
|
|
}
|
2016-11-02 18:08:53 +00:00
|
|
|
|
|
|
|
function buildZip(project, req, res) {
|
|
|
|
const zip = archiver('zip');
|
|
|
|
const rootFile = project.files.find(file => file.name === 'root');
|
|
|
|
const numFiles = project.files.filter(file => file.fileType !== 'folder').length;
|
|
|
|
const files = project.files;
|
|
|
|
const projectName = project.name;
|
|
|
|
let numCompletedFiles = 0;
|
|
|
|
|
2016-11-17 16:15:35 +00:00
|
|
|
zip.on('error', function (err) {
|
|
|
|
res.status(500).send({ error: err.message });
|
2016-11-02 18:08:53 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
res.attachment(`${project.name}.zip`);
|
|
|
|
zip.pipe(res);
|
|
|
|
|
|
|
|
function addFileToZip(file, path) {
|
|
|
|
if (file.fileType === 'folder') {
|
|
|
|
const newPath = file.name === 'root' ? path : `${path}${file.name}/`;
|
|
|
|
file.children.forEach(fileId => {
|
|
|
|
const childFile = files.find(f => f.id === fileId);
|
|
|
|
(() => {
|
|
|
|
addFileToZip(childFile, newPath);
|
|
|
|
})();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
if (file.url) {
|
|
|
|
request({ method: 'GET', url: file.url, encoding: null }, (err, response, body) => {
|
|
|
|
zip.append(body, { name: `${path}${file.name}` });
|
|
|
|
numCompletedFiles += 1;
|
|
|
|
if (numCompletedFiles === numFiles) {
|
|
|
|
zip.finalize();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
zip.append(file.content, { name: `${path}${file.name}` });
|
|
|
|
numCompletedFiles += 1;
|
|
|
|
if (numCompletedFiles === numFiles) {
|
|
|
|
zip.finalize();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
addFileToZip(rootFile, '/');
|
|
|
|
}
|
|
|
|
|
|
|
|
export function downloadProjectAsZip(req, res) {
|
|
|
|
Project.findById(req.params.project_id, (err, project) => {
|
2016-11-17 16:15:35 +00:00
|
|
|
// save project to some path
|
2016-11-02 18:08:53 +00:00
|
|
|
buildZip(project, req, res);
|
|
|
|
});
|
|
|
|
}
|