using MediatR; using Sledgemapper.Api.Infrastructure.Data; using Sledgemapper.Api.Commands; using Sledgemapper.Api.Notifications; using System.Text.Json; using System.Threading; using System.Threading.Tasks; namespace Sledgemapper.Api.Handlers { public class NewNoteCommandHandler : BaseCommandHandler { public NewNoteCommandHandler(IMediator mediator, SledgemapperDbContext dbcontext) : base(mediator, dbcontext) { } public override async Task Handle(NewNoteCommand command, CancellationToken cancellationToken) { await CheckAuthorization(command); var jsonString = JsonSerializer.Serialize(command.Note); var session = await SaveLog(command, "N", "N", jsonString, cancellationToken); await Mediator.Publish(new NewNoteNotification(session, command.Note, command.UserId), cancellationToken); return true; } } }