easy_storage 0.0.6 easy_storage: ^0.0.6 copied to clipboard
File upload package for Firebase Storage. Supports photo, video, and other files.
Easy Stroage #
This package provides easy to upload photos and files into the Firebase Storage.
-
Uploads are typically done through the
StorageService.instance.upload
function. When you call this function, a popup window appears, allowing you to choose whether to upload from the gallery or from the camera. Once you make a selection, the upload proceeds. -
Uploaded files are stored in the Storage at the
/users/<uid>
path.
Installation #
- The app must config and initialize with Firebase before using this package.
- The user must be signed in to upload into Storage. Anonymous login is okay.
- The app must have all the setup that are required to use Camera and Gallery. For iOS, the app needs the entitlements of Camera and Gallery.
- The Firebase Storage must be ready and the security rules are porperly setup.
Security rules #
rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if false;
}
match /users/{userId}/{allPaths=**} {
allow read: if true;
allow write: if request.auth.uid == userId;
}
}
}
iOS #
Add these entitlements for allowing the app to use Camera and Gallery.
<key>NSPhotoLibraryUsageDescription</key>
<string>This app requires access to the photo library to share the photo on profile, chat, forum.</string>
<key>NSCameraUsageDescription</key>
<string>This app requires access to the camera to share the photo on profile, chat, forum.</string>
TODO #
- Give an option to
init
that if the thumbnails are being used. - When the original image is deleted, delete the thumbnails.
- When the image resizing (thumbnailing) is done, update the document
- To do this, there must be a code to know if the upload belongs to post, comment, chat, or user photo, etc and there must be a document id also.
- Can it be saved in the path of file name??
- This way, it is much easier to use the thumbnail since we know that the document(chat, post, comemnt, user, etc) has thumbnail or now.
- To do this, there must be a code to know if the upload belongs to post, comment, chat, or user photo, etc and there must be a document id also.
Upload #
Below is an example of uploading. When you click the button, it calls the StorageService.instance.upload
function to perform the upload. You just need to call the upload function when necessary. Especially, you can appropriately adjust the size of maxWidth
, and maxHeight
.
To customize upload source. By default photoCamera
, and photoGallery
is set to true. To show other upload source you can set them to true. Other available upload source, videoCamera
, videoGallery
, gallery
, file
.
- Upload image to firebase cloud storage.
StorageService.instance.upload(
photoCamera = true,
photoGallery = true,
progress: (p) => setState(() => progress = p),
complete: () => setState(() => progress = null),
);
UploadAt #
Upload a file (or an image) and save the url at the field of the document in Firestore. It can be any field of any document as long as it has permission.
You may do this working without uploadAt
like below.
// Upload new image
final url = await StorageService.instance.upload(
context: context,
);
if (url == null) return;
// Get the previous image
final oldUrl = UserService.instance.user?.photoUrl;
// Save new image
await user.update(
photoUrl: url,
);
// Delete previous image
await StorageService.instance.delete(oldUrl);
With uploadAt
, you can do blelow,
await StorageService.instance.uploadAt(
context: context,
ref: my.ref,
field: 'photoUrl',
);
Upload mutiple images #
- Uploading muliple image in Firebase Cloud Storage.
StorageService.intance.uploadMultiple(
progress: (p) => setState(() => progress = p),
complete: () => setState(() => progress = null),
);
Upload in a button #
IconButton(
icon: widget.cameraIcon ?? const Icon(Icons.camera_alt),
onPressed: () async {
// This is the upload
final url = await StorageService.instance.upload(
context: context,
camera: true,
gallery: true,
maxWidth: 800,
maxHeight: 800,
);
if (url == null) return;
print("Your uploaded file url is $url");
},
),
Delete #
- Deleteing image from Firebase cloud storage
```dart
final url = await StorageService.instance.upload( ... );
// Delete existing image
await StorageService.instance.delete(url);
- Deleting image from Firebase cloud storage and url path save in Firebase cloud firestore.
```dart
StorageService.intance.delete(url, ref: myDocumentRef, field: 'url');
Error handling #
By default, easy_storage
package handles errors that appears when users upload files. If the user denies the permission, the app won't be able to select media (such as photos), and an exception occurs internally in the app. This kind error is handled if enableFilePickerExceptionHandler
is set to true.
StorageService.instance.init(
enableFilePickerExceptionHandler: true,
)
If you want to handle the error yourself, set this false and you should handle this kinds of error in the RunZonedGuarded
.
Widgets #
ImageUpload #
- The
ImageUpload
widget simplifies the image uploading process. - The difference between
ImageUpload
andImageUploadIconButton
is that, you can customize any shape(UI) withImageUpload
widget whileImageUploadIconButton
shows an IconButon to upload an image where you can customize icon only.
ImageUpload(
icon: Icon(
Icons.person,
size: 100,
),
title: Text('Icon'),
subtitle: Text('Upload an Icon'),
),
- Upload image and save the url in the Firestore document.
ImageUpload(
initialData: my.photoUrl,
ref: my.ref,
field: 'photoUrl',
icon: const Icon(
Icons.image,
size: 80,
),
title: const Text('Profile Photo'),
subtitle: const Text('Please upload profile photo'),
),
- Default upload icon.
UploadIconButton(
onUpload: (u) => setState(() => url = u),
progress: (p) => setState(() => progress = p),
complete: () => setState(() => progress = null),
)
- File upload icon.
FileUploadIconButton(
onUpload: (u) => setState(() => url = u),
progress: (p) => setState(() => progress = p),
complete: () => setState(() => progress = null),
)
- Video upload icon.
VideoUploadIconButton(
onUpload: (u) => setState(() => url = u),
progress: (p) => setState(() => progress = p),
complete: () => setState(() => progress = null),
)
- Image upload icon.
ImageUploadIconButton(
onUpload: (u) => setState(() => url = u),
progress: (p) => setState(() => progress = p),
complete: () => setState(() => progress = null),
)
Thumbnails #
-
To use thumbnails you need to install Image Resize Extension.
-
easy_storage
package support 3 thumbnails- Small as 200x200
- Medium as 600x600
- Large as 1200x1200
-
You will need to install the image resize extension three times(instances) with the following configs
- Size must be 200x200, 600x600, 1200x1200
- Deletion of original file: false (No)
- Make resize images public: true (Yes)
- Convert images to prefered type: webp
- Assign new access token: false (No)
-
Note that, any of the easy package series must not use thumbnails. Only the app developer can use the thumbnails in their app code.
- App developers can use the imageQuality, maxium height and maxium width to reduce the size using the
StorageService.instance.upload()
method.
- App developers can use the imageQuality, maxium height and maxium width to reduce the size using the
-
Remember, the
Image Resize
extension will not create a square thumbnail. It maintains the ratio. -
How to use thumbail
url.thumbnail
as smallurl.thumbnailMedium
as mediumurl.thumbnailLarge
as large image.