All files / server/controllers/project.controller deleteProject.js

68.18% Statements 15/22
38.46% Branches 5/13
75% Functions 6/8
68.18% Lines 15/22

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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          1x     1x                             2x       1x       3x 1x 1x     2x 1x 1x     1x   1x 1x         1x       3x        
import isBefore from 'date-fns/is_before';
import Project from '../../models/project';
import { deleteObjectsFromS3, getObjectKey } from '../aws.controller';
import createApplicationErrorClass from '../../utils/createApplicationErrorClass';
 
const ProjectDeletionError = createApplicationErrorClass('ProjectDeletionError');
 
function deleteFilesFromS3(files) {
  deleteObjectsFromS3(files.filter((file) => {
    if (file.url) {
      if (!process.env.S3_DATE || (
        process.env.S3_DATE &&
        isBefore(new Date(process.env.S3_DATE), new Date(file.createdAt)))) {
        return true;
      }
    }
    return false;
  })
    .map(file => getObjectKey(file.url)));
}
 
export default function deleteProject(req, res) {
  function sendFailure(error) {
    res.status(error.code).json({ message: error.message });
  }
 
  function sendProjectNotFound() {
    sendFailure(new ProjectDeletionError('Project with that id does not exist', { code: 404 }));
  }
 
  function handleProjectDeletion(project) {
    if (project == null) {
      sendProjectNotFound();
      return;
    }
 
    if (!project.user.equals(req.user._id)) {
      sendFailure(new ProjectDeletionError('Authenticated user does not match owner of project', { code: 403 }));
      return;
    }
 
    deleteFilesFromS3(project.files);
 
    project.remove((removeProjectError) => {
      Iif (removeProjectError) {
        sendProjectNotFound();
        return;
      }
 
      res.status(200).end();
    });
  }
 
  return Project.findById(req.params.project_id)
    .then(handleProjectDeletion)
    .catch(sendFailure);
}