Seus arquivos são armazenados em um bucket do Cloud Storage . Os arquivos neste bucket são apresentados em uma estrutura hierárquica, assim como o sistema de arquivos no disco rígido local ou os dados no Firebase Realtime Database. Ao criar uma referência a um arquivo, seu aplicativo ganha acesso a ele. Essas referências podem então ser usadas para fazer upload ou download de dados, obter ou atualizar metadados ou excluir o arquivo. Uma referência pode apontar para um arquivo específico ou para um nó de nível superior na hierarquia.
Se você usou o Firebase Realtime Database , esses caminhos devem parecer muito familiares para você. No entanto, os dados do seu arquivo são armazenados no Cloud Storage, e não no Realtime Database.
Crie uma referência
Crie uma referência para fazer upload, download ou excluir um arquivo ou para obter ou atualizar seus metadados. Uma referência pode ser considerada um ponteiro para um arquivo na nuvem. As referências são leves, então você pode criar quantas precisar. Eles também são reutilizáveis para múltiplas operações.
As referências são criadas usando o serviço FirebaseStorage
e chamando seu método reference
.
Rápido
// Get a reference to the storage service using the default Firebase App let storage = Storage.storage() // Create a storage reference from our storage service let storageRef = storage.reference()
Objetivo-C
// Get a reference to the storage service using the default Firebase App FIRStorage *storage = [FIRStorage storage]; // Create a storage reference from our storage service FIRStorageReference *storageRef = [storage reference];
Você pode criar uma referência para um local inferior na árvore, digamos 'images/space.jpg'
, usando o método child
em uma referência existente.
Rápido
// Create a child reference // imagesRef now points to "images" let imagesRef = storageRef.child("images") // Child references can also take paths delimited by '/' // spaceRef now points to "images/space.jpg" // imagesRef still points to "images" var spaceRef = storageRef.child("images/space.jpg") // This is equivalent to creating the full reference let storagePath = "\(your_firebase_storage_bucket)/images/space.jpg" spaceRef = storage.reference(forURL: storagePath)
Objetivo-C
// Create a child reference // imagesRef now points to "images" FIRStorageReference *imagesRef = [storageRef child:@"images"]; // Child references can also take paths delimited by '/' // spaceRef now points to "images/space.jpg" // imagesRef still points to "images" FIRStorageReference *spaceRef = [storageRef child:@"images/space.jpg"]; // This is equivalent to creating the full reference spaceRef = [storage referenceForURL:@"gs://<your-firebase-storage-bucket>/images/space.jpg"];
Navegue com referências
Você também pode usar os métodos parent
e root
para navegar em nossa hierarquia de arquivos. parent
navega um nível acima, enquanto root
navega até o topo.
Rápido
// Parent allows us to move to the parent of a reference // imagesRef now points to 'images' let imagesRef = spaceRef.parent() // Root allows us to move all the way back to the top of our bucket // rootRef now points to the root let rootRef = spaceRef.root()
Objetivo-C
// Parent allows us to move to the parent of a reference // imagesRef now points to 'images' imagesRef = [spaceRef parent]; // Root allows us to move all the way back to the top of our bucket // rootRef now points to the root FIRStorageReference *rootRef = [spaceRef root];
child
, parent
e root
podem ser encadeados várias vezes, pois cada um retorna uma referência. A exceção é o parent
de root
, que é nil
.
Rápido
// References can be chained together multiple times // earthRef points to "images/earth.jpg" let earthRef = spaceRef.parent()?.child("earth.jpg") // nilRef is nil, since the parent of root is nil let nilRef = spaceRef.root().parent()
Objetivo-C
// References can be chained together multiple times // earthRef points to "images/earth.jpg" FIRStorageReference *earthRef = [[spaceRef parent] child:@"earth.jpg"]; // nilRef is nil, since the parent of root is nil FIRStorageReference *nilRef = [[spaceRef root] parent];
Propriedades de referência
Você pode inspecionar as referências para entender melhor os arquivos para os quais elas apontam usando as propriedades fullPath
, name
e bucket
. Essas propriedades obtêm o caminho completo, o nome e o bucket do arquivo.
Rápido
// Reference's path is: "images/space.jpg" // This is analogous to a file path on disk spaceRef.fullPath // Reference's name is the last segment of the full path: "space.jpg" // This is analogous to the file name spaceRef.name // Reference's bucket is the name of the storage bucket where files are stored spaceRef.bucket
Objetivo-C
// Reference's path is: "images/space.jpg" // This is analogous to a file path on disk spaceRef.fullPath; // Reference's name is the last segment of the full path: "space.jpg" // This is analogous to the file name spaceRef.name; // Reference's bucket is the name of the storage bucket where files are stored spaceRef.bucket;
Limitações nas referências
Os caminhos e nomes de referência podem conter qualquer sequência de caracteres Unicode válidos, mas certas restrições são impostas, incluindo:
- O comprimento total de reference.fullPath deve estar entre 1 e 1.024 bytes quando codificado em UTF-8.
- Nenhum caractere de retorno de carro ou alimentação de linha.
- Evite usar
#
,[
,]
,*
ou?
, pois não funcionam bem com outras ferramentas, como Firebase Realtime Database ou gsutil .
Exemplo completo
Rápido
// Points to the root reference let storageRef = Storage.storage().reference() // Points to "images" let imagesRef = storageRef.child("images") // Points to "images/space.jpg" // Note that you can use variables to create child values let fileName = "space.jpg" let spaceRef = imagesRef.child(fileName) // File path is "images/space.jpg" let path = spaceRef.fullPath // File name is "space.jpg" let name = spaceRef.name // Points to "images" let images = spaceRef.parent()
Objetivo-C
// Points to the root reference FIRStorageReference *storageRef = [[FIRStorage storage] reference]; // Points to "images" FIRStorageReference *imagesRef = [storageRef child:@"images"]; // Points to "images/space.jpg" // Note that you can use variables to create child values NSString *fileName = @"space.jpg"; FIRStorageReference *spaceRef = [imagesRef child:fileName]; // File path is "images/space.jpg" NSString *path = spaceRef.fullPath; // File name is "space.jpg" NSString *name = spaceRef.name; // Points to "images" imagesRef = [spaceRef parent];
A seguir, vamos aprender como fazer upload de arquivos para o Cloud Storage.