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 { /// /// 验证扩展 /// public static class InputDtoValidateExtensions { private static readonly ConcurrentDictionary> _dict = new(); /// /// InputDto属性验证 /// public static void Validate(this IEnumerable> dtos) { IInputDto[] inputDtos = dtos as IInputDto[] ?? dtos.ToArray(); Check.NotNull(inputDtos, nameof(dtos)); foreach (IInputDto dto in inputDtos) { Validate(dto); } } /// /// InputDto属性验证 /// public static void Validate(this IInputDto dto) { Check.NotNull(dto, nameof(dto)); Type type = dto.GetType(); if (!_dict.TryGetValue(type, out ConcurrentDictionary dict)) { PropertyInfo[] properties = type.GetProperties(); dict = new ConcurrentDictionary(); 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(); dict[property] = attributes; } if (attributes.Length == 0) { continue; } object value = property.GetValue(dto); foreach (ValidationAttribute attribute in attributes) { attribute.Validate(value, property.Name); } } } } }