@loftysoul/soul
Version:
The professional Content Management System, based ghost
22 lines (18 loc) • 777 B
JavaScript
const common = require('../../../../lib/common');
const imageLib = require('../../../../lib/image');
module.exports = function profileImage(req, res, next) {
// we checked for a valid image file, now we need to do validations for profile image
imageLib.imageSize.getImageSizeFromPath(req.file.path).then((response) => {
// save the image dimensions in new property for file
req.file.dimensions = response;
// CASE: file needs to be a square
if (req.file.dimensions.width !== req.file.dimensions.height) {
return next(new common.errors.ValidationError({
message: common.i18n.t('errors.api.images.isNotSquare')
}));
}
next();
}).catch((err) => {
next(err);
});
};