mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-01 07:55:22 +02:00
55 lines
1.9 KiB
C#
55 lines
1.9 KiB
C#
using FluentValidation;
|
|
using NzbDrone.Core.Annotations;
|
|
using NzbDrone.Core.ThingiProvider;
|
|
using NzbDrone.Core.Validation;
|
|
|
|
namespace NzbDrone.Core.Download.Clients.Deluge
|
|
{
|
|
public class DelugeSettingsValidator : AbstractValidator<DelugeSettings>
|
|
{
|
|
public DelugeSettingsValidator()
|
|
{
|
|
RuleFor(c => c.Host).ValidHost();
|
|
RuleFor(c => c.Port).InclusiveBetween(1, 65535);
|
|
|
|
RuleFor(c => c.MovieCategory).Matches("^[-a-z]*$").WithMessage("Allowed characters a-z and -");
|
|
}
|
|
}
|
|
|
|
public class DelugeSettings : IProviderConfig
|
|
{
|
|
private static readonly DelugeSettingsValidator Validator = new DelugeSettingsValidator();
|
|
|
|
public DelugeSettings()
|
|
{
|
|
Host = "localhost";
|
|
Port = 8112;
|
|
Password = "deluge";
|
|
MovieCategory = "radarr";
|
|
}
|
|
|
|
[FieldDefinition(0, Label = "Host", Type = FieldType.Textbox)]
|
|
public string Host { get; set; }
|
|
|
|
[FieldDefinition(1, Label = "Port", Type = FieldType.Textbox)]
|
|
public int Port { get; set; }
|
|
|
|
[FieldDefinition(2, Label = "Url Base", Type = FieldType.Textbox, Advanced = true, HelpText = "Adds a prefix to the deluge json url, see http://[host]:[port]/[urlBase]/json")]
|
|
public string UrlBase { get; set; }
|
|
|
|
[FieldDefinition(3, Label = "Password", Type = FieldType.Password)]
|
|
public string Password { get; set; }
|
|
|
|
[FieldDefinition(4, Label = "Category", Type = FieldType.Textbox, HelpText = "Adding a category specific to Radarr avoids conflicts with unrelated downloads, but it's optional")]
|
|
public string MovieCategory { get; set; }
|
|
|
|
[FieldDefinition(5, Label = "Use SSL", Type = FieldType.Checkbox)]
|
|
public bool UseSsl { get; set; }
|
|
|
|
public NzbDroneValidationResult Validate()
|
|
{
|
|
return new NzbDroneValidationResult(Validator.Validate(this));
|
|
}
|
|
}
|
|
}
|