我正在上载图片,一切正常,但是我有100张图片,我想将所有图片显示在我View
的文件夹中,因为我在文件夹中获得了完整的图片列表,因此找不到任何API工作。
我正在上载图片,一切正常,但是我有100张图片,我想将所有图片显示在我View
的文件夹中,因为我在文件夹中获得了完整的图片列表,因此找不到任何API工作。
Answers:
由于JavaScript的 Firebase SDK 版本6.1,iOS版本6.4和Android版本18.1均具有列出文件的方法。
该文档是有点稀疏,到目前为止,所以我建议检查出罗萨里奥的答案的详细信息。
先前的答案,因为这种方法有时仍然有用:
Firebase SDK中目前没有API调用可列出应用程序内Cloud Storage文件夹中的所有文件。如果需要此类功能,则应将文件的元数据(例如下载URL)存储在可以列出它们的位置。在火力地堡实时数据库和云公司的FireStore是完美的,这和让你也易与他人分享的网址。
您可以在我们的FriendlyPix示例应用程序中找到一个不错的示例(但有些涉及)。Web版本的相关代码在此处,但是还有iOS和Android版本。
截至2019年5月,适用于Cloud Storage的Firebase SDK 6.1.0版本现在支持列出存储桶中的所有对象。您只需拨打listAll()
一个Reference
:
// Since you mentioned your images are in a folder,
// we'll create a Reference to that folder:
var storageRef = firebase.storage().ref("your_folder");
// Now we get the references of these images
storageRef.listAll().then(function(result) {
result.items.forEach(function(imageRef) {
// And finally display them
displayImage(imageRef);
});
}).catch(function(error) {
// Handle any errors
});
function displayImage(imageRef) {
imageRef.getDownloadURL().then(function(url) {
// TODO: Display the image on the UI
}).catch(function(error) {
// Handle any errors
});
}
请注意,要使用此功能,您必须选择加入“安全规则”的版本2,这可以通过制作rules_version = '2';
安全规则的第一行来完成:
rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
我建议检查文档以获取更多参考。
同样,根据setup,在步骤5上,此脚本不允许使用,Node.js
因为它require("firebase/app");
不会firebase.storage()
作为函数返回。这只能通过使用来实现import * as firebase from 'firebase/app';
。
自2017年3月以来:增加了Firebase Cloud功能以及Firebase与Google Cloud的更深层集成,现在可以实现这一点。
借助Cloud Functions,您可以使用Google Cloud Node软件包对Cloud Storage 进行史诗般的操作。下面是一个示例,该示例将所有文件URL从Cloud Storage中获取到一个数组中。每次将某些内容保存到Google云端存储中时都会触发此功能。
注意1:这是一个计算量很大的操作,因为它必须在存储桶/文件夹中的所有文件之间循环。
注意2:我写这个只是作为示例,而没有对Promise等进行过多介绍。
const functions = require('firebase-functions');
const gcs = require('@google-cloud/storage')();
// let's trigger this function with a file upload to google cloud storage
exports.fileUploaded = functions.storage.object().onChange(event => {
const object = event.data; // the object that was just uploaded
const bucket = gcs.bucket(object.bucket);
const signedUrlConfig = { action: 'read', expires: '03-17-2025' }; // this is a signed url configuration object
var fileURLs = []; // array to hold all file urls
// this is just for the sake of this example. Ideally you should get the path from the object that is uploaded :)
const folderPath = "a/path/you/want/its/folder/size/calculated";
bucket.getFiles({ prefix: folderPath }, function(err, files) {
// files = array of file objects
// not the contents of these files, we're not downloading the files.
files.forEach(function(file) {
file.getSignedUrl(signedUrlConfig, function(err, fileURL) {
console.log(fileURL);
fileURLs.push(fileURL);
});
});
});
});
我希望这能给您大致的想法。有关更好的云功能示例,请查看Google的Github存储库,其中包含适用于Firebase的云功能示例。另请查看其Google Cloud Node API文档
.then
像这样链接:this.bucket .getFiles({ prefix: 'path/to/directory' }) .then((arr) => {})
由于没有列出语言,因此我将在Swift中回答。我们强烈建议同时使用Firebase存储和Firebase实时数据库来完成下载列表:
共享:
// Firebase services
var database: FIRDatabase!
var storage: FIRStorage!
...
// Initialize Database, Auth, Storage
database = FIRDatabase.database()
storage = FIRStorage.storage()
...
// Initialize an array for your pictures
var picArray: [UIImage]()
上载:
let fileData = NSData() // get data...
let storageRef = storage.reference().child("myFiles/myFile")
storageRef.putData(fileData).observeStatus(.Success) { (snapshot) in
// When the image has successfully uploaded, we get it's download URL
let downloadURL = snapshot.metadata?.downloadURL()?.absoluteString
// Write the download URL to the Realtime Database
let dbRef = database.reference().child("myFiles/myFile")
dbRef.setValue(downloadURL)
}
下载:
let dbRef = database.reference().child("myFiles")
dbRef.observeEventType(.ChildAdded, withBlock: { (snapshot) in
// Get download URL from snapshot
let downloadURL = snapshot.value() as! String
// Create a storage reference from the URL
let storageRef = storage.referenceFromURL(downloadURL)
// Download the data, assuming a max size of 1MB (you can change this as necessary)
storageRef.dataWithMaxSize(1 * 1024 * 1024) { (data, error) -> Void in
// Create a UIImage, add it to the array
let pic = UIImage(data: data)
picArray.append(pic)
})
})
有关更多信息,请参见“ 零到应用程序:使用Firebase开发”及其相关的源代码,以获取有关如何执行此操作的实际示例。
一种解决方法是创建一个没有任何内容的文件(即list.txt),在此文件中,您可以使用所有文件URL的列表设置自定义元数据(即Map <String,String>)。
因此,如果您需要下载文件中的所有文件,请先下载list.txt文件的元数据,然后遍历自定义数据并下载Map中带有URL的所有文件。
在处理项目时,我也遇到了这个问题。我真的希望他们提供结束api方法。无论如何,这就是我的工作方式:将映像上传到Firebase存储时,创建一个Object并将该对象同时传递到Firebase数据库。该对象包含图像的下载URI。
trailsRef.putFile(file).addOnSuccessListener(new OnSuccessListener<UploadTask.TaskSnapshot>() {
@Override
public void onSuccess(UploadTask.TaskSnapshot taskSnapshot) {
Uri downloadUri = taskSnapshot.getDownloadUrl();
DatabaseReference myRef = database.getReference().child("trails").child(trail.getUnique_id()).push();
Image img = new Image(trail.getUnique_id(), downloadUri.toString());
myRef.setValue(img);
}
});
稍后,当您要从文件夹下载图像时,只需遍历该文件夹下的文件即可。该文件夹与Firebase存储中的“文件夹”具有相同的名称,但是您可以根据需要命名它们。我把它们放在单独的线程中。
@Override
protected List<Image> doInBackground(Trail... params) {
String trialId = params[0].getUnique_id();
mDatabase = FirebaseDatabase.getInstance().getReference();
mDatabase.child("trails").child(trialId).addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
images = new ArrayList<>();
Iterator<DataSnapshot> iter = dataSnapshot.getChildren().iterator();
while (iter.hasNext()) {
Image img = iter.next().getValue(Image.class);
images.add(img);
}
isFinished = true;
}
@Override
public void onCancelled(DatabaseError databaseError) {
}
});
现在,我有了一个包含每个图像URI的对象列表,我可以对它们进行任何处理。要将它们加载到imageView中,我创建了另一个线程。
@Override
protected List<Bitmap> doInBackground(List<Image>... params) {
List<Bitmap> bitmaps = new ArrayList<>();
for (int i = 0; i < params[0].size(); i++) {
try {
URL url = new URL(params[0].get(i).getImgUrl());
Bitmap bmp = BitmapFactory.decodeStream(url.openConnection().getInputStream());
bitmaps.add(bmp);
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
return bitmaps;
}
这将返回一个位图列表,完成后,我只需将它们附加到主活动中的ImageView上即可。下面的方法是@Override,因为我创建了接口并在其他线程中侦听完成。
@Override
public void processFinishForBitmap(List<Bitmap> bitmaps) {
List<ImageView> imageViews = new ArrayList<>();
View v;
for (int i = 0; i < bitmaps.size(); i++) {
v = mInflater.inflate(R.layout.gallery_item, mGallery, false);
imageViews.add((ImageView) v.findViewById(R.id.id_index_gallery_item_image));
imageViews.get(i).setImageBitmap(bitmaps.get(i));
mGallery.addView(v);
}
}
请注意,我必须等待列表图像首先返回,然后调用线程以在列表位图上工作。在这种情况下,图片包含URI。
@Override
public void processFinish(List<Image> results) {
Log.e(TAG, "get back " + results.size());
LoadImageFromUrlTask loadImageFromUrlTask = new LoadImageFromUrlTask();
loadImageFromUrlTask.delegate = this;
loadImageFromUrlTask.execute(results);
}
希望有人发现它有帮助。将来它也将成为我的行会路线。
使用Cloud Function将图像添加到数据库的另一种方法是跟踪每个上载的图像并将其存储在数据库中。
exports.fileUploaded = functions.storage.object().onChange(event => {
const object = event.data; // the object that was just uploaded
const contentType = event.data.contentType; // This is the image Mimme type\
// Exit if this is triggered on a file that is not an image.
if (!contentType.startsWith('image/')) {
console.log('This is not an image.');
return null;
}
// Get the Signed URLs for the thumbnail and original image.
const config = {
action: 'read',
expires: '03-01-2500'
};
const bucket = gcs.bucket(event.data.bucket);
const filePath = event.data.name;
const file = bucket.file(filePath);
file.getSignedUrl(config, function(err, fileURL) {
console.log(fileURL);
admin.database().ref('images').push({
src: fileURL
});
});
});
完整代码在这里:https : //gist.github.com/bossly/fb03686f2cb1699c2717a0359880cf84
对于节点js,我使用了以下代码
const Storage = require('@google-cloud/storage');
const storage = new Storage({projectId: 'PROJECT_ID', keyFilename: 'D:\\keyFileName.json'});
const bucket = storage.bucket('project.appspot.com'); //gs://project.appspot.com
bucket.getFiles().then(results => {
const files = results[0];
console.log('Total files:', files.length);
files.forEach(file => {
file.download({destination: `D:\\${file}`}).catch(error => console.log('Error: ', error))
});
}).catch(err => {
console.error('ERROR:', err);
});
您可以通过listAll()方法列出Firebase存储目录中的文件。要使用此方法,必须实现此版本的Firebase存储。'com.google.firebase:firebase-storage:18.1.1'
https://firebase.google.com/docs/storage/android/list-files
请记住,将安全规则升级到版本2。
实际上,这是可行的,但只能使用Google Cloud API而非Firebase的API。这是因为Firebase存储是一个Google Cloud Storage Bucket,可以使用Google Cloud API轻松访问,但是您需要使用OAuth进行身份验证,而不是使用Firebase。
我遇到了同样的问题,我的问题更加复杂。
管理员会将音频和pdf文件上传到存储设备:
audios / season1,season2 ... / class1,class 2 / .mp3文件
图书/.pdf文件
Android应用程序需要获取子文件夹和文件的列表。
解决方案是在存储上捕获上载事件,并使用云功能在Firestore上创建相同的结构。
步骤1:在Firestore上手动创建“存储”集合和“音频/书籍”文档
步骤2:设定云端功能
可能大约需要15分钟:https://www.youtube.com/watch?v = DYfP-UIKxH0 & list = PLl-K7zZEsYLkPZHe41m4jfAxUi0JjLgSM & index = 1
步骤3:使用云端功能捕获上传事件
import * as functions from 'firebase-functions';
import * as admin from 'firebase-admin';
admin.initializeApp(functions.config().firebase);
const path = require('path');
export const onFileUpload = functions.storage.object().onFinalize(async (object) => {
let filePath = object.name; // File path in the bucket.
const contentType = object.contentType; // File content type.
const metageneration = object.metageneration; // Number of times metadata has been generated. New objects have a value of 1.
if (metageneration !== "1") return;
// Get the file name.
const fileName = path.basename(filePath);
filePath = filePath.substring(0, filePath.length - 1);
console.log('contentType ' + contentType);
console.log('fileName ' + fileName);
console.log('filePath ' + filePath);
console.log('path.dirname(filePath) ' + path.dirname(filePath));
filePath = path.dirname(filePath);
const pathArray = filePath.split("/");
let ref = '';
for (const item of pathArray) {
if (ref.length === 0) {
ref = item;
}
else {
ref = ref.concat('/sub/').concat(item);
}
}
ref = 'storage/'.concat(ref).concat('/sub')
admin.firestore().collection(ref).doc(fileName).create({})
.then(result => {console.log('onFileUpload:updated')})
.catch(error => {
console.log(error);
});
});
第4步:使用Firestore检索Android应用上的文件夹/文件列表
private static final String STORAGE_DOC = "storage/";
public static void getMediaCollection(String path, OnCompleteListener onCompleteListener) {
String[] pathArray = path.split("/");
String doc = null;
for (String item : pathArray) {
if (TextUtils.isEmpty(doc)) doc = STORAGE_DOC.concat(item);
else doc = doc.concat("/sub/").concat(item);
}
doc = doc.concat("/sub");
getFirestore().collection(doc).get().addOnCompleteListener(onCompleteListener);
}
步骤5:取得下载网址
public static void downloadMediaFile(String path, OnCompleteListener<Uri> onCompleteListener) {
getStorage().getReference().child(path).getDownloadUrl().addOnCompleteListener(onCompleteListener);
}
注意
由于Firestore不支持检索集合列表,因此我们必须在每个项目上放置“子”集合。
我花了3天的时间找到解决方案,希望最多最多需要3个小时。
干杯。
扩展RosárioPereira Fernandes的答案,以获得JavaScript解决方案:
npm install -g firebase-tools
JavaScript
为默认语言 npm install --save firebase
npm install @google-cloud/storage
npm install @google-cloud/firestore
... <any other dependency needed>
"firebase": "^6.3.3",
"@google-cloud/storage": "^3.0.3"
函数/package.json
{
"name": "functions",
"description": "Cloud Functions for Firebase",
"scripts": {
"lint": "eslint .",
"serve": "firebase serve --only functions",
"shell": "firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"engines": {
"node": "10"
},
"dependencies": {
"@google-cloud/storage": "^3.0.3",
"firebase": "^6.3.3",
"firebase-admin": "^8.0.0",
"firebase-functions": "^3.1.0"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-plugin-promise": "^4.0.1",
"firebase-functions-test": "^0.1.6"
},
"private": true
}
listAll
功能index.js
var serviceAccount = require("./key.json");
const functions = require('firebase-functions');
const images = require('./images.js');
var admin = require("firebase-admin");
admin.initializeApp({
credential: admin.credential.cert(serviceAccount),
databaseURL: "https://<my_project>.firebaseio.com"
});
const bucket = admin.storage().bucket('<my_bucket>.appspot.com')
exports.getImages = functions.https.onRequest((request, response) => {
images.getImages(bucket)
.then(urls => response.status(200).send({ data: { urls } }))
.catch(err => console.error(err));
})
images.js
module.exports = {
getImages
}
const query = {
directory: 'images'
};
function getImages(bucket) {
return bucket.getFiles(query)
.then(response => getUrls(response))
.catch(err => console.error(err));
}
function getUrls(response) {
const promises = []
response.forEach( files => {
files.forEach (file => {
promises.push(getSignedUrl(file));
});
});
return Promise.all(promises).then(result => getParsedUrls(result));
}
function getSignedUrl(file) {
return file.getSignedUrl({
action: 'read',
expires: '09-01-2019'
})
}
function getParsedUrls(result) {
return JSON.stringify(result.map(mediaLink => createMedia(mediaLink)));
}
function createMedia(mediaLink) {
const reference = {};
reference.mediaLink = mediaLink[0];
return reference;
}
firebase deploy
以上传您的云功能build.gradle
dependencies {
...
implementation 'com.google.firebase:firebase-functions:18.1.0'
...
}
科特林班
private val functions = FirebaseFunctions.getInstance()
val cloudFunction = functions.getHttpsCallable("getImages")
cloudFunction.call().addOnSuccessListener {...}
用JS做到这一点
您可以将它们直接附加到div容器,也可以将它们推入数组。下面显示了如何将它们附加到div。
1)当您将图像存储在存储中时,请使用以下结构在Firebase数据库中创建对该图像的引用
/images/(imageName){
description: "" ,
imageSrc : (imageSource)
}
2)加载文档时,使用以下代码从数据库而不是存储中拉出所有图像源URL
$(document).ready(function(){
var query = firebase.database().ref('images/').orderByKey();
query.once("value").then(function(snapshot){
snapshot.forEach(function(childSnapshot){
var imageName = childSnapshot.key;
var childData = childSnapshot.val();
var imageSource = childData.url;
$('#imageGallery').append("<div><img src='"+imageSource+"'/></div>");
})
})
});
您可以使用以下代码。在这里,我将图像上传到Firebase存储,然后将图像下载URL存储到Firebase数据库。
//getting the storage reference
StorageReference sRef = storageReference.child(Constants.STORAGE_PATH_UPLOADS + System.currentTimeMillis() + "." + getFileExtension(filePath));
//adding the file to reference
sRef.putFile(filePath)
.addOnSuccessListener(new OnSuccessListener<UploadTask.TaskSnapshot>() {
@Override
public void onSuccess(UploadTask.TaskSnapshot taskSnapshot) {
//dismissing the progress dialog
progressDialog.dismiss();
//displaying success toast
Toast.makeText(getApplicationContext(), "File Uploaded ", Toast.LENGTH_LONG).show();
//creating the upload object to store uploaded image details
Upload upload = new Upload(editTextName.getText().toString().trim(), taskSnapshot.getDownloadUrl().toString());
//adding an upload to firebase database
String uploadId = mDatabase.push().getKey();
mDatabase.child(uploadId).setValue(upload);
}
})
.addOnFailureListener(new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception exception) {
progressDialog.dismiss();
Toast.makeText(getApplicationContext(), exception.getMessage(), Toast.LENGTH_LONG).show();
}
})
.addOnProgressListener(new OnProgressListener<UploadTask.TaskSnapshot>() {
@Override
public void onProgress(UploadTask.TaskSnapshot taskSnapshot) {
//displaying the upload progress
double progress = (100.0 * taskSnapshot.getBytesTransferred()) / taskSnapshot.getTotalByteCount();
progressDialog.setMessage("Uploaded " + ((int) progress) + "%...");
}
});
现在,要获取存储在firebase数据库中的所有图像,您可以使用
//adding an event listener to fetch values
mDatabase.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot snapshot) {
//dismissing the progress dialog
progressDialog.dismiss();
//iterating through all the values in database
for (DataSnapshot postSnapshot : snapshot.getChildren()) {
Upload upload = postSnapshot.getValue(Upload.class);
uploads.add(upload);
}
//creating adapter
adapter = new MyAdapter(getApplicationContext(), uploads);
//adding adapter to recyclerview
recyclerView.setAdapter(adapter);
}
@Override
public void onCancelled(DatabaseError databaseError) {
progressDialog.dismiss();
}
});
有关更多详细信息,请参阅我的Firebase存储示例。
因此,我有一个需要从Firebase存储下载资产的项目,因此我必须自己解决此问题。方法如下:
1-首先,例如创建一个模型数据class Choice{}
,在该类中定义一个名为image Name的String变量,因此它将像
class Choice {
.....
String imageName;
}
2-从数据库/ firebase数据库中,将图像名称硬编码为对象,因此,如果您具有名为Apple.png的图像名称,则将对象创建为
Choice myChoice = new Choice(...,....,"Apple.png");
3-现在,获取您的Firebase存储中资产的链接,就像这样
gs://your-project-name.appspot.com/
4-最后,初始化您的firebase存储参考,并开始像这样的循环获取文件
storageRef = storage.getReferenceFromUrl(firebaseRefURL).child(imagePath);
File localFile = File.createTempFile("images", "png");
storageRef.getFile(localFile).addOnSuccessListener(new OnSuccessListener<FileDownloadTask.TaskSnapshot>() {
@Override
public void onSuccess(FileDownloadTask.TaskSnapshot taskSnapshot) {
//Dismiss Progress Dialog\\
}
5-就这样
#In Python
import firebase_admin
from firebase_admin import credentials
from firebase_admin import storage
import datetime
import urllib.request
def image_download(url, name_img) :
urllib.request.urlretrieve(url, name_img)
cred = credentials.Certificate("credentials.json")
# Initialize the app with a service account, granting admin privileges
app = firebase_admin.initialize_app(cred, {
'storageBucket': 'YOURSTORAGEBUCKETNAME.appspot.com',
})
url_img = "gs://YOURSTORAGEBUCKETNAME.appspot.com/"
bucket_1 = storage.bucket(app=app)
image_urls = []
for blob in bucket_1.list_blobs():
name = str(blob.name)
#print(name)
blob_img = bucket_1.blob(name)
X_url = blob_img.generate_signed_url(datetime.timedelta(seconds = 300), method='GET')
#print(X_url)
image_urls.append(X_url)
PATH = ['Where you want to save the image']
for path in PATH:
i = 1
for url in image_urls:
name_img = str(path + "image"+str(i)+".jpg")
image_download(url, name_img)
i+=1
我正在使用AngularFire
并使用以下内容来获取所有downloadURL
getPhotos(id: string): Observable<string[]> {
const ref = this.storage.ref(`photos/${id}`)
return ref.listAll().pipe(switchMap(list => {
const calls: Promise<string>[] = [];
list.items.forEach(item => calls.push(item.getDownloadURL()))
return Promise.all(calls)
}));
}
对于Android,最好的做法是使用FirebaseUI和Glide。
您需要在gradle / app上添加它,以获取库。请注意,它已经具有滑行功能!
implementation 'com.firebaseui:firebase-ui-storage:4.1.0'
然后在你的代码中使用
// Reference to an image file in Cloud Storage
StorageReference storageReference = FirebaseStorage.getInstance().getReference();
// ImageView in your Activity
ImageView imageView = findViewById(R.id.imageView);
// Download directly from StorageReference using Glide
// (See MyAppGlideModule for Loader registration)
GlideApp.with(this /* context */)
.load(storageReference)
.into(imageView);