overleaf/services/filestore/app/js/ImageOptimiser.js

35 lines
745 B
JavaScript
Raw Normal View History

const logger = require('logger-sharelatex')
2019-12-19 11:56:03 -05:00
const metrics = require('metrics-sharelatex')
const { callbackify } = require('util')
const safeExec = require('./SafeExec').promises
2014-02-14 11:39:05 -05:00
module.exports = {
2019-12-19 11:56:03 -05:00
compressPng: callbackify(compressPng),
promises: {
compressPng
}
}
async function compressPng(localPath, callback) {
const timer = new metrics.Timer('compressPng')
const args = ['optipng', localPath]
const opts = {
timeout: 30 * 1000,
killSignal: 'SIGKILL'
}
try {
await safeExec(args, opts)
timer.done()
} catch (err) {
if (err.code === 'SIGKILL') {
logger.warn(
{ err, stderr: err.stderr, localPath },
'optimiser timeout reached'
)
} else {
throw err
}
}
}