2025-05-29 21:12:00 +05:30
|
|
|
import 'package:drift/drift.dart';
|
2025-06-16 20:37:45 +05:30
|
|
|
import 'package:immich_mobile/domain/models/asset/base_asset.model.dart';
|
|
|
|
import 'package:immich_mobile/infrastructure/entities/local_asset.entity.drift.dart';
|
2025-05-29 21:12:00 +05:30
|
|
|
import 'package:immich_mobile/infrastructure/utils/asset.mixin.dart';
|
|
|
|
import 'package:immich_mobile/infrastructure/utils/drift_default.mixin.dart';
|
|
|
|
|
2025-06-03 21:31:50 +05:30
|
|
|
@TableIndex(name: 'idx_local_asset_checksum', columns: {#checksum})
|
2025-05-29 21:12:00 +05:30
|
|
|
class LocalAssetEntity extends Table with DriftDefaultsMixin, AssetEntityMixin {
|
|
|
|
const LocalAssetEntity();
|
|
|
|
|
|
|
|
TextColumn get id => text()();
|
|
|
|
TextColumn get checksum => text().nullable()();
|
|
|
|
|
|
|
|
// Only used during backup to mirror the favorite status of the asset in the server
|
|
|
|
BoolColumn get isFavorite => boolean().withDefault(const Constant(false))();
|
|
|
|
|
|
|
|
@override
|
|
|
|
Set<Column> get primaryKey => {id};
|
|
|
|
}
|
2025-06-16 20:37:45 +05:30
|
|
|
|
|
|
|
extension LocalAssetEntityDataDomainEx on LocalAssetEntityData {
|
|
|
|
LocalAsset toDto() => LocalAsset(
|
|
|
|
id: id,
|
|
|
|
name: name,
|
|
|
|
checksum: checksum,
|
|
|
|
type: type,
|
|
|
|
createdAt: createdAt,
|
|
|
|
updatedAt: updatedAt,
|
|
|
|
durationInSeconds: durationInSeconds,
|
|
|
|
isFavorite: isFavorite,
|
|
|
|
);
|
|
|
|
}
|