(cherry picked from commit 6de3e7c950bd939bab96ef2ae74337108ad5a212)pull/4264/head
parent
26f80e37ec
commit
391fb10000
@ -0,0 +1,36 @@
|
|||||||
|
using FluentValidation;
|
||||||
|
using NzbDrone.Core.Annotations;
|
||||||
|
using NzbDrone.Core.Music;
|
||||||
|
using NzbDrone.Core.Validation;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.AutoTagging.Specifications
|
||||||
|
{
|
||||||
|
public class QualityProfileSpecificationValidator : AbstractValidator<QualityProfileSpecification>
|
||||||
|
{
|
||||||
|
public QualityProfileSpecificationValidator()
|
||||||
|
{
|
||||||
|
RuleFor(c => c.Value).GreaterThan(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public class QualityProfileSpecification : AutoTaggingSpecificationBase
|
||||||
|
{
|
||||||
|
private static readonly QualityProfileSpecificationValidator Validator = new ();
|
||||||
|
|
||||||
|
public override int Order => 1;
|
||||||
|
public override string ImplementationName => "Quality Profile";
|
||||||
|
|
||||||
|
[FieldDefinition(1, Label = "Quality Profile", Type = FieldType.QualityProfile)]
|
||||||
|
public int Value { get; set; }
|
||||||
|
|
||||||
|
protected override bool IsSatisfiedByWithoutNegate(Artist artist)
|
||||||
|
{
|
||||||
|
return Value == artist.QualityProfileId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override NzbDroneValidationResult Validate()
|
||||||
|
{
|
||||||
|
return new NzbDroneValidationResult(Validator.Validate(this));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue