32 lines
1.4 KiB
C#
32 lines
1.4 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.Description;
|
|
|
|
public class DeleteDescriptionCommand : IRequest<Unit>
|
|
{
|
|
public Guid TitleId { get; set; }
|
|
public Guid SeasonId { get; set; }
|
|
public Guid EpisodeId { get; set; }
|
|
public Guid LanguageId { get; set; }
|
|
public string Value { get; set; } = default!;
|
|
public bool IsOriginal { get; set; }
|
|
|
|
}
|
|
|
|
public class DeleteDescriptionCommandHandler(IAnimeTitleGateway titleGateway) : IRequestHandler<DeleteDescriptionCommand, Unit>
|
|
{
|
|
public async Task<Unit> Handle(DeleteDescriptionCommand 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");
|
|
var episode = season.Episodes.FirstOrDefault(q => q.Id == request.EpisodeId) ??
|
|
throw new Exception("Episode not found");
|
|
var description = new Domain.Entities.MediaContent.CommonProperties.Description(request.LanguageId, request.IsOriginal, request.Value);
|
|
episode.CommonProperties.RemoveDescription(description);
|
|
await titleGateway.Update(title);
|
|
return Unit.Value;
|
|
}
|
|
} |