2021-08-01 22:46:16 +02:00
|
|
|
import 'package:nc_photos/account.dart';
|
|
|
|
import 'package:nc_photos/api/api_util.dart' as api_util;
|
2021-04-10 06:28:12 +02:00
|
|
|
import 'package:nc_photos/entity/file.dart';
|
2021-05-06 13:36:20 +02:00
|
|
|
import 'package:nc_photos/platform/k.dart' as platform_k;
|
2021-04-10 06:28:12 +02:00
|
|
|
|
|
|
|
bool isSupportedFormat(File file) =>
|
|
|
|
_supportedFormatMimes.contains(file.contentType);
|
|
|
|
|
2021-05-06 08:29:46 +02:00
|
|
|
bool isSupportedImageFormat(File file) =>
|
|
|
|
isSupportedFormat(file) && file.contentType?.startsWith("image/") == true;
|
|
|
|
|
2021-05-06 13:36:20 +02:00
|
|
|
bool isSupportedVideoFormat(File file) =>
|
|
|
|
isSupportedFormat(file) && file.contentType?.startsWith("video/") == true;
|
|
|
|
|
2021-05-06 22:11:31 +02:00
|
|
|
bool isMetadataSupportedFormat(File file) =>
|
|
|
|
_metadataSupportedFormatMimes.contains(file.contentType);
|
|
|
|
|
2021-08-01 22:46:16 +02:00
|
|
|
bool isTrash(Account account, File file) =>
|
|
|
|
file.path.startsWith(api_util.getTrashbinPath(account));
|
|
|
|
|
2021-06-14 15:51:29 +02:00
|
|
|
/// For a path "remote.php/dav/files/foo/bar.jpg", return foo
|
|
|
|
String getUserDirName(File file) {
|
|
|
|
if (file.path.startsWith("remote.php/dav/files/")) {
|
|
|
|
final beg = "remote.php/dav/files/".length;
|
|
|
|
final end = file.path.indexOf("/", beg);
|
|
|
|
if (end != -1) {
|
|
|
|
return file.path.substring(beg, end);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw ArgumentError("Invalid path: ${file.path}");
|
|
|
|
}
|
|
|
|
|
2021-07-04 18:32:35 +02:00
|
|
|
final _supportedFormatMimes = [
|
2021-04-10 06:28:12 +02:00
|
|
|
"image/jpeg",
|
|
|
|
"image/png",
|
|
|
|
"image/webp",
|
2021-04-14 23:09:31 +02:00
|
|
|
"image/heic",
|
2021-06-22 07:24:37 +02:00
|
|
|
"image/gif",
|
2021-08-05 09:04:12 +02:00
|
|
|
"video/mp4",
|
|
|
|
if (platform_k.isAndroid || platform_k.isWeb) "video/webm",
|
2021-04-10 06:28:12 +02:00
|
|
|
];
|
2021-05-06 22:11:31 +02:00
|
|
|
|
|
|
|
const _metadataSupportedFormatMimes = [
|
|
|
|
"image/jpeg",
|
|
|
|
"image/heic",
|
|
|
|
];
|