123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414 |
- import 'dart:async';
- import "dart:convert";
- import "dart:io";
- import 'dart:typed_data';
- import 'dart:ui' as ui;
- import "package:archive/archive_io.dart";
- import "package:computer/computer.dart";
- import 'package:logging/logging.dart';
- import "package:motion_photos/motion_photos.dart";
- import 'package:motionphoto/motionphoto.dart';
- import 'package:path/path.dart';
- import 'package:path_provider/path_provider.dart';
- import 'package:photo_manager/photo_manager.dart';
- import 'package:photos/core/configuration.dart';
- import 'package:photos/core/constants.dart';
- import 'package:photos/core/errors.dart';
- import 'package:photos/models/file/file.dart';
- import 'package:photos/models/file/file_type.dart';
- import "package:photos/models/location/location.dart";
- import "package:photos/models/metadata/file_magic.dart";
- import "package:photos/services/file_magic_service.dart";
- import 'package:photos/utils/crypto_util.dart';
- import 'package:photos/utils/file_util.dart';
- import "package:uuid/uuid.dart";
- import 'package:video_thumbnail/video_thumbnail.dart';
- final _logger = Logger("FileUtil");
- const kMaximumThumbnailCompressionAttempts = 2;
- const kLivePhotoHashSeparator = ':';
- class MediaUploadData {
- final File? sourceFile;
- final Uint8List? thumbnail;
- final bool isDeleted;
- final FileHashData? hashData;
- final int? height;
- final int? width;
- // For android motion photos, the startIndex is the index of the first frame
- // For iOS, this value will be always null.
- final int? motionPhotoStartIndex;
- MediaUploadData(
- this.sourceFile,
- this.thumbnail,
- this.isDeleted,
- this.hashData, {
- this.height,
- this.width,
- this.motionPhotoStartIndex,
- });
- }
- class FileHashData {
- // For livePhotos, the fileHash value will be imageHash:videoHash
- final String? fileHash;
- // zipHash is used to take care of existing live photo uploads from older
- // mobile clients
- String? zipHash;
- FileHashData(this.fileHash, {this.zipHash});
- }
- Future<MediaUploadData> getUploadDataFromEnteFile(EnteFile file) async {
- if (file.isSharedMediaToAppSandbox) {
- return await _getMediaUploadDataFromAppCache(file);
- } else {
- return await _getMediaUploadDataFromAssetFile(file);
- }
- }
- Future<MediaUploadData> _getMediaUploadDataFromAssetFile(EnteFile file) async {
- File? sourceFile;
- Uint8List? thumbnailData;
- bool isDeleted;
- String? zipHash;
- String fileHash;
- // The timeouts are to safeguard against https://github.com/CaiJingLong/flutter_photo_manager/issues/467
- final asset = await file.getAsset
- .timeout(const Duration(seconds: 3))
- .catchError((e) async {
- if (e is TimeoutException) {
- _logger.info("Asset fetch timed out for " + file.toString());
- return await file.getAsset;
- } else {
- throw e;
- }
- });
- if (asset == null) {
- throw InvalidFileError("", InvalidReason.assetDeleted);
- }
- _assertFileType(asset, file);
- sourceFile = await asset.originFile
- .timeout(const Duration(seconds: 3))
- .catchError((e) async {
- if (e is TimeoutException) {
- _logger.info("Origin file fetch timed out for " + file.toString());
- return await asset.originFile;
- } else {
- throw e;
- }
- });
- if (sourceFile == null || !sourceFile.existsSync()) {
- throw InvalidFileError(
- "id: ${file.localID}",
- InvalidReason.sourceFileMissing,
- );
- }
- // h4ck to fetch location data if missing (thank you Android Q+) lazily only during uploads
- await _decorateEnteFileData(file, asset);
- fileHash = CryptoUtil.bin2base64(await CryptoUtil.getHash(sourceFile));
- if (file.fileType == FileType.livePhoto && Platform.isIOS) {
- final File? videoUrl = await Motionphoto.getLivePhotoFile(file.localID!);
- if (videoUrl == null || !videoUrl.existsSync()) {
- final String errMsg =
- "missing livePhoto url for ${file.toString()} with subType ${file.fileSubType}";
- _logger.severe(errMsg);
- throw InvalidFileError(errMsg, InvalidReason.livePhotoVideoMissing);
- }
- final String livePhotoVideoHash =
- CryptoUtil.bin2base64(await CryptoUtil.getHash(videoUrl));
- // imgHash:vidHash
- fileHash = '$fileHash$kLivePhotoHashSeparator$livePhotoVideoHash';
- final tempPath = Configuration.instance.getTempDirectory();
- // .elp -> ente live photo
- final uniqueId = const Uuid().v4().toString();
- final livePhotoPath = tempPath + uniqueId + "_${file.generatedID}.elp";
- _logger.fine("Creating zip for live photo from " + livePhotoPath);
- await zip(
- zipPath: livePhotoPath,
- imagePath: sourceFile.path,
- videoPath: videoUrl.path,
- );
- // delete the temporary video and image copy (only in IOS)
- if (Platform.isIOS) {
- await sourceFile.delete();
- }
- // new sourceFile which needs to be uploaded
- sourceFile = File(livePhotoPath);
- zipHash = CryptoUtil.bin2base64(await CryptoUtil.getHash(sourceFile));
- }
- thumbnailData = await _getThumbnailForUpload(asset, file);
- isDeleted = !(await asset.exists);
- int? h, w;
- if (asset.width != 0 && asset.height != 0) {
- h = asset.height;
- w = asset.width;
- }
- int? motionPhotoStartingIndex;
- if (Platform.isAndroid && asset.type == AssetType.image) {
- try {
- motionPhotoStartingIndex =
- (await MotionPhotos(sourceFile.path).getMotionVideoIndex())?.start;
- } catch (e) {
- _logger.severe('error while detecthing motion photo start index', e);
- }
- }
- return MediaUploadData(
- sourceFile,
- thumbnailData,
- isDeleted,
- FileHashData(fileHash, zipHash: zipHash),
- height: h,
- width: w,
- motionPhotoStartIndex: motionPhotoStartingIndex,
- );
- }
- Future<void> _computeZip(Map<String, dynamic> args) async {
- final String zipPath = args['zipPath'];
- final String imagePath = args['imagePath'];
- final String videoPath = args['videoPath'];
- final encoder = ZipFileEncoder();
- encoder.create(zipPath);
- await encoder.addFile(File(imagePath), "image" + extension(imagePath));
- await encoder.addFile(File(videoPath), "video" + extension(videoPath));
- encoder.close();
- }
- Future<void> zip({
- required String zipPath,
- required String imagePath,
- required String videoPath,
- }) {
- return Computer.shared().compute(
- _computeZip,
- param: {
- 'zipPath': zipPath,
- 'imagePath': imagePath,
- 'videoPath': videoPath,
- },
- taskName: 'zip',
- );
- }
- Future<Uint8List?> _getThumbnailForUpload(
- AssetEntity asset,
- EnteFile file,
- ) async {
- try {
- Uint8List? thumbnailData = await asset.thumbnailDataWithSize(
- const ThumbnailSize(thumbnailLargeSize, thumbnailLargeSize),
- quality: thumbnailQuality,
- );
- if (thumbnailData == null) {
- // allow videos to be uploaded without thumbnails
- if (asset.type == AssetType.video) {
- return null;
- }
- throw InvalidFileError(
- "no thumbnail : ${file.fileType} ${file.tag}",
- InvalidReason.thumbnailMissing,
- );
- }
- int compressionAttempts = 0;
- while (thumbnailData!.length > thumbnailDataLimit &&
- compressionAttempts < kMaximumThumbnailCompressionAttempts) {
- _logger.info("Thumbnail size " + thumbnailData.length.toString());
- thumbnailData = await compressThumbnail(thumbnailData);
- _logger
- .info("Compressed thumbnail size " + thumbnailData.length.toString());
- compressionAttempts++;
- }
- return thumbnailData;
- } catch (e) {
- final String errMessage =
- "thumbErr for ${file.fileType}, ${extension(file.displayName)} ${file.tag}";
- _logger.warning(errMessage, e);
- // allow videos to be uploaded without thumbnails
- if (asset.type == AssetType.video) {
- return null;
- }
- throw InvalidFileError(errMessage, InvalidReason.thumbnailMissing);
- }
- }
- // check if the assetType is still the same. This can happen for livePhotos
- // if the user turns off the video using native photos app
- void _assertFileType(AssetEntity asset, EnteFile file) {
- final assetType = fileTypeFromAsset(asset);
- if (assetType == file.fileType) {
- return;
- }
- if (Platform.isIOS || Platform.isMacOS) {
- if (assetType == FileType.image && file.fileType == FileType.livePhoto) {
- throw InvalidFileError(
- 'id ${asset.id}',
- InvalidReason.livePhotoToImageTypeChanged,
- );
- } else if (assetType == FileType.livePhoto &&
- file.fileType == FileType.image) {
- throw InvalidFileError(
- 'id ${asset.id}',
- InvalidReason.imageToLivePhotoTypeChanged,
- );
- }
- }
- throw InvalidFileError(
- 'fileType mismatch for id ${asset.id} assetType $assetType fileType ${file.fileType}',
- InvalidReason.unknown,
- );
- }
- Future<void> _decorateEnteFileData(EnteFile file, AssetEntity asset) async {
- // h4ck to fetch location data if missing (thank you Android Q+) lazily only during uploads
- if (file.location == null ||
- (file.location!.latitude == 0 && file.location!.longitude == 0)) {
- final latLong = await asset.latlngAsync();
- file.location =
- Location(latitude: latLong.latitude, longitude: latLong.longitude);
- }
- if (file.title == null || file.title!.isEmpty) {
- _logger.warning("Title was missing ${file.tag}");
- file.title = await asset.titleAsync;
- }
- }
- Future<MetadataRequest> getPubMetadataRequest(
- EnteFile file,
- Map<String, dynamic> newData,
- Uint8List fileKey,
- ) async {
- final Map<String, dynamic> jsonToUpdate =
- jsonDecode(file.pubMmdEncodedJson ?? '{}');
- newData.forEach((key, value) {
- jsonToUpdate[key] = value;
- });
- // update the local information so that it's reflected on UI
- file.pubMmdEncodedJson = jsonEncode(jsonToUpdate);
- file.pubMagicMetadata = PubMagicMetadata.fromJson(jsonToUpdate);
- final encryptedMMd = await CryptoUtil.encryptChaCha(
- utf8.encode(jsonEncode(jsonToUpdate)) as Uint8List,
- fileKey,
- );
- return MetadataRequest(
- version: file.pubMmdVersion == 0 ? 1 : file.pubMmdVersion,
- count: jsonToUpdate.length,
- data: CryptoUtil.bin2base64(encryptedMMd.encryptedData!),
- header: CryptoUtil.bin2base64(encryptedMMd.header!),
- );
- }
- Future<MediaUploadData> _getMediaUploadDataFromAppCache(EnteFile file) async {
- File sourceFile;
- Uint8List? thumbnailData;
- const bool isDeleted = false;
- final localPath = getSharedMediaFilePath(file);
- sourceFile = File(localPath);
- if (!sourceFile.existsSync()) {
- _logger.warning("File doesn't exist in app sandbox");
- throw InvalidFileError(
- "source missing in sandbox",
- InvalidReason.sourceFileMissing,
- );
- }
- try {
- thumbnailData = await getThumbnailFromInAppCacheFile(file);
- final fileHash =
- CryptoUtil.bin2base64(await CryptoUtil.getHash(sourceFile));
- Map<String, int>? dimensions;
- if (file.fileType == FileType.image) {
- dimensions = await getImageHeightAndWith(imagePath: localPath);
- } else {
- // for video, we need to use the thumbnail data with any max width/height
- final thumbnailFilePath = await VideoThumbnail.thumbnailFile(
- video: localPath,
- imageFormat: ImageFormat.JPEG,
- thumbnailPath: (await getTemporaryDirectory()).path,
- quality: 10,
- );
- dimensions = await getImageHeightAndWith(imagePath: thumbnailFilePath);
- }
- return MediaUploadData(
- sourceFile,
- thumbnailData,
- isDeleted,
- FileHashData(fileHash),
- height: dimensions?['height'],
- width: dimensions?['width'],
- );
- } catch (e, s) {
- _logger.severe("failed to generate thumbnail", e, s);
- throw InvalidFileError(
- "thumbnail failed for appCache fileType: ${file.fileType.toString()}",
- InvalidReason.thumbnailMissing,
- );
- }
- }
- Future<Map<String, int>?> getImageHeightAndWith({
- String? imagePath,
- Uint8List? imageBytes,
- }) async {
- if (imagePath == null && imageBytes == null) {
- throw ArgumentError("imagePath and imageBytes cannot be null");
- }
- try {
- late Uint8List bytes;
- if (imagePath != null) {
- final File imageFile = File(imagePath);
- bytes = await imageFile.readAsBytes();
- } else {
- bytes = imageBytes!;
- }
- final ui.Codec codec = await ui.instantiateImageCodec(bytes);
- final ui.FrameInfo frameInfo = await codec.getNextFrame();
- if (frameInfo.image.width == 0 || frameInfo.image.height == 0) {
- return null;
- } else {
- return {
- "width": frameInfo.image.width,
- "height": frameInfo.image.height,
- };
- }
- } catch (e) {
- _logger.severe("Failed to get image size", e);
- return null;
- }
- }
- Future<Uint8List?> getThumbnailFromInAppCacheFile(EnteFile file) async {
- var localFile = File(getSharedMediaFilePath(file));
- if (!localFile.existsSync()) {
- return null;
- }
- if (file.fileType == FileType.video) {
- final thumbnailFilePath = await VideoThumbnail.thumbnailFile(
- video: localFile.path,
- imageFormat: ImageFormat.JPEG,
- thumbnailPath: (await getTemporaryDirectory()).path,
- maxWidth: thumbnailLargeSize,
- quality: 80,
- );
- localFile = File(thumbnailFilePath!);
- }
- var thumbnailData = await localFile.readAsBytes();
- int compressionAttempts = 0;
- while (thumbnailData.length > thumbnailDataLimit &&
- compressionAttempts < kMaximumThumbnailCompressionAttempts) {
- _logger.info("Thumbnail size " + thumbnailData.length.toString());
- thumbnailData = await compressThumbnail(thumbnailData);
- _logger
- .info("Compressed thumbnail size " + thumbnailData.length.toString());
- compressionAttempts++;
- }
- return thumbnailData;
- }
|