2013-04-07 07:30:37 +00:00
|
|
|
|
using System;
|
2013-08-22 08:08:43 +00:00
|
|
|
|
using FluentValidation;
|
|
|
|
|
using FluentValidation.Results;
|
2013-05-03 05:24:52 +00:00
|
|
|
|
using NzbDrone.Core.Annotations;
|
2013-04-07 07:30:37 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Indexers.Omgwtfnzbs
|
|
|
|
|
{
|
2013-08-26 04:01:03 +00:00
|
|
|
|
public class OmgwtfnzbsSettingsValidator : AbstractValidator<OmgwtfnzbsSettings>
|
|
|
|
|
{
|
|
|
|
|
public OmgwtfnzbsSettingsValidator()
|
|
|
|
|
{
|
|
|
|
|
RuleFor(c => c.Username).NotEmpty();
|
|
|
|
|
RuleFor(c => c.ApiKey).NotEmpty();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-24 04:40:02 +00:00
|
|
|
|
public class OmgwtfnzbsSettings : IIndexerSetting
|
2013-04-07 07:30:37 +00:00
|
|
|
|
{
|
2013-08-26 04:01:03 +00:00
|
|
|
|
private static readonly OmgwtfnzbsSettingsValidator Validator = new OmgwtfnzbsSettingsValidator();
|
2013-08-22 08:08:43 +00:00
|
|
|
|
|
2013-05-29 07:06:25 +00:00
|
|
|
|
[FieldDefinition(0, Label = "Username")]
|
2013-04-07 07:30:37 +00:00
|
|
|
|
public String Username { get; set; }
|
2013-05-03 05:24:52 +00:00
|
|
|
|
|
2013-05-29 07:06:25 +00:00
|
|
|
|
[FieldDefinition(1, Label = "API Key")]
|
2013-04-07 07:30:37 +00:00
|
|
|
|
public String ApiKey { get; set; }
|
|
|
|
|
|
2013-08-22 08:08:43 +00:00
|
|
|
|
public ValidationResult Validate()
|
2013-04-07 07:30:37 +00:00
|
|
|
|
{
|
2013-08-26 04:01:03 +00:00
|
|
|
|
return Validator.Validate(this);
|
2013-04-07 07:30:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|