mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Better validation messaging for Newznab Categories
This commit is contained in:
parent
f7adb19474
commit
4de20b09a8
@ -3,6 +3,7 @@
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using FluentValidation;
|
using FluentValidation;
|
||||||
|
using FluentValidation.Results;
|
||||||
using NzbDrone.Common.Extensions;
|
using NzbDrone.Common.Extensions;
|
||||||
using NzbDrone.Core.Annotations;
|
using NzbDrone.Core.Annotations;
|
||||||
using NzbDrone.Core.ThingiProvider;
|
using NzbDrone.Core.ThingiProvider;
|
||||||
@ -37,13 +38,20 @@ private static bool ShouldHaveApiKey(NewznabSettings settings)
|
|||||||
|
|
||||||
public NewznabSettingsValidator()
|
public NewznabSettingsValidator()
|
||||||
{
|
{
|
||||||
|
Custom(newznab =>
|
||||||
|
{
|
||||||
|
if (newznab.Categories.Empty() && newznab.AnimeCategories.Empty())
|
||||||
|
{
|
||||||
|
return new ValidationFailure("", "Either 'Categories' or 'Anime Categories' must be provided");
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
});
|
||||||
|
|
||||||
RuleFor(c => c.Url).ValidRootUrl();
|
RuleFor(c => c.Url).ValidRootUrl();
|
||||||
RuleFor(c => c.ApiKey).NotEmpty().When(ShouldHaveApiKey);
|
RuleFor(c => c.ApiKey).NotEmpty().When(ShouldHaveApiKey);
|
||||||
RuleFor(c => c.Categories).NotEmpty().When(c => !c.AnimeCategories.Any());
|
RuleFor(c => c.AdditionalParameters).Matches(AdditionalParametersRegex)
|
||||||
RuleFor(c => c.AnimeCategories).NotEmpty().When(c => !c.Categories.Any());
|
.When(c => !c.AdditionalParameters.IsNullOrWhiteSpace());
|
||||||
RuleFor(c => c.AdditionalParameters)
|
|
||||||
.Matches(AdditionalParametersRegex)
|
|
||||||
.When(c => !c.AdditionalParameters.IsNullOrWhiteSpace());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -63,16 +71,13 @@ public NewznabSettings()
|
|||||||
[FieldDefinition(1, Label = "API Key")]
|
[FieldDefinition(1, Label = "API Key")]
|
||||||
public String ApiKey { get; set; }
|
public String ApiKey { get; set; }
|
||||||
|
|
||||||
[FieldDefinition(2, Label = "Categories",
|
[FieldDefinition(2, Label = "Categories", HelpText = "Comma Separated list, leave blank to disable standard/daily shows", Advanced = true)]
|
||||||
HelpText = "Comma Separated list, leave blank to disable standard/daily shows", Advanced = true)]
|
|
||||||
public IEnumerable<Int32> Categories { get; set; }
|
public IEnumerable<Int32> Categories { get; set; }
|
||||||
|
|
||||||
[FieldDefinition(3, Label = "Anime Categories", HelpText = "Comma Separated list, leave blank to disable anime",
|
[FieldDefinition(3, Label = "Anime Categories", HelpText = "Comma Separated list, leave blank to disable anime", Advanced = true)]
|
||||||
Advanced = true)]
|
|
||||||
public IEnumerable<Int32> AnimeCategories { get; set; }
|
public IEnumerable<Int32> AnimeCategories { get; set; }
|
||||||
|
|
||||||
[FieldDefinition(4, Label = "Additional Parameters", HelpText = "Additional newznab parameters", Advanced = true
|
[FieldDefinition(4, Label = "Additional Parameters", HelpText = "Additional newznab parameters", Advanced = true)]
|
||||||
)]
|
|
||||||
public String AdditionalParameters { get; set; }
|
public String AdditionalParameters { get; set; }
|
||||||
|
|
||||||
public NzbDroneValidationResult Validate()
|
public NzbDroneValidationResult Validate()
|
||||||
|
Loading…
Reference in New Issue
Block a user