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