Build ErsatzTV Image / Build & test (.NET) (pull_request) Successful in 3m43s
Build ErsatzTV Image / EF migration integrity (SQLite + MySql) (pull_request) Successful in 4m58s
Build ErsatzTV Image / Build & push image (amd64) (pull_request) Has been skipped
Build ErsatzTV Image / Build & test (.NET) (push) Successful in 3m44s
Build ErsatzTV Image / EF migration integrity (SQLite + MySql) (push) Successful in 5m0s
Build ErsatzTV Image / Build & push image (amd64) (push) Successful in 3m41s
First slice of the REST API (ersatztv#2). Idiomatic REST over existing MediatR handlers; design in docs/rest-api.md.
Foundation: NotFoundError : BaseError (Core) to split 404 from 422; ApiResults mapping helpers (Either/Option -> 201+Location / 200 / 204 / 404 / 422), additive (existing *ToActionResult untouched); ApiKeyAuthorizationFilter (optional X-Api-Key on mutating actions, gated by Api:WriteKey, no-op when unset) — independent of the IPTV JWT toggle so Jellyfin/Dispatcharr reads are unaffected, applied at controller-class level so every mutating action incl. ResetPlayout is covered fail-safe.
Channels: POST /api/channels (201+Location), PUT/{id} (200/404), DELETE/{id} (204/404), GET/{id} (200/404). Request DTOs -> existing commands; responses reuse ChannelViewModel. Ported page-only validations into handlers (ShowInEpg-when-disabled, external-logo-URL, Group NotEmpty) + FFmpegProfile/Watermark/Filler existence on update for create-parity. Fixed a latent 500: the .Filter(c>0) existence pattern threw TaskCanceledException on not-found; rewritten to AnyAsync.
Tests (NUnit, TZ=UTC): handler success/404/422, ApiResults mapping, API-key filter, controller status/Location/mapping, a controller-security regression net, and a create->read->delete EF integration test on a new in-memory SQLite harness. ErsatzTV.Tests 46/46, Architecture 5/5.
Refs #34
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
261 lines
10 KiB
C#
261 lines
10 KiB
C#
using System.Globalization;
|
|
using System.Text.RegularExpressions;
|
|
using System.Threading.Channels;
|
|
using ErsatzTV.Core;
|
|
using ErsatzTV.Core.Domain;
|
|
using ErsatzTV.Core.Domain.Filler;
|
|
using ErsatzTV.Core.Interfaces.Search;
|
|
using ErsatzTV.Infrastructure.Data;
|
|
using ErsatzTV.Infrastructure.Extensions;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using static ErsatzTV.Application.Channels.ChannelValidations;
|
|
using Channel = ErsatzTV.Core.Domain.Channel;
|
|
|
|
namespace ErsatzTV.Application.Channels;
|
|
|
|
public class CreateChannelHandler(
|
|
ChannelWriter<IBackgroundServiceRequest> workerChannel,
|
|
IDbContextFactory<TvContext> dbContextFactory,
|
|
ISearchTargets searchTargets)
|
|
: IRequestHandler<CreateChannel, Either<BaseError, CreateChannelResult>>
|
|
{
|
|
public async Task<Either<BaseError, CreateChannelResult>> Handle(
|
|
CreateChannel request,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
await using TvContext dbContext = await dbContextFactory.CreateDbContextAsync(cancellationToken);
|
|
Validation<BaseError, Channel> validation = await Validate(dbContext, request, cancellationToken);
|
|
return await validation.Apply(c => PersistChannel(dbContext, c));
|
|
}
|
|
|
|
private async Task<CreateChannelResult> PersistChannel(TvContext dbContext, Channel channel)
|
|
{
|
|
await dbContext.Channels.AddAsync(channel);
|
|
await dbContext.SaveChangesAsync();
|
|
searchTargets.SearchTargetsChanged();
|
|
await workerChannel.WriteAsync(new RefreshChannelList());
|
|
return new CreateChannelResult(channel.Id);
|
|
}
|
|
|
|
private static async Task<Validation<BaseError, Channel>> Validate(TvContext dbContext, CreateChannel request, CancellationToken cancellationToken)
|
|
{
|
|
Validation<BaseError, Channel> channelValidation = (ValidateName(request), await ValidateNumber(dbContext, request, cancellationToken),
|
|
await FFmpegProfileMustExist(dbContext, request, cancellationToken),
|
|
await WatermarkMustExist(dbContext, request, cancellationToken),
|
|
await FillerPresetMustExist(dbContext, request, cancellationToken),
|
|
await MirrorSourceMustBeValid(dbContext, request, cancellationToken),
|
|
ValidateShowInEpg(request.IsEnabled, request.ShowInEpg),
|
|
ValidateLogo(request.Logo?.Path))
|
|
.Apply((
|
|
name,
|
|
number,
|
|
ffmpegProfileId,
|
|
watermarkId,
|
|
fillerPresetId,
|
|
_,
|
|
_,
|
|
_) =>
|
|
{
|
|
var artwork = new List<Artwork>();
|
|
if (!string.IsNullOrWhiteSpace(request.Logo?.Path))
|
|
{
|
|
string logo = request.Logo.Path;
|
|
if (logo.StartsWith("iptv/logos/", StringComparison.Ordinal))
|
|
{
|
|
logo = logo.Replace("iptv/logos/", string.Empty);
|
|
}
|
|
|
|
artwork.Add(
|
|
new Artwork
|
|
{
|
|
Path = logo,
|
|
ArtworkKind = ArtworkKind.Logo,
|
|
OriginalContentType = !string.IsNullOrEmpty(request.Logo.ContentType)
|
|
? request.Logo.ContentType
|
|
: null,
|
|
DateAdded = DateTime.UtcNow,
|
|
DateUpdated = DateTime.UtcNow
|
|
});
|
|
}
|
|
|
|
var channel = new Channel(Guid.NewGuid())
|
|
{
|
|
Name = name,
|
|
Number = number,
|
|
SortNumber = double.Parse(number, CultureInfo.InvariantCulture),
|
|
Group = request.Group,
|
|
Categories = request.Categories,
|
|
FFmpegProfileId = ffmpegProfileId,
|
|
SlugSeconds = request.SlugSeconds,
|
|
PlayoutSource = request.PlayoutSource,
|
|
PlayoutMode = request.PlayoutMode,
|
|
MirrorSourceChannelId = request.MirrorSourceChannelId,
|
|
PlayoutOffset = request.PlayoutOffset,
|
|
StreamingMode = request.StreamingMode,
|
|
Artwork = artwork,
|
|
StreamSelectorMode = request.StreamSelectorMode,
|
|
StreamSelector = request.StreamSelector,
|
|
PreferredAudioLanguageCode = request.PreferredAudioLanguageCode,
|
|
PreferredAudioTitle = request.PreferredAudioTitle,
|
|
PreferredSubtitleLanguageCode = request.PreferredSubtitleLanguageCode,
|
|
SubtitleMode = request.SubtitleMode,
|
|
MusicVideoCreditsMode = request.MusicVideoCreditsMode,
|
|
MusicVideoCreditsTemplate = request.MusicVideoCreditsTemplate,
|
|
SongVideoMode = request.SongVideoMode,
|
|
TranscodeMode = request.TranscodeMode,
|
|
IdleBehavior = request.IdleBehavior,
|
|
IsEnabled = request.IsEnabled,
|
|
ShowInEpg = request.IsEnabled && request.ShowInEpg
|
|
};
|
|
|
|
if (channel.PlayoutSource is ChannelPlayoutSource.Mirror)
|
|
{
|
|
channel.PlayoutMode = ChannelPlayoutMode.Continuous;
|
|
}
|
|
else
|
|
{
|
|
channel.MirrorSourceChannelId = null;
|
|
channel.PlayoutOffset = null;
|
|
}
|
|
|
|
foreach (int id in watermarkId)
|
|
{
|
|
channel.WatermarkId = id;
|
|
}
|
|
|
|
foreach (int id in fillerPresetId)
|
|
{
|
|
channel.FallbackFillerId = id;
|
|
}
|
|
|
|
return channel;
|
|
});
|
|
|
|
// combine the page-only Group rule with the channel validation (keeps tuple arity within
|
|
// LanguageExt's supported applicative range while still accumulating all errors)
|
|
return (ValidateGroup(request.Group), channelValidation).Apply((_, channel) => channel);
|
|
}
|
|
|
|
private static Validation<BaseError, string> ValidateName(CreateChannel createChannel) =>
|
|
createChannel.NotEmpty(c => c.Name)
|
|
.Bind(_ => createChannel.NotLongerThan(50)(c => c.Name));
|
|
|
|
private static async Task<Validation<BaseError, string>> ValidateNumber(
|
|
TvContext dbContext,
|
|
CreateChannel createChannel,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
Option<Channel> maybeExistingChannel = await dbContext.Channels
|
|
.SelectOneAsync(c => c.Number, c => c.Number == createChannel.Number, cancellationToken);
|
|
return maybeExistingChannel.Match<Validation<BaseError, string>>(
|
|
_ => BaseError.New("Channel number must be unique"),
|
|
() =>
|
|
{
|
|
if (Regex.IsMatch(createChannel.Number, Channel.NumberValidator))
|
|
{
|
|
return createChannel.Number;
|
|
}
|
|
|
|
return BaseError.New("Invalid channel number; two decimals are allowed for subchannels");
|
|
});
|
|
}
|
|
|
|
private static async Task<Validation<BaseError, int>> FFmpegProfileMustExist(
|
|
TvContext dbContext,
|
|
CreateChannel createChannel,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
bool exists = await dbContext.FFmpegProfiles
|
|
.AnyAsync(p => p.Id == createChannel.FFmpegProfileId, cancellationToken);
|
|
if (exists)
|
|
{
|
|
return createChannel.FFmpegProfileId;
|
|
}
|
|
|
|
return BaseError.New($"FFmpegProfile {createChannel.FFmpegProfileId} does not exist.");
|
|
}
|
|
|
|
private static async Task<Validation<BaseError, Option<int>>> WatermarkMustExist(
|
|
TvContext dbContext,
|
|
CreateChannel createChannel,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
if (createChannel.WatermarkId is null)
|
|
{
|
|
return Option<int>.None;
|
|
}
|
|
|
|
bool exists = await dbContext.ChannelWatermarks
|
|
.AnyAsync(w => w.Id == createChannel.WatermarkId, cancellationToken);
|
|
if (exists)
|
|
{
|
|
return Optional(createChannel.WatermarkId);
|
|
}
|
|
|
|
return BaseError.New($"Watermark {createChannel.WatermarkId} does not exist.");
|
|
}
|
|
|
|
private static async Task<Validation<BaseError, Option<int>>> FillerPresetMustExist(
|
|
TvContext dbContext,
|
|
CreateChannel createChannel,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
if (createChannel.FallbackFillerId is null)
|
|
{
|
|
return Option<int>.None;
|
|
}
|
|
|
|
bool exists = await dbContext.FillerPresets
|
|
.Filter(fp => fp.FillerKind == FillerKind.Fallback)
|
|
.AnyAsync(w => w.Id == createChannel.FallbackFillerId, cancellationToken);
|
|
if (exists)
|
|
{
|
|
return Optional(createChannel.FallbackFillerId);
|
|
}
|
|
|
|
return BaseError.New($"Fallback filler {createChannel.FallbackFillerId} does not exist.");
|
|
}
|
|
|
|
private static async Task<Validation<BaseError, Unit>> MirrorSourceMustBeValid(
|
|
TvContext dbContext,
|
|
CreateChannel createChannel,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
if (createChannel.PlayoutSource is not ChannelPlayoutSource.Mirror)
|
|
{
|
|
return Unit.Default;
|
|
}
|
|
|
|
Option<Channel> maybeMirrorSource = await dbContext.Channels
|
|
.AsNoTracking()
|
|
.SelectOneAsync(
|
|
c => c.Id == createChannel.MirrorSourceChannelId,
|
|
c => c.Id == createChannel.MirrorSourceChannelId,
|
|
cancellationToken);
|
|
|
|
if (maybeMirrorSource.IsNone)
|
|
{
|
|
return BaseError.New("Mirror source channel does not exist.");
|
|
}
|
|
|
|
foreach (var mirrorSource in maybeMirrorSource)
|
|
{
|
|
if (mirrorSource.PlayoutSource is not ChannelPlayoutSource.Generated)
|
|
{
|
|
return BaseError.New(
|
|
$"Mirror source channel {mirrorSource.Name} must use generated playout source");
|
|
}
|
|
}
|
|
|
|
foreach (TimeSpan playoutOffset in Optional(createChannel.PlayoutOffset))
|
|
{
|
|
if (playoutOffset < TimeSpan.FromHours(-12) || playoutOffset > TimeSpan.FromHours(12))
|
|
{
|
|
return BaseError.New("Playout offset must not be greater than 12 hours");
|
|
}
|
|
}
|
|
|
|
return Unit.Default;
|
|
}
|
|
}
|