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