47 lines
1.5 KiB
C#
47 lines
1.5 KiB
C#
|
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 = new 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));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|