feat(api): settings read/write endpoints (#93)

GET/PUT /api/settings/{ffmpeg,playout,xmltv,scanner,logging,ui,hdhr}
wrapping the existing MediatR settings handlers, plus custom resolution
list/create/delete under /api/settings/resolutions. String-enum OpenAPI
schemas extended to OutputFormatKind + LogEventLevel.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-07 09:22:50 +02:00
co-authored by Claude Fable 5
parent 82a93ea3be
commit 57905bc0f4
26 changed files with 2464 additions and 0 deletions
@@ -0,0 +1,24 @@
using System.Text.Json.Serialization;
using ErsatzTV.FFmpeg.OutputFormat;
namespace ErsatzTV.Core.Api.Settings;
#nullable enable
public record FFmpegSettingsResponseModel(
string FFmpegPath,
string FFprobePath,
int DefaultFFmpegProfileId,
string PreferredAudioLanguageCode,
bool UseEmbeddedSubtitles,
bool ExtractEmbeddedSubtitles,
bool ProbeForInterlacedFrames,
bool SaveReports,
int? GlobalWatermarkId,
int? GlobalFallbackFillerId,
int HlsSegmenterIdleTimeout,
int WorkAheadSegmenterLimit,
int InitialSegmentCount,
[property: JsonConverter(typeof(JsonStringEnumConverter<OutputFormatKind>))]
OutputFormatKind HlsDirectOutputFormat,
string DefaultMpegTsScript);
@@ -0,0 +1,5 @@
namespace ErsatzTV.Core.Api.Settings;
#nullable enable
public record HdhrSettingsResponseModel(int TunerCount, Guid Uuid);
@@ -0,0 +1,20 @@
using System.Text.Json.Serialization;
using Serilog.Events;
namespace ErsatzTV.Core.Api.Settings;
#nullable enable
public record LoggingSettingsResponseModel(
[property: JsonConverter(typeof(JsonStringEnumConverter<LogEventLevel>))]
LogEventLevel DefaultMinimumLogLevel,
[property: JsonConverter(typeof(JsonStringEnumConverter<LogEventLevel>))]
LogEventLevel ScanningMinimumLogLevel,
[property: JsonConverter(typeof(JsonStringEnumConverter<LogEventLevel>))]
LogEventLevel SchedulingMinimumLogLevel,
[property: JsonConverter(typeof(JsonStringEnumConverter<LogEventLevel>))]
LogEventLevel SearchingMinimumLogLevel,
[property: JsonConverter(typeof(JsonStringEnumConverter<LogEventLevel>))]
LogEventLevel StreamingMinimumLogLevel,
[property: JsonConverter(typeof(JsonStringEnumConverter<LogEventLevel>))]
LogEventLevel HttpMinimumLogLevel);
@@ -0,0 +1,8 @@
namespace ErsatzTV.Core.Api.Settings;
#nullable enable
public record PlayoutSettingsResponseModel(
int DaysToBuild,
bool SkipMissingItems,
int ScriptedScheduleTimeoutSeconds);
@@ -0,0 +1,5 @@
namespace ErsatzTV.Core.Api.Settings;
#nullable enable
public record ResolutionResponseModel(int Id, string Name, int Width, int Height, bool IsCustom);
@@ -0,0 +1,6 @@
namespace ErsatzTV.Core.Api.Settings;
#nullable enable
/// <summary>Library scan cadence. <see cref="LibraryRefreshInterval" /> is expressed in hours.</summary>
public record ScannerSettingsResponseModel(int LibraryRefreshInterval);
@@ -0,0 +1,5 @@
namespace ErsatzTV.Core.Api.Settings;
#nullable enable
public record UiSettingsResponseModel(bool IsDarkMode, string Language);
@@ -0,0 +1,16 @@
using System.Text.Json.Serialization;
namespace ErsatzTV.Core.Api.Settings;
/// <summary>
/// Wire-contract mirror of <c>ErsatzTV.Application.Configuration.XmltvBlockBehavior</c>.
/// Duplicated here (rather than referenced directly) because <c>ErsatzTV.Core</c> may not depend on
/// <c>ErsatzTV.Application</c> (see <c>ErsatzTV.Architecture.Tests</c>); the controller mapper translates
/// between the two by value.
/// </summary>
[JsonConverter(typeof(JsonStringEnumConverter<XmltvBlockBehavior>))]
public enum XmltvBlockBehavior
{
SplitTimeEvenly = 0,
UseActualTimes = 1
}
@@ -0,0 +1,8 @@
namespace ErsatzTV.Core.Api.Settings;
#nullable enable
public record XmltvSettingsResponseModel(
int DaysToBuild,
XmltvTimeZone TimeZone,
XmltvBlockBehavior BlockBehavior);
@@ -0,0 +1,16 @@
using System.Text.Json.Serialization;
namespace ErsatzTV.Core.Api.Settings;
/// <summary>
/// Wire-contract mirror of <c>ErsatzTV.Application.Configuration.XmltvTimeZone</c>.
/// Duplicated here (rather than referenced directly) because <c>ErsatzTV.Core</c> may not depend on
/// <c>ErsatzTV.Application</c> (see <c>ErsatzTV.Architecture.Tests</c>); the controller mapper translates
/// between the two by value.
/// </summary>
[JsonConverter(typeof(JsonStringEnumConverter<XmltvTimeZone>))]
public enum XmltvTimeZone
{
Local = 0,
Utc = 1
}