Radarr/src/NzbDrone.Core/Indexers/Newznab/NewznabSettings.cs

64 lines
1.6 KiB
C#
Raw Normal View History

using System;
2013-07-31 03:41:46 +00:00
using System.Collections.Generic;
using System.Linq;
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;
using NzbDrone.Core.ThingiProvider;
2013-08-22 08:08:43 +00:00
using NzbDrone.Core.Validation;
namespace NzbDrone.Core.Indexers.Newznab
{
2013-08-26 04:01:03 +00:00
public class NewznabSettingsValidator : AbstractValidator<NewznabSettings>
{
private static readonly string[] ApiKeyWhiteList =
{
"nzbs.org",
"nzb.su",
"dognzb.cr",
"nzbplanet.net",
"nzbid.org",
"nzbndx.com",
"nzbindex.in"
};
private static bool ShouldHaveApiKey(NewznabSettings settings)
{
if (settings.Url == null)
{
return false;
}
return ApiKeyWhiteList.Any(c => settings.Url.ToLowerInvariant().Contains(c));
}
2013-08-26 04:01:03 +00:00
public NewznabSettingsValidator()
{
RuleFor(c => c.Url).ValidRootUrl();
RuleFor(c => c.ApiKey).NotEmpty().When(ShouldHaveApiKey);
2013-08-26 04:01:03 +00:00
}
}
public class NewznabSettings : IProviderConfig
{
2013-08-26 04:01:03 +00:00
private static readonly NewznabSettingsValidator Validator = new NewznabSettingsValidator();
2013-07-31 03:41:46 +00:00
public NewznabSettings()
{
2013-08-22 08:08:43 +00:00
Categories = new[] { 5030, 5040 };
2013-07-31 03:41:46 +00:00
}
2013-05-29 07:06:25 +00:00
[FieldDefinition(0, Label = "URL")]
public String Url { get; set; }
2013-05-03 05:24:52 +00:00
2013-05-29 07:06:25 +00:00
[FieldDefinition(1, Label = "API Key")]
public String ApiKey { get; set; }
2013-07-31 03:41:46 +00:00
public IEnumerable<Int32> Categories { get; set; }
2013-08-22 08:08:43 +00:00
public ValidationResult Validate()
{
2013-08-26 04:01:03 +00:00
return Validator.Validate(this);
2013-08-22 08:08:43 +00:00
}
}
}