2013-05-01 18:59:09 -07:00
|
|
|
using System;
|
2013-07-30 20:41:46 -07:00
|
|
|
using System.Collections.Generic;
|
2013-08-22 01:08:43 -07:00
|
|
|
using FluentValidation;
|
|
|
|
using FluentValidation.Results;
|
2013-05-02 22:24:52 -07:00
|
|
|
using NzbDrone.Core.Annotations;
|
2013-08-22 01:08:43 -07:00
|
|
|
using NzbDrone.Core.Validation;
|
2013-05-01 18:59:09 -07:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.Indexers.Newznab
|
|
|
|
{
|
2013-08-25 21:01:03 -07:00
|
|
|
public class NewznabSettingsValidator : AbstractValidator<NewznabSettings>
|
|
|
|
{
|
|
|
|
public NewznabSettingsValidator()
|
|
|
|
{
|
|
|
|
RuleFor(c => c.Url).ValidRootUrl();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-01 18:59:09 -07:00
|
|
|
public class NewznabSettings : IIndexerSetting
|
|
|
|
{
|
2013-08-25 21:01:03 -07:00
|
|
|
private static readonly NewznabSettingsValidator Validator = new NewznabSettingsValidator();
|
|
|
|
|
2013-07-30 20:41:46 -07:00
|
|
|
public NewznabSettings()
|
|
|
|
{
|
2013-08-22 01:08:43 -07:00
|
|
|
Categories = new[] { 5030, 5040 };
|
2013-07-30 20:41:46 -07:00
|
|
|
}
|
|
|
|
|
2013-05-29 00:06:25 -07:00
|
|
|
[FieldDefinition(0, Label = "URL")]
|
2013-05-01 18:59:09 -07:00
|
|
|
public String Url { get; set; }
|
2013-05-02 22:24:52 -07:00
|
|
|
|
2013-05-29 00:06:25 -07:00
|
|
|
[FieldDefinition(1, Label = "API Key")]
|
2013-05-01 18:59:09 -07:00
|
|
|
public String ApiKey { get; set; }
|
|
|
|
|
2013-07-30 20:41:46 -07:00
|
|
|
public IEnumerable<Int32> Categories { get; set; }
|
|
|
|
|
2013-08-22 01:08:43 -07:00
|
|
|
public ValidationResult Validate()
|
|
|
|
{
|
2013-08-25 21:01:03 -07:00
|
|
|
return Validator.Validate(this);
|
2013-08-22 01:08:43 -07:00
|
|
|
}
|
2013-05-01 18:59:09 -07:00
|
|
|
}
|
|
|
|
}
|