2018-02-13 12:17:05 -05:00
|
|
|
import 'multer'
|
|
|
|
import * as sharp from 'sharp'
|
2018-12-04 09:12:54 -05:00
|
|
|
import { readFile, remove } from 'fs-extra'
|
|
|
|
import { logger } from './logger'
|
2018-02-13 12:17:05 -05:00
|
|
|
|
|
|
|
async function processImage (
|
2018-02-15 12:40:24 -05:00
|
|
|
physicalFile: { path: string },
|
2018-02-13 12:17:05 -05:00
|
|
|
destination: string,
|
|
|
|
newSize: { width: number, height: number }
|
|
|
|
) {
|
2018-11-19 05:24:31 -05:00
|
|
|
if (physicalFile.path === destination) {
|
|
|
|
throw new Error('Sharp needs an input path different that the output path.')
|
|
|
|
}
|
|
|
|
|
2018-12-04 09:12:54 -05:00
|
|
|
logger.debug('Processing image %s to %s.', physicalFile.path, destination)
|
2018-11-19 05:24:31 -05:00
|
|
|
|
2018-12-04 09:12:54 -05:00
|
|
|
// Avoid sharp cache
|
|
|
|
const buf = await readFile(physicalFile.path)
|
|
|
|
const sharpInstance = sharp(buf)
|
2018-11-19 05:24:31 -05:00
|
|
|
|
|
|
|
await remove(destination)
|
|
|
|
|
|
|
|
await sharpInstance
|
2018-02-13 12:17:05 -05:00
|
|
|
.resize(newSize.width, newSize.height)
|
|
|
|
.toFile(destination)
|
|
|
|
|
2018-08-27 10:23:34 -04:00
|
|
|
await remove(physicalFile.path)
|
2018-02-13 12:17:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
processImage
|
|
|
|
}
|