MyBookmark/Modules.Library.Application/Commands/Anime/Season/Properties/SetCompletedCommand.cs
2024-09-23 03:00:50 +03:00

27 lines
983 B
C#

using MediatR;
using Modules.Library.Application.Gateways;
using Modules.Library.Domain.Entities.MediaContent.Items.Anime;
namespace Modules.Library.Application.Commands.Anime.Season.Properties;
public class SetCompletedCommand : IRequest<Unit>
{
public Guid TitleId { get; set; }
public Guid SeasonId { get; set; }
public bool Value { get; set; }
}
public class SetCompletedCommandHandler(IAnimeTitleGateway titleGateway) : IRequestHandler<SetCompletedCommand, Unit>
{
public async Task<Unit> Handle(SetCompletedCommand request, CancellationToken cancellationToken)
{
var title = await titleGateway.GetById(request.TitleId);
var season = title.Items.OfType<AnimeSeason>().FirstOrDefault(q => q.Id == request.SeasonId) ??
throw new Exception("Season not found");
if (request.Value) season.SetCompleted();
else season.SetNotCompleted();
await titleGateway.Update(title);
return Unit.Value;
}
}