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.
71 lines
2.6 KiB
71 lines
2.6 KiB
using System.Threading.Channels; |
|
using ErsatzTV.Application.Channels; |
|
using ErsatzTV.Core; |
|
using ErsatzTV.Core.Domain; |
|
using ErsatzTV.Infrastructure.Data; |
|
using ErsatzTV.Infrastructure.Extensions; |
|
using Microsoft.EntityFrameworkCore; |
|
|
|
namespace ErsatzTV.Application.Playouts; |
|
|
|
public class |
|
UpdateExternalJsonPlayoutHandler : IRequestHandler<UpdateExternalJsonPlayout, |
|
Either<BaseError, PlayoutNameViewModel>> |
|
{ |
|
private readonly IDbContextFactory<TvContext> _dbContextFactory; |
|
private readonly ChannelWriter<IBackgroundServiceRequest> _workerChannel; |
|
|
|
public UpdateExternalJsonPlayoutHandler( |
|
IDbContextFactory<TvContext> dbContextFactory, |
|
ChannelWriter<IBackgroundServiceRequest> workerChannel) |
|
{ |
|
_dbContextFactory = dbContextFactory; |
|
_workerChannel = workerChannel; |
|
} |
|
|
|
public async Task<Either<BaseError, PlayoutNameViewModel>> Handle( |
|
UpdateExternalJsonPlayout request, |
|
CancellationToken cancellationToken) |
|
{ |
|
await using TvContext dbContext = await _dbContextFactory.CreateDbContextAsync(cancellationToken); |
|
Validation<BaseError, Playout> validation = await Validate(dbContext, request); |
|
return await validation.Apply(playout => ApplyUpdateRequest(dbContext, request, playout)); |
|
} |
|
|
|
private async Task<PlayoutNameViewModel> ApplyUpdateRequest( |
|
TvContext dbContext, |
|
UpdateExternalJsonPlayout request, |
|
Playout playout) |
|
{ |
|
playout.ExternalJsonFile = request.ExternalJsonFile; |
|
|
|
if (await dbContext.SaveChangesAsync() > 0) |
|
{ |
|
await _workerChannel.WriteAsync(new RefreshChannelData(playout.Channel.Number)); |
|
} |
|
|
|
return new PlayoutNameViewModel( |
|
playout.Id, |
|
playout.ProgramSchedulePlayoutType, |
|
playout.Channel.Name, |
|
playout.Channel.Number, |
|
playout.Channel.ProgressMode, |
|
playout.ProgramSchedule?.Name ?? string.Empty, |
|
playout.TemplateFile, |
|
playout.ExternalJsonFile, |
|
playout.DailyRebuildTime); |
|
} |
|
|
|
private static Task<Validation<BaseError, Playout>> Validate( |
|
TvContext dbContext, |
|
UpdateExternalJsonPlayout request) => |
|
PlayoutMustExist(dbContext, request); |
|
|
|
private static Task<Validation<BaseError, Playout>> PlayoutMustExist( |
|
TvContext dbContext, |
|
UpdateExternalJsonPlayout updatePlayout) => |
|
dbContext.Playouts |
|
.Include(p => p.Channel) |
|
.SelectOneAsync(p => p.Id, p => p.Id == updatePlayout.PlayoutId) |
|
.Map(o => o.ToValidation<BaseError>("Playout does not exist.")); |
|
}
|
|
|