mirror of
https://github.com/Radarr/Radarr
synced 2026-05-05 11:21:05 +02:00
92 lines
3.7 KiB
C#
92 lines
3.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text.RegularExpressions;
|
|
using Equ;
|
|
using FluentValidation;
|
|
using NzbDrone.Common.Extensions;
|
|
using NzbDrone.Core.Annotations;
|
|
using NzbDrone.Core.Languages;
|
|
using NzbDrone.Core.Validation;
|
|
|
|
namespace NzbDrone.Core.Indexers.Newznab
|
|
{
|
|
public class NewznabSettingsValidator : AbstractValidator<NewznabSettings>
|
|
{
|
|
private static readonly string[] ApiKeyWhiteList =
|
|
{
|
|
"nzbs.org",
|
|
"nzb.su",
|
|
"dognzb.cr",
|
|
"nzbplanet.net",
|
|
"nzbid.org",
|
|
"nzbndx.com",
|
|
"nzbindex.in"
|
|
};
|
|
|
|
private static bool ShouldHaveApiKey(NewznabSettings settings)
|
|
{
|
|
return settings.BaseUrl != null && ApiKeyWhiteList.Any(c => settings.BaseUrl.ToLowerInvariant().Contains(c));
|
|
}
|
|
|
|
private static readonly Regex AdditionalParametersRegex = new (@"(&.+?\=.+?)+", RegexOptions.Compiled);
|
|
|
|
public NewznabSettingsValidator()
|
|
{
|
|
RuleFor(c => c).Custom((c, context) =>
|
|
{
|
|
if (c.Categories.Empty())
|
|
{
|
|
context.AddFailure("'Categories' must be provided");
|
|
}
|
|
});
|
|
|
|
RuleFor(c => c.BaseUrl).ValidRootUrl();
|
|
RuleFor(c => c.ApiPath).ValidUrlBase("/api");
|
|
RuleFor(c => c.ApiKey).NotEmpty().When(ShouldHaveApiKey);
|
|
RuleFor(c => c.AdditionalParameters).Matches(AdditionalParametersRegex)
|
|
.When(c => !c.AdditionalParameters.IsNullOrWhiteSpace());
|
|
}
|
|
}
|
|
|
|
public class NewznabSettings : PropertywiseEquatable<NewznabSettings>, IIndexerSettings
|
|
{
|
|
private static readonly NewznabSettingsValidator Validator = new ();
|
|
|
|
public NewznabSettings()
|
|
{
|
|
ApiPath = "/api";
|
|
Categories = new[] { 2000, 2010, 2020, 2030, 2040, 2045, 2050, 2060 };
|
|
MultiLanguages = Array.Empty<int>();
|
|
}
|
|
|
|
[FieldDefinition(0, Label = "URL")]
|
|
public string BaseUrl { get; set; }
|
|
|
|
[FieldDefinition(1, Label = "IndexerSettingsApiPath", HelpText = "IndexerSettingsApiPathHelpText", Advanced = true)]
|
|
[FieldToken(TokenField.HelpText, "IndexerSettingsApiPath", "url", "/api")]
|
|
public string ApiPath { get; set; }
|
|
|
|
[FieldDefinition(2, Label = "ApiKey", Privacy = PrivacyLevel.ApiKey)]
|
|
public string ApiKey { get; set; }
|
|
|
|
[FieldDefinition(3, Label = "IndexerSettingsCategories", Type = FieldType.Select, SelectOptionsProviderAction = "newznabCategories", HelpText = "IndexerNewznabSettingsCategoriesHelpText")]
|
|
public IEnumerable<int> Categories { get; set; }
|
|
|
|
[FieldDefinition(4, Label = "IndexerSettingsAdditionalParameters", HelpText = "IndexerNewznabSettingsAdditionalParametersHelpText", Advanced = true)]
|
|
public string AdditionalParameters { get; set; }
|
|
|
|
[FieldDefinition(5, Type = FieldType.Select, SelectOptions = typeof(RealLanguageFieldConverter), Label = "IndexerSettingsMultiLanguageRelease", HelpText = "IndexerSettingsMultiLanguageReleaseHelpText", Advanced = true)]
|
|
public IEnumerable<int> MultiLanguages { get; set; }
|
|
|
|
[FieldDefinition(6, Type = FieldType.Checkbox, Label = "IndexerSettingsRemoveYear", HelpText = "IndexerSettingsRemoveYearHelpText", Advanced = true)]
|
|
public bool RemoveYear { get; set; }
|
|
|
|
// Field 8 is used by TorznabSettings MinimumSeeders
|
|
// If you need to add another field here, update TorznabSettings as well and this comment
|
|
public virtual NzbDroneValidationResult Validate()
|
|
{
|
|
return new NzbDroneValidationResult(Validator.Validate(this));
|
|
}
|
|
}
|
|
}
|