using System.Text.RegularExpressions; using FluentValidation; using NzbDrone.Core.Annotations; using NzbDrone.Core.Validation; namespace NzbDrone.Core.Indexers.Waffles { public class WafflesSettingsValidator : AbstractValidator { public WafflesSettingsValidator() { RuleFor(c => c.BaseUrl).ValidRootUrl(); RuleFor(c => c.UserId).NotEmpty(); RuleFor(c => c.RssPasskey).NotEmpty(); } } public class WafflesSettings : ITorrentIndexerSettings { private static readonly WafflesSettingsValidator Validator = new WafflesSettingsValidator(); public WafflesSettings() { BaseUrl = "https://www.waffles.ch"; MinimumSeeders = IndexerDefaults.MINIMUM_SEEDERS; } [FieldDefinition(0, Label = "Website URL")] public string BaseUrl { get; set; } [FieldDefinition(1, Label = "UserId")] public string UserId { get; set; } [FieldDefinition(2, Label = "RSS Passkey")] public string RssPasskey { get; set; } [FieldDefinition(3, Type = FieldType.Textbox, Label = "Minimum Seeders", HelpText = "Minimum number of seeders required.", Advanced = true)] public int MinimumSeeders { get; set; } public NzbDroneValidationResult Validate() { return new NzbDroneValidationResult(Validator.Validate(this)); } } }