إنشاء مرجع Cloud Storage في Flutter

يتم تخزين ملفاتك في حزمة Cloud Storage. يتم عرض الملفات في حزمة التخزين هذه في بنية هرمية، تمامًا مثل نظام الملفات على القرص الثابت على الجهاز أو البيانات في قاعدة بيانات Firebase الآنية الاستجابة. من خلال إنشاء إشارة إلى ملف، يحصل تطبيقك على إذن الوصول إليه. يمكن بعد ذلك استخدام هذه المراجع لتحميل البيانات أو تنزيلها أو الحصول على البيانات الوصفية أو تحديثها أو حذف الملف. يمكن أن يشير المرجع إلى ملف معين أو إلى عقدة ذات مستوى أعلى في التسلسل الهرمي.

إذا كنت قد استخدمت قاعدة بيانات Firebase في الوقت الفعلي، يجب أن تبدو لك هذه المسارات مألوفة جدًا. ومع ذلك، يتم تخزين بيانات الملفات في Cloud Storage، وليس في "قاعدة بيانات الوقت الفعلي".

إنشاء مرجع

أنشئ مرجعًا لتحميل ملف أو تنزيله أو حذفه، أو للحصول على بياناته الوصفية أو تعديلها. يمكن اعتبار المرجع كائنًا يشير إلى ملف في السحابة الإلكترونية. إنّ المراجع خفيفة الوزن، لذا يمكنك إنشاء أي عدد منها حسب الحاجة. كما أنها قابلة لإعادة الاستخدام لعمليات متعددة.

أنشئ مرجعًا باستخدام مثيل FirebaseStorage الفردي وطريقة ref().

final storageRef = FirebaseStorage.instance.ref();

بعد ذلك، يمكنك إنشاء إشارة إلى موقع جغرافي أسفل الشجرة، مثل "images/space.jpg" باستخدام الطريقة child() في مرجع حالي.

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

// Child references can also take paths
// spaceRef now points to "images/space.jpg
// imagesRef still points to "images"
final spaceRef = storageRef.child("images/space.jpg");

يمكنك أيضًا استخدام موقعَي parent وroot للتنقّل للأعلى في التسلسل الهرمي للملف. يؤدي الزر parent إلى الانتقال إلى مستوى أعلى، بينما يؤدي الزر root إلى الانتقال إلى أعلى الصفحة.

// parent allows us to move our reference to a parent node
// imagesRef2 now points to 'images'
final imagesRef2 = spaceRef.parent;

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

يمكن ربط child() وparent وroot معًا عدة مرات، لأنّ كلّ عنصر منها هو مرجع. ولكن يؤدي الوصول إلى root.parent إلى null.

// References can be chained together multiple times
// earthRef points to 'images/earth.jpg'
final earthRef = spaceRef.parent?.child("earth.jpg");

// nullRef is null, since the parent of root is null
final nullRef = spaceRef.root.parent;

الخصائص المرجعية

يمكنك فحص الإشارات لفهم الملفات التي تشير إليها بشكل أفضل باستخدام السمات fullPath وname وbucket. تحصل هذه السمات على المسار الكامل للملف واسمه وحزمة التخزين.

// 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 that the files are stored in
spaceRef.bucket;

القيود المفروضة على المراجع

يمكن أن تحتوي مسارات الإحالة والأسماء على أي تسلسل من أحرف Unicode الصالحة، ولكن يتم فرض قيود معيّنة، بما في ذلك:

  1. يجب أن يتراوح إجمالي طول reference.fullPath بين 1 و1024 بايت عند ترميزه باستخدام UTF-8.
  2. ما مِن أحرف لإرجاع سطر الأوامر أو أحرف لخلاصة السطر.
  3. تجنَّب استخدام # أو [ أو ] أو * أو ?، لأنّ هذه الأدوات لا تعمل بشكل جيد مع أدوات أخرى مثل قاعدة بيانات Firebase في الوقت الفعلي أو gsutil.

مثال كامل

// Points to the root reference
final storageRef = FirebaseStorage.instance.ref();

// Points to "images"
Reference? imagesRef = storageRef.child("images");

// Points to "images/space.jpg"
// Note that you can use variables to create child values
final fileName = "space.jpg";
final spaceRef = imagesRef.child(fileName);

// File path is "images/space.jpg"
final path = spaceRef.fullPath;

// File name is "space.jpg"
final name = spaceRef.name;

// Points to "images"
imagesRef = spaceRef.parent;

بعد ذلك، لنتعرّف على كيفية تحميل الملفات إلى Cloud Storage.