2018-02-14 23:31:20 -05:00
|
|
|
"use strict";
|
|
|
|
|
2018-04-01 21:27:46 -04:00
|
|
|
const noteService = require('../../services/notes');
|
|
|
|
const protectedSessionService = require('../../services/protected_session');
|
2018-04-01 11:42:12 -04:00
|
|
|
const repository = require('../../services/repository');
|
2019-01-13 10:22:17 +01:00
|
|
|
const utils = require('../../services/utils');
|
2019-11-09 11:58:52 +01:00
|
|
|
const noteRevisionService = require('../../services/note_revisions');
|
2018-02-14 23:31:20 -05:00
|
|
|
|
2019-11-09 11:58:52 +01:00
|
|
|
async function updateFile(req) {
|
|
|
|
const {noteId} = req.params;
|
2018-02-14 23:31:20 -05:00
|
|
|
const file = req.file;
|
|
|
|
|
2019-11-09 11:58:52 +01:00
|
|
|
const note = await repository.getNote(noteId);
|
2018-02-14 23:31:20 -05:00
|
|
|
|
2019-11-09 11:58:52 +01:00
|
|
|
if (!note) {
|
|
|
|
return [404, `Note ${noteId} doesn't exist.`];
|
2018-02-14 23:31:20 -05:00
|
|
|
}
|
|
|
|
|
2019-11-09 11:58:52 +01:00
|
|
|
await noteRevisionService.createNoteRevision(note);
|
|
|
|
|
|
|
|
note.mime = file.mimetype.toLowerCase();
|
|
|
|
|
|
|
|
await note.setContent(file.buffer);
|
|
|
|
|
|
|
|
await note.setLabel('originalFileName', file.originalname);
|
|
|
|
|
|
|
|
await noteRevisionService.protectNoteRevisions(note);
|
2018-03-30 17:29:13 -04:00
|
|
|
|
|
|
|
return {
|
2019-11-09 11:58:52 +01:00
|
|
|
uploaded: true
|
2018-03-30 17:29:13 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-01-27 15:47:40 +01:00
|
|
|
async function downloadNoteFile(noteId, res) {
|
2018-04-01 11:42:12 -04:00
|
|
|
const note = await repository.getNote(noteId);
|
2018-02-18 21:28:24 -05:00
|
|
|
|
|
|
|
if (!note) {
|
2018-02-23 22:58:24 -05:00
|
|
|
return res.status(404).send(`Note ${noteId} doesn't exist.`);
|
|
|
|
}
|
|
|
|
|
2018-04-01 21:27:46 -04:00
|
|
|
if (note.isProtected && !protectedSessionService.isProtectedSessionAvailable()) {
|
2019-01-27 15:47:40 +01:00
|
|
|
return res.status(401).send("Protected session not available");
|
2018-02-18 21:28:24 -05:00
|
|
|
}
|
|
|
|
|
2019-11-09 08:53:13 +01:00
|
|
|
// (one) reason we're not using the originFileName (available as label) is that it's not
|
|
|
|
// available for older note revisions and thus would be inconsistent
|
|
|
|
res.setHeader('Content-Disposition', utils.getContentDisposition(note.title || "untitled"));
|
2018-02-18 21:28:24 -05:00
|
|
|
res.setHeader('Content-Type', note.mime);
|
|
|
|
|
2019-03-26 22:24:04 +01:00
|
|
|
res.send(await note.getContent());
|
2018-03-30 17:29:13 -04:00
|
|
|
}
|
2018-02-18 21:28:24 -05:00
|
|
|
|
2019-01-27 15:47:40 +01:00
|
|
|
async function downloadFile(req, res) {
|
|
|
|
const noteId = req.params.noteId;
|
|
|
|
|
|
|
|
return await downloadNoteFile(noteId, res);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-03-30 17:29:13 -04:00
|
|
|
module.exports = {
|
2019-11-09 11:58:52 +01:00
|
|
|
updateFile,
|
2019-01-27 15:47:40 +01:00
|
|
|
downloadFile,
|
|
|
|
downloadNoteFile
|
2018-03-30 17:29:13 -04:00
|
|
|
};
|