mirror of
https://github.com/zadam/trilium.git
synced 2024-11-17 13:14:44 +08:00
138 lines
No EOL
4.3 KiB
JavaScript
138 lines
No EOL
4.3 KiB
JavaScript
"use strict";
|
|
|
|
const repository = require('./repository');
|
|
const log = require('./log');
|
|
const protectedSessionService = require('./protected_session');
|
|
const noteService = require('./notes');
|
|
const optionService = require('./options');
|
|
const imagemin = require('imagemin');
|
|
const imageminMozJpeg = require('imagemin-mozjpeg');
|
|
const imageminPngQuant = require('imagemin-pngquant');
|
|
const imageminGifLossy = require('imagemin-giflossy');
|
|
const jimp = require('jimp');
|
|
const imageType = require('image-type');
|
|
const sanitizeFilename = require('sanitize-filename');
|
|
const noteRevisionService = require('./note_revisions.js');
|
|
|
|
async function processImage(uploadBuffer, originalName, shrinkImageSwitch) {
|
|
const origImageFormat = imageType(uploadBuffer);
|
|
|
|
if (origImageFormat.ext === "webp") {
|
|
// JIMP does not support webp at the moment: https://github.com/oliver-moran/jimp/issues/144
|
|
shrinkImageSwitch = false;
|
|
}
|
|
|
|
const finalImageBuffer = shrinkImageSwitch ? await shrinkImage(uploadBuffer, originalName) : uploadBuffer;
|
|
|
|
const imageFormat = imageType(finalImageBuffer);
|
|
|
|
return {
|
|
buffer: finalImageBuffer,
|
|
imageFormat
|
|
};
|
|
}
|
|
|
|
async function updateImage(noteId, uploadBuffer, originalName) {
|
|
const {buffer, imageFormat} = await processImage(uploadBuffer, originalName, true);
|
|
|
|
const note = await repository.getNote(noteId);
|
|
|
|
await noteRevisionService.createNoteRevision(note);
|
|
|
|
note.mime = 'image/' + imageFormat.ext.toLowerCase();
|
|
|
|
await note.setContent(buffer);
|
|
|
|
await note.setLabel('originalFileName', originalName);
|
|
|
|
await noteRevisionService.protectNoteRevisions(note);
|
|
}
|
|
|
|
async function saveImage(parentNoteId, uploadBuffer, originalName, shrinkImageSwitch) {
|
|
const {buffer, imageFormat} = await processImage(uploadBuffer, originalName, shrinkImageSwitch);
|
|
|
|
const fileName = sanitizeFilename(originalName);
|
|
|
|
const parentNote = await repository.getNote(parentNoteId);
|
|
|
|
const {note} = await noteService.createNewNote({
|
|
parentNoteId,
|
|
title: fileName,
|
|
content: buffer,
|
|
type: 'image',
|
|
mime: 'image/' + imageFormat.ext.toLowerCase(),
|
|
isProtected: parentNote.isProtected && protectedSessionService.isProtectedSessionAvailable()
|
|
});
|
|
|
|
await note.addLabel('originalFileName', originalName);
|
|
|
|
return {
|
|
fileName,
|
|
note,
|
|
noteId: note.noteId,
|
|
url: `api/images/${note.noteId}/${fileName}`
|
|
};
|
|
}
|
|
|
|
async function shrinkImage(buffer, originalName) {
|
|
const resizedImage = await resize(buffer);
|
|
let finalImageBuffer;
|
|
|
|
try {
|
|
finalImageBuffer = await optimize(resizedImage);
|
|
} catch (e) {
|
|
log.error("Failed to optimize image '" + originalName + "'\nStack: " + e.stack);
|
|
finalImageBuffer = resizedImage;
|
|
}
|
|
|
|
// if resizing & shrinking did not help with size then save the original
|
|
// (can happen when e.g. resizing PNG into JPEG)
|
|
if (finalImageBuffer.byteLength >= buffer.byteLength) {
|
|
finalImageBuffer = buffer;
|
|
}
|
|
|
|
return finalImageBuffer;
|
|
}
|
|
|
|
async function resize(buffer) {
|
|
const imageMaxWidthHeight = await optionService.getOptionInt('imageMaxWidthHeight');
|
|
|
|
const image = await jimp.read(buffer);
|
|
|
|
if (image.bitmap.width > image.bitmap.height && image.bitmap.width > imageMaxWidthHeight) {
|
|
image.resize(imageMaxWidthHeight, jimp.AUTO);
|
|
}
|
|
else if (image.bitmap.height > imageMaxWidthHeight) {
|
|
image.resize(jimp.AUTO, imageMaxWidthHeight);
|
|
}
|
|
|
|
// we do resizing with max quality which will be trimmed during optimization step next
|
|
image.quality(100);
|
|
|
|
// when converting PNG to JPG we lose alpha channel, this is replaced by white to match Trilium white background
|
|
image.background(0xFFFFFFFF);
|
|
|
|
return image.getBufferAsync(jimp.MIME_JPEG);
|
|
}
|
|
|
|
async function optimize(buffer) {
|
|
return await imagemin.buffer(buffer, {
|
|
plugins: [
|
|
imageminMozJpeg({
|
|
quality: await optionService.getOptionInt('imageJpegQuality')
|
|
}),
|
|
imageminPngQuant({
|
|
quality: [0, 0.7]
|
|
}),
|
|
imageminGifLossy({
|
|
lossy: 80,
|
|
optimize: '3' // needs to be string
|
|
})
|
|
]
|
|
});
|
|
}
|
|
|
|
module.exports = {
|
|
saveImage,
|
|
updateImage
|
|
}; |