2018-08-30 19:30:36 +03:00
|
|
|
const Promise = require('bluebird');
|
|
|
|
const common = require('../common');
|
2018-11-12 20:52:36 +03:00
|
|
|
const fs = require('fs-extra');
|
2018-08-30 19:30:36 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @NOTE: Sharp cannot operate on the same image path, that's why we have to use in & out paths.
|
|
|
|
*
|
|
|
|
* We currently can't enable compression or having more config options, because of
|
|
|
|
* https://github.com/lovell/sharp/issues/1360.
|
|
|
|
*/
|
|
|
|
const process = (options = {}) => {
|
2018-11-12 20:52:36 +03:00
|
|
|
let sharp, img, originalData, originalSize;
|
2018-08-30 19:30:36 +03:00
|
|
|
|
|
|
|
try {
|
|
|
|
sharp = require('sharp');
|
|
|
|
} catch (err) {
|
|
|
|
return Promise.reject(new common.errors.InternalServerError({
|
|
|
|
message: 'Sharp wasn\'t installed',
|
|
|
|
code: 'SHARP_INSTALLATION',
|
|
|
|
err: err
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
2018-11-12 20:52:36 +03:00
|
|
|
// @NOTE: workaround for Windows as libvips keeps a reference to the input file
|
|
|
|
// which makes it impossible to fs.unlink() it on cleanup stage
|
|
|
|
sharp.cache(false);
|
|
|
|
|
|
|
|
return fs.readFile(options.in)
|
|
|
|
.then((data) => {
|
|
|
|
originalData = data;
|
|
|
|
|
|
|
|
// @NOTE: have to use constructor with Buffer for sharp to be able to expose size property
|
|
|
|
img = sharp(data);
|
|
|
|
})
|
|
|
|
.then(() => img.metadata())
|
2018-08-30 19:30:36 +03:00
|
|
|
.then((metadata) => {
|
2018-11-12 20:52:36 +03:00
|
|
|
originalSize = metadata.size;
|
|
|
|
|
2018-08-30 19:30:36 +03:00
|
|
|
if (metadata.width > options.width) {
|
|
|
|
img.resize(options.width);
|
|
|
|
}
|
|
|
|
|
|
|
|
// CASE: if you call `rotate` it will automatically remove the orientation (and all other meta data) and rotates
|
|
|
|
// based on the orientation. It does not rotate if no orientation is set.
|
|
|
|
img.rotate();
|
2018-11-12 20:52:36 +03:00
|
|
|
return img.toBuffer({resolveWithObject: true});
|
2018-08-30 19:30:36 +03:00
|
|
|
})
|
2018-11-12 20:52:36 +03:00
|
|
|
.then(({data, info}) => {
|
|
|
|
if (info.size > originalSize) {
|
|
|
|
return fs.writeFile(options.out, originalData);
|
|
|
|
} else {
|
|
|
|
return fs.writeFile(options.out, data);
|
|
|
|
}
|
2018-08-30 19:30:36 +03:00
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
throw new common.errors.InternalServerError({
|
|
|
|
message: 'Unable to manipulate image.',
|
|
|
|
err: err,
|
|
|
|
code: 'IMAGE_PROCESSING'
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports.process = process;
|