nc-photos/lib/entity/file_util.dart

42 lines
1.2 KiB
Dart
Raw Normal View History

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;
bool isMetadataSupportedFormat(File file) =>
_metadataSupportedFormatMimes.contains(file.contentType);
/// 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-04-10 06:28:12 +02:00
const _supportedFormatMimes = [
"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-05-06 13:36:20 +02:00
// video player currently doesn't work on web
if (!platform_k.isWeb) "video/mp4",
2021-04-10 06:28:12 +02:00
];
const _metadataSupportedFormatMimes = [
"image/jpeg",
"image/heic",
];