2013-05-19 23:17:32 +00:00
|
|
|
|
using System;
|
2013-10-12 18:44:40 +00:00
|
|
|
|
using FluentValidation;
|
2013-09-21 07:09:26 +00:00
|
|
|
|
using FluentValidation.Results;
|
2013-05-19 23:17:32 +00:00
|
|
|
|
using NzbDrone.Core.Annotations;
|
2013-09-21 06:39:26 +00:00
|
|
|
|
using NzbDrone.Core.ThingiProvider;
|
2013-05-19 23:17:32 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Notifications.Plex
|
|
|
|
|
{
|
2013-10-12 18:44:40 +00:00
|
|
|
|
public class PlexServerSettingsValidator : AbstractValidator<PlexServerSettings>
|
|
|
|
|
{
|
|
|
|
|
public PlexServerSettingsValidator()
|
|
|
|
|
{
|
|
|
|
|
RuleFor(c => c.Host).NotEmpty();
|
|
|
|
|
RuleFor(c => c.Port).GreaterThan(0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-21 06:39:26 +00:00
|
|
|
|
public class PlexServerSettings : IProviderConfig
|
2013-05-19 23:17:32 +00:00
|
|
|
|
{
|
2013-10-12 18:44:40 +00:00
|
|
|
|
private static readonly PlexServerSettingsValidator Validator = new PlexServerSettingsValidator();
|
|
|
|
|
|
2013-08-09 06:22:26 +00:00
|
|
|
|
public PlexServerSettings()
|
|
|
|
|
{
|
|
|
|
|
Port = 32400;
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-28 01:55:45 +00:00
|
|
|
|
[FieldDefinition(0, Label = "Host")]
|
2013-05-19 23:17:32 +00:00
|
|
|
|
public String Host { get; set; }
|
|
|
|
|
|
2013-06-13 06:41:26 +00:00
|
|
|
|
[FieldDefinition(1, Label = "Port")]
|
|
|
|
|
public Int32 Port { get; set; }
|
|
|
|
|
|
2014-04-07 02:44:04 +00:00
|
|
|
|
[FieldDefinition(2, Label = "Username")]
|
|
|
|
|
public String Username { get; set; }
|
|
|
|
|
|
|
|
|
|
[FieldDefinition(3, Label = "Password")]
|
|
|
|
|
public String Password { get; set; }
|
|
|
|
|
|
|
|
|
|
[FieldDefinition(4, Label = "Update Library", Type = FieldType.Checkbox)]
|
2013-05-19 23:17:32 +00:00
|
|
|
|
public Boolean UpdateLibrary { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool IsValid
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return !string.IsNullOrWhiteSpace(Host);
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-09-21 07:09:26 +00:00
|
|
|
|
|
|
|
|
|
public ValidationResult Validate()
|
|
|
|
|
{
|
2013-10-12 18:44:40 +00:00
|
|
|
|
return Validator.Validate(this);
|
2013-09-21 07:09:26 +00:00
|
|
|
|
}
|
2013-05-19 23:17:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|