2023-04-16 22:02:07 -07:00
|
|
|
import 'package:flutter/material.dart';
|
2022-02-03 09:06:44 -07:00
|
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
2023-03-03 15:38:30 -07:00
|
|
|
import 'package:immich_mobile/modules/album/services/album.service.dart';
|
|
|
|
import 'package:immich_mobile/shared/models/exif_info.dart';
|
2023-02-09 10:32:08 -07:00
|
|
|
import 'package:immich_mobile/shared/models/store.dart';
|
2023-03-03 15:38:30 -07:00
|
|
|
import 'package:immich_mobile/shared/providers/db.provider.dart';
|
2023-02-04 13:42:42 -07:00
|
|
|
import 'package:immich_mobile/shared/services/asset.service.dart';
|
2023-01-18 08:59:23 -07:00
|
|
|
import 'package:immich_mobile/modules/home/ui/asset_grid/asset_grid_data_structure.dart';
|
|
|
|
import 'package:immich_mobile/modules/settings/providers/app_settings.provider.dart';
|
|
|
|
import 'package:immich_mobile/modules/settings/services/app_settings.service.dart';
|
2022-11-08 10:00:24 -07:00
|
|
|
import 'package:immich_mobile/shared/models/asset.dart';
|
2023-03-26 19:35:52 -07:00
|
|
|
import 'package:immich_mobile/shared/services/sync.service.dart';
|
|
|
|
import 'package:immich_mobile/utils/db.dart';
|
2023-03-03 15:38:30 -07:00
|
|
|
import 'package:isar/isar.dart';
|
2022-11-27 13:34:19 -07:00
|
|
|
import 'package:logging/logging.dart';
|
2022-07-13 05:23:48 -07:00
|
|
|
import 'package:openapi/api.dart';
|
2022-02-13 14:10:42 -07:00
|
|
|
import 'package:photo_manager/photo_manager.dart';
|
2022-02-03 09:06:44 -07:00
|
|
|
|
2023-04-16 22:02:07 -07:00
|
|
|
/// State does not contain archived assets.
|
|
|
|
/// Use database provider if you want to access the isArchived assets
|
2023-05-17 10:36:02 -07:00
|
|
|
class AssetsState {}
|
2023-01-18 08:59:23 -07:00
|
|
|
|
|
|
|
class AssetNotifier extends StateNotifier<AssetsState> {
|
2022-06-25 11:46:51 -07:00
|
|
|
final AssetService _assetService;
|
2023-03-03 15:38:30 -07:00
|
|
|
final AlbumService _albumService;
|
2023-03-26 19:35:52 -07:00
|
|
|
final SyncService _syncService;
|
2023-03-03 15:38:30 -07:00
|
|
|
final Isar _db;
|
2022-11-27 13:34:19 -07:00
|
|
|
final log = Logger('AssetNotifier');
|
2022-11-08 10:00:24 -07:00
|
|
|
bool _getAllAssetInProgress = false;
|
|
|
|
bool _deleteInProgress = false;
|
2022-02-03 09:06:44 -07:00
|
|
|
|
2023-01-18 08:59:23 -07:00
|
|
|
AssetNotifier(
|
|
|
|
this._assetService,
|
2023-03-03 15:38:30 -07:00
|
|
|
this._albumService,
|
2023-03-26 19:35:52 -07:00
|
|
|
this._syncService,
|
2023-03-03 15:38:30 -07:00
|
|
|
this._db,
|
2023-05-17 10:36:02 -07:00
|
|
|
) : super(AssetsState());
|
2022-10-15 14:20:15 -07:00
|
|
|
|
2023-03-26 19:35:52 -07:00
|
|
|
Future<void> getAllAsset({bool clear = false}) async {
|
2022-11-08 10:00:24 -07:00
|
|
|
if (_getAllAssetInProgress || _deleteInProgress) {
|
|
|
|
// guard against multiple calls to this method while it's still working
|
|
|
|
return;
|
|
|
|
}
|
2023-03-26 19:35:52 -07:00
|
|
|
final stopwatch = Stopwatch()..start();
|
2022-11-08 10:00:24 -07:00
|
|
|
try {
|
|
|
|
_getAllAssetInProgress = true;
|
2023-03-26 19:35:52 -07:00
|
|
|
if (clear) {
|
|
|
|
await clearAssetsAndAlbums(_db);
|
|
|
|
log.info("Manual refresh requested, cleared assets and albums from db");
|
2023-02-04 13:42:42 -07:00
|
|
|
}
|
2023-03-03 15:38:30 -07:00
|
|
|
final bool newRemote = await _assetService.refreshRemoteAssets();
|
|
|
|
final bool newLocal = await _albumService.refreshDeviceAlbums();
|
2023-04-16 22:02:07 -07:00
|
|
|
debugPrint("newRemote: $newRemote, newLocal: $newLocal");
|
2022-11-27 13:34:19 -07:00
|
|
|
log.info("Load assets: ${stopwatch.elapsedMilliseconds}ms");
|
2022-11-08 10:00:24 -07:00
|
|
|
} finally {
|
|
|
|
_getAllAssetInProgress = false;
|
2022-10-14 14:57:55 -07:00
|
|
|
}
|
2022-11-26 09:16:02 -07:00
|
|
|
}
|
|
|
|
|
2023-03-03 15:38:30 -07:00
|
|
|
Future<void> clearAllAsset() {
|
2023-03-26 19:35:52 -07:00
|
|
|
return clearAssetsAndAlbums(_db);
|
2022-02-13 14:10:42 -07:00
|
|
|
}
|
2022-02-03 09:06:44 -07:00
|
|
|
|
2023-03-03 15:38:30 -07:00
|
|
|
Future<void> onNewAssetUploaded(Asset newAsset) async {
|
2023-05-17 10:36:02 -07:00
|
|
|
// eTag on device is not valid after partially modifying the assets
|
|
|
|
Store.delete(StoreKey.assetETag);
|
|
|
|
await _syncService.syncNewAssetToDb(newAsset);
|
2022-02-14 09:40:41 -07:00
|
|
|
}
|
|
|
|
|
2023-03-03 15:38:30 -07:00
|
|
|
Future<void> deleteAssets(Set<Asset> deleteAssets) async {
|
2022-11-08 10:00:24 -07:00
|
|
|
_deleteInProgress = true;
|
|
|
|
try {
|
|
|
|
final localDeleted = await _deleteLocalAssets(deleteAssets);
|
|
|
|
final remoteDeleted = await _deleteRemoteAssets(deleteAssets);
|
2023-03-03 15:38:30 -07:00
|
|
|
if (localDeleted.isNotEmpty || remoteDeleted.isNotEmpty) {
|
|
|
|
final dbIds = deleteAssets.map((e) => e.id).toList();
|
|
|
|
await _db.writeTxn(() async {
|
|
|
|
await _db.exifInfos.deleteAll(dbIds);
|
|
|
|
await _db.assets.deleteAll(dbIds);
|
|
|
|
});
|
2022-11-08 10:00:24 -07:00
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
_deleteInProgress = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<List<String>> _deleteLocalAssets(Set<Asset> assetsToDelete) async {
|
2023-03-03 15:38:30 -07:00
|
|
|
final int deviceId = Store.get(StoreKey.deviceIdHash);
|
2022-11-08 10:00:24 -07:00
|
|
|
final List<String> local = [];
|
2022-02-13 14:10:42 -07:00
|
|
|
// Delete asset from device
|
2022-11-08 10:00:24 -07:00
|
|
|
for (final Asset asset in assetsToDelete) {
|
|
|
|
if (asset.isLocal) {
|
2023-03-03 15:38:30 -07:00
|
|
|
local.add(asset.localId);
|
2022-11-08 10:00:24 -07:00
|
|
|
} else if (asset.deviceId == deviceId) {
|
|
|
|
// Delete asset on device if it is still present
|
2023-03-03 15:38:30 -07:00
|
|
|
var localAsset = await AssetEntity.fromId(asset.localId);
|
2022-02-13 14:10:42 -07:00
|
|
|
if (localAsset != null) {
|
2022-11-08 10:00:24 -07:00
|
|
|
local.add(localAsset.id);
|
2022-02-03 09:06:44 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-11-08 10:00:24 -07:00
|
|
|
if (local.isNotEmpty) {
|
|
|
|
try {
|
2023-05-17 10:36:02 -07:00
|
|
|
return await PhotoManager.editor.deleteWithIds(local);
|
2022-11-27 13:34:19 -07:00
|
|
|
} catch (e, stack) {
|
|
|
|
log.severe("Failed to delete asset from device", e, stack);
|
2022-02-06 19:31:32 -07:00
|
|
|
}
|
|
|
|
}
|
2022-11-08 10:00:24 -07:00
|
|
|
return [];
|
|
|
|
}
|
2022-10-15 14:20:15 -07:00
|
|
|
|
2022-11-08 10:00:24 -07:00
|
|
|
Future<Iterable<String>> _deleteRemoteAssets(
|
|
|
|
Set<Asset> assetsToDelete,
|
|
|
|
) async {
|
2023-02-04 13:42:42 -07:00
|
|
|
final Iterable<Asset> remote = assetsToDelete.where((e) => e.isRemote);
|
2022-11-08 10:00:24 -07:00
|
|
|
final List<DeleteAssetResponseDto> deleteAssetResult =
|
|
|
|
await _assetService.deleteAssets(remote) ?? [];
|
|
|
|
return deleteAssetResult
|
|
|
|
.where((a) => a.status == DeleteAssetStatus.SUCCESS)
|
|
|
|
.map((a) => a.id);
|
2022-02-06 19:31:32 -07:00
|
|
|
}
|
2023-02-04 20:25:11 -07:00
|
|
|
|
2023-05-17 10:36:02 -07:00
|
|
|
Future<void> toggleFavorite(List<Asset> assets, bool status) async {
|
|
|
|
final newAssets = await _assetService.changeFavoriteStatus(assets, status);
|
|
|
|
for (Asset? newAsset in newAssets) {
|
|
|
|
if (newAsset == null) {
|
|
|
|
log.severe("Change favorite status failed for asset");
|
|
|
|
continue;
|
|
|
|
}
|
2023-02-06 05:59:56 -07:00
|
|
|
}
|
2023-02-04 20:25:11 -07:00
|
|
|
}
|
2023-04-16 22:02:07 -07:00
|
|
|
|
2023-05-17 10:36:02 -07:00
|
|
|
Future<void> toggleArchive(List<Asset> assets, bool status) async {
|
|
|
|
final newAssets = await _assetService.changeArchiveStatus(assets, status);
|
2023-04-16 22:02:07 -07:00
|
|
|
int i = 0;
|
|
|
|
for (Asset oldAsset in assets) {
|
|
|
|
final newAsset = newAssets[i++];
|
|
|
|
if (newAsset == null) {
|
|
|
|
log.severe("Change archive status failed for asset ${oldAsset.id}");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-02-03 09:06:44 -07:00
|
|
|
}
|
|
|
|
|
2023-01-18 08:59:23 -07:00
|
|
|
final assetProvider = StateNotifierProvider<AssetNotifier, AssetsState>((ref) {
|
2022-10-14 14:57:55 -07:00
|
|
|
return AssetNotifier(
|
2022-11-21 05:13:14 -07:00
|
|
|
ref.watch(assetServiceProvider),
|
2023-03-03 15:38:30 -07:00
|
|
|
ref.watch(albumServiceProvider),
|
2023-03-26 19:35:52 -07:00
|
|
|
ref.watch(syncServiceProvider),
|
2023-03-03 15:38:30 -07:00
|
|
|
ref.watch(dbProvider),
|
2022-07-13 05:23:48 -07:00
|
|
|
);
|
2022-02-13 14:10:42 -07:00
|
|
|
});
|
2022-04-23 19:08:45 -07:00
|
|
|
|
2023-05-17 10:36:02 -07:00
|
|
|
final assetDetailProvider =
|
|
|
|
StreamProvider.autoDispose.family<Asset, Asset>((ref, asset) async* {
|
|
|
|
yield await ref.watch(assetServiceProvider).loadExif(asset);
|
|
|
|
final db = ref.watch(dbProvider);
|
|
|
|
await for (final a in db.assets.watchObject(asset.id)) {
|
|
|
|
if (a != null) yield await ref.watch(assetServiceProvider).loadExif(a);
|
|
|
|
}
|
|
|
|
});
|
2022-04-23 19:08:45 -07:00
|
|
|
|
2023-05-17 10:36:02 -07:00
|
|
|
final assetsProvider = StreamProvider.autoDispose<RenderList>((ref) async* {
|
|
|
|
final query = ref
|
|
|
|
.watch(dbProvider)
|
|
|
|
.assets
|
|
|
|
.filter()
|
|
|
|
.ownerIdEqualTo(Store.get(StoreKey.currentUser).isarId)
|
|
|
|
.isArchivedEqualTo(false)
|
|
|
|
.sortByFileCreatedAtDesc();
|
|
|
|
final settings = ref.watch(appSettingsServiceProvider);
|
|
|
|
final groupBy =
|
|
|
|
GroupAssetsBy.values[settings.getSetting(AppSettingsEnum.groupAssetsBy)];
|
|
|
|
yield await RenderList.fromQuery(query, groupBy);
|
|
|
|
await for (final _ in query.watchLazy()) {
|
|
|
|
yield await RenderList.fromQuery(query, groupBy);
|
|
|
|
}
|
|
|
|
});
|
2022-07-13 05:23:48 -07:00
|
|
|
|
2023-05-17 10:36:02 -07:00
|
|
|
final remoteAssetsProvider =
|
|
|
|
StreamProvider.autoDispose<RenderList>((ref) async* {
|
|
|
|
final query = ref
|
|
|
|
.watch(dbProvider)
|
|
|
|
.assets
|
|
|
|
.where()
|
|
|
|
.remoteIdIsNotNull()
|
|
|
|
.filter()
|
|
|
|
.ownerIdEqualTo(Store.get(StoreKey.currentUser).isarId)
|
|
|
|
.sortByFileCreatedAt();
|
|
|
|
final settings = ref.watch(appSettingsServiceProvider);
|
|
|
|
final groupBy =
|
|
|
|
GroupAssetsBy.values[settings.getSetting(AppSettingsEnum.groupAssetsBy)];
|
|
|
|
yield await RenderList.fromQuery(query, groupBy);
|
|
|
|
await for (final _ in query.watchLazy()) {
|
|
|
|
yield await RenderList.fromQuery(query, groupBy);
|
|
|
|
}
|
2022-04-23 19:08:45 -07:00
|
|
|
});
|