ente/lib/utils/file_util.dart

250 lines
8.3 KiB
Dart
Raw Normal View History

import 'dart:async';
import 'dart:io' as 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';
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-04 10:11:38 +00:00
Future<io.File> getFile(ente.File file,
{bool liveVideo = false} // only relevant for live photos
) 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 {
2021-08-04 10:11:38 +00:00
String key = file.tag() + liveVideo.toString();
final cachedFile = FileLruCache.get(key);
2021-06-02 13:54:31 +00:00
if (cachedFile == null) {
2021-08-04 10:11:38 +00:00
final diskFile = await _getLocalDiskFile(file, liveVideo: liveVideo);
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;
}
2021-08-09 06:21:09 +00:00
Future<io.File> _getLocalDiskFile(ente.File file,
{bool liveVideo = 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 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<int, Future<io.File>> fileDownloadsInProgress =
Map<int, 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();
return cacheManager.getFileFromCache(file.getDownloadUrl()).then((info) {
if (info == null) {
if (!fileDownloadsInProgress.containsKey(file.uploadedFileID)) {
if (file.fileType == FileType.livePhoto) {
fileDownloadsInProgress[file.uploadedFileID] = _downloadLivePhoto(
file,
progressCallback: progressCallback,
liveVideo: liveVideo);
} else {
fileDownloadsInProgress[file.uploadedFileID] = _downloadAndCache(
file,
cacheManager,
progressCallback: progressCallback,
);
}
2020-08-13 01:24:48 +00:00
}
return fileDownloadsInProgress[file.uploadedFileID];
} else {
return info.file;
}
});
2020-08-13 01:24:48 +00:00
}
Future<io.File> _downloadLivePhoto(ente.File file,
2021-08-09 06:21:09 +00:00
{ProgressCallback progressCallback, bool liveVideo = false}) 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;
List<int> bytes = decryptedFile.readAsBytesSync();
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(),
maxAge: 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(),
videoFile.readAsBytesSync(),
eTag: file.getDownloadUrl(),
maxAge: Duration(days: 365),
fileExtension: fileExtension,
);
2021-08-09 06:21:09 +00:00
await videoFile.delete();
}
}
}
fileDownloadsInProgress.remove(file.uploadedFileID);
return liveVideo ? videoFileCache : imageFileCache;
}).catchError((e) {
fileDownloadsInProgress.remove(file.uploadedFileID);
2021-08-05 17:27:00 +00:00
_logger.warning("failed to download live photos" + e.toString());
});
}
2021-08-03 11:58:17 +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(),
2020-11-20 11:05:17 +00:00
outputFile.readAsBytesSync(),
eTag: file.getDownloadUrl(),
maxAge: Duration(days: 365),
fileExtension: fileExtension,
);
2021-08-09 06:21:09 +00:00
await outputFile.delete();
fileDownloadsInProgress.remove(file.uploadedFileID);
2020-09-25 20:25:03 +00:00
return cachedFile;
2020-10-06 23:56:37 +00:00
}).catchError((e) {
fileDownloadsInProgress.remove(file.uploadedFileID);
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(
Configuration.instance.getThumbnailCacheDirectory() +
"/" +
file.uploadedFileID.toString());
if (cachedThumbnail.existsSync()) {
2021-08-09 06:21:09 +00:00
await cachedThumbnail.delete();
}
}