nc-photos/app/lib/use_case/download_file.dart
2023-09-03 17:13:11 +08:00

52 lines
1.5 KiB
Dart

import 'package:nc_photos/account.dart';
import 'package:nc_photos/entity/file_descriptor.dart';
import 'package:nc_photos/mobile/platform.dart'
if (dart.library.html) 'package:nc_photos/web/platform.dart' as platform;
import 'package:nc_photos/np_api_util.dart';
import 'package:nc_photos/platform/download.dart';
class DownloadFile {
/// Create a new download but don't start it yet
///
/// [onProgress] is not supported by all implementors. If supported, it will
/// be called with the current download progress, normalized from 0 to 1.
/// There's no guarantee that you will receive a 1 in [onProgress]
Download build(
Account account,
FileDescriptor file, {
String? parentDir,
bool? shouldNotify,
void Function(double progress)? onProgress,
}) {
final url = "${account.url}/${file.fdPath}";
return platform.DownloadBuilder().build(
url: url,
headers: {
"authorization": AuthUtil.fromAccount(account).toHeaderValue(),
},
mimeType: file.fdMime,
filename: file.filename,
parentDir: parentDir,
shouldNotify: shouldNotify,
onProgress: onProgress,
);
}
/// Download [file]
///
/// See [DownloadBuilder]
Future<dynamic> call(
Account account,
FileDescriptor file, {
String? parentDir,
bool? shouldNotify,
void Function(double progress)? onProgress,
}) =>
build(
account,
file,
parentDir: parentDir,
shouldNotify: shouldNotify,
onProgress: onProgress,
)();
}