Radarr/src/NzbDrone.Core/Notifications/Email/EmailSettings.cs

55 lines
1.6 KiB
C#
Raw Normal View History

2016-12-23 21:45:24 +00:00
using FluentValidation;
2013-05-19 23:17:32 +00:00
using NzbDrone.Core.Annotations;
using NzbDrone.Core.ThingiProvider;
using NzbDrone.Core.Validation;
2013-05-19 23:17:32 +00:00
2013-05-27 05:44:54 +00:00
namespace NzbDrone.Core.Notifications.Email
2013-05-19 23:17:32 +00:00
{
public class EmailSettingsValidator : AbstractValidator<EmailSettings>
{
public EmailSettingsValidator()
{
RuleFor(c => c.Server).NotEmpty();
RuleFor(c => c.Port).GreaterThan(0);
RuleFor(c => c.From).NotEmpty();
RuleFor(c => c.To).NotEmpty();
}
}
public class EmailSettings : IProviderConfig
2013-05-19 23:17:32 +00:00
{
private static readonly EmailSettingsValidator Validator = new EmailSettingsValidator();
2013-08-09 06:22:26 +00:00
public EmailSettings()
{
Port = 25;
}
2013-05-27 05:44:54 +00:00
[FieldDefinition(0, Label = "Server", HelpText = "Hostname or IP of Email server")]
public string Server { get; set; }
2013-05-19 23:17:32 +00:00
2013-05-27 05:44:54 +00:00
[FieldDefinition(1, Label = "Port")]
public int Port { get; set; }
2013-05-19 23:17:32 +00:00
[FieldDefinition(2, Label = "SSL", Type = FieldType.Checkbox)]
public bool Ssl { get; set; }
2013-05-19 23:17:32 +00:00
2013-05-27 05:44:54 +00:00
[FieldDefinition(3, Label = "Username")]
public string Username { get; set; }
2013-05-19 23:17:32 +00:00
[FieldDefinition(4, Label = "Password", Type = FieldType.Password)]
public string Password { get; set; }
2013-05-19 23:17:32 +00:00
[FieldDefinition(5, Label = "From Address")]
public string From { get; set; }
2013-05-19 23:17:32 +00:00
2013-05-27 05:44:54 +00:00
[FieldDefinition(6, Label = "Recipient Address")]
public string To { get; set; }
2013-05-19 23:17:32 +00:00
public NzbDroneValidationResult Validate()
2013-05-19 23:17:32 +00:00
{
return new NzbDroneValidationResult(Validator.Validate(this));
}
2013-05-19 23:17:32 +00:00
}
}