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.
80 lines
2.6 KiB
80 lines
2.6 KiB
using System;
|
|
using System.Collections.Concurrent;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using Znyc.Recruitment.Admin.Commons.Data;
|
|
using Znyc.Recruitment.Admin.Commons.Extensions;
|
|
|
|
namespace Znyc.Recruitment.Admin.Commons.Dtos
|
|
{
|
|
/// <summary>
|
|
/// <see cref="IInputDto{TKey}" />验证扩展
|
|
/// </summary>
|
|
public static class InputDtoValidateExtensions
|
|
{
|
|
private static readonly ConcurrentDictionary<Type, ConcurrentDictionary<PropertyInfo, ValidationAttribute[]>>
|
|
_dict
|
|
= new();
|
|
|
|
/// <summary>
|
|
/// InputDto属性验证
|
|
/// </summary>
|
|
public static void Validate<TKey>(this IEnumerable<IInputDto<TKey>> dtos)
|
|
{
|
|
IInputDto<TKey>[] inputDtos = dtos as IInputDto<TKey>[] ?? dtos.ToArray();
|
|
Check.NotNull(inputDtos, nameof(dtos));
|
|
foreach (IInputDto<TKey> dto in inputDtos)
|
|
{
|
|
Validate(dto);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// InputDto属性验证
|
|
/// </summary>
|
|
public static void Validate<TKey>(this IInputDto<TKey> dto)
|
|
{
|
|
Check.NotNull(dto, nameof(dto));
|
|
Type type = dto.GetType();
|
|
if (!_dict.TryGetValue(type, out ConcurrentDictionary<PropertyInfo, ValidationAttribute[]> dict))
|
|
{
|
|
PropertyInfo[] properties = type.GetProperties();
|
|
dict = new ConcurrentDictionary<PropertyInfo, ValidationAttribute[]>();
|
|
if (properties.Length == 0)
|
|
{
|
|
_dict[type] = dict;
|
|
return;
|
|
}
|
|
|
|
foreach (PropertyInfo property in properties)
|
|
{
|
|
dict[property] = null;
|
|
}
|
|
|
|
_dict[type] = dict;
|
|
}
|
|
|
|
foreach (PropertyInfo property in dict.Keys)
|
|
{
|
|
if (!dict.TryGetValue(property, out ValidationAttribute[] attributes) || attributes == null)
|
|
{
|
|
attributes = property.GetAttributes<ValidationAttribute>();
|
|
dict[property] = attributes;
|
|
}
|
|
|
|
if (attributes.Length == 0)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
object value = property.GetValue(dto);
|
|
foreach (ValidationAttribute attribute in attributes)
|
|
{
|
|
attribute.Validate(value, property.Name);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|