using System; using FluentValidation; using Newtonsoft.Json; using NzbDrone.Core.Annotations; using NzbDrone.Core.ThingiProvider; using NzbDrone.Core.Validation; namespace NzbDrone.Core.Notifications.MediaBrowser { public class MediaBrowserSettingsValidator : AbstractValidator { public MediaBrowserSettingsValidator() { RuleFor(c => c.Host).ValidHost(); RuleFor(c => c.ApiKey).NotEmpty(); } } public class MediaBrowserSettings : IProviderConfig { private static readonly MediaBrowserSettingsValidator Validator = new MediaBrowserSettingsValidator(); public MediaBrowserSettings() { Port = 8096; } [FieldDefinition(0, Label = "Host")] public string Host { get; set; } [FieldDefinition(1, Label = "Port")] public int Port { get; set; } [FieldDefinition(2, Label = "API Key")] public string ApiKey { get; set; } [FieldDefinition(3, Label = "Send Notifications", HelpText = "Have MediaBrowser send notfications to configured providers", Type = FieldType.Checkbox)] public bool Notify { get; set; } [FieldDefinition(4, Label = "Update Library", HelpText = "Update Library on Download & Rename?", Type = FieldType.Checkbox)] public bool UpdateLibrary { get; set; } [JsonIgnore] public string Address { get { return string.Format("{0}:{1}", Host, Port); } } public bool IsValid { get { return !string.IsNullOrWhiteSpace(Host) && Port > 0; } } public NzbDroneValidationResult Validate() { return new NzbDroneValidationResult(Validator.Validate(this)); } } }