ente/mobile/lib/models/file/extensions/file_props.dart

62 lines
1.7 KiB
Dart

import "package:photos/core/configuration.dart";
import "package:photos/models/file/file.dart";
import "package:photos/models/file/file_type.dart";
import "package:photos/models/file/trash_file.dart";
import "package:photos/services/collections_service.dart";
extension FilePropsExtn on EnteFile {
bool get isLivePhoto => fileType == FileType.livePhoto;
bool get isMotionPhoto => (pubMagicMetadata?.mvi ?? 0) > 0;
bool get isLiveOrMotionPhoto => isLivePhoto || isMotionPhoto;
bool get isOwner =>
(ownerID == null) || (ownerID == Configuration.instance.getUserID());
bool get isVideo => fileType == FileType.video;
bool get hasDims => height > 0 && width > 0;
// return true if the file can be a panorama image, null if the dimensions are not available
bool? isPanorama() {
if (fileType != FileType.image) {
return false;
}
if (pubMagicMetadata?.mediaType != null) {
return (pubMagicMetadata!.mediaType! & 1) == 1;
}
return null;
}
bool canBePanorama() {
if (hasDims) {
if (height < 8000 && width < 8000) return false;
if (height > width) {
return height / width >= 2.0;
}
return width / height >= 2.0;
}
return false;
}
bool get canEditMetaInfo => isUploaded && isOwner;
bool get isTrash => this is TrashFile;
// Return true if the file was uploaded via collect photos workflow
bool get isCollect => uploaderName != null;
String? get uploaderName => pubMagicMetadata?.uploaderName;
bool canReUpload(int userID) =>
localID != null &&
localID!.isNotEmpty &&
isOwner &&
collectionID != null &&
(CollectionsService.instance
.getCollectionByID(collectionID!)
?.isOwner(userID) ??
false);
}