2018-01-06 12:54:02 +08:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const express = require('express');
|
|
|
|
const router = express.Router();
|
|
|
|
const sql = require('../../services/sql');
|
|
|
|
const auth = require('../../services/auth');
|
|
|
|
const utils = require('../../services/utils');
|
|
|
|
const multer = require('multer')();
|
2018-01-07 01:38:25 +08:00
|
|
|
const imagemin = require('imagemin');
|
|
|
|
const imageminMozJpeg = require('imagemin-mozjpeg');
|
2018-01-07 02:53:02 +08:00
|
|
|
const imageminPngQuant = require('imagemin-pngquant');
|
2018-01-07 01:38:25 +08:00
|
|
|
const jimp = require('jimp');
|
2018-01-06 12:54:02 +08:00
|
|
|
|
|
|
|
router.get('/:imageId/:filename', auth.checkApiAuth, async (req, res, next) => {
|
|
|
|
const image = await sql.getFirst("SELECT * FROM images WHERE image_id = ?", [req.params.imageId]);
|
|
|
|
|
|
|
|
if (!image) {
|
|
|
|
return res.status(404).send({});
|
|
|
|
}
|
|
|
|
|
|
|
|
res.set('Content-Type', 'image/' + image.format);
|
|
|
|
|
|
|
|
res.send(image.data);
|
|
|
|
});
|
|
|
|
|
|
|
|
router.post('/upload', auth.checkApiAuth, multer.single('upload'), async (req, res, next) => {
|
|
|
|
const file = req.file;
|
|
|
|
|
|
|
|
const imageId = utils.newNoteId();
|
|
|
|
|
|
|
|
if (!file.mimetype.startsWith("image/")) {
|
|
|
|
return req.send("Unknown image type: " + file.mimetype);
|
|
|
|
}
|
|
|
|
|
|
|
|
const now = utils.nowDate();
|
|
|
|
|
2018-01-07 01:38:25 +08:00
|
|
|
const resizedImage = await resize(file.buffer);
|
|
|
|
const optimizedImage = await optimize(resizedImage);
|
|
|
|
|
2018-01-06 12:54:02 +08:00
|
|
|
await sql.insert("images", {
|
|
|
|
image_id: imageId,
|
|
|
|
format: file.mimetype.substr(6),
|
|
|
|
name: file.originalname,
|
2018-01-07 01:38:25 +08:00
|
|
|
checksum: utils.hash(optimizedImage),
|
|
|
|
data: optimizedImage,
|
2018-01-06 12:54:02 +08:00
|
|
|
is_deleted: 0,
|
|
|
|
date_modified: now,
|
|
|
|
date_created: now
|
|
|
|
});
|
|
|
|
|
|
|
|
res.send({
|
|
|
|
uploaded: true,
|
|
|
|
url: `/api/image/${imageId}/${file.originalname}`
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-01-07 01:38:25 +08:00
|
|
|
const MAX_SIZE = 1000;
|
2018-01-07 02:53:02 +08:00
|
|
|
const MAX_BYTE_SIZE = 200000; // images should have under 100 KBs
|
2018-01-07 01:38:25 +08:00
|
|
|
|
|
|
|
async function resize(buffer) {
|
|
|
|
const image = await jimp.read(buffer);
|
|
|
|
|
2018-01-07 02:53:02 +08:00
|
|
|
console.log("Size: ", buffer.byteLength);
|
|
|
|
|
2018-01-07 01:38:25 +08:00
|
|
|
if (image.bitmap.width > image.bitmap.height && image.bitmap.width > MAX_SIZE) {
|
|
|
|
image.resize(MAX_SIZE, jimp.AUTO);
|
|
|
|
}
|
|
|
|
else if (image.bitmap.height > MAX_SIZE) {
|
|
|
|
image.resize(jimp.AUTO, MAX_SIZE);
|
|
|
|
}
|
2018-01-07 02:53:02 +08:00
|
|
|
else if (buffer.byteLength <= MAX_BYTE_SIZE) {
|
2018-01-07 01:38:25 +08:00
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we do resizing with max quality which will be trimmed during optimization step next
|
|
|
|
image.quality(100);
|
|
|
|
|
|
|
|
// getBuffer doesn't support promises so this workaround
|
|
|
|
return await new Promise((resolve, reject) => image.getBuffer(jimp.MIME_JPEG, (err, data) => {
|
|
|
|
if (err) {
|
|
|
|
reject(err);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
resolve(data);
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
async function optimize(buffer) {
|
|
|
|
return await imagemin.buffer(buffer, {
|
|
|
|
plugins: [
|
2018-01-07 02:53:02 +08:00
|
|
|
// imageminMozJpeg({
|
|
|
|
// quality: 50
|
|
|
|
// }),
|
|
|
|
imageminPngQuant({
|
|
|
|
quality: "0-70"
|
2018-01-07 01:38:25 +08:00
|
|
|
})
|
|
|
|
]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-01-06 12:54:02 +08:00
|
|
|
module.exports = router;
|