mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 01:06:21 +01:00
93 lines
2.8 KiB
Dart
93 lines
2.8 KiB
Dart
import 'package:event_bus/event_bus.dart';
|
|
import 'package:kiwi/kiwi.dart';
|
|
import 'package:logging/logging.dart';
|
|
import 'package:nc_photos/account.dart';
|
|
import 'package:nc_photos/entity/file.dart';
|
|
import 'package:nc_photos/event/event.dart';
|
|
import 'package:np_codegen/np_codegen.dart';
|
|
import 'package:np_common/or_null.dart';
|
|
|
|
part 'update_property.g.dart';
|
|
|
|
@npLog
|
|
class UpdateProperty {
|
|
UpdateProperty(this.fileRepo);
|
|
|
|
Future<void> call(
|
|
Account account,
|
|
File file, {
|
|
OrNull<Metadata>? metadata,
|
|
OrNull<bool>? isArchived,
|
|
OrNull<DateTime>? overrideDateTime,
|
|
bool? favorite,
|
|
OrNull<ImageLocation>? location,
|
|
}) async {
|
|
if (metadata == null &&
|
|
isArchived == null &&
|
|
overrideDateTime == null &&
|
|
favorite == null &&
|
|
location == null) {
|
|
// ?
|
|
_log.warning("[call] Nothing to update");
|
|
return;
|
|
}
|
|
|
|
if (metadata?.obj != null && metadata!.obj!.fileEtag != file.etag) {
|
|
_log.warning(
|
|
"[call] Metadata fileEtag mismatch with actual file's (metadata: ${metadata.obj!.fileEtag}, file: ${file.etag})");
|
|
}
|
|
await fileRepo.updateProperty(
|
|
account,
|
|
file,
|
|
metadata: metadata,
|
|
isArchived: isArchived,
|
|
overrideDateTime: overrideDateTime,
|
|
favorite: favorite,
|
|
location: location,
|
|
);
|
|
|
|
int properties = 0;
|
|
if (metadata != null) {
|
|
properties |= FilePropertyUpdatedEvent.propMetadata;
|
|
}
|
|
if (isArchived != null) {
|
|
properties |= FilePropertyUpdatedEvent.propIsArchived;
|
|
}
|
|
if (overrideDateTime != null) {
|
|
properties |= FilePropertyUpdatedEvent.propOverrideDateTime;
|
|
}
|
|
if (favorite != null) {
|
|
properties |= FilePropertyUpdatedEvent.propFavorite;
|
|
}
|
|
if (location != null) {
|
|
properties |= FilePropertyUpdatedEvent.propImageLocation;
|
|
}
|
|
assert(properties != 0);
|
|
KiwiContainer()
|
|
.resolve<EventBus>()
|
|
.fire(FilePropertyUpdatedEvent(account, file, properties));
|
|
}
|
|
|
|
final FileRepo fileRepo;
|
|
}
|
|
|
|
extension UpdatePropertyExtension on UpdateProperty {
|
|
/// Convenience function to only update metadata
|
|
///
|
|
/// See [UpdateProperty.call]
|
|
Future<void> updateMetadata(Account account, File file, Metadata metadata) =>
|
|
call(account, file, metadata: OrNull(metadata));
|
|
|
|
/// Convenience function to only update isArchived
|
|
///
|
|
/// See [UpdateProperty.call]
|
|
Future<void> updateIsArchived(Account account, File file, bool isArchived) =>
|
|
call(account, file, isArchived: OrNull(isArchived));
|
|
|
|
/// Convenience function to only update overrideDateTime
|
|
///
|
|
/// See [UpdateProperty.call]
|
|
Future<void> updateOverrideDateTime(
|
|
Account account, File file, DateTime overrideDateTime) =>
|
|
call(account, file, overrideDateTime: OrNull(overrideDateTime));
|
|
}
|