* fix formatting rules * reformat ersatztv * reformat ersatztv.application * reformat ersatztv.core * refactor ersatztv.core.tests * reformat ersatztv.ffmpeg * reformat ersatztv.ffmpeg.tests * reformat ersatztv.infrastructure * cleanup infra mysql * cleanup infra sqlite * cleanup infra tests * cleanup ersatztv.scanner * cleanup ersatztv.scanner.tests * sln cleanup * update dependencies
77 lines
2.6 KiB
C#
77 lines
2.6 KiB
C#
using ErsatzTV.Core.Domain.Scheduling;
|
|
|
|
namespace ErsatzTV.Core.Scheduling.BlockScheduling;
|
|
|
|
internal record EffectiveBlock(Block Block, BlockKey BlockKey, DateTimeOffset Start, int TemplateItemId)
|
|
{
|
|
public static List<EffectiveBlock> GetEffectiveBlocks(
|
|
ICollection<PlayoutTemplate> templates,
|
|
DateTimeOffset start,
|
|
int daysToBuild)
|
|
{
|
|
DateTimeOffset finish = start.AddDays(daysToBuild);
|
|
|
|
var effectiveBlocks = new List<EffectiveBlock>();
|
|
DateTimeOffset current = start.Date;
|
|
while (current < finish)
|
|
{
|
|
Option<PlayoutTemplate> maybeTemplate = PlayoutTemplateSelector.GetPlayoutTemplateFor(templates, current);
|
|
foreach (PlayoutTemplate playoutTemplate in maybeTemplate)
|
|
{
|
|
// logger.LogDebug(
|
|
// "Will schedule day {Date} using template {Template}",
|
|
// current,
|
|
// playoutTemplate.Template.Name);
|
|
|
|
DateTimeOffset today = current;
|
|
|
|
var newBlocks = playoutTemplate.Template.Items
|
|
.Map(i => ToEffectiveBlock(playoutTemplate, i, today, start))
|
|
.Map(NormalizeGuideMode)
|
|
.ToList();
|
|
|
|
effectiveBlocks.AddRange(newBlocks);
|
|
}
|
|
|
|
current = current.AddDays(1);
|
|
}
|
|
|
|
effectiveBlocks.RemoveAll(b => b.Start.AddMinutes(b.Block.Minutes) < start || b.Start > finish);
|
|
effectiveBlocks = effectiveBlocks.OrderBy(rb => rb.Start).ToList();
|
|
|
|
return effectiveBlocks;
|
|
}
|
|
|
|
private static EffectiveBlock ToEffectiveBlock(
|
|
PlayoutTemplate playoutTemplate,
|
|
TemplateItem templateItem,
|
|
DateTimeOffset current,
|
|
DateTimeOffset start) =>
|
|
new(
|
|
templateItem.Block,
|
|
new BlockKey(templateItem.Block, templateItem.Template, playoutTemplate),
|
|
new DateTimeOffset(
|
|
current.Year,
|
|
current.Month,
|
|
current.Day,
|
|
templateItem.StartTime.Hours,
|
|
templateItem.StartTime.Minutes,
|
|
0,
|
|
start.Offset),
|
|
templateItem.Id);
|
|
|
|
private static EffectiveBlock NormalizeGuideMode(EffectiveBlock effectiveBlock)
|
|
{
|
|
if (effectiveBlock.Block.Items is not null &&
|
|
effectiveBlock.Block.Items.All(bi => !bi.IncludeInProgramGuide))
|
|
{
|
|
foreach (BlockItem blockItem in effectiveBlock.Block.Items)
|
|
{
|
|
blockItem.IncludeInProgramGuide = true;
|
|
}
|
|
}
|
|
|
|
return effectiveBlock;
|
|
}
|
|
}
|