mirror of
https://github.com/immich-app/immich.git
synced 2025-08-11 09:16:31 -04:00
* chore: bump dart sdk to 3.8 * chore: make build * make pigeon * chore: format files --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
69 lines
2.1 KiB
Dart
69 lines
2.1 KiB
Dart
import 'package:collection/collection.dart';
|
|
import 'package:drift/drift.dart';
|
|
import 'package:immich_mobile/domain/models/asset/base_asset.model.dart';
|
|
import 'package:immich_mobile/infrastructure/entities/local_asset.entity.dart';
|
|
import 'package:immich_mobile/infrastructure/entities/local_asset.entity.drift.dart';
|
|
import 'package:immich_mobile/infrastructure/repositories/db.repository.dart';
|
|
|
|
class DriftLocalAssetRepository extends DriftDatabaseRepository {
|
|
final Drift _db;
|
|
const DriftLocalAssetRepository(this._db) : super(_db);
|
|
|
|
Stream<LocalAsset?> watchAsset(String id) {
|
|
final query = _db.localAssetEntity.select().addColumns([_db.remoteAssetEntity.id]).join([
|
|
leftOuterJoin(
|
|
_db.remoteAssetEntity,
|
|
_db.localAssetEntity.checksum.equalsExp(_db.remoteAssetEntity.checksum),
|
|
useColumns: false,
|
|
),
|
|
])..where(_db.localAssetEntity.id.equals(id));
|
|
|
|
return query.map((row) {
|
|
final asset = row.readTable(_db.localAssetEntity).toDto();
|
|
return asset.copyWith(remoteId: row.read(_db.remoteAssetEntity.id));
|
|
}).watchSingleOrNull();
|
|
}
|
|
|
|
Future<void> updateHashes(Iterable<LocalAsset> hashes) {
|
|
if (hashes.isEmpty) {
|
|
return Future.value();
|
|
}
|
|
|
|
return _db.batch((batch) async {
|
|
for (final asset in hashes) {
|
|
batch.update(
|
|
_db.localAssetEntity,
|
|
LocalAssetEntityCompanion(checksum: Value(asset.checksum)),
|
|
where: (e) => e.id.equals(asset.id),
|
|
);
|
|
}
|
|
});
|
|
}
|
|
|
|
Future<void> delete(List<String> ids) {
|
|
if (ids.isEmpty) {
|
|
return Future.value();
|
|
}
|
|
|
|
return _db.batch((batch) {
|
|
for (final slice in ids.slices(32000)) {
|
|
batch.deleteWhere(_db.localAssetEntity, (e) => e.id.isIn(slice));
|
|
}
|
|
});
|
|
}
|
|
|
|
Future<LocalAsset?> getById(String id) {
|
|
final query = _db.localAssetEntity.select()..where((lae) => lae.id.equals(id));
|
|
|
|
return query.map((row) => row.toDto()).getSingleOrNull();
|
|
}
|
|
|
|
Future<int> getCount() {
|
|
return _db.managers.localAssetEntity.count();
|
|
}
|
|
|
|
Future<int> getHashedCount() {
|
|
return _db.managers.localAssetEntity.filter((e) => e.checksum.isNull().not()).count();
|
|
}
|
|
}
|