| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- import metrics from '@overleaf/metrics'
- import Settings from '@overleaf/settings'
- import { callbackify } from 'node:util'
- import SafeExec from './SafeExec.js'
- import Errors from './Errors.js'
- const { ConversionError } = Errors
- const APPROVED_FORMATS = ['png']
- const FOURTY_SECONDS = 40 * 1000
- const KILL_SIGNAL = 'SIGTERM'
- export default {
- convert: callbackify(convert),
- thumbnail: callbackify(thumbnail),
- preview: callbackify(preview),
- promises: {
- convert,
- thumbnail,
- preview,
- },
- }
- async function convert(sourcePath, requestedFormat) {
- if (Settings.converter === 'pdftocairo') {
- const width = 1500
- return await _convert(sourcePath, requestedFormat, [
- 'pdftocairo',
- '-png',
- '-singlefile',
- '-scale-to-x',
- width.toString(),
- '-scale-to-y',
- '-1', // maintain aspect ratio
- sourcePath,
- ])
- } else {
- const width = '600x'
- return await _convert(sourcePath, requestedFormat, [
- 'convert',
- '-define',
- `pdf:fit-page=${width}`,
- '-flatten',
- '-density',
- '300',
- `${sourcePath}[0]`,
- ])
- }
- }
- async function thumbnail(sourcePath) {
- if (Settings.converter === 'pdftocairo') {
- const width = 700
- return await _convert(sourcePath, 'png', [
- 'pdftocairo',
- '-png',
- '-singlefile',
- '-scale-to-x',
- width.toString(),
- '-scale-to-y',
- '-1', // maintain aspect ratio
- sourcePath,
- ])
- } else {
- const width = '260x'
- return await convert(sourcePath, 'png', [
- 'convert',
- '-flatten',
- '-background',
- 'white',
- '-density',
- '300',
- '-define',
- `pdf:fit-page=${width}`,
- `${sourcePath}[0]`,
- '-resize',
- width,
- ])
- }
- }
- async function preview(sourcePath) {
- const width = 1000
- if (Settings.converter === 'pdftocairo') {
- return await _convert(sourcePath, 'png', [
- 'pdftocairo',
- '-png',
- '-singlefile',
- '-scale-to-x',
- width.toString(),
- '-scale-to-y',
- '-1', // maintain aspect ratio
- sourcePath,
- ])
- } else {
- return await 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('invalid format requested', {
- format: requestedFormat,
- })
- }
- const timer = new metrics.Timer('imageConvert')
- const destPath = `${sourcePath}.${requestedFormat}`
- command.push(Settings.converter === 'pdftocairo' ? sourcePath : destPath)
- command = Settings.commands.convertCommandPrefix.concat(command)
- try {
- await SafeExec.promises(command, {
- killSignal: KILL_SIGNAL,
- timeout: FOURTY_SECONDS,
- })
- } catch (err) {
- throw new ConversionError(
- 'something went wrong converting file',
- { stderr: err.stderr, sourcePath, requestedFormat, destPath },
- err
- )
- }
- timer.done()
- return destPath
- }
|