繁体   English   中英

使用Cloud功能为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
    // http://stackoverflow.com/questions/28355079/how-do-node-js-streams-work
    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 Plan(免费)在Firebase上部署功能?

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

Spark计划中的Firebase项目只能向Google API发出出站请求。 对第三方API的请求失败并显示错误。 有关升级项目的更多信息。

由于您尝试发出外部请求 ,因此执行函数时不会发生任何事情:(

多数民众赞成在现在! 既然你有管理员。 只是改变

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

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM