using FluentValidation; using NzbDrone.Common.Extensions; using NzbDrone.Core.Annotations; using NzbDrone.Core.ThingiProvider; using NzbDrone.Core.Validation; namespace NzbDrone.Core.Download.Clients.Hadouken { public class HadoukenSettingsValidator : AbstractValidator { public HadoukenSettingsValidator() { RuleFor(c => c.Host).ValidHost(); RuleFor(c => c.Port).InclusiveBetween(1, 65535); RuleFor(c => c.UrlBase).ValidUrlBase().When(c => c.UrlBase.IsNotNullOrWhiteSpace()); RuleFor(c => c.Username).NotEmpty() .WithMessage("Username must not be empty."); RuleFor(c => c.Password).NotEmpty() .WithMessage("Password must not be empty."); } } public class HadoukenSettings : IProviderConfig { private static readonly HadoukenSettingsValidator Validator = new HadoukenSettingsValidator(); public HadoukenSettings() { Host = "localhost"; Port = 7070; Category = "sonarr-tv"; } [FieldDefinition(0, Label = "Host", Type = FieldType.Textbox)] public string Host { get; set; } [FieldDefinition(1, Label = "Port", Type = FieldType.Textbox)] public int Port { get; set; } [FieldDefinition(2, Label = "UseSsl", Type = FieldType.Checkbox, HelpText = "DownloadClientSettingsUseSslHelpText")] [FieldToken(TokenField.HelpText, "UseSsl", "clientName", "Hadouken")] public bool UseSsl { get; set; } [FieldDefinition(3, Label = "UrlBase", Type = FieldType.Textbox, Advanced = true, HelpText = "DownloadClientSettingsUrlBaseHelpText")] [FieldToken(TokenField.HelpText, "UrlBase", "clientName", "Hadouken")] [FieldToken(TokenField.HelpText, "UrlBase", "url", "http://[host]:[port]/[urlBase]/api")] public string UrlBase { get; set; } [FieldDefinition(4, Label = "Username", Type = FieldType.Textbox, Privacy = PrivacyLevel.UserName)] public string Username { get; set; } [FieldDefinition(5, Label = "Password", Type = FieldType.Password, Privacy = PrivacyLevel.Password)] public string Password { get; set; } [FieldDefinition(6, Label = "Category", Type = FieldType.Textbox, HelpText = "DownloadClientSettingsCategoryHelpText")] public string Category { get; set; } public NzbDroneValidationResult Validate() { return new NzbDroneValidationResult(Validator.Validate(this)); } } }