88 lines
3.3 KiB
Dart
88 lines
3.3 KiB
Dart
import 'package:aves/model/image_entry.dart';
|
|
import 'package:aves/model/image_metadata.dart';
|
|
import 'package:aves/services/service_policy.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/services.dart';
|
|
|
|
class MetadataService {
|
|
static const platform = MethodChannel('deckers.thibault/aves/metadata');
|
|
|
|
// return Map<Map<Key, Value>> (map of directories, each directory being a map of metadata label and value description)
|
|
static Future<Map> getAllMetadata(ImageEntry entry) async {
|
|
if (entry.isSvg) return null;
|
|
|
|
try {
|
|
final result = await platform.invokeMethod('getAllMetadata', <String, dynamic>{
|
|
'mimeType': entry.mimeType,
|
|
'uri': entry.uri,
|
|
});
|
|
return result as Map;
|
|
} on PlatformException catch (e) {
|
|
debugPrint('getAllMetadata failed with code=${e.code}, exception=${e.message}, details=${e.details}');
|
|
}
|
|
return {};
|
|
}
|
|
|
|
static Future<CatalogMetadata> getCatalogMetadata(ImageEntry entry, {bool background = false}) async {
|
|
if (entry.isSvg) return null;
|
|
|
|
final call = () async {
|
|
try {
|
|
// return map with:
|
|
// 'mimeType': MIME type as reported by metadata extractors, not Media Store (string)
|
|
// 'dateMillis': date taken in milliseconds since Epoch (long)
|
|
// 'isAnimated': animated gif/webp (bool)
|
|
// 'latitude': latitude (double)
|
|
// 'longitude': longitude (double)
|
|
// 'videoRotation': video rotation degrees (int)
|
|
// 'xmpSubjects': ';' separated XMP subjects (string)
|
|
// 'xmpTitleDescription': XMP title or XMP description (string)
|
|
final result = await platform.invokeMethod('getCatalogMetadata', <String, dynamic>{
|
|
'mimeType': entry.mimeType,
|
|
'uri': entry.uri,
|
|
}) as Map;
|
|
result['contentId'] = entry.contentId;
|
|
return CatalogMetadata.fromMap(result);
|
|
} on PlatformException catch (e) {
|
|
debugPrint('getCatalogMetadata failed with code=${e.code}, exception=${e.message}, details=${e.details}');
|
|
}
|
|
return null;
|
|
};
|
|
return background
|
|
? servicePolicy.call(
|
|
call,
|
|
priority: ServiceCallPriority.getMetadata,
|
|
)
|
|
: call();
|
|
}
|
|
|
|
static Future<OverlayMetadata> getOverlayMetadata(ImageEntry entry) async {
|
|
if (entry.isSvg) return null;
|
|
|
|
try {
|
|
// return map with string descriptions for: 'aperture' 'exposureTime' 'focalLength' 'iso'
|
|
final result = await platform.invokeMethod('getOverlayMetadata', <String, dynamic>{
|
|
'mimeType': entry.mimeType,
|
|
'uri': entry.uri,
|
|
}) as Map;
|
|
return OverlayMetadata.fromMap(result);
|
|
} on PlatformException catch (e) {
|
|
debugPrint('getOverlayMetadata failed with code=${e.code}, exception=${e.message}, details=${e.details}');
|
|
}
|
|
return null;
|
|
}
|
|
|
|
static Future<Map> getContentResolverMetadata(ImageEntry entry) async {
|
|
try {
|
|
// return map with all data available from the content resolver
|
|
final result = await platform.invokeMethod('getContentResolverMetadata', <String, dynamic>{
|
|
'mimeType': entry.mimeType,
|
|
'uri': entry.uri,
|
|
}) as Map;
|
|
return result;
|
|
} on PlatformException catch (e) {
|
|
debugPrint('getContentResolverMetadata failed with code=${e.code}, exception=${e.message}, details=${e.details}');
|
|
}
|
|
return {};
|
|
}
|
|
}
|