You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.3 KiB
39 lines
1.3 KiB
using FluentValidation;
|
|
using NzbDrone.Core.Annotations;
|
|
using NzbDrone.Core.ThingiProvider;
|
|
using NzbDrone.Core.Validation;
|
|
using System.Text.RegularExpressions;
|
|
namespace NzbDrone.Core.Indexers.Nyaa
|
|
{
|
|
public class NyaaSettingsValidator : AbstractValidator<NyaaSettings>
|
|
{
|
|
public NyaaSettingsValidator()
|
|
{
|
|
RuleFor(c => c.BaseUrl).ValidRootUrl();
|
|
RuleFor(c => c.AdditionalParameters).Matches("(&[a-z]+=[a-z0-9_]+)*", RegexOptions.IgnoreCase);
|
|
}
|
|
}
|
|
|
|
public class NyaaSettings : IIndexerSettings
|
|
{
|
|
private static readonly NyaaSettingsValidator Validator = new NyaaSettingsValidator();
|
|
|
|
public NyaaSettings()
|
|
{
|
|
BaseUrl = "https://www.nyaa.se";
|
|
AdditionalParameters = "&cats=1_37&filter=1";
|
|
}
|
|
|
|
[FieldDefinition(0, Label = "Website URL")]
|
|
public string BaseUrl { get; set; }
|
|
|
|
[FieldDefinition(1, Label = "Additional Parameters", Advanced = true, HelpText = "Please note if you change the category you will have to add required/restricted rules about the subgroups to avoid foreign language releases.")]
|
|
public string AdditionalParameters { get; set; }
|
|
|
|
public NzbDroneValidationResult Validate()
|
|
{
|
|
return new NzbDroneValidationResult(Validator.Validate(this));
|
|
}
|
|
}
|
|
}
|