使用 Cloud Functions for Firebase 存储图像

Storing Image Using Cloud Functions for Firebase

我正在尝试重构一些代码以使用 Cloud Functions for Firebase。该代码应将图像存储在 Firebase 存储中的路径中。在大多数情况下,代码与以前完全相同,除了现在而不是

server.post('/', (req, res) => {
  // Some code 
}

我根据 Firebase 文档使用以下内容

exports.getProcessedImage = functions.https.onRequest((req, res) => {
  // Some code
});

该代码之前有效,但现在我无法将测试图像保存到 Firebase。不知道为什么。我检查了开发人员工具中的“网络”选项卡,getProcessedImage 端点将代码触发到 运行,它以 200 代码响应,因此不确定是什么问题。在此先感谢您的帮助!

我的完整代码如下:)

const functions = require('firebase-functions');

const admin = require('firebase-admin');
admin.initializeApp(functions.config().firebase);

const request = require('request');
const crypto = require('crypto');
const storage = require('@google-cloud/storage');

// Firebase Project ID and Service Account Key.
const gcs = storage({
  projectId: 'snapshelf-aabb55',
  keyFilename: './serviceAccountKey.json'
});

const bucket = gcs.bucket('snapshelf-aabb55.appspot.com');

function saveImage(url) {

    // Generate a random HEX string using crypto (a native node module).
    const randomFileName = crypto.randomBytes(16).toString('hex');

    // Fetch image info using a HTTP HEAD request.
    // https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/HEAD
    request.head(url, (error, info) => {
        if (error) {
            return console.error(error);
    }

    // Download image from Pixelz, then save the image to Firebase
    // using the Google Cloud API and the magic of Node Streams.
    // https://googlecloudplatform.github.io/google-cloud-node/#/docs/google-
    cloud/v0.52.0/storage/file
    // 
    request(url)
        .pipe(
            bucket.file(`sample/images/${randomFileName}`).createWriteStream({
                metadata: {
                    contentType: info.headers['content-type']
                }
            })
        )
        .on('error', (err) => {

            // Do something if the upload fails.
            console.error(err);
        })
        .on('finish', () => {

            // Do something when everything is done.

            // Get download url for stored image
            console.log('Image successfully uploaded to Firebase Storage!')
        });
    });
}

exports.getProcessedImage = functions.https.onRequest((req, res) => {
    console.log(req.body.processedImageURL);
    /*
    if (req.body && req.body.processedImageURL) {

        // Get image from Pixelz and save it to Firebase Storage.
        saveImage(req.body.processedImageURL);

        return res.status(200).end();
    }

    res.status(400).end();
    */

    const url = 'https://www2.chemistry.msu.edu/courses/cem352/SS2017_Wulff/MichiganState.jpg'
    console.log(url);
    saveImage(url);
    console.log('Saving url');
    res.status(200).send();
});

您是否使用 Spark 计划(免费)在 Firebase 上部署函数?

如果答案是肯定的,你的问题是因为:

Firebase projects on the Spark plan can make only outbound requests to Google APIs. Requests to third-party APIs fail with an error. For more information about upgrading your project.

由于您正在尝试发出 外部请求,所以当您的函数执行时没有任何反应 :(

现在很简单!既然你有管理员。只需更改

const bucket = gcs.bucket('snapshelf-aabb55.appspot.com');

const bucket = admin.storage().bucket();