2019-12-16 05:42:31 -05:00
|
|
|
const metrics = require('metrics-sharelatex')
|
|
|
|
const Settings = require('settings-sharelatex')
|
2019-12-19 05:41:41 -05:00
|
|
|
const { callbackify } = require('util')
|
2014-02-14 11:39:05 -05:00
|
|
|
|
2019-12-19 05:41:41 -05:00
|
|
|
const safeExec = require('./SafeExec').promises
|
|
|
|
const { ConversionError } = require('./Errors')
|
2014-02-19 08:02:53 -05:00
|
|
|
|
2019-12-19 05:41:41 -05:00
|
|
|
const APPROVED_FORMATS = ['png']
|
|
|
|
const FOURTY_SECONDS = 40 * 1000
|
|
|
|
const KILL_SIGNAL = 'SIGTERM'
|
2014-03-04 07:44:16 -05:00
|
|
|
|
2019-12-16 05:24:35 -05:00
|
|
|
module.exports = {
|
2019-12-19 05:41:41 -05:00
|
|
|
convert: callbackify(convert),
|
|
|
|
thumbnail: callbackify(thumbnail),
|
|
|
|
preview: callbackify(preview),
|
|
|
|
promises: {
|
|
|
|
convert,
|
|
|
|
thumbnail,
|
|
|
|
preview
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function convert(sourcePath, requestedFormat) {
|
|
|
|
const width = '600x'
|
|
|
|
return _convert(sourcePath, requestedFormat, [
|
|
|
|
'convert',
|
|
|
|
'-define',
|
|
|
|
`pdf:fit-page=${width}`,
|
|
|
|
'-flatten',
|
|
|
|
'-density',
|
|
|
|
'300',
|
|
|
|
`${sourcePath}[0]`
|
|
|
|
])
|
|
|
|
}
|
|
|
|
|
|
|
|
async function thumbnail(sourcePath) {
|
|
|
|
const width = '260x'
|
|
|
|
return convert(sourcePath, 'png', [
|
|
|
|
'convert',
|
|
|
|
'-flatten',
|
|
|
|
'-background',
|
|
|
|
'white',
|
|
|
|
'-density',
|
|
|
|
'300',
|
|
|
|
'-define',
|
|
|
|
`pdf:fit-page=${width}`,
|
|
|
|
`${sourcePath}[0]`,
|
|
|
|
'-resize',
|
|
|
|
width
|
|
|
|
])
|
|
|
|
}
|
2014-02-14 11:39:05 -05:00
|
|
|
|
2019-12-19 05:41:41 -05:00
|
|
|
async function preview(sourcePath) {
|
|
|
|
const width = '548x'
|
|
|
|
return convert(sourcePath, 'png', [
|
|
|
|
'convert',
|
|
|
|
'-flatten',
|
|
|
|
'-background',
|
|
|
|
'white',
|
|
|
|
'-density',
|
|
|
|
'300',
|
|
|
|
'-define',
|
|
|
|
`pdf:fit-page=${width}`,
|
|
|
|
`${sourcePath}[0]`,
|
|
|
|
'-resize',
|
|
|
|
width
|
|
|
|
])
|
|
|
|
}
|
|
|
|
|
|
|
|
async function _convert(sourcePath, requestedFormat, command) {
|
|
|
|
if (!APPROVED_FORMATS.includes(requestedFormat)) {
|
|
|
|
throw new ConversionError({
|
|
|
|
message: 'invalid format requested',
|
|
|
|
info: { format: requestedFormat }
|
2019-12-16 05:42:31 -05:00
|
|
|
})
|
2019-12-19 05:41:41 -05:00
|
|
|
}
|
2014-02-14 11:39:05 -05:00
|
|
|
|
2019-12-19 05:41:41 -05:00
|
|
|
const timer = new metrics.Timer('imageConvert')
|
|
|
|
const destPath = `${sourcePath}.${requestedFormat}`
|
|
|
|
|
|
|
|
command.push(destPath)
|
|
|
|
command = Settings.commands.convertCommandPrefix.concat(command)
|
|
|
|
|
|
|
|
try {
|
|
|
|
await safeExec(command, {
|
|
|
|
killSignal: KILL_SIGNAL,
|
|
|
|
timeout: FOURTY_SECONDS
|
2019-12-16 05:42:31 -05:00
|
|
|
})
|
2019-12-19 05:41:41 -05:00
|
|
|
} catch (err) {
|
|
|
|
throw new ConversionError({
|
|
|
|
message: 'something went wrong converting file',
|
|
|
|
info: { stderr: err.stderr, sourcePath, requestedFormat, destPath }
|
|
|
|
}).withCause(err)
|
2019-12-16 05:42:31 -05:00
|
|
|
}
|
2019-12-19 05:41:41 -05:00
|
|
|
|
|
|
|
timer.done()
|
|
|
|
return destPath
|
2019-12-16 05:42:31 -05:00
|
|
|
}
|