sdk-generator icon indicating copy to clipboard operation
sdk-generator copied to clipboard

🚀 Feature: add progress callback on Storage API for downloads (getFileDownload and getFileView)

Open frmatthew opened this issue 3 years ago • 4 comments

🔖 Feature description

Just as Storage.createFile has an optional onProgress callback, it would be very helpful for getFileDownload and getFileView to have an onProgress callback also for the download progress.

Alternatively, the API could allow plugging in custom http clients (such as Dio?) which already have hooks for tracking request/response progress.

🎤 Pitch

This would allow dynamic updating of the UI in response to downloads, especially for larger files. an onProgress callback could update a ProgressBar, indicate to the user the estimated wait time for the download to complete, etc.

👀 Have you spent some time to check if this issue has been raised before?

  • [X] I checked and didn't find similar issue

🏢 Have you read the Code of Conduct?

frmatthew avatar Jul 14 '22 06:07 frmatthew

A workaround for public files is to create the URL manually (see appwrite/sdk-for-flutter#63) and use a different http client altogether which tracks progress. But this won't work for files requiring authentication.

frmatthew avatar Jul 14 '22 06:07 frmatthew

any update on this? Having public files isn't a valid and secure approach. Thanks

sgruhier avatar Jan 18 '23 12:01 sgruhier

🔖 Feature description

Just as Storage.createFile has an optional onProgress callback, it would be very helpful for getFileDownload and getFileView to have an onProgress callback also for the download progress.

Alternatively, the API could allow plugging in custom http clients (such as Dio?) which already have hooks for tracking request/response progress.

🎤 Pitch

This would allow dynamic updating of the UI in response to downloads, especially for larger files. an onProgress callback could update a ProgressBar, indicate to the user the estimated wait time for the download to complete, etc.

👀 Have you spent some time to check if this issue has been raised before?

  • [x] I checked and didn't find similar issue

🏢 Have you read the Code of Conduct?

Did the progress for the file work for you? I did not in my case

I also encounter the same issue, I cannot check the progress of the large file download. Please consider to add this feature!

thuongvovan avatar Dec 25 '23 04:12 thuongvovan