using System.Collections.Generic; using FluentValidation; using NzbDrone.Core.Annotations; using NzbDrone.Core.Validation; namespace NzbDrone.Core.Notifications.Discord { public class DiscordSettingsValidator : AbstractValidator { public DiscordSettingsValidator() { RuleFor(c => c.WebHookUrl).IsValidUrl(); } } public class DiscordSettings : NotificationBaseSettings { public DiscordSettings() { //Set Default Fields GrabFields = new List { (int)DiscordGrabFieldType.Release, (int)DiscordGrabFieldType.Indexer, (int)DiscordGrabFieldType.DownloadClient, (int)DiscordGrabFieldType.GrabTrigger, (int)DiscordGrabFieldType.Source, (int)DiscordGrabFieldType.Host }; } private static readonly DiscordSettingsValidator Validator = new (); [FieldDefinition(0, Label = "Webhook URL", HelpText = "Discord channel webhook url")] public string WebHookUrl { get; set; } [FieldDefinition(1, Label = "Username", Privacy = PrivacyLevel.UserName, HelpText = "The username to post as, defaults to Discord webhook default")] public string Username { get; set; } [FieldDefinition(2, Label = "Avatar", HelpText = "Change the avatar that is used for messages from this integration", Type = FieldType.Textbox)] public string Avatar { get; set; } [FieldDefinition(3, Label = "Host", Advanced = true, HelpText = "Override the Host that shows for this notification, Blank is machine name", Type = FieldType.Textbox)] public string Author { get; set; } [FieldDefinition(4, Label = "On Grab Fields", Advanced = true, SelectOptions = typeof(DiscordGrabFieldType), HelpText = "Change the fields that are passed in for this 'on grab' notification", Type = FieldType.Select)] public IEnumerable GrabFields { get; set; } public override NzbDroneValidationResult Validate() { return new NzbDroneValidationResult(Validator.Validate(this)); } } }