mirror of
https://github.com/immich-app/immich.git
synced 2025-08-11 09:16:31 -04:00
* clear local file cache before upload * clear cache during hashing * fix test * add button to clear cache manually * add button to clear cache manually --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> Co-authored-by: Alex <alex.tran1502@gmail.com>
80 lines
2.2 KiB
Dart
80 lines
2.2 KiB
Dart
import 'dart:io';
|
|
|
|
import 'package:immich_mobile/domain/models/asset/base_asset.model.dart';
|
|
import 'package:logging/logging.dart';
|
|
import 'package:photo_manager/photo_manager.dart';
|
|
|
|
class StorageRepository {
|
|
const StorageRepository();
|
|
|
|
Future<File?> getFileForAsset(String assetId) async {
|
|
File? file;
|
|
final log = Logger('StorageRepository');
|
|
|
|
try {
|
|
final entity = await AssetEntity.fromId(assetId);
|
|
file = await entity?.originFile;
|
|
if (file == null) {
|
|
log.warning("Cannot get file for asset $assetId");
|
|
}
|
|
} catch (error, stackTrace) {
|
|
log.warning("Error getting file for asset $assetId", error, stackTrace);
|
|
}
|
|
return file;
|
|
}
|
|
|
|
Future<File?> getMotionFileForAsset(LocalAsset asset) async {
|
|
File? file;
|
|
final log = Logger('StorageRepository');
|
|
|
|
try {
|
|
final entity = await AssetEntity.fromId(asset.id);
|
|
file = await entity?.originFileWithSubtype;
|
|
if (file == null) {
|
|
log.warning(
|
|
"Cannot get motion file for asset ${asset.id}, name: ${asset.name}, created on: ${asset.createdAt}",
|
|
);
|
|
}
|
|
} catch (error, stackTrace) {
|
|
log.warning(
|
|
"Error getting motion file for asset ${asset.id}, name: ${asset.name}, created on: ${asset.createdAt}",
|
|
error,
|
|
stackTrace,
|
|
);
|
|
}
|
|
return file;
|
|
}
|
|
|
|
Future<AssetEntity?> getAssetEntityForAsset(LocalAsset asset) async {
|
|
final log = Logger('StorageRepository');
|
|
|
|
AssetEntity? entity;
|
|
|
|
try {
|
|
entity = await AssetEntity.fromId(asset.id);
|
|
if (entity == null) {
|
|
log.warning(
|
|
"Cannot get AssetEntity for asset ${asset.id}, name: ${asset.name}, created on: ${asset.createdAt}",
|
|
);
|
|
}
|
|
} catch (error, stackTrace) {
|
|
log.warning(
|
|
"Error getting AssetEntity for asset ${asset.id}, name: ${asset.name}, created on: ${asset.createdAt}",
|
|
error,
|
|
stackTrace,
|
|
);
|
|
}
|
|
return entity;
|
|
}
|
|
|
|
Future<void> clearCache() async {
|
|
final log = Logger('StorageRepository');
|
|
|
|
try {
|
|
await PhotoManager.clearFileCache();
|
|
} catch (error, stackTrace) {
|
|
log.warning("Error clearing cache", error, stackTrace);
|
|
}
|
|
}
|
|
}
|