1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/Indexers/Newznab/NewznabSettings.cs

41 lines
1.0 KiB
C#
Raw Normal View History

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