2021-06-14 15:51:29 +02:00
|
|
|
import 'package:idb_shim/idb_client.dart';
|
|
|
|
import 'package:logging/logging.dart';
|
|
|
|
import 'package:nc_photos/account.dart';
|
|
|
|
import 'package:nc_photos/app_db.dart';
|
2021-09-04 14:35:04 +02:00
|
|
|
import 'package:nc_photos/debug_util.dart';
|
2021-06-14 15:51:29 +02:00
|
|
|
import 'package:nc_photos/entity/album.dart';
|
2021-07-05 09:54:01 +02:00
|
|
|
import 'package:nc_photos/entity/album/item.dart';
|
2021-06-24 18:26:56 +02:00
|
|
|
import 'package:nc_photos/entity/album/provider.dart';
|
2021-06-14 15:51:29 +02:00
|
|
|
|
|
|
|
/// Resync files inside an album with the file db
|
|
|
|
class ResyncAlbum {
|
2021-11-01 10:50:13 +01:00
|
|
|
const ResyncAlbum(this.appDb);
|
|
|
|
|
2021-09-25 18:22:19 +02:00
|
|
|
Future<List<AlbumItem>> call(Account account, Album album) async {
|
|
|
|
_log.info("[call] Resync album: ${album.name}");
|
2021-06-24 18:26:56 +02:00
|
|
|
if (album.provider is! AlbumStaticProvider) {
|
2021-09-25 18:22:19 +02:00
|
|
|
throw ArgumentError(
|
|
|
|
"Resync only make sense for static albums: ${album.name}");
|
2021-06-24 18:26:56 +02:00
|
|
|
}
|
2021-11-01 10:50:13 +01:00
|
|
|
return await appDb.use((db) async {
|
2022-01-01 21:34:40 +01:00
|
|
|
final transaction = db.transaction(AppDb.file2StoreName, idbModeReadOnly);
|
|
|
|
final store = transaction.objectStore(AppDb.file2StoreName);
|
|
|
|
final index = store.index(AppDbFile2Entry.strippedPathIndexName);
|
2021-06-14 15:51:29 +02:00
|
|
|
final newItems = <AlbumItem>[];
|
2021-06-24 18:26:56 +02:00
|
|
|
for (final item in AlbumStaticProvider.of(album).items) {
|
2021-06-14 15:51:29 +02:00
|
|
|
if (item is AlbumFileItem) {
|
|
|
|
try {
|
2022-01-01 21:34:40 +01:00
|
|
|
newItems.add(await _syncOne(account, item,
|
|
|
|
fileStore: store, fileStoreStrippedPathIndex: index));
|
2021-06-14 15:51:29 +02:00
|
|
|
} catch (e, stacktrace) {
|
|
|
|
_log.shout(
|
2021-12-02 09:27:11 +01:00
|
|
|
"[call] Failed syncing file in album: ${logFilename(item.file.path)}",
|
2021-06-14 15:51:29 +02:00
|
|
|
e,
|
|
|
|
stacktrace);
|
2021-07-17 11:09:17 +02:00
|
|
|
newItems.add(item);
|
2021-06-14 15:51:29 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
newItems.add(item);
|
|
|
|
}
|
|
|
|
}
|
2021-09-25 18:22:19 +02:00
|
|
|
return newItems;
|
2021-06-14 15:51:29 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-01-01 21:34:40 +01:00
|
|
|
Future<AlbumFileItem> _syncOne(
|
|
|
|
Account account,
|
|
|
|
AlbumFileItem item, {
|
|
|
|
required ObjectStore fileStore,
|
|
|
|
required Index fileStoreStrippedPathIndex,
|
|
|
|
}) async {
|
2021-07-23 22:05:57 +02:00
|
|
|
Map? dbItem;
|
2021-06-14 15:51:29 +02:00
|
|
|
if (item.file.fileId != null) {
|
2022-01-01 21:34:40 +01:00
|
|
|
dbItem = await fileStore.getObject(
|
|
|
|
AppDbFile2Entry.toPrimaryKeyForFile(account, item.file)) as Map?;
|
2021-06-14 15:51:29 +02:00
|
|
|
} else {
|
2022-01-01 21:34:40 +01:00
|
|
|
dbItem = await fileStoreStrippedPathIndex.get(
|
|
|
|
AppDbFile2Entry.toStrippedPathIndexKeyForFile(account, item.file))
|
|
|
|
as Map?;
|
2021-06-14 15:51:29 +02:00
|
|
|
}
|
|
|
|
if (dbItem == null) {
|
|
|
|
_log.warning(
|
|
|
|
"[_syncOne] File doesn't exist in DB, removed?: '${item.file.path}'");
|
|
|
|
return item;
|
|
|
|
}
|
2022-01-01 21:34:40 +01:00
|
|
|
final dbEntry = AppDbFile2Entry.fromJson(dbItem.cast<String, dynamic>());
|
2021-10-23 20:13:06 +02:00
|
|
|
return item.copyWith(
|
|
|
|
file: dbEntry.file,
|
|
|
|
);
|
2021-06-14 15:51:29 +02:00
|
|
|
}
|
|
|
|
|
2021-11-01 10:50:13 +01:00
|
|
|
final AppDb appDb;
|
|
|
|
|
2021-06-14 15:51:29 +02:00
|
|
|
static final _log = Logger("use_case.resync_album.ResyncAlbum");
|
|
|
|
}
|