Display PDF in shared notes (#2466)

* Add PDF rendering

* Cleanup
This commit is contained in:
Matt
2021-12-24 21:36:31 +00:00
committed by GitHub
parent a789025025
commit a08985e7a6
2 changed files with 27 additions and 2 deletions

View File

@@ -78,6 +78,26 @@ function register(router) {
res.send(note.getContent());
});
router.get('/share/api/notes/:noteId/view', (req, res, next) => {
const {noteId} = req.params;
const note = shaca.getNote(noteId);
if (!note) {
return res.status(404).send(`Not found`);
}
const utils = require("../services/utils");
const filename = utils.formatDownloadTitle(note.title, note.type, note.mime);
// res.setHeader('Content-Disposition', utils.getContentDisposition(filename));
res.setHeader("Cache-Control", "no-cache, no-store, must-revalidate");
res.setHeader('Content-Type', note.mime);
res.send(note.getContent());
});
}
module.exports = {