mirror of
https://github.com/immich-app/immich.git
synced 2025-09-29 15:31:13 -04:00
* feat(mobile): add album asset sync * add SyncAlbumToAssetDeleteV1 to openapi-spec * update delete queries to use where in statements * clear remote album when clear remote data * fix: bad merge * fix: bad merge * fix: _SyncAckV1 return type --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> Co-authored-by: wuzihao051119 <wuzihao051119@outlook.com> Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
80 lines
1.8 KiB
Dart
80 lines
1.8 KiB
Dart
enum AlbumAssetOrder {
|
|
// do not change this order!
|
|
asc,
|
|
desc,
|
|
}
|
|
|
|
enum AlbumUserRole {
|
|
// do not change this order!
|
|
editor,
|
|
viewer,
|
|
}
|
|
|
|
// Model for an album stored in the server
|
|
class Album {
|
|
final String id;
|
|
final String name;
|
|
final String ownerId;
|
|
final String description;
|
|
final DateTime createdAt;
|
|
final DateTime updatedAt;
|
|
final String? thumbnailAssetId;
|
|
final bool isActivityEnabled;
|
|
final AlbumAssetOrder order;
|
|
|
|
const Album({
|
|
required this.id,
|
|
required this.name,
|
|
required this.ownerId,
|
|
required this.description,
|
|
required this.createdAt,
|
|
required this.updatedAt,
|
|
this.thumbnailAssetId,
|
|
required this.isActivityEnabled,
|
|
required this.order,
|
|
});
|
|
|
|
@override
|
|
String toString() {
|
|
return '''Album {
|
|
id: $id,
|
|
name: $name,
|
|
ownerId: $ownerId,
|
|
description: $description,
|
|
createdAt: $createdAt,
|
|
updatedAt: $updatedAt,
|
|
isActivityEnabled: $isActivityEnabled,
|
|
order: $order,
|
|
thumbnailAssetId: ${thumbnailAssetId ?? "<NA>"}
|
|
}''';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
if (other is! Album) return false;
|
|
if (identical(this, other)) return true;
|
|
return id == other.id &&
|
|
name == other.name &&
|
|
ownerId == other.ownerId &&
|
|
description == other.description &&
|
|
createdAt == other.createdAt &&
|
|
updatedAt == other.updatedAt &&
|
|
thumbnailAssetId == other.thumbnailAssetId &&
|
|
isActivityEnabled == other.isActivityEnabled &&
|
|
order == other.order;
|
|
}
|
|
|
|
@override
|
|
int get hashCode {
|
|
return id.hashCode ^
|
|
name.hashCode ^
|
|
ownerId.hashCode ^
|
|
description.hashCode ^
|
|
createdAt.hashCode ^
|
|
updatedAt.hashCode ^
|
|
thumbnailAssetId.hashCode ^
|
|
isActivityEnabled.hashCode ^
|
|
order.hashCode;
|
|
}
|
|
}
|