using System.Collections.Immutable; using Connected.Caching; using Connected.Entities; using Connected.Entities.Storage; using Connected.Notifications.Events; using Connected.ServiceModel; using Connected.Services; namespace Connected.Logistics.Documents.Receive; internal sealed class ReceivePostingDocumentOps { public sealed class Delete : ServiceAction> { public Delete(IStorageProvider storage, ICacheContext cache, IEventService events, IReceivePostingDocumentService documents) { Storage = storage; Cache = cache; Events = events; Documents = documents; } private IStorageProvider Storage { get; } private ICacheContext Cache { get; } private IEventService Events { get; } private IReceivePostingDocumentService Documents { get; } protected override async Task OnInvoke() { await Storage.Open().Update(Arguments.AsEntity(State.Deleted)); await Cache.Remove(ReceivePostingDocument.EntityKey, Arguments.Id); } protected override async Task OnCommitted() { await Events.Enqueue(this, Documents, nameof(IReceivePostingDocumentService.Deleted), Arguments); } } public sealed class Insert : ServiceFunction { public Insert(IStorageProvider storage, IEventService events, IReceivePostingDocumentService documents) { Storage = storage; Events = events; Documents = documents; } private IStorageProvider Storage { get; } private IEventService Events { get; } private IReceivePostingDocumentService Documents { get; } protected override async Task OnInvoke() { return (await Storage.Open().Update(Arguments.AsEntity(State.New))).Id; } protected override async Task OnCommitted() { await Events.Enqueue(this, Documents, nameof(IReceivePostingDocumentService.Inserted), new PrimaryKeyArgs { Id = Result }); } } public sealed class Query : ServiceFunction, ImmutableList> { public Query(IStorageProvider storage) { Storage = storage; } private IStorageProvider Storage { get; } protected override async Task> OnInvoke() { return await (from e in Storage.Open() where e.Document == Arguments.Id select e).AsEntities(); } } public sealed class Select : NullableServiceFunction, IReceivePostingDocument> { public Select(IStorageProvider storage, ICacheContext cache) { Storage = storage; Cache = cache; } private IStorageProvider Storage { get; } private ICacheContext Cache { get; } protected override async Task OnInvoke() { return await Cache.Get(ReceivePostingDocument.EntityKey, Arguments.Id, async (f) => { return await (from e in Storage.Open() where e.Id == Arguments.Id select e).AsEntity(); }); } } public sealed class Update : ServiceAction { public Update(IStorageProvider storage, ICacheContext cache, IEventService events, IReceivePostingDocumentService documents) { Storage = storage; Cache = cache; Events = events; Documents = documents; } private IStorageProvider Storage { get; } private ICacheContext Cache { get; } private IEventService Events { get; } private IReceivePostingDocumentService Documents { get; } protected override async Task OnInvoke() { if (await Documents.Select(Arguments.Id) is not ReceivePostingDocument entity) return; await Storage.Open().Update(entity, Arguments, async () => { await Cache.Remove(ReceivePostingDocument.EntityKey, Arguments.Id); return (await Documents.Select(Arguments.Id)) as ReceivePostingDocument; }); await Cache.Remove(ReceivePostingDocument.EntityKey, Arguments.Id); } protected override async Task OnCommitted() { await Events.Enqueue(this, Documents, nameof(IReceivePostingDocumentService.Updated), Arguments); } } }