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.
Lidarr/src/NzbDrone.Core/Notifications/SendGrid/SendGridSettings.cs

47 lines
1.6 KiB

using System.Collections.Generic;
using FluentValidation;
using NzbDrone.Core.Annotations;
using NzbDrone.Core.ThingiProvider;
using NzbDrone.Core.Validation;
namespace NzbDrone.Core.Notifications.SendGrid
{
public class SendGridSettingsValidator : AbstractValidator<SendGridSettings>
{
public SendGridSettingsValidator()
{
RuleFor(c => c.ApiKey).NotEmpty();
RuleFor(c => c.From).NotEmpty().EmailAddress();
RuleFor(c => c.Recipients).NotEmpty();
RuleForEach(c => c.Recipients).NotEmpty().EmailAddress();
}
}
public class SendGridSettings : IProviderConfig
{
private static readonly SendGridSettingsValidator Validator = new SendGridSettingsValidator();
public SendGridSettings()
{
BaseUrl = "https://api.sendgrid.com/v3/";
Recipients = System.Array.Empty<string>();
}
public string BaseUrl { get; set; }
[FieldDefinition(1, Label = "API Key", HelpText = "The API Key generated by SendGrid", HelpLink = "https://sendgrid.com/docs/ui/account-and-settings/api-keys/#creating-an-api-key")]
public string ApiKey { get; set; }
[FieldDefinition(2, Label = "From Address")]
public string From { get; set; }
[FieldDefinition(3, Label = "Recipient Address(es)", Type = FieldType.Tag)]
public IEnumerable<string> Recipients { get; set; }
public NzbDroneValidationResult Validate()
{
return new NzbDroneValidationResult(Validator.Validate(this));
}
}
}