You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/src/NzbDrone.Core/Validation/Paths/AuthorAncestorValidator.cs

30 lines
853 B

using System.Linq;
using FluentValidation.Validators;
using NzbDrone.Common.Extensions;
using NzbDrone.Core.Books;
namespace NzbDrone.Core.Validation.Paths
{
public class AuthorAncestorValidator : PropertyValidator
{
private readonly IAuthorService _authorService;
public AuthorAncestorValidator(IAuthorService authorService)
{
_authorService = authorService;
}
protected override string GetDefaultMessageTemplate() => "Path is an ancestor of an existing author";
protected override bool IsValid(PropertyValidatorContext context)
{
if (context.PropertyValue == null)
{
return true;
}
return !_authorService.AllAuthorPaths().Any(s => context.PropertyValue.ToString().IsParentPath(s.Value));
}
}
}