יצירת הפניה ל-Cloud Storage באמצעות Cloud Storage for Unity

הקבצים שלכם מאוחסנים קטגוריה Cloud Storage. הקבצים בקטגוריה הזו מוצגים במבנה היררכי, במערכת הקבצים בכונן הקשיח המקומי או בנתונים ב-Firebase Realtime Database. האפליקציה שלכם יוצרת קובץ עזר כדי לקבל גישה אליו. ההפניות האלה יכול לשמש להעלאה או הורדה של נתונים, לקבל או לעדכן מטא-נתונים או למחוק את הקובץ. קובץ העזר יכול להפנות לקובץ ספציפי או לרמה גבוהה יותר בהיררכיה.

אם השתמשתם בFirebase Realtime Database, הנתיבים האלה צריכים להיות נראים לך מוכרים מאוד. עם זאת, נתוני הקבצים מאוחסנים Cloud Storage, לא בRealtime Database.

יצירת קובץ עזר

יוצרים קובץ עזר כדי להעלות, להוריד או למחוק קובץ, או לקבל או לעדכן את המטא-נתונים שלו. חומר עזר יכול להיחשב כמצביע לקובץ שבענן. ההפניות הן קל, כך שאפשר ליצור כמה שרוצים. אפשר לעשות בהם שימוש חוזר מספר פעולות.

ההפניות נוצרות מהשירות Firebase.Storage.FirebaseStorage בתאריך מפעילים את אפליקציית Firebase באמצעות קריאה ל-method GetReferenceFromUrl() ומעבירים כתובת ה-URL בפורמט gs://<your-cloud-storage-bucket>. ניתן למצוא את כתובת ה-URL הזו ב הקטע 'אחסון' במסוף Firebase.

// Get a reference to the storage service, using the default Firebase App
FirebaseStorage storage = FirebaseStorage.DefaultInstance;

// Create a storage reference from our storage service
StorageReference storageRef =
    storage.GetReferenceFromUrl("gs://<your-cloud-storage-bucket>");

תוכלו ליצור הפניה למיקום שנמצא נמוך יותר בעץ, לדוגמה 'images/space.jpg', על ידי שימוש בשיטה child על קובץ עזר קיים.

// Create a child reference
// imagesRef now points to "images"
StorageReference imagesRef = storageRef.Child("images");

// Child references can also take paths delimited by '/' such as:
// "images/space.jpg".
StorageReference spaceRef = imagesRef.Child("space.jpg");
// spaceRef now points to "images/space.jpg"
// imagesRef still points to "images"

// This is equivalent to creating the full referenced
StorageReference spaceRefFull = storage.GetReferenceFromUrl(
    "gs://<your-cloud-storage-bucket>/images/space.jpg");

אפשר גם להשתמש בשיטות Parent ו-Root כדי לנווט למעלה בקובץ שלנו ההיררכיה. Parent מאפשרת לנווט ברמה אחת למעלה, ו-Root מאפשרת לנווט עד למעלה.

// Parent allows us to move to the parent of a reference
// imagesRef now points to 'images'
StorageReference imagesRef = spaceRef.Parent;

// Root allows us to move all the way back to the top of our bucket
// rootRef now points to the root
StorageReference rootRef = spaceRef.Root;

אפשר לשרשר יחד את Child, Parent ו-Root כמה פעמים, כמו שכל אחד מהם יחזיר הפניה. יוצא הדופן הוא Parent של Root, הוא StorageReference לא חוקי.

// References can be chained together multiple times
// earthRef points to "images/earth.jpg"
StorageReference earthRef =
    spaceRef.Parent.Child("earth.jpg");

// nullRef is null since the parent of root is an invalid StorageReference
StorageReference nullRef = spaceRef.Root.Parent;

שיטות הפניה

אפשר לבדוק קובצי עזר כדי להבין טוב יותר את הקבצים שאליהם הם מפנים באמצעות המאפיינים Path, Name ו-Bucket. המאפיינים האלה מקבלים את המאפיינים של הקובץ נתיב מלא, שם וקטגוריה.

// Reference's path is: "images/space.jpg"
// This is analogous to a file path on disk
string path = spaceRef.Path;

// Reference's name is the last segment of the full path: "space.jpg"
// This is analogous to the file name
string name = spaceRef.Name;

// Reference's bucket is the name of the storage bucket where files are stored
string bucket = spaceRef.Bucket;

הגבלות על קובצי עזר

נתיבים ושמות של הפניות יכולים להכיל כל רצף של תווי Unicode חוקיים, אבל חלות הגבלות מסוימות, כולל:

  1. האורך הכולל של reference.Path חייב להיות בין 1 ל-1,024 בייטים בקידוד UTF-8 באמצעות קידוד.
  2. ללא תווים של חזרה לתחילת השורה או תו של מעבר שורה.
  3. לא מומלץ להשתמש ב-#, ב-[, ב-], ב-* או ב-?, כי הם לא פועלים טוב עם כלים אחרים כמו Firebase Realtime Database או ב-gsutil.

דוגמה מלאה

FirebaseStorage storage = FirebaseStorage.DefaultInstance;

// Points to the root reference
StorageReference storageRef =
    storage.GetReferenceFromUrl("gs://<your-bucket-name>");

// Points to "images"
StorageReference imagesRef = storageRef.Child("images");

// Points to "images/space.jpg"
// Note that you can use variables to create child values
string filename = "space.jpg";
StorageReference spaceRef = imagesRef.Child(filename);

// File path is "images/space.jpg"
string path = spaceRef.Path;

// File name is "space.jpg"
string name = spaceRef.Name;

// Points to "images"
StorageReference imagesRef = spaceRef.Parent;

השלבים הבאים

בשלב הבא נלמד איך להעלות קבצים אל Cloud Storage.