1
0
Fork 0
mirror of synced 2024-09-27 23:01:51 +12:00
budibase/packages/server/src/utilities/fileProcessor.js

27 lines
577 B
JavaScript
Raw Normal View History

2020-09-18 03:36:39 +12:00
const fs = require("fs")
const jimp = require("jimp")
2020-09-18 03:36:39 +12:00
const fsPromises = fs.promises
2020-09-17 23:45:28 +12:00
const FORMATS = {
IMAGES: ["png", "jpg", "jpeg", "gif", "bmp", "tiff"],
2020-09-17 23:45:28 +12:00
}
function processImage(file) {
return jimp.read(file.path).then(img => {
return img.resize(300, jimp.AUTO).write(file.outputPath)
})
2020-09-17 23:45:28 +12:00
}
2020-09-18 22:01:39 +12:00
async function process(file) {
2020-09-17 23:45:28 +12:00
if (FORMATS.IMAGES.includes(file.extension.toLowerCase())) {
await processImage(file)
return file
2020-09-17 23:45:28 +12:00
}
// No processing required
2020-09-18 22:01:39 +12:00
await fsPromises.copyFile(file.path, file.outputPath)
return file
2020-09-17 23:45:28 +12:00
}
2020-09-18 03:36:39 +12:00
exports.process = process