2022-02-05 23:07:56 -07:00
|
|
|
import 'dart:async';
|
2022-02-03 09:06:44 -07:00
|
|
|
import 'dart:convert';
|
|
|
|
import 'dart:io';
|
|
|
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:hive/hive.dart';
|
2022-06-25 11:46:51 -07:00
|
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
2022-02-03 09:06:44 -07:00
|
|
|
import 'package:immich_mobile/constants/hive_box.dart';
|
2022-07-06 14:12:55 -07:00
|
|
|
import 'package:immich_mobile/modules/backup/models/current_upload_asset.model.dart';
|
|
|
|
import 'package:immich_mobile/modules/backup/models/error_upload_asset.model.dart';
|
2022-07-13 05:23:48 -07:00
|
|
|
import 'package:immich_mobile/shared/services/api.service.dart';
|
2022-02-03 09:06:44 -07:00
|
|
|
import 'package:immich_mobile/utils/files_helper.dart';
|
2022-07-13 05:23:48 -07:00
|
|
|
import 'package:openapi/api.dart';
|
2022-02-03 09:06:44 -07:00
|
|
|
import 'package:photo_manager/photo_manager.dart';
|
|
|
|
import 'package:http_parser/http_parser.dart';
|
|
|
|
import 'package:path/path.dart' as p;
|
2022-06-18 05:36:58 -07:00
|
|
|
import 'package:cancellation_token_http/http.dart' as http;
|
2022-02-03 09:06:44 -07:00
|
|
|
|
2022-07-13 05:23:48 -07:00
|
|
|
final backupServiceProvider = Provider(
|
|
|
|
(ref) => BackupService(
|
|
|
|
ref.watch(apiServiceProvider),
|
|
|
|
),
|
|
|
|
);
|
2022-06-25 11:46:51 -07:00
|
|
|
|
2022-02-03 09:06:44 -07:00
|
|
|
class BackupService {
|
2022-07-13 05:23:48 -07:00
|
|
|
final ApiService _apiService;
|
|
|
|
BackupService(this._apiService);
|
2022-07-06 14:12:55 -07:00
|
|
|
|
2022-07-13 05:23:48 -07:00
|
|
|
Future<List<String>?> getDeviceBackupAsset() async {
|
2022-07-06 14:12:55 -07:00
|
|
|
String deviceId = Hive.box(userInfoBox).get(deviceIdKey);
|
|
|
|
|
|
|
|
try {
|
2022-07-13 05:23:48 -07:00
|
|
|
return await _apiService.assetApi.getUserAssetsByDeviceId(deviceId);
|
2022-07-06 14:12:55 -07:00
|
|
|
} catch (e) {
|
2022-07-13 05:23:48 -07:00
|
|
|
debugPrint('Error [getDeviceBackupAsset] ${e.toString()}');
|
|
|
|
return null;
|
2022-07-06 14:12:55 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-25 11:46:51 -07:00
|
|
|
backupAsset(
|
2022-07-06 14:12:55 -07:00
|
|
|
Set<AssetEntity> assetList,
|
|
|
|
http.CancellationToken cancelToken,
|
|
|
|
Function(String, String) singleAssetDoneCb,
|
|
|
|
Function(int, int) uploadProgressCb,
|
|
|
|
Function(CurrentUploadAsset) setCurrentUploadAssetCb,
|
|
|
|
Function(ErrorUploadAsset) errorCb,
|
|
|
|
) async {
|
2022-02-03 09:06:44 -07:00
|
|
|
String deviceId = Hive.box(userInfoBox).get(deviceIdKey);
|
|
|
|
String savedEndpoint = Hive.box(userInfoBox).get(serverEndpointKey);
|
|
|
|
File? file;
|
|
|
|
|
|
|
|
for (var entity in assetList) {
|
|
|
|
try {
|
2022-02-05 23:07:56 -07:00
|
|
|
if (entity.type == AssetType.video) {
|
2022-02-09 19:48:06 -07:00
|
|
|
file = await entity.originFile;
|
2022-02-05 23:07:56 -07:00
|
|
|
} else {
|
2022-02-09 19:48:06 -07:00
|
|
|
file = await entity.originFile.timeout(const Duration(seconds: 5));
|
2022-02-05 23:07:56 -07:00
|
|
|
}
|
2022-02-03 09:06:44 -07:00
|
|
|
|
|
|
|
if (file != null) {
|
|
|
|
String originalFileName = await entity.titleAsync;
|
2022-06-25 11:46:51 -07:00
|
|
|
String fileNameWithoutPath =
|
|
|
|
originalFileName.toString().split(".")[0];
|
2022-02-03 09:06:44 -07:00
|
|
|
var fileExtension = p.extension(file.path);
|
|
|
|
var mimeType = FileHelper.getMimeType(file.path);
|
2022-06-18 05:36:58 -07:00
|
|
|
var fileStream = file.openRead();
|
|
|
|
var assetRawUploadData = http.MultipartFile(
|
|
|
|
"assetData",
|
|
|
|
fileStream,
|
|
|
|
file.lengthSync(),
|
2022-03-21 23:22:04 -07:00
|
|
|
filename: fileNameWithoutPath,
|
|
|
|
contentType: MediaType(
|
|
|
|
mimeType["type"],
|
|
|
|
mimeType["subType"],
|
|
|
|
),
|
|
|
|
);
|
2022-02-03 09:06:44 -07:00
|
|
|
|
2022-06-18 05:36:58 -07:00
|
|
|
var box = Hive.box(userInfoBox);
|
2022-03-21 23:22:04 -07:00
|
|
|
|
2022-06-25 11:46:51 -07:00
|
|
|
var req = MultipartRequest(
|
2022-07-13 05:23:48 -07:00
|
|
|
'POST',
|
|
|
|
Uri.parse('$savedEndpoint/asset/upload'),
|
|
|
|
onProgress: ((bytes, totalBytes) =>
|
|
|
|
uploadProgressCb(bytes, totalBytes)),
|
|
|
|
);
|
2022-06-18 05:36:58 -07:00
|
|
|
req.headers["Authorization"] = "Bearer ${box.get(accessTokenKey)}";
|
|
|
|
|
|
|
|
req.fields['deviceAssetId'] = entity.id;
|
|
|
|
req.fields['deviceId'] = deviceId;
|
|
|
|
req.fields['assetType'] = _getAssetType(entity.type);
|
|
|
|
req.fields['createdAt'] = entity.createDateTime.toIso8601String();
|
|
|
|
req.fields['modifiedAt'] = entity.modifiedDateTime.toIso8601String();
|
|
|
|
req.fields['isFavorite'] = entity.isFavorite.toString();
|
|
|
|
req.fields['fileExtension'] = fileExtension;
|
|
|
|
req.fields['duration'] = entity.videoDuration.toString();
|
|
|
|
|
|
|
|
req.files.add(assetRawUploadData);
|
2022-03-21 23:22:04 -07:00
|
|
|
|
2022-07-06 14:12:55 -07:00
|
|
|
setCurrentUploadAssetCb(
|
|
|
|
CurrentUploadAsset(
|
|
|
|
id: entity.id,
|
|
|
|
createdAt: entity.createDateTime,
|
|
|
|
fileName: originalFileName,
|
|
|
|
fileType: _getAssetType(entity.type),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
var response = await req.send(cancellationToken: cancelToken);
|
2022-02-03 09:06:44 -07:00
|
|
|
|
2022-07-06 14:12:55 -07:00
|
|
|
if (response.statusCode == 201) {
|
2022-02-13 14:10:42 -07:00
|
|
|
singleAssetDoneCb(entity.id, deviceId);
|
2022-07-06 14:12:55 -07:00
|
|
|
} else {
|
|
|
|
var data = await response.stream.bytesToString();
|
|
|
|
var error = jsonDecode(data);
|
|
|
|
|
|
|
|
debugPrint(
|
2022-07-13 05:23:48 -07:00
|
|
|
"Error(${error['statusCode']}) uploading ${entity.id} | $originalFileName | Created on ${entity.createDateTime} | ${error['error']}",
|
|
|
|
);
|
|
|
|
|
|
|
|
errorCb(
|
|
|
|
ErrorUploadAsset(
|
|
|
|
asset: entity,
|
|
|
|
id: entity.id,
|
|
|
|
createdAt: entity.createDateTime,
|
|
|
|
fileName: originalFileName,
|
|
|
|
fileType: _getAssetType(entity.type),
|
|
|
|
errorMessage: error['error'],
|
|
|
|
),
|
|
|
|
);
|
2022-07-06 14:12:55 -07:00
|
|
|
continue;
|
2022-02-03 09:06:44 -07:00
|
|
|
}
|
|
|
|
}
|
2022-06-18 05:36:58 -07:00
|
|
|
} on http.CancelledException {
|
|
|
|
debugPrint("Backup was cancelled by the user");
|
|
|
|
return;
|
2022-02-03 09:06:44 -07:00
|
|
|
} catch (e) {
|
|
|
|
debugPrint("ERROR backupAsset: ${e.toString()}");
|
|
|
|
continue;
|
|
|
|
} finally {
|
|
|
|
if (Platform.isIOS) {
|
|
|
|
file?.deleteSync();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
String _getAssetType(AssetType assetType) {
|
|
|
|
switch (assetType) {
|
|
|
|
case AssetType.audio:
|
|
|
|
return "AUDIO";
|
|
|
|
case AssetType.image:
|
|
|
|
return "IMAGE";
|
|
|
|
case AssetType.video:
|
|
|
|
return "VIDEO";
|
|
|
|
case AssetType.other:
|
|
|
|
return "OTHER";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-13 05:23:48 -07:00
|
|
|
Future<DeviceInfoResponseDto> setAutoBackup(
|
|
|
|
bool status,
|
|
|
|
String deviceId,
|
|
|
|
DeviceTypeEnum deviceType,
|
|
|
|
) async {
|
|
|
|
try {
|
|
|
|
var updatedDeviceInfo = await _apiService.deviceInfoApi.updateDeviceInfo(
|
|
|
|
UpdateDeviceInfoDto(
|
|
|
|
deviceId: deviceId,
|
|
|
|
deviceType: deviceType,
|
|
|
|
isAutoBackup: status,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
if (updatedDeviceInfo == null) {
|
|
|
|
throw Exception("Error updating device info");
|
|
|
|
}
|
2022-02-03 09:06:44 -07:00
|
|
|
|
2022-07-13 05:23:48 -07:00
|
|
|
return updatedDeviceInfo;
|
|
|
|
} catch (e) {
|
|
|
|
debugPrint("Error setAutoBackup: ${e.toString()}");
|
|
|
|
throw Error();
|
|
|
|
}
|
2022-02-03 09:06:44 -07:00
|
|
|
}
|
|
|
|
}
|
2022-06-18 05:36:58 -07:00
|
|
|
|
|
|
|
class MultipartRequest extends http.MultipartRequest {
|
|
|
|
/// Creates a new [MultipartRequest].
|
|
|
|
MultipartRequest(
|
|
|
|
String method,
|
|
|
|
Uri url, {
|
|
|
|
required this.onProgress,
|
|
|
|
}) : super(method, url);
|
|
|
|
|
|
|
|
final void Function(int bytes, int totalBytes) onProgress;
|
|
|
|
|
|
|
|
/// Freezes all mutable fields and returns a
|
|
|
|
/// single-subscription [http.ByteStream]
|
|
|
|
/// that will emit the request body.
|
|
|
|
@override
|
|
|
|
http.ByteStream finalize() {
|
|
|
|
final byteStream = super.finalize();
|
|
|
|
|
|
|
|
final total = contentLength;
|
|
|
|
var bytes = 0;
|
|
|
|
|
|
|
|
final t = StreamTransformer.fromHandlers(
|
|
|
|
handleData: (List<int> data, EventSink<List<int>> sink) {
|
|
|
|
bytes += data.length;
|
|
|
|
onProgress.call(bytes, total);
|
|
|
|
sink.add(data);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
final stream = byteStream.transform(t);
|
|
|
|
return http.ByteStream(stream);
|
|
|
|
}
|
|
|
|
}
|