2022-02-03 18:06:44 +02:00
|
|
|
import 'dart:convert';
|
|
|
|
|
2022-06-18 17:56:36 +02:00
|
|
|
import 'package:equatable/equatable.dart';
|
|
|
|
|
|
|
|
class ImmichAsset extends Equatable {
|
2022-02-03 18:06:44 +02:00
|
|
|
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
|
|
|
|
2022-06-18 17:56:36 +02:00
|
|
|
const ImmichAsset({
|
2022-02-03 18:06:44 +02:00
|
|
|
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() {
|
2022-06-18 17:56:36 +02:00
|
|
|
final result = <String, dynamic>{};
|
|
|
|
|
|
|
|
result.addAll({'id': id});
|
|
|
|
result.addAll({'deviceAssetId': deviceAssetId});
|
|
|
|
result.addAll({'userId': userId});
|
|
|
|
result.addAll({'deviceId': deviceId});
|
|
|
|
result.addAll({'type': type});
|
|
|
|
result.addAll({'createdAt': createdAt});
|
|
|
|
result.addAll({'modifiedAt': modifiedAt});
|
|
|
|
result.addAll({'isFavorite': isFavorite});
|
|
|
|
if (duration != null) {
|
|
|
|
result.addAll({'duration': duration});
|
|
|
|
}
|
|
|
|
result.addAll({'originalPath': originalPath});
|
|
|
|
result.addAll({'resizePath': resizePath});
|
|
|
|
|
|
|
|
return result;
|
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
|
2022-06-18 17:56:36 +02:00
|
|
|
List<Object> get props {
|
|
|
|
return [id];
|
2022-02-03 18:06:44 +02:00
|
|
|
}
|
|
|
|
}
|