80 lines
2.6 KiB
Dart
80 lines
2.6 KiB
Dart
import 'package:aves/model/entry.dart';
|
|
import 'package:aves/services/common/services.dart';
|
|
import 'package:flutter/services.dart';
|
|
|
|
abstract class EmbeddedDataService {
|
|
Future<List<Uint8List>> getExifThumbnails(AvesEntry entry);
|
|
|
|
Future<Map> extractMotionPhotoVideo(AvesEntry entry);
|
|
|
|
Future<Map> extractVideoEmbeddedPicture(AvesEntry entry);
|
|
|
|
Future<Map> extractXmpDataProp(AvesEntry entry, String? propPath, String? propMimeType);
|
|
}
|
|
|
|
class PlatformEmbeddedDataService implements EmbeddedDataService {
|
|
static const _platform = MethodChannel('deckers.thibault/aves/embedded');
|
|
|
|
@override
|
|
Future<List<Uint8List>> getExifThumbnails(AvesEntry entry) async {
|
|
try {
|
|
final result = await _platform.invokeMethod('getExifThumbnails', <String, dynamic>{
|
|
'mimeType': entry.mimeType,
|
|
'uri': entry.uri,
|
|
'sizeBytes': entry.sizeBytes,
|
|
});
|
|
if (result != null) return (result as List).cast<Uint8List>();
|
|
} on PlatformException catch (e, stack) {
|
|
await reportService.recordError(e, stack);
|
|
}
|
|
return [];
|
|
}
|
|
|
|
@override
|
|
Future<Map> extractMotionPhotoVideo(AvesEntry entry) async {
|
|
try {
|
|
final result = await _platform.invokeMethod('extractMotionPhotoVideo', <String, dynamic>{
|
|
'mimeType': entry.mimeType,
|
|
'uri': entry.uri,
|
|
'sizeBytes': entry.sizeBytes,
|
|
'displayName': '${entry.bestTitle} • Video',
|
|
});
|
|
if (result != null) return result as Map;
|
|
} on PlatformException catch (e, stack) {
|
|
await reportService.recordError(e, stack);
|
|
}
|
|
return {};
|
|
}
|
|
|
|
@override
|
|
Future<Map> extractVideoEmbeddedPicture(AvesEntry entry) async {
|
|
try {
|
|
final result = await _platform.invokeMethod('extractVideoEmbeddedPicture', <String, dynamic>{
|
|
'uri': entry.uri,
|
|
'displayName': '${entry.bestTitle} • Cover',
|
|
});
|
|
if (result != null) return result as Map;
|
|
} on PlatformException catch (e, stack) {
|
|
await reportService.recordError(e, stack);
|
|
}
|
|
return {};
|
|
}
|
|
|
|
@override
|
|
Future<Map> extractXmpDataProp(AvesEntry entry, String? propPath, String? propMimeType) async {
|
|
try {
|
|
final result = await _platform.invokeMethod('extractXmpDataProp', <String, dynamic>{
|
|
'mimeType': entry.mimeType,
|
|
'uri': entry.uri,
|
|
'sizeBytes': entry.sizeBytes,
|
|
'displayName': '${entry.bestTitle} • $propPath',
|
|
'propPath': propPath,
|
|
'propMimeType': propMimeType,
|
|
});
|
|
if (result != null) return result as Map;
|
|
} on PlatformException catch (e, stack) {
|
|
await reportService.recordError(e, stack);
|
|
}
|
|
return {};
|
|
}
|
|
}
|