mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
104 lines
3.0 KiB
JavaScript
104 lines
3.0 KiB
JavaScript
"use strict";
|
|
|
|
const imageService = require('../../services/image');
|
|
const becca = require('../../becca/becca');
|
|
const RESOURCE_DIR = require('../../services/resource_dir').RESOURCE_DIR;
|
|
const fs = require('fs');
|
|
const ValidationError = require("../../errors/validation_error");
|
|
|
|
function returnImage(req, res) {
|
|
const image = becca.getNote(req.params.noteId);
|
|
|
|
if (!image) {
|
|
res.set('Content-Type', 'image/png');
|
|
return res.send(fs.readFileSync(`${RESOURCE_DIR}/db/image-deleted.png`));
|
|
}
|
|
else if (!["image", "canvas"].includes(image.type)){
|
|
return res.sendStatus(400);
|
|
}
|
|
|
|
/**
|
|
* special "image" type. the canvas is actually type application/json
|
|
* to avoid bitrot and enable usage as referenced image the svg is included.
|
|
*/
|
|
if (image.type === 'canvas') {
|
|
const content = image.getContent();
|
|
try {
|
|
const data = JSON.parse(content);
|
|
|
|
const svg = data.svg || '<svg />'
|
|
res.set('Content-Type', "image/svg+xml");
|
|
res.set("Cache-Control", "no-cache, no-store, must-revalidate");
|
|
res.send(svg);
|
|
} catch(err) {
|
|
res.setHeader("Content-Type", "text/plain")
|
|
.status(500)
|
|
.send("there was an error parsing excalidraw to svg");
|
|
}
|
|
} else {
|
|
res.set('Content-Type', image.mime);
|
|
res.set("Cache-Control", "no-cache, no-store, must-revalidate");
|
|
res.send(image.getContent());
|
|
}
|
|
}
|
|
|
|
function returnAttachedImage(req, res) {
|
|
const attachment = becca.getAttachment(req.params.attachmentId);
|
|
|
|
if (!attachment) {
|
|
res.set('Content-Type', 'image/png');
|
|
return res.send(fs.readFileSync(`${RESOURCE_DIR}/db/image-deleted.png`));
|
|
}
|
|
|
|
if (!["image"].includes(attachment.role)) {
|
|
return res.sendStatus(400);
|
|
}
|
|
|
|
res.set('Content-Type', attachment.mime);
|
|
res.set("Cache-Control", "no-cache, no-store, must-revalidate");
|
|
res.send(attachment.getContent());
|
|
}
|
|
|
|
function uploadImage(req) {
|
|
const {noteId} = req.query;
|
|
const {file} = req;
|
|
|
|
const note = becca.getNoteOrThrow(noteId);
|
|
|
|
if (!["image/png", "image/jpg", "image/jpeg", "image/gif", "image/webp", "image/svg+xml"].includes(file.mimetype)) {
|
|
throw new ValidationError(`Unknown image type '${file.mimetype}'`);
|
|
}
|
|
|
|
const {url} = imageService.saveImageToAttachment(noteId, file.buffer, file.originalname, true, true);
|
|
|
|
return {
|
|
uploaded: true,
|
|
url
|
|
};
|
|
}
|
|
|
|
function updateImage(req) {
|
|
const {noteId} = req.params;
|
|
const {file} = req;
|
|
|
|
const note = becca.getNoteOrThrow(noteId);
|
|
|
|
if (!["image/png", "image/jpeg", "image/gif", "image/webp", "image/svg+xml"].includes(file.mimetype)) {
|
|
return {
|
|
uploaded: false,
|
|
message: `Unknown image type: ${file.mimetype}`
|
|
};
|
|
}
|
|
|
|
imageService.updateImage(noteId, file.buffer, file.originalname);
|
|
|
|
return { uploaded: true };
|
|
}
|
|
|
|
module.exports = {
|
|
returnImage,
|
|
returnAttachedImage,
|
|
uploadImage,
|
|
updateImage
|
|
};
|