Files
ersatztv/ErsatzTV.Application/Scheduling/Commands/DeleteTemplateGroupHandler.cs
T
Jason DoveandGitHub dcbe4837bf first pass at block scheduling (#1548)
* add blocks, block groups

* basic block and block item editing

* add template groups and basic template editing (name)

* add blocks to template calendar

* edit playout templates

* add calendar preview to playout templates

* add basic block playout building

* add mysql migration

* update changelog
2024-01-13 22:01:21 -06:00

30 lines
1.1 KiB
C#

using ErsatzTV.Core;
using ErsatzTV.Core.Domain.Scheduling;
using ErsatzTV.Infrastructure.Data;
using ErsatzTV.Infrastructure.Extensions;
using Microsoft.EntityFrameworkCore;
namespace ErsatzTV.Application.Scheduling;
public class DeleteTemplateGroupHandler(IDbContextFactory<TvContext> dbContextFactory)
: IRequestHandler<DeleteTemplateGroup, Option<BaseError>>
{
public async Task<Option<BaseError>> Handle(DeleteTemplateGroup request, CancellationToken cancellationToken)
{
await using TvContext dbContext = await dbContextFactory.CreateDbContextAsync(cancellationToken);
Option<TemplateGroup> maybeTemplateGroup = await dbContext.TemplateGroups
.SelectOneAsync(p => p.Id, p => p.Id == request.TemplateGroupId);
foreach (TemplateGroup templateGroup in maybeTemplateGroup)
{
dbContext.TemplateGroups.Remove(templateGroup);
await dbContext.SaveChangesAsync(cancellationToken);
}
return maybeTemplateGroup.Match(
_ => Option<BaseError>.None,
() => BaseError.New($"TemplateGroup {request.TemplateGroupId} does not exist."));
}
}