2016-05-26 02:17:42 +08:00
|
|
|
///<reference path="customtypings/jimp.d.ts"/>
|
2016-05-09 23:04:56 +08:00
|
|
|
import * as path from "path";
|
|
|
|
import * as Jimp from "jimp";
|
|
|
|
import * as crypto from "crypto";
|
|
|
|
import * as fs from "fs";
|
2016-03-30 03:46:44 +08:00
|
|
|
import {NextFunction, Request, Response} from "express";
|
|
|
|
import {Error, ErrorCodes} from "../../common/entities/Error";
|
2016-05-09 23:04:56 +08:00
|
|
|
import {Config} from "../config/Config";
|
2016-06-22 22:34:44 +08:00
|
|
|
import {ContentWrapper} from "../../common/entities/ConentWrapper";
|
2016-12-28 03:55:51 +08:00
|
|
|
import {DirectoryDTO} from "../../common/entities/DirectoryDTO";
|
2016-06-22 22:34:44 +08:00
|
|
|
import {ProjectPath} from "../ProjectPath";
|
2016-12-28 03:55:51 +08:00
|
|
|
import {PhotoDTO} from "../../common/entities/PhotoDTO";
|
2016-03-30 03:57:41 +08:00
|
|
|
|
|
|
|
|
2016-03-30 03:46:44 +08:00
|
|
|
export class ThumbnailGeneratorMWs {
|
|
|
|
|
2016-06-22 22:34:44 +08:00
|
|
|
|
2016-12-28 03:55:51 +08:00
|
|
|
private static addThInfoTODir(directory: DirectoryDTO) {
|
|
|
|
if (typeof directory.photos == "undefined") {
|
|
|
|
directory.photos = [];
|
|
|
|
}
|
|
|
|
if (typeof directory.directories == "undefined") {
|
|
|
|
directory.directories = [];
|
|
|
|
}
|
2016-06-22 22:34:44 +08:00
|
|
|
ThumbnailGeneratorMWs.addThInfoToPhotos(directory.photos);
|
|
|
|
|
|
|
|
for (let i = 0; i < directory.directories.length; i++) {
|
|
|
|
ThumbnailGeneratorMWs.addThInfoTODir(directory.directories[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-12-28 03:55:51 +08:00
|
|
|
private static addThInfoToPhotos(photos: Array<PhotoDTO>) {
|
2016-06-22 22:34:44 +08:00
|
|
|
let thumbnailFolder = ProjectPath.ThumbnailFolder;
|
|
|
|
for (let j = 0; j < Config.Client.thumbnailSizes.length; j++) {
|
|
|
|
let size = Config.Client.thumbnailSizes[j];
|
|
|
|
for (let i = 0; i < photos.length; i++) {
|
|
|
|
let fullImagePath = path.join(ProjectPath.ImageFolder, photos[i].directory.path, photos[i].directory.name, photos[i].name);
|
|
|
|
let thPath = path.join(thumbnailFolder, ThumbnailGeneratorMWs.generateThumbnailName(fullImagePath, size));
|
|
|
|
if (fs.existsSync(thPath) === true) {
|
2016-12-28 03:55:51 +08:00
|
|
|
if (typeof photos[i].readyThumbnails == "undefined") {
|
|
|
|
photos[i].readyThumbnails = [];
|
|
|
|
}
|
2016-06-22 22:34:44 +08:00
|
|
|
photos[i].readyThumbnails.push(size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-28 03:55:51 +08:00
|
|
|
public static addThumbnailInformation(req: Request, res: Response, next: NextFunction) {
|
2016-06-22 22:34:44 +08:00
|
|
|
if (!req.resultPipe)
|
|
|
|
return next();
|
|
|
|
|
2016-12-28 03:55:51 +08:00
|
|
|
let cw: ContentWrapper = req.resultPipe;
|
2016-06-22 22:34:44 +08:00
|
|
|
if (cw.directory) {
|
|
|
|
ThumbnailGeneratorMWs.addThInfoTODir(cw.directory);
|
|
|
|
}
|
|
|
|
if (cw.searchResult) {
|
|
|
|
ThumbnailGeneratorMWs.addThInfoToPhotos(cw.searchResult.photos);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return next();
|
2016-12-28 03:55:51 +08:00
|
|
|
|
2016-04-10 05:09:28 +08:00
|
|
|
}
|
2016-05-09 23:04:56 +08:00
|
|
|
|
2016-12-28 03:55:51 +08:00
|
|
|
public static generateThumbnail(req: Request, res: Response, next: NextFunction) {
|
2016-05-09 23:04:56 +08:00
|
|
|
if (!req.resultPipe)
|
2016-03-30 03:46:44 +08:00
|
|
|
return next();
|
|
|
|
|
2016-05-12 17:00:46 +08:00
|
|
|
//load parameters
|
2016-03-30 03:46:44 +08:00
|
|
|
let imagePath = req.resultPipe;
|
2016-12-28 03:55:51 +08:00
|
|
|
let size: number = parseInt(req.params.size) || Config.Client.thumbnailSizes[0];
|
2016-04-10 05:09:28 +08:00
|
|
|
|
2016-05-12 17:00:46 +08:00
|
|
|
//validate size
|
|
|
|
if (Config.Client.thumbnailSizes.indexOf(size) === -1) {
|
|
|
|
size = Config.Client.thumbnailSizes[0];
|
2016-04-10 05:09:28 +08:00
|
|
|
}
|
2016-03-30 03:46:44 +08:00
|
|
|
|
2016-05-12 17:00:46 +08:00
|
|
|
//generate thumbnail path
|
2016-06-22 22:34:44 +08:00
|
|
|
let thPath = path.join(ProjectPath.ThumbnailFolder, ThumbnailGeneratorMWs.generateThumbnailName(imagePath, size));
|
2016-05-09 23:04:56 +08:00
|
|
|
|
2016-03-30 03:46:44 +08:00
|
|
|
|
|
|
|
req.resultPipe = thPath;
|
|
|
|
|
2016-05-12 17:00:46 +08:00
|
|
|
//check if thumbnail already exist
|
2016-05-09 23:04:56 +08:00
|
|
|
if (fs.existsSync(thPath) === true) {
|
2016-03-30 03:46:44 +08:00
|
|
|
return next();
|
|
|
|
}
|
2016-05-09 23:04:56 +08:00
|
|
|
|
2016-05-12 17:00:46 +08:00
|
|
|
//create thumbnail folder if not exist
|
2016-06-22 22:34:44 +08:00
|
|
|
if (!fs.existsSync(ProjectPath.ThumbnailFolder)) {
|
|
|
|
fs.mkdirSync(ProjectPath.ThumbnailFolder);
|
2016-03-30 04:09:02 +08:00
|
|
|
}
|
|
|
|
|
2016-05-12 17:00:46 +08:00
|
|
|
//generate thumbnail
|
2016-05-09 23:04:56 +08:00
|
|
|
Jimp.read(imagePath).then((image) => {
|
2016-05-12 17:00:46 +08:00
|
|
|
/**
|
|
|
|
* newWidth * newHeight = size*size
|
|
|
|
* newHeight/newWidth = height/width
|
|
|
|
*
|
|
|
|
* newHeight = (height/width)*newWidth
|
|
|
|
* newWidth * newWidth = (size*size) / (height/width)
|
|
|
|
*
|
|
|
|
* @type {number}
|
|
|
|
*/
|
|
|
|
let ratio = image.bitmap.height / image.bitmap.width;
|
|
|
|
let newWidth = Math.sqrt((size * size) / ratio);
|
|
|
|
|
|
|
|
image.resize(newWidth, Jimp.AUTO, Jimp.RESIZE_BEZIER);
|
2016-03-30 03:46:44 +08:00
|
|
|
|
|
|
|
image.quality(60); // set JPEG quality
|
2016-05-09 23:04:56 +08:00
|
|
|
image.write(thPath, () => { // save
|
2016-03-30 03:46:44 +08:00
|
|
|
return next();
|
2016-05-09 23:04:56 +08:00
|
|
|
});
|
2016-03-30 03:46:44 +08:00
|
|
|
}).catch(function (err) {
|
2016-05-09 23:04:56 +08:00
|
|
|
return next(new Error(ErrorCodes.GENERAL_ERROR));
|
2016-03-30 03:46:44 +08:00
|
|
|
});
|
2016-05-12 17:00:46 +08:00
|
|
|
|
2016-03-30 03:46:44 +08:00
|
|
|
}
|
|
|
|
|
2016-12-28 03:55:51 +08:00
|
|
|
private static generateThumbnailName(imagePath: string, size: number): string {
|
2016-05-09 23:04:56 +08:00
|
|
|
return crypto.createHash('md5').update(imagePath).digest('hex') + "_" + size + ".jpg";
|
2016-03-30 03:46:44 +08:00
|
|
|
}
|
|
|
|
}
|