Lidarr/src/NzbDrone.Core/Validation/Paths/ArtistExistsValidator.cs

28 lines
809 B
C#

using FluentValidation.Validators;
using NzbDrone.Core.Music;
namespace NzbDrone.Core.Validation.Paths
{
public class ArtistExistsValidator : PropertyValidator
{
private readonly IArtistService _artistService;
public ArtistExistsValidator(IArtistService artistService)
{
_artistService = artistService;
}
protected override string GetDefaultMessageTemplate() => "This artist has already been added.";
protected override bool IsValid(PropertyValidatorContext context)
{
if (context.PropertyValue == null)
{
return true;
}
return !_artistService.GetAllArtists().Exists(s => s.Metadata.Value.ForeignArtistId == context.PropertyValue.ToString());
}
}
}