32 lines
1.3 KiB
C#
32 lines
1.3 KiB
C#
using MediatR;
|
|
using Modules.Library.Application.Gateways;
|
|
using Modules.Library.Domain.Entities.MediaContent.Items.Anime;
|
|
|
|
namespace Modules.Library.Application.Commands.Anime.Episode.Properties.Genre;
|
|
|
|
public class AddGenreCommand : IRequest<Unit>
|
|
{
|
|
public Guid TitleId { get; set; }
|
|
public Guid SeasonId { get; set; }
|
|
public Guid EpisodeId { get; set; }
|
|
public Guid GenreId { get; set; }
|
|
public decimal? Proportion { get; set; }
|
|
|
|
}
|
|
|
|
public class AddGenreCommandHandler(IAnimeTitleGateway titleGateway, IGenreGateway genreGateway) : IRequestHandler<AddGenreCommand, Unit>
|
|
{
|
|
public async Task<Unit> Handle(AddGenreCommand request, CancellationToken cancellationToken)
|
|
{
|
|
var title = await titleGateway.GetById(request.TitleId);
|
|
if (!await genreGateway.IsGenreExists(request.GenreId)) throw new Exception("NotFound");
|
|
var season = title.Items.OfType<AnimeSeason>().FirstOrDefault(q => q.Id == request.SeasonId) ??
|
|
throw new Exception("Season not found");
|
|
|
|
var episode = season.Episodes.FirstOrDefault(q => q.Id == request.EpisodeId) ??
|
|
throw new Exception("Episode not found");
|
|
episode.CommonProperties.AddGenre(request.GenreId, request.Proportion);
|
|
await titleGateway.Update(title);
|
|
return Unit.Value;
|
|
}
|
|
} |