2023-10-22 08:05:10 -07:00
|
|
|
import 'package:openapi/api.dart';
|
|
|
|
|
|
|
|
enum SharedLinkSource { album, individual }
|
|
|
|
|
|
|
|
class SharedLink {
|
|
|
|
final String id;
|
|
|
|
final String title;
|
|
|
|
final bool allowDownload;
|
|
|
|
final bool allowUpload;
|
|
|
|
final String? thumbAssetId;
|
|
|
|
final String? description;
|
2023-10-28 18:35:38 -07:00
|
|
|
final String? password;
|
2023-10-22 08:05:10 -07:00
|
|
|
final DateTime? expiresAt;
|
|
|
|
final String key;
|
|
|
|
final bool showMetadata;
|
|
|
|
final SharedLinkSource type;
|
|
|
|
|
|
|
|
const SharedLink({
|
|
|
|
required this.id,
|
|
|
|
required this.title,
|
|
|
|
required this.allowDownload,
|
|
|
|
required this.allowUpload,
|
|
|
|
required this.thumbAssetId,
|
|
|
|
required this.description,
|
2023-10-28 18:35:38 -07:00
|
|
|
required this.password,
|
2023-10-22 08:05:10 -07:00
|
|
|
required this.expiresAt,
|
|
|
|
required this.key,
|
|
|
|
required this.showMetadata,
|
|
|
|
required this.type,
|
|
|
|
});
|
|
|
|
|
|
|
|
SharedLink copyWith({
|
|
|
|
String? id,
|
|
|
|
String? title,
|
|
|
|
String? thumbAssetId,
|
|
|
|
bool? allowDownload,
|
|
|
|
bool? allowUpload,
|
|
|
|
String? description,
|
2023-10-28 18:35:38 -07:00
|
|
|
String? password,
|
2023-10-22 08:05:10 -07:00
|
|
|
DateTime? expiresAt,
|
|
|
|
String? key,
|
|
|
|
bool? showMetadata,
|
|
|
|
SharedLinkSource? type,
|
|
|
|
}) {
|
|
|
|
return SharedLink(
|
|
|
|
id: id ?? this.id,
|
|
|
|
title: title ?? this.title,
|
|
|
|
thumbAssetId: thumbAssetId ?? this.thumbAssetId,
|
|
|
|
allowDownload: allowDownload ?? this.allowDownload,
|
|
|
|
allowUpload: allowUpload ?? this.allowUpload,
|
|
|
|
description: description ?? this.description,
|
2023-10-28 18:35:38 -07:00
|
|
|
password: password ?? this.password,
|
2023-10-22 08:05:10 -07:00
|
|
|
expiresAt: expiresAt ?? this.expiresAt,
|
|
|
|
key: key ?? this.key,
|
|
|
|
showMetadata: showMetadata ?? this.showMetadata,
|
|
|
|
type: type ?? this.type,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
SharedLink.fromDto(SharedLinkResponseDto dto)
|
|
|
|
: id = dto.id,
|
|
|
|
allowDownload = dto.allowDownload,
|
|
|
|
allowUpload = dto.allowUpload,
|
|
|
|
description = dto.description,
|
2023-10-28 18:35:38 -07:00
|
|
|
password = dto.password,
|
2023-10-22 08:05:10 -07:00
|
|
|
expiresAt = dto.expiresAt,
|
|
|
|
key = dto.key,
|
|
|
|
showMetadata = dto.showMetadata,
|
|
|
|
type = dto.type == SharedLinkType.ALBUM
|
|
|
|
? SharedLinkSource.album
|
|
|
|
: SharedLinkSource.individual,
|
|
|
|
title = dto.type == SharedLinkType.ALBUM
|
|
|
|
? dto.album?.albumName.toUpperCase() ?? "UNKNOWN SHARE"
|
|
|
|
: "INDIVIDUAL SHARE",
|
|
|
|
thumbAssetId = dto.type == SharedLinkType.ALBUM
|
|
|
|
? dto.album?.albumThumbnailAssetId
|
|
|
|
: dto.assets.isNotEmpty
|
|
|
|
? dto.assets[0].id
|
|
|
|
: null;
|
|
|
|
|
|
|
|
@override
|
|
|
|
String toString() =>
|
2023-10-28 18:35:38 -07:00
|
|
|
'SharedLink(id=$id, title=$title, thumbAssetId=$thumbAssetId, allowDownload=$allowDownload, allowUpload=$allowUpload, description=$description, password=$password, expiresAt=$expiresAt, key=$key, showMetadata=$showMetadata, type=$type)';
|
2023-10-22 08:05:10 -07:00
|
|
|
|
|
|
|
@override
|
|
|
|
bool operator ==(Object other) =>
|
|
|
|
identical(this, other) ||
|
|
|
|
other is SharedLink &&
|
|
|
|
other.id == id &&
|
|
|
|
other.title == title &&
|
|
|
|
other.thumbAssetId == thumbAssetId &&
|
|
|
|
other.allowDownload == allowDownload &&
|
|
|
|
other.allowUpload == allowUpload &&
|
|
|
|
other.description == description &&
|
2023-10-28 18:35:38 -07:00
|
|
|
other.password == password &&
|
2023-10-22 08:05:10 -07:00
|
|
|
other.expiresAt == expiresAt &&
|
|
|
|
other.key == key &&
|
|
|
|
other.showMetadata == showMetadata &&
|
|
|
|
other.type == type;
|
|
|
|
|
|
|
|
@override
|
|
|
|
int get hashCode =>
|
|
|
|
id.hashCode ^
|
|
|
|
title.hashCode ^
|
|
|
|
thumbAssetId.hashCode ^
|
|
|
|
allowDownload.hashCode ^
|
|
|
|
allowUpload.hashCode ^
|
|
|
|
description.hashCode ^
|
2023-10-28 18:35:38 -07:00
|
|
|
password.hashCode ^
|
2023-10-22 08:05:10 -07:00
|
|
|
expiresAt.hashCode ^
|
|
|
|
key.hashCode ^
|
|
|
|
showMetadata.hashCode ^
|
|
|
|
type.hashCode;
|
|
|
|
}
|