mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
37 lines
1.3 KiB
C#
37 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq.Expressions;
|
|
using FluentValidation;
|
|
using FluentValidation.Internal;
|
|
using FluentValidation.Resources;
|
|
using NzbDrone.Api.ClientSchema;
|
|
using System.Linq;
|
|
|
|
namespace NzbDrone.Api.REST
|
|
{
|
|
public class ResourceValidator<TResource> : AbstractValidator<TResource>
|
|
{
|
|
public IRuleBuilderInitial<TResource, TProperty> RuleForField<TProperty>(Expression<Func<TResource, IEnumerable<Field>>> fieldListAccessor, string fieldName)
|
|
{
|
|
var rule = new PropertyRule(fieldListAccessor.GetMember(), c => GetValue(c, fieldListAccessor.Compile(), fieldName), null, () => CascadeMode.Continue, typeof(TProperty), typeof(TResource));
|
|
rule.PropertyName = fieldName;
|
|
rule.DisplayName = new StaticStringSource(fieldName);
|
|
|
|
AddRule(rule);
|
|
return new RuleBuilder<TResource, TProperty>(rule);
|
|
}
|
|
|
|
private static object GetValue(object container, Func<TResource, IEnumerable<Field>> fieldListAccessor, string fieldName)
|
|
{
|
|
|
|
var resource = fieldListAccessor((TResource)container).SingleOrDefault(c => c.Name == fieldName);
|
|
|
|
if (resource == null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
return resource.Value;
|
|
}
|
|
}
|
|
} |