mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.7 KiB
44 lines
1.7 KiB
using ErsatzTV.Core; |
|
using ErsatzTV.Core.Domain; |
|
using ErsatzTV.Core.Interfaces.Search; |
|
using ErsatzTV.Infrastructure.Data; |
|
using ErsatzTV.Infrastructure.Extensions; |
|
using Microsoft.EntityFrameworkCore; |
|
|
|
namespace ErsatzTV.Application.FFmpegProfiles; |
|
|
|
public class DeleteFFmpegProfileHandler : IRequestHandler<DeleteFFmpegProfile, Either<BaseError, Unit>> |
|
{ |
|
private readonly IDbContextFactory<TvContext> _dbContextFactory; |
|
private readonly ISearchTargets _searchTargets; |
|
|
|
public DeleteFFmpegProfileHandler(IDbContextFactory<TvContext> dbContextFactory, ISearchTargets searchTargets) |
|
{ |
|
_dbContextFactory = dbContextFactory; |
|
_searchTargets = searchTargets; |
|
} |
|
|
|
public async Task<Either<BaseError, Unit>> Handle( |
|
DeleteFFmpegProfile request, |
|
CancellationToken cancellationToken) |
|
{ |
|
await using TvContext dbContext = await _dbContextFactory.CreateDbContextAsync(cancellationToken); |
|
Validation<BaseError, FFmpegProfile> validation = await FFmpegProfileMustExist(dbContext, request); |
|
return await validation.Apply(p => DoDeletion(dbContext, p)); |
|
} |
|
|
|
private async Task<Unit> DoDeletion(TvContext dbContext, FFmpegProfile ffmpegProfile) |
|
{ |
|
dbContext.FFmpegProfiles.Remove(ffmpegProfile); |
|
await dbContext.SaveChangesAsync(); |
|
_searchTargets.SearchTargetsChanged(); |
|
return Unit.Default; |
|
} |
|
|
|
private static Task<Validation<BaseError, FFmpegProfile>> FFmpegProfileMustExist( |
|
TvContext dbContext, |
|
DeleteFFmpegProfile request) => |
|
dbContext.FFmpegProfiles |
|
.SelectOneAsync(p => p.Id, p => p.Id == request.FFmpegProfileId) |
|
.Map(o => o.ToValidation<BaseError>($"FFmpegProfile {request.FFmpegProfileId} does not exist")); |
|
}
|
|
|