file_props.dart 467 B

1234567891011121314
  1. import "package:photos/models/file/file.dart";
  2. import "package:photos/models/file/file_type.dart";
  3. extension FilePropsExtn on EnteFile {
  4. bool get isLivePhoto => fileType == FileType.livePhoto;
  5. bool get isMotionPhoto => pubMagicMetadata?.mvi != null;
  6. bool get isLiveOrMotionPhoto => isLivePhoto || isMotionPhoto;
  7. bool isOwner(int userID) => (ownerID == null) || (ownerID! == userID);
  8. bool canEditMetaInfo(int userID) => isUploaded && isOwner(userID);
  9. }