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.
37 lines
1.5 KiB
37 lines
1.5 KiB
using ErsatzTV.Core; |
|
using ErsatzTV.Core.Domain; |
|
using ErsatzTV.Infrastructure.Data; |
|
using ErsatzTV.Infrastructure.Extensions; |
|
using Microsoft.EntityFrameworkCore; |
|
|
|
namespace ErsatzTV.Application.ProgramSchedules; |
|
|
|
public class DeleteProgramScheduleHandler : IRequestHandler<DeleteProgramSchedule, Either<BaseError, Unit>> |
|
{ |
|
private readonly IDbContextFactory<TvContext> _dbContextFactory; |
|
|
|
public DeleteProgramScheduleHandler(IDbContextFactory<TvContext> dbContextFactory) => |
|
_dbContextFactory = dbContextFactory; |
|
|
|
public async Task<Either<BaseError, Unit>> Handle( |
|
DeleteProgramSchedule request, |
|
CancellationToken cancellationToken) |
|
{ |
|
await using TvContext dbContext = _dbContextFactory.CreateDbContext(); |
|
Validation<BaseError, ProgramSchedule> validation = await ProgramScheduleMustExist(dbContext, request); |
|
return await LanguageExtensions.Apply(validation, ps => DoDeletion(dbContext, ps)); |
|
} |
|
|
|
private static Task<Unit> DoDeletion(TvContext dbContext, ProgramSchedule programSchedule) |
|
{ |
|
dbContext.ProgramSchedules.Remove(programSchedule); |
|
return dbContext.SaveChangesAsync().ToUnit(); |
|
} |
|
|
|
private Task<Validation<BaseError, ProgramSchedule>> ProgramScheduleMustExist( |
|
TvContext dbContext, |
|
DeleteProgramSchedule request) => |
|
dbContext.ProgramSchedules |
|
.SelectOneAsync(ps => ps.Id, ps => ps.Id == request.ProgramScheduleId) |
|
.Map(o => o.ToValidation<BaseError>($"ProgramSchedule {request.ProgramScheduleId} does not exist.")); |
|
}
|
|
|