New: Except language option for Language Custom Formats

Closes #7120
pull/7171/head
Mark McDowall 6 months ago committed by GitHub
parent 278c7891a3
commit 1584311914
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -42,6 +42,26 @@ namespace NzbDrone.Core.Test.CustomFormats.Specifications.LanguageSpecification
Subject.IsSatisfiedBy(_input).Should().BeTrue(); Subject.IsSatisfiedBy(_input).Should().BeTrue();
} }
[Test]
public void should_match_language_if_other_languages_are_present()
{
Subject.Value = Language.French.Id;
Subject.ExceptLanguage = true;
Subject.Negate = false;
Subject.IsSatisfiedBy(_input).Should().BeTrue();
}
[Test]
public void should_match_language_if_not_original_language_is_present()
{
Subject.Value = Language.Original.Id;
Subject.ExceptLanguage = true;
Subject.Negate = false;
Subject.IsSatisfiedBy(_input).Should().BeTrue();
}
[Test] [Test]
public void should_not_match_different_language() public void should_not_match_different_language()
{ {
@ -68,5 +88,15 @@ namespace NzbDrone.Core.Test.CustomFormats.Specifications.LanguageSpecification
Subject.IsSatisfiedBy(_input).Should().BeTrue(); Subject.IsSatisfiedBy(_input).Should().BeTrue();
} }
[Test]
public void should_not_match_negate_language_if_other_languages_are_present()
{
Subject.Value = Language.Spanish.Id;
Subject.ExceptLanguage = true;
Subject.Negate = true;
Subject.IsSatisfiedBy(_input).Should().BeFalse();
}
} }
} }

@ -67,5 +67,15 @@ namespace NzbDrone.Core.Test.CustomFormats.Specifications.LanguageSpecification
Subject.IsSatisfiedBy(_input).Should().BeTrue(); Subject.IsSatisfiedBy(_input).Should().BeTrue();
} }
[Test]
public void should_match_negated_except_language_if_language_is_only_present_language()
{
Subject.Value = Language.French.Id;
Subject.ExceptLanguage = true;
Subject.Negate = true;
Subject.IsSatisfiedBy(_input).Should().BeTrue();
}
} }
} }

@ -30,6 +30,9 @@ namespace NzbDrone.Core.CustomFormats
[FieldDefinition(1, Label = "CustomFormatsSpecificationLanguage", Type = FieldType.Select, SelectOptions = typeof(LanguageFieldConverter))] [FieldDefinition(1, Label = "CustomFormatsSpecificationLanguage", Type = FieldType.Select, SelectOptions = typeof(LanguageFieldConverter))]
public int Value { get; set; } public int Value { get; set; }
[FieldDefinition(1, Label = "CustomFormatsSpecificationExceptLanguage", HelpText = "CustomFormatsSpecificationExceptLanguageHelpText", Type = FieldType.Checkbox)]
public bool ExceptLanguage { get; set; }
public override bool IsSatisfiedBy(CustomFormatInput input) public override bool IsSatisfiedBy(CustomFormatInput input)
{ {
if (Negate) if (Negate)
@ -46,6 +49,11 @@ namespace NzbDrone.Core.CustomFormats
? input.Series.OriginalLanguage ? input.Series.OriginalLanguage
: (Language)Value; : (Language)Value;
if (ExceptLanguage)
{
return input.Languages?.Any(l => l != comparedLanguage) ?? false;
}
return input.Languages?.Contains(comparedLanguage) ?? false; return input.Languages?.Contains(comparedLanguage) ?? false;
} }
@ -55,6 +63,11 @@ namespace NzbDrone.Core.CustomFormats
? input.Series.OriginalLanguage ? input.Series.OriginalLanguage
: (Language)Value; : (Language)Value;
if (ExceptLanguage)
{
return !input.Languages?.Any(l => l != comparedLanguage) ?? false;
}
return !input.Languages?.Contains(comparedLanguage) ?? false; return !input.Languages?.Contains(comparedLanguage) ?? false;
} }

@ -290,6 +290,8 @@
"CustomFormatsSettingsTriggerInfo": "A Custom Format will be applied to a release or file when it matches at least one of each of the different condition types chosen.", "CustomFormatsSettingsTriggerInfo": "A Custom Format will be applied to a release or file when it matches at least one of each of the different condition types chosen.",
"CustomFormatsSpecificationFlag": "Flag", "CustomFormatsSpecificationFlag": "Flag",
"CustomFormatsSpecificationLanguage": "Language", "CustomFormatsSpecificationLanguage": "Language",
"CustomFormatsSpecificationExceptLanguage": "Except Language",
"CustomFormatsSpecificationExceptLanguageHelpText": "Matches if any language other than the selected language is present",
"CustomFormatsSpecificationMaximumSize": "Maximum Size", "CustomFormatsSpecificationMaximumSize": "Maximum Size",
"CustomFormatsSpecificationMaximumSizeHelpText": "Release must be less than or equal to this size", "CustomFormatsSpecificationMaximumSizeHelpText": "Release must be less than or equal to this size",
"CustomFormatsSpecificationMinimumSize": "Minimum Size", "CustomFormatsSpecificationMinimumSize": "Minimum Size",

Loading…
Cancel
Save