mirror of
https://github.com/immich-app/immich.git
synced 2025-06-23 15:30:51 -04:00
* Hash service review changes * local album repo test * simplify local album repo method names --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
66 lines
1.9 KiB
Dart
66 lines
1.9 KiB
Dart
import 'dart:math';
|
|
|
|
import 'package:immich_mobile/domain/interfaces/local_album.interface.dart';
|
|
import 'package:immich_mobile/domain/models/asset/base_asset.model.dart';
|
|
import 'package:immich_mobile/domain/models/local_album.model.dart';
|
|
import 'package:immich_mobile/infrastructure/repositories/db.repository.dart';
|
|
import 'package:immich_mobile/infrastructure/repositories/local_album.repository.dart';
|
|
|
|
class MediumFactory {
|
|
final Drift _db;
|
|
|
|
const MediumFactory(Drift db) : _db = db;
|
|
|
|
LocalAsset localAsset({
|
|
String? id,
|
|
String? name,
|
|
AssetType? type,
|
|
DateTime? createdAt,
|
|
DateTime? updatedAt,
|
|
String? checksum,
|
|
}) {
|
|
final random = Random();
|
|
|
|
return LocalAsset(
|
|
id: id ?? '${random.nextInt(1000000)}',
|
|
name: name ?? 'Asset ${random.nextInt(1000000)}',
|
|
checksum: checksum ?? '${random.nextInt(1000000)}',
|
|
type: type ?? AssetType.image,
|
|
createdAt: createdAt ??
|
|
DateTime.fromMillisecondsSinceEpoch(random.nextInt(1000000000)),
|
|
updatedAt: updatedAt ??
|
|
DateTime.fromMillisecondsSinceEpoch(random.nextInt(1000000000)),
|
|
);
|
|
}
|
|
|
|
LocalAlbum localAlbum({
|
|
String? id,
|
|
String? name,
|
|
DateTime? updatedAt,
|
|
int? assetCount,
|
|
BackupSelection? backupSelection,
|
|
bool? isIosSharedAlbum,
|
|
}) {
|
|
final random = Random();
|
|
|
|
return LocalAlbum(
|
|
id: id ?? '${random.nextInt(1000000)}',
|
|
name: name ?? 'Album ${random.nextInt(1000000)}',
|
|
updatedAt: updatedAt ??
|
|
DateTime.fromMillisecondsSinceEpoch(random.nextInt(1000000000)),
|
|
assetCount: assetCount ?? random.nextInt(100),
|
|
backupSelection: backupSelection ?? BackupSelection.none,
|
|
isIosSharedAlbum: isIosSharedAlbum ?? false,
|
|
);
|
|
}
|
|
|
|
T getRepository<T>() {
|
|
switch (T) {
|
|
case const (ILocalAlbumRepository):
|
|
return DriftLocalAlbumRepository(_db) as T;
|
|
default:
|
|
throw Exception('Unknown repository: $T');
|
|
}
|
|
}
|
|
}
|