最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Firebase Admin SDK to downloadretrieve files on Google Cloud Storage - Stack Overflow

programmeradmin1浏览0评论

I'm trying to download some images that I have uploaded to my Google Cloud Storage (aka into buckets). I'm unable to use the .ref() method on any of my const storage or const bucket because they are part of the admin SDK. The admin.storage has only the method .bucket() (.storage.Storage).

I'm able to access the buckets. bucket.getFiles() works, and the result es out to be an Array of Files objects with a ton of metadata (like file name, bucket owner, etc.). How can I get my images from the cloud storage and insert them into html objects?

var admin = require("firebase-admin");

var serviceAccount = require("./randomDB-f12d3-admin-correctly-working.json");

admin.initializeApp({
  credential: admin.credential.cert(serviceAccount),
  databaseURL: "",
  storageBucket: "randomDB-f12d3.appspot"
});

const gcs  = require("@google-cloud/storage");
gcs.projectId = "randomDB-f12d3";
gcs.keyFilename = "randomDB-f12d3-firebase-admin-correctly-working.json";

exports.getFile = functions.https.onRequest((req, res) => {
  
  cors(req, res, () => {
    if (req.method !== "GET") {
      return res.status(500).json({
        message: "Not allowed"
      });
    }

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

    bucket.getFiles().then((result)=>{
      
      console.log(result);
      res.send(result);
    });

  });

});

I'm trying to download some images that I have uploaded to my Google Cloud Storage (aka into buckets). I'm unable to use the .ref() method on any of my const storage or const bucket because they are part of the admin SDK. The admin.storage has only the method .bucket() (https://firebase.google./docs/reference/admin/node/admin.storage.Storage).

I'm able to access the buckets. bucket.getFiles() works, and the result es out to be an Array of Files objects with a ton of metadata (like file name, bucket owner, etc.). How can I get my images from the cloud storage and insert them into html objects?

var admin = require("firebase-admin");

var serviceAccount = require("./randomDB-f12d3-admin-correctly-working.json");

admin.initializeApp({
  credential: admin.credential.cert(serviceAccount),
  databaseURL: "https://randomDB-f12d3.firebaseio.",
  storageBucket: "randomDB-f12d3.appspot."
});

const gcs  = require("@google-cloud/storage");
gcs.projectId = "randomDB-f12d3";
gcs.keyFilename = "randomDB-f12d3-firebase-admin-correctly-working.json";

exports.getFile = functions.https.onRequest((req, res) => {
  
  cors(req, res, () => {
    if (req.method !== "GET") {
      return res.status(500).json({
        message: "Not allowed"
      });
    }

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

    bucket.getFiles().then((result)=>{
      
      console.log(result);
      res.send(result);
    });

  });

});

Share Improve this question edited Dec 3, 2018 at 18:17 Doug Stevenson 318k36 gold badges456 silver badges473 bronze badges asked Dec 3, 2018 at 18:11 shaotimeshaotime 391 gold badge1 silver badge4 bronze badges 1
  • You can use .file() to get a specific file. See the GCS client API documentation as well as the Firebase samples repo for examples – Jen Person Commented Dec 3, 2018 at 18:16
Add a ment  | 

2 Answers 2

Reset to default 8

The Admin SDK for Cloud Storage is just a wrapper around the @google-cloud/storage module. When you call admin.storage(), what you're getting back is a Storage object from that library. With admin.storage().bucket(), you're getting the default storage Bucket for your project. From there, you should use file() to create a reference to files in that bucket and download them as needed.

I believe you want to display image on webpage. For that you can use signedUrl or downloadURL and use the url in your image tag.

Generate signed URLs for each file

const files = bucket.getFiles()
const signedUrls = await Promise.all(
  files.map(async (file) => {
    const [url] = await file.getSignedUrl({
      action: 'read',
      expires: Date.now() + 1000 * 60 * 60, // URL expires in 1 hour
    });
    return {
      name: file.name,
      url: url
    };
  })
);

Use the signed url with the html image tag

const file = signedUrls[0] // first file in the array
<img src="${file.url}" alt="${file.name}" />`

You can also use the downloadUrl

发布评论

评论列表(0)

  1. 暂无评论