Sonarr/src/Sonarr.Http/Validation/EmptyCollectionValidator.cs

22 lines
579 B
C#
Raw Normal View History

using System.Collections.Generic;
using FluentValidation.Validators;
using NzbDrone.Common.Extensions;
2017-02-11 06:46:39 +00:00
namespace Sonarr.Http.Validation
{
public class EmptyCollectionValidator<T> : PropertyValidator
{
public EmptyCollectionValidator()
: base("Collection Must Be Empty")
{
}
protected override bool IsValid(PropertyValidatorContext context)
{
if (context.PropertyValue == null) return true;
return context.PropertyValue is IEnumerable<T> collection && collection.Empty();
}
}
}