MyBookmark/Modules.Library.Application/Commands/Anime/Episode/Properties/RelatedContent/AddRelatedContentCommand.cs
THE_KONDRAT 7b16d72329 ui and login
mongo => postgres
2024-11-03 16:08:39 +03:00

31 lines
1.4 KiB
C#

using MediatR;
using Modules.Library.Application.Commands.CommonModels;
using Modules.Library.Application.Gateways;
using Modules.Library.Domain.Entities.MediaContent.Items.Anime;
namespace Modules.Library.Application.Commands.Anime.Episode.Properties.RelatedContent;
public class AddRelatedContentCommand : IRequest<Unit>
{
public Guid TitleId { get; set; }
public Guid SeasonId { get; set; }
public Guid EpisodeId { get; set; }
public MediaInfoType Type { get; set; }
public string Url { get; set; } = default!;
public string ContentType { get; set; } = default!;
}
public class AddRelatedContentCommandHandler(IAnimeTitleGateway titleGateway) : IRequestHandler<AddRelatedContentCommand, Unit>
{
public async Task<Unit> Handle(AddRelatedContentCommand 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");
episode.CommonProperties.AddRelatedContent(request.Url, (Domain.Entities.MediaInfoType)request.Type, request.ContentType);
await titleGateway.Update(title);
return Unit.Value;
}
}