Notes/src/routes/api/files.js

102 lines
2.4 KiB
JavaScript
Raw Normal View History

2018-02-14 23:31:20 -05:00
"use strict";
const protectedSessionService = require('../../services/protected_session');
2018-04-01 11:42:12 -04:00
const repository = require('../../services/repository');
const utils = require('../../services/utils');
2019-11-09 11:58:52 +01:00
const noteRevisionService = require('../../services/note_revisions');
const tmp = require('tmp');
const fs = require('fs');
2018-02-14 23:31:20 -05:00
2020-06-20 12:31:38 +02:00
function updateFile(req) {
2019-11-09 11:58:52 +01:00
const {noteId} = req.params;
2018-02-14 23:31:20 -05:00
const file = req.file;
2020-06-20 12:31:38 +02:00
const note = 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
}
2020-06-20 12:31:38 +02:00
noteRevisionService.createNoteRevision(note);
2019-11-09 11:58:52 +01:00
note.mime = file.mimetype.toLowerCase();
note.save();
2019-11-09 11:58:52 +01:00
2020-06-20 12:31:38 +02:00
note.setContent(file.buffer);
2019-11-09 11:58:52 +01:00
2020-06-20 12:31:38 +02:00
note.setLabel('originalFileName', file.originalname);
2019-11-09 11:58:52 +01:00
2020-06-20 12:31:38 +02:00
noteRevisionService.protectNoteRevisions(note);
return {
2019-11-09 11:58:52 +01:00
uploaded: true
};
}
function getFilename(note) {
// (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
return utils.formatDownloadTitle(note.title, note.type, note.mime);
}
2020-06-20 12:31:38 +02:00
function downloadNoteFile(noteId, res, contentDisposition = true) {
const note = repository.getNote(noteId);
if (!note) {
return res.status(404).send(`Note ${noteId} doesn't exist.`);
}
if (note.isProtected && !protectedSessionService.isProtectedSessionAvailable()) {
2019-01-27 15:47:40 +01:00
return res.status(401).send("Protected session not available");
}
if (contentDisposition) {
const filename = getFilename(note);
res.setHeader('Content-Disposition', utils.getContentDisposition(filename));
}
res.setHeader('Content-Type', note.mime);
2020-06-20 12:31:38 +02:00
res.send(note.getContent());
}
2020-06-20 12:31:38 +02:00
function downloadFile(req, res) {
2019-01-27 15:47:40 +01:00
const noteId = req.params.noteId;
2020-06-20 12:31:38 +02:00
return downloadNoteFile(noteId, res);
}
2020-06-20 12:31:38 +02:00
function openFile(req, res) {
const noteId = req.params.noteId;
2019-01-27 15:47:40 +01:00
2020-06-20 12:31:38 +02:00
return downloadNoteFile(noteId, res, false);
2019-01-27 15:47:40 +01:00
}
function saveToTmpDir(req) {
const noteId = req.params.noteId;
const note = repository.getNote(noteId);
if (!note) {
return [404,`Note ${noteId} doesn't exist.`];
}
const tmpObj = tmp.fileSync({postfix: getFilename(note)});
fs.writeSync(tmpObj.fd, note.getContent());
fs.closeSync(tmpObj.fd);
return {
tmpFilePath: tmpObj.name
};
}
module.exports = {
2019-11-09 11:58:52 +01:00
updateFile,
openFile,
2019-01-27 15:47:40 +01:00
downloadFile,
downloadNoteFile,
saveToTmpDir
};