You've already forked Sonarr
mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-11-06 09:19:38 +02:00
79 lines
2.1 KiB
C#
79 lines
2.1 KiB
C#
using FluentValidation;
|
|
using NzbDrone.Core.Annotations;
|
|
using NzbDrone.Core.Validation;
|
|
|
|
namespace NzbDrone.Core.Indexers.HDBits
|
|
{
|
|
public class HDBitsSettingsValidator : AbstractValidator<HDBitsSettings>
|
|
{
|
|
public HDBitsSettingsValidator()
|
|
{
|
|
RuleFor(c => c.BaseUrl).ValidRootUrl();
|
|
RuleFor(c => c.ApiKey).NotEmpty();
|
|
|
|
RuleFor(c => c.SeedCriteria).SetValidator(_ => new SeedCriteriaSettingsValidator());
|
|
}
|
|
}
|
|
|
|
public class HDBitsSettings : ITorrentIndexerSettings
|
|
{
|
|
private static readonly HDBitsSettingsValidator Validator = new HDBitsSettingsValidator();
|
|
|
|
public HDBitsSettings()
|
|
{
|
|
BaseUrl = "https://hdbits.org";
|
|
MinimumSeeders = IndexerDefaults.MINIMUM_SEEDERS;
|
|
}
|
|
|
|
[FieldDefinition(0, Label = "Username")]
|
|
public string Username { get; set; }
|
|
|
|
[FieldDefinition(1, Label = "API Key")]
|
|
public string ApiKey { get; set; }
|
|
|
|
[FieldDefinition(2, Label = "API URL", Advanced = true, HelpText = "Do not change this unless you know what you're doing. Since your API key will be sent to that host.")]
|
|
public string BaseUrl { get; set; }
|
|
|
|
[FieldDefinition(3, Type = FieldType.Textbox, Label = "Minimum Seeders", HelpText = "Minimum number of seeders required.", Advanced = true)]
|
|
public int MinimumSeeders { get; set; }
|
|
|
|
[FieldDefinition(4)]
|
|
public SeedCriteriaSettings SeedCriteria { get; } = new SeedCriteriaSettings();
|
|
|
|
public NzbDroneValidationResult Validate()
|
|
{
|
|
return new NzbDroneValidationResult(Validator.Validate(this));
|
|
}
|
|
}
|
|
|
|
public enum HdBitsCategory
|
|
{
|
|
Movie = 1,
|
|
Tv = 2,
|
|
Documentary = 3,
|
|
Music = 4,
|
|
Sport = 5,
|
|
Audio = 6,
|
|
Xxx = 7,
|
|
MiscDemo = 8
|
|
}
|
|
|
|
public enum HdBitsCodec
|
|
{
|
|
H264 = 1,
|
|
Mpeg2 = 2,
|
|
Vc1 = 3,
|
|
Xvid = 4,
|
|
Hevc = 5
|
|
}
|
|
|
|
public enum HdBitsMedium
|
|
{
|
|
Bluray = 1,
|
|
Encode = 3,
|
|
Capture = 4,
|
|
Remux = 5,
|
|
WebDl = 6
|
|
}
|
|
}
|