refactor: Clean up notification settings validation

pull/345/head
Robert Dailey 6 months ago
parent 4c9f8d2ab6
commit 61e43a1927

@ -9,29 +9,19 @@ namespace Recyclarr.Notifications.Apprise;
public sealed class AppriseRequestBuilder(
IFlurlClientCache clientCache,
ISettings<NotificationSettings> settings,
ISettings<NotificationSettings> notificationSettings,
IEnumerable<FlurlSpecificEventHandler> eventHandlers)
: IAppriseRequestBuilder
{
private readonly Lazy<Uri> _baseUrl = new(() =>
public IFlurlRequest Request(params object[] path)
{
var apprise = settings.Value.Apprise;
var apprise = notificationSettings.Value.Apprise;
if (apprise is null)
{
throw new ArgumentException("No apprise notification settings have been defined");
}
if (apprise.BaseUrl is null)
{
throw new ArgumentException("Apprise `base_url` setting is not present or empty");
}
return apprise.BaseUrl;
});
public IFlurlRequest Request(params object[] path)
{
var client = clientCache.GetOrAdd("apprise", _baseUrl.Value.ToString(), Configure);
var client = clientCache.GetOrAdd("apprise", apprise.BaseUrl.ToString(), Configure);
return client.Request(path);
}

@ -10,11 +10,6 @@ public class AppriseStatefulNotificationApiService(IAppriseRequestBuilder api) :
AppriseNotificationSettings settings,
Func<AppriseNotification, AppriseNotification> notificationBuilder)
{
if (settings.Key is null)
{
throw new ArgumentException("Stateful apprise notifications require the 'key' node");
}
var notification = notificationBuilder(new AppriseStatefulNotification
{
Tag = settings.Tags

@ -10,11 +10,6 @@ public class AppriseStatelessNotificationApiService(IAppriseRequestBuilder api)
AppriseNotificationSettings settings,
Func<AppriseNotification, AppriseNotification> notificationBuilder)
{
if (settings.Urls is null)
{
throw new ArgumentException("Stateless apprise notifications require the 'urls' array");
}
var notification = notificationBuilder(new AppriseStatelessNotification
{
Urls = settings.Urls

@ -44,9 +44,9 @@ public record NotificationSettings
public record AppriseNotificationSettings
{
public AppriseMode? Mode { get; [UsedImplicitly] init; }
public Uri? BaseUrl { get; [UsedImplicitly] init; }
public string? Key { get; [UsedImplicitly] init; }
public string? Tags { get; [UsedImplicitly] init; }
public Uri BaseUrl { get; [UsedImplicitly] init; } = new("about:empty");
public string Key { get; [UsedImplicitly] init; } = "";
public string Tags { get; [UsedImplicitly] init; } = "";
public Collection<string> Urls { get; [UsedImplicitly] init; } = [];
}

@ -23,10 +23,12 @@ public class AppriseNotificationSettingsValidator : AbstractValidator<AppriseNot
{
public AppriseNotificationSettingsValidator()
{
RuleFor(x => x.Mode).NotNull()
RuleFor(x => x.Mode)
.NotNull()
.WithMessage("`mode` is required for apprise notifications");
RuleFor(x => x.BaseUrl).NotEmpty()
RuleFor(x => x.BaseUrl)
.NotEmpty()
.WithMessage("`base_url` is required for apprise notifications");
RuleFor(x => x.Urls)

Loading…
Cancel
Save