2022-02-03 18:06:44 +02:00
|
|
|
import 'dart:convert';
|
|
|
|
|
|
|
|
class ImmichAsset {
|
|
|
|
final String id;
|
|
|
|
final String deviceAssetId;
|
|
|
|
final String userId;
|
|
|
|
final String deviceId;
|
2022-02-06 08:07:56 +02:00
|
|
|
final String type;
|
2022-02-03 18:06:44 +02:00
|
|
|
final String createdAt;
|
|
|
|
final String modifiedAt;
|
|
|
|
final bool isFavorite;
|
2022-02-06 08:07:56 +02:00
|
|
|
final String? duration;
|
2022-04-02 19:31:53 +02:00
|
|
|
final String originalPath;
|
|
|
|
final String resizePath;
|
2022-02-03 18:06:44 +02:00
|
|
|
|
|
|
|
ImmichAsset({
|
|
|
|
required this.id,
|
|
|
|
required this.deviceAssetId,
|
|
|
|
required this.userId,
|
|
|
|
required this.deviceId,
|
2022-02-06 08:07:56 +02:00
|
|
|
required this.type,
|
2022-02-03 18:06:44 +02:00
|
|
|
required this.createdAt,
|
|
|
|
required this.modifiedAt,
|
|
|
|
required this.isFavorite,
|
2022-02-06 08:07:56 +02:00
|
|
|
this.duration,
|
2022-04-02 19:31:53 +02:00
|
|
|
required this.originalPath,
|
|
|
|
required this.resizePath,
|
2022-02-03 18:06:44 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
ImmichAsset copyWith({
|
|
|
|
String? id,
|
|
|
|
String? deviceAssetId,
|
|
|
|
String? userId,
|
|
|
|
String? deviceId,
|
2022-02-06 08:07:56 +02:00
|
|
|
String? type,
|
2022-02-03 18:06:44 +02:00
|
|
|
String? createdAt,
|
|
|
|
String? modifiedAt,
|
|
|
|
bool? isFavorite,
|
2022-02-06 08:07:56 +02:00
|
|
|
String? duration,
|
2022-04-02 19:31:53 +02:00
|
|
|
String? originalPath,
|
|
|
|
String? resizePath,
|
2022-02-03 18:06:44 +02:00
|
|
|
}) {
|
|
|
|
return ImmichAsset(
|
|
|
|
id: id ?? this.id,
|
|
|
|
deviceAssetId: deviceAssetId ?? this.deviceAssetId,
|
|
|
|
userId: userId ?? this.userId,
|
|
|
|
deviceId: deviceId ?? this.deviceId,
|
2022-02-06 08:07:56 +02:00
|
|
|
type: type ?? this.type,
|
2022-02-03 18:06:44 +02:00
|
|
|
createdAt: createdAt ?? this.createdAt,
|
|
|
|
modifiedAt: modifiedAt ?? this.modifiedAt,
|
|
|
|
isFavorite: isFavorite ?? this.isFavorite,
|
2022-02-06 08:07:56 +02:00
|
|
|
duration: duration ?? this.duration,
|
2022-04-02 19:31:53 +02:00
|
|
|
originalPath: originalPath ?? this.originalPath,
|
|
|
|
resizePath: resizePath ?? this.resizePath,
|
2022-02-03 18:06:44 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Map<String, dynamic> toMap() {
|
|
|
|
return {
|
|
|
|
'id': id,
|
|
|
|
'deviceAssetId': deviceAssetId,
|
|
|
|
'userId': userId,
|
|
|
|
'deviceId': deviceId,
|
2022-02-06 08:07:56 +02:00
|
|
|
'type': type,
|
2022-02-03 18:06:44 +02:00
|
|
|
'createdAt': createdAt,
|
|
|
|
'modifiedAt': modifiedAt,
|
|
|
|
'isFavorite': isFavorite,
|
2022-02-06 08:07:56 +02:00
|
|
|
'duration': duration,
|
2022-04-02 19:31:53 +02:00
|
|
|
'originalPath': originalPath,
|
|
|
|
'resizePath': resizePath,
|
2022-02-03 18:06:44 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
factory ImmichAsset.fromMap(Map<String, dynamic> map) {
|
|
|
|
return ImmichAsset(
|
|
|
|
id: map['id'] ?? '',
|
|
|
|
deviceAssetId: map['deviceAssetId'] ?? '',
|
|
|
|
userId: map['userId'] ?? '',
|
|
|
|
deviceId: map['deviceId'] ?? '',
|
2022-02-06 08:07:56 +02:00
|
|
|
type: map['type'] ?? '',
|
2022-02-03 18:06:44 +02:00
|
|
|
createdAt: map['createdAt'] ?? '',
|
|
|
|
modifiedAt: map['modifiedAt'] ?? '',
|
|
|
|
isFavorite: map['isFavorite'] ?? false,
|
2022-02-06 08:07:56 +02:00
|
|
|
duration: map['duration'],
|
2022-04-02 19:31:53 +02:00
|
|
|
originalPath: map['originalPath'] ?? '',
|
|
|
|
resizePath: map['resizePath'] ?? '',
|
2022-02-03 18:06:44 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
String toJson() => json.encode(toMap());
|
|
|
|
|
|
|
|
factory ImmichAsset.fromJson(String source) => ImmichAsset.fromMap(json.decode(source));
|
|
|
|
|
|
|
|
@override
|
|
|
|
String toString() {
|
2022-04-02 19:31:53 +02:00
|
|
|
return 'ImmichAsset(id: $id, deviceAssetId: $deviceAssetId, userId: $userId, deviceId: $deviceId, type: $type, createdAt: $createdAt, modifiedAt: $modifiedAt, isFavorite: $isFavorite, duration: $duration, originalPath: $originalPath, resizePath: $resizePath)';
|
2022-02-03 18:06:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
bool operator ==(Object other) {
|
|
|
|
if (identical(this, other)) return true;
|
|
|
|
|
|
|
|
return other is ImmichAsset &&
|
|
|
|
other.id == id &&
|
|
|
|
other.deviceAssetId == deviceAssetId &&
|
|
|
|
other.userId == userId &&
|
|
|
|
other.deviceId == deviceId &&
|
2022-02-06 08:07:56 +02:00
|
|
|
other.type == type &&
|
2022-02-03 18:06:44 +02:00
|
|
|
other.createdAt == createdAt &&
|
|
|
|
other.modifiedAt == modifiedAt &&
|
|
|
|
other.isFavorite == isFavorite &&
|
2022-04-02 19:31:53 +02:00
|
|
|
other.duration == duration &&
|
|
|
|
other.originalPath == originalPath &&
|
|
|
|
other.resizePath == resizePath;
|
2022-02-03 18:06:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
int get hashCode {
|
|
|
|
return id.hashCode ^
|
|
|
|
deviceAssetId.hashCode ^
|
|
|
|
userId.hashCode ^
|
|
|
|
deviceId.hashCode ^
|
2022-02-06 08:07:56 +02:00
|
|
|
type.hashCode ^
|
2022-02-03 18:06:44 +02:00
|
|
|
createdAt.hashCode ^
|
|
|
|
modifiedAt.hashCode ^
|
|
|
|
isFavorite.hashCode ^
|
2022-04-02 19:31:53 +02:00
|
|
|
duration.hashCode ^
|
|
|
|
originalPath.hashCode ^
|
|
|
|
resizePath.hashCode;
|
2022-02-03 18:06:44 +02:00
|
|
|
}
|
|
|
|
}
|