Ошибка: облачные функции для порождения Firebase EACCES (ghostscript) - PullRequest
0 голосов
/ 12 июня 2018

Я пытался использовать Firebase Cloud Functions для создания эскиза файла PDF.После вызова gs я получаю следующую ошибку:

2018-06-12T11: 29: 08.685ZE makeThumbnail: Error: spawn EACCES

at exports._errnoException (util.js: 1020: 11)

в ChildProcess.spawn (internal / child_process.js: 328: 11)

в exports.spawn (child_process.js: 370: 9)

в Object.exec (/user_code/node_modules/gs/index.js:86:28)

в Promise (/user_code/index.js:95:12)

в mkdirp.then.then (/user_code/index.js:86:12)

2018-06-12T11: 29: 08.698166767ZD makeThumbnail: выполнение функции заняло 780 мс, завершено со статусом: «error»

Нужно ли использовать такой компонент, как ghostscript, чтобы использовать план, отличный от Spark?

Кроме того, мой код.Может я просто не вижу своей проблемы в коде

const functions = require('firebase-functions');
const mkdirp = require('mkdirp-promise');
const gcs = require('@google-cloud/storage')();
const admin = require('firebase-admin');

const spawn = require('child-process-promise').spawn;
const path = require('path');
const os = require('os');
const fs = require('fs');
const gs = require('gs');
const THUMB_MAX_HEIGHT = 200;
const THUMB_MAX_WIDTH = 200;
const THUMB_PREFIX = 'thumb_';
const gs_exec_path = path.join(__dirname, './lambda-ghostscript/bin/gs');

try{admin.initializeApp(functions.config().firebase); } catch(e) {}

exports.makeThumbnail = functions.storage.object().onFinalize((object) => {

  const filePath = object.name;
  const contentType = object.contentType; 
  const fileDir = path.dirname(filePath);
  const fileName = path.basename(filePath);
  const thumbFilePath = path.normalize(path.join(fileDir, `${THUMB_PREFIX} ${fileName}`));
  const tempLocalFile = path.join(os.tmpdir(), filePath);
  const tempLocalDir = path.dirname(tempLocalFile);
  const tempLocalThumbFile = path.join(os.tmpdir(), thumbFilePath);

  const tmp_dir = os.tmpdir();


  if (fileName.startsWith(THUMB_PREFIX)) {
    console.log('Is thumbnail');
    return null;
  }


  const bucket = gcs.bucket(object.bucket);
  const file = bucket.file(filePath);
  const thumbFile = bucket.file(thumbFilePath);
  const metadata = {
    contentType: contentType,
  };

  return mkdirp(tmp_dir).then(() => {
     console.log("Dir Created");

    console.log(tempLocalFile);
    return file.download({destination: tempLocalFile});
  }).then(() => {
    console.log("File downloaded");
    if(!contentType.startsWith("image/")){

      return new Promise((resolve, reject) => {
      const pg= 1;
      gs().batch().nopause()
        .option(`-dFirstPage=${pg}`)
        .option(`-dLastPage=${pg}`)
        .executablePath(gs_exec_path)
        .device('png16m')
        .output(tempLocalThumbFile+".png")
        .input(tempLocalFile)
        .exec(err => err ? reject(err) : resolve());
      });
    }
    else
    {
      var args = [ tempLocalFile, '-thumbnail', `${THUMB_MAX_WIDTH}x${THUMB_MAX_HEIGHT}>`, tempLocalThumbFile ];
      return spawn('convert', args, {capture: ['stdout', 'stderr']});
    }
  }).then(() => {

    return bucket.upload(tempLocalThumbFile, { destination: thumbFilePath });
  }).then(() => {

    fs.unlinkSync(tempLocalFile);
    fs.unlinkSync(tempLocalThumbFile);

    return result[0];
  });

});
...