ente/lib/utils/file_util.dart

321 lines
10 KiB
Dart
Raw Normal View History

import 'dart:async';
import 'dart:io' as io;
2021-09-28 09:24:41 +00:00
import 'dart:io';
import 'dart:typed_data';
import 'package:archive/archive.dart';
import 'package:dio/dio.dart';
import 'package:flutter_cache_manager/flutter_cache_manager.dart';
import 'package:flutter_image_compress/flutter_image_compress.dart';
2021-07-21 20:47:43 +00:00
import 'package:logging/logging.dart';
import 'package:motionphoto/motionphoto.dart';
2021-08-03 11:58:17 +00:00
import 'package:path/path.dart';
2021-08-09 06:21:09 +00:00
import 'package:photos/core/cache/image_cache.dart';
import 'package:photos/core/cache/thumbnail_cache.dart';
2020-08-13 20:03:29 +00:00
import 'package:photos/core/cache/video_cache_manager.dart';
import 'package:photos/core/configuration.dart';
2020-07-29 19:07:23 +00:00
import 'package:photos/core/constants.dart';
2021-05-29 21:58:42 +00:00
import 'package:photos/models/file.dart' as ente;
2020-08-13 01:24:48 +00:00
import 'package:photos/models/file_type.dart';
import 'package:photos/utils/file_download_util.dart';
2021-08-09 06:21:09 +00:00
import 'package:photos/utils/thumbnail_util.dart';
final _logger = Logger("FileUtil");
2020-09-28 16:16:04 +00:00
2021-05-29 21:58:42 +00:00
void preloadFile(ente.File file) {
2020-08-13 01:24:48 +00:00
if (file.fileType == FileType.video) {
return;
}
2021-06-11 07:19:19 +00:00
getFile(file);
2021-06-02 13:54:31 +00:00
}
2021-08-24 07:14:33 +00:00
// IMPORTANT: Delete the returned file if `isOrigin` is set to true
// https://github.com/CaiJingLong/flutter_photo_manager#cache-problem-of-ios
Future<io.File> getFile(
ente.File file, {
bool liveVideo = false,
bool isOrigin = false,
} // only relevant for live photos
2021-08-04 10:11:38 +00:00
) async {
2021-07-19 05:37:34 +00:00
if (file.isRemoteFile()) {
2021-08-04 10:11:38 +00:00
return getFileFromServer(file, liveVideo: liveVideo);
} else {
String key = file.tag() + liveVideo.toString() + isOrigin.toString();
2021-08-04 10:11:38 +00:00
final cachedFile = FileLruCache.get(key);
2021-06-02 13:54:31 +00:00
if (cachedFile == null) {
final diskFile = await _getLocalDiskFile(
file,
liveVideo: liveVideo,
isOrigin: isOrigin,
);
2021-09-28 09:24:41 +00:00
// do not cache origin file for IOS as they are immediately deleted
// after usage
if (!(isOrigin && Platform.isIOS)) {
FileLruCache.put(key, diskFile);
}
2021-06-02 13:54:31 +00:00
return diskFile;
}
2021-06-02 13:54:31 +00:00
return cachedFile;
}
}
Future<bool> doesLocalFileExist(ente.File file) async {
return await _getLocalDiskFile(file) != null;
}
Future<io.File> _getLocalDiskFile(
ente.File file, {
bool liveVideo = false,
bool isOrigin = false,
}) async {
2021-07-24 17:33:59 +00:00
if (file.isSharedMediaToAppSandbox()) {
2021-07-24 13:38:47 +00:00
var localFile = io.File(getSharedMediaFilePath(file));
return localFile.exists().then((exist) {
return exist ? localFile : null;
});
2021-08-04 10:11:38 +00:00
} else if (file.fileType == FileType.livePhoto && liveVideo) {
return Motionphoto.getLivePhotoFile(file.localID);
2021-08-09 06:21:09 +00:00
} else {
return file.getAsset().then((asset) async {
if (asset == null || !(await asset.exists)) {
return null;
}
return isOrigin ? asset.originFile : asset.file;
});
}
}
String getSharedMediaFilePath(ente.File file) {
return Configuration.instance.getSharedMediaCacheDirectory() +
"/" +
file.localID.replaceAll(kSharedMediaIdentifier, '');
}
2021-05-29 21:58:42 +00:00
void preloadThumbnail(ente.File file) {
2021-07-19 05:37:34 +00:00
if (file.isRemoteFile()) {
2021-04-27 16:29:58 +00:00
getThumbnailFromServer(file);
} else {
getThumbnailFromLocal(file);
2021-04-27 16:29:58 +00:00
}
2020-07-29 19:07:23 +00:00
}
2020-08-13 01:24:48 +00:00
final Map<String, Future<io.File>> fileDownloadsInProgress =
<String, Future<io.File>>{};
Future<io.File> getFileFromServer(
ente.File file, {
ProgressCallback progressCallback,
bool liveVideo = false, // only needed in case of live photos
}) async {
final cacheManager = (file.fileType == FileType.video || liveVideo)
2021-05-02 16:05:36 +00:00
? VideoCacheManager.instance
2020-08-13 20:03:29 +00:00
: DefaultCacheManager();
final fileFromCache =
await cacheManager.getFileFromCache(file.getDownloadUrl());
if (fileFromCache != null) {
return fileFromCache.file;
}
final downloadID = file.uploadedFileID.toString() + liveVideo.toString();
if (!fileDownloadsInProgress.containsKey(downloadID)) {
if (file.fileType == FileType.livePhoto) {
2022-06-11 08:23:52 +00:00
fileDownloadsInProgress[downloadID] = _getLivePhotoFromServer(
file,
progressCallback: progressCallback,
needLiveVideo: liveVideo,
).whenComplete(() {
fileDownloadsInProgress.remove(downloadID);
});
} else {
fileDownloadsInProgress[downloadID] = _downloadAndCache(
2022-06-11 08:23:52 +00:00
file,
cacheManager,
progressCallback: progressCallback,
).whenComplete(() {
fileDownloadsInProgress.remove(downloadID);
});
}
}
return fileDownloadsInProgress[downloadID];
}
2022-05-11 04:51:25 +00:00
Future<bool> isFileCached(ente.File file, {bool liveVideo = false}) async {
final cacheManager = (file.fileType == FileType.video || liveVideo)
? VideoCacheManager.instance
: DefaultCacheManager();
final fileInfo = await cacheManager.getFileFromCache(file.getDownloadUrl());
return fileInfo != null;
}
2022-07-03 09:45:00 +00:00
final Map<int, Future<_LivePhoto>> _livePhotoDownloadsTracker =
<int, Future<_LivePhoto>>{};
2022-06-11 08:23:52 +00:00
Future<io.File> _getLivePhotoFromServer(
ente.File file, {
ProgressCallback progressCallback,
bool needLiveVideo,
}) async {
final downloadID = file.uploadedFileID;
try {
2022-07-03 09:45:00 +00:00
if (!_livePhotoDownloadsTracker.containsKey(downloadID)) {
_livePhotoDownloadsTracker[downloadID] =
_downloadLivePhoto(file, progressCallback: progressCallback);
}
2022-07-03 09:45:00 +00:00
final livePhoto = await _livePhotoDownloadsTracker[file.uploadedFileID];
_livePhotoDownloadsTracker.remove(downloadID);
2021-10-05 04:57:46 +00:00
if (livePhoto == null) {
return null;
}
2021-10-05 04:57:46 +00:00
return needLiveVideo ? livePhoto.video : livePhoto.image;
2022-05-11 04:51:25 +00:00
} catch (e, s) {
_logger.warning("live photo get failed", e, s);
2022-07-03 09:45:00 +00:00
_livePhotoDownloadsTracker.remove(downloadID);
return null;
}
2020-08-13 01:24:48 +00:00
}
2022-06-11 08:23:52 +00:00
Future<_LivePhoto> _downloadLivePhoto(
ente.File file, {
ProgressCallback progressCallback,
}) async {
return downloadAndDecrypt(file, progressCallback: progressCallback)
.then((decryptedFile) async {
if (decryptedFile == null) {
return null;
}
_logger.fine("Decoded zipped live photo from " + decryptedFile.path);
io.File imageFileCache, videoFileCache;
2021-08-09 06:30:30 +00:00
List<int> bytes = await decryptedFile.readAsBytes();
Archive archive = ZipDecoder().decodeBytes(bytes);
final tempPath = Configuration.instance.getTempDirectory();
// Extract the contents of Zip compressed archive to disk
for (ArchiveFile archiveFile in archive) {
if (archiveFile.isFile) {
String filename = archiveFile.name;
String fileExtension = getExtension(archiveFile.name);
String decodePath =
tempPath + file.uploadedFileID.toString() + filename;
List<int> data = archiveFile.content;
if (filename.startsWith("image")) {
2021-08-09 06:26:11 +00:00
final imageFile = io.File(decodePath);
await imageFile.create(recursive: true);
await imageFile.writeAsBytes(data);
io.File imageConvertedFile = imageFile;
if ((fileExtension == "unknown") ||
(io.Platform.isAndroid && fileExtension == "heic")) {
imageConvertedFile = await FlutterImageCompress.compressAndGetFile(
decodePath,
decodePath + ".jpg",
keepExif: true,
);
2021-08-09 06:21:09 +00:00
await imageFile.delete();
}
imageFileCache = await DefaultCacheManager().putFile(
file.getDownloadUrl(),
2021-08-09 06:26:11 +00:00
await imageConvertedFile.readAsBytes(),
eTag: file.getDownloadUrl(),
2022-07-04 06:02:17 +00:00
maxAge: const Duration(days: 365),
fileExtension: fileExtension,
);
2021-08-09 06:21:09 +00:00
await imageConvertedFile.delete();
} else if (filename.startsWith("video")) {
2021-08-09 06:26:11 +00:00
final videoFile = io.File(decodePath);
await videoFile.create(recursive: true);
await videoFile.writeAsBytes(data);
videoFileCache = await VideoCacheManager.instance.putFile(
file.getDownloadUrl(),
2021-08-09 06:30:30 +00:00
await videoFile.readAsBytes(),
eTag: file.getDownloadUrl(),
2022-07-04 06:02:17 +00:00
maxAge: const Duration(days: 365),
fileExtension: fileExtension,
);
2021-08-09 06:21:09 +00:00
await videoFile.delete();
}
}
}
return _LivePhoto(imageFileCache, videoFileCache);
}).catchError((e) {
2022-05-11 04:51:25 +00:00
_logger.warning("failed to download live photos : ${file.tag()}", e);
throw e;
});
}
2022-06-11 08:23:52 +00:00
Future<io.File> _downloadAndCache(
ente.File file,
BaseCacheManager cacheManager, {
ProgressCallback progressCallback,
}) async {
return downloadAndDecrypt(file, progressCallback: progressCallback)
.then((decryptedFile) async {
if (decryptedFile == null) {
return null;
2020-09-28 16:15:21 +00:00
}
var decryptedFilePath = decryptedFile.path;
String fileExtension = getExtension(file.title);
2020-11-20 11:05:17 +00:00
var outputFile = decryptedFile;
if ((fileExtension == "unknown" && file.fileType == FileType.image) ||
2021-06-29 04:10:24 +00:00
(io.Platform.isAndroid && fileExtension == "heic")) {
2020-11-20 11:05:17 +00:00
outputFile = await FlutterImageCompress.compressAndGetFile(
decryptedFilePath,
decryptedFilePath + ".jpg",
keepExif: true,
);
2021-08-09 06:21:09 +00:00
await decryptedFile.delete();
2020-11-20 11:05:17 +00:00
}
2020-09-25 20:25:03 +00:00
final cachedFile = await cacheManager.putFile(
file.getDownloadUrl(),
2021-08-09 06:30:30 +00:00
await outputFile.readAsBytes(),
eTag: file.getDownloadUrl(),
2022-07-04 06:02:17 +00:00
maxAge: const Duration(days: 365),
fileExtension: fileExtension,
);
2021-08-09 06:21:09 +00:00
await outputFile.delete();
2020-09-25 20:25:03 +00:00
return cachedFile;
2020-10-06 23:56:37 +00:00
}).catchError((e) {
_logger.warning("failed to download file : ${file.tag()}", e);
throw e;
2020-08-13 01:24:48 +00:00
});
}
2020-08-13 21:33:31 +00:00
String getExtension(String nameOrPath) {
2021-08-09 06:21:09 +00:00
var fileExtension = "unknown";
try {
fileExtension = extension(nameOrPath).substring(1).toLowerCase();
} catch (e) {
_logger.severe("Could not capture file extension");
}
return fileExtension;
}
Future<Uint8List> compressThumbnail(Uint8List thumbnail) {
return FlutterImageCompress.compressWithList(
thumbnail,
2021-07-21 20:47:43 +00:00
minHeight: kCompressedThumbnailResolution,
minWidth: kCompressedThumbnailResolution,
quality: 25,
);
}
2021-08-09 06:21:09 +00:00
Future<void> clearCache(ente.File file) async {
if (file.fileType == FileType.video) {
2021-05-02 16:05:36 +00:00
VideoCacheManager.instance.removeFile(file.getDownloadUrl());
} else {
DefaultCacheManager().removeFile(file.getDownloadUrl());
}
final cachedThumbnail = io.File(
2022-06-11 08:23:52 +00:00
Configuration.instance.getThumbnailCacheDirectory() +
"/" +
file.uploadedFileID.toString(),
);
if (cachedThumbnail.existsSync()) {
2021-08-09 06:21:09 +00:00
await cachedThumbnail.delete();
}
ThumbnailLruCache.clearCache(file);
}
class _LivePhoto {
final io.File image;
final io.File video;
_LivePhoto(this.image, this.video);
}