google.storage.object.finalize не запускает облачную функцию Firebase - PullRequest
0 голосов
/ 30 июня 2019

У меня есть приложение Firebase, когда пользователь загружает фотографию в хранилище, оно запускает функцию генерации миниатюрных облаков. Весь стандартный код, он работал нормально, я развернул 24 февраля 2019 года. Теперь, когда я загружаю фото, ничего не происходит. Я смотрю в хранилище, и там есть фотография, но когда я просматриваю журналы для облачных функций Firebase, функция generateThumbnail не была вызвана. Как я могу отладить / исправить это? Я думал о том, чтобы просто развернуть мой код или, возможно, обновить мои библиотеки и т. Д. На случай критических изменений?

Вот мой код:

import * as functions from 'firebase-functions';

// import * as Storage from '@google-cloud/storage';
// const gcs = new Storage();


import * as admin from 'firebase-admin';
const gcs = admin.storage()
const firestore = admin.firestore();

import { tmpdir } from 'os';
import { join, dirname } from 'path';

import * as sharp from 'sharp';
import * as fs from 'fs-extra';

export const generateThumbs = functions.storage
  .object()
  .onFinalize(async object => {
    const bucket = gcs.bucket(object.bucket);
    const filePath = object.name;
    const parts = filePath.split('/');
    const fileName = parts.pop();
    const propertyID = parts.pop();
    // console.log(`got property id ${propertyID}`)
    const bucketDir = dirname(filePath);

    const workingDir = join(tmpdir(), 'thumbs');
    const tmpFilePath = join(workingDir, fileName);

    if (fileName.includes('thumb@') || !object.contentType.includes('image')) {
      console.log('exiting function');
      return false;
    }

    // 1. Ensure thumbnail dir exists
    await fs.ensureDir(workingDir);

    // 2. Download Source File
    await bucket.file(filePath).download({
      destination: tmpFilePath
    });

    // 3. Resize the images and define an array of upload promises
    const sizes = [256];

    let thumbLocation = '';
    const uploadPromises = sizes.map(async size => {
      const thumbName = `thumb@${size}_${fileName}`;
      const thumbPath = join(workingDir, thumbName);

      // Resize source image
      await sharp(tmpFilePath)
        .resize(256, 171)
        .toFile(thumbPath);

      thumbLocation = join(bucketDir, thumbName);
      // Upload to GCS
      return bucket.upload(thumbPath, {
        destination: thumbLocation
      });
    });

    // 4. Run the upload operations
    await Promise.all(uploadPromises);

    // 5. Cleanup remove the tmp/thumbs from the filesystem
    await fs.remove(workingDir);

    let photoURL = ''
    const hour = 1000 * 60 * 60;
    const year = hour * 24 * 365;
    const EXP = Date.now() + year * 10;
    await bucket.file(filePath).getSignedUrl({
      action: 'read',
      expires: EXP
    }).then(signedUrls => {
      photoURL = signedUrls[0];
    });

    let thumbURL = '';
    await bucket.file(thumbLocation).getSignedUrl({
      action: 'read',
      expires: EXP
    }).then(signedUrls => {
      thumbURL = signedUrls[0];
    });

    if (!(photoURL && thumbURL)) {
      return Promise.resolve('Error no thumbs');
    }

    const propertyRef = firestore.collection('properties').doc(propertyID);
    return firestore.runTransaction(t => {
      return t.get(propertyRef)
        .then(doc => {
          if (!doc.exists) {
            console.log(`doc does not exist ${propertyID}`)
            return;
          }
          let photos = doc.data().photos;
          photos = photos || [];
          photos.push({
            big: photoURL,
            small: thumbURL,
          });
          t.update(propertyRef, { photos: photos });
        });
    });
  });

enter image description here enter image description here

1 Ответ

1 голос
/ 30 июня 2019

Весь стандартный код, он работал нормально, я развернул его 24 февраля 2019 года.

Примерно месяц назад облачные функции отключались бы системой, если бы они были неактивны в течение 30 или более дней. Это поведение с тех пор было изменено, так как оно было совершенно не интуитивным для большинства разработчиков. Но вам нужно будет повторно развернуть облачные функции еще раз, чтобы включить новое поведение.

...