|
| 1 | +// Licensed to the .NET Foundation under one or more agreements. |
| 2 | +// The .NET Foundation licenses this file to you under the MIT license. |
| 3 | + |
| 4 | +using System.Collections; |
| 5 | +using System.ComponentModel.DataAnnotations; |
| 6 | +using System.Diagnostics.CodeAnalysis; |
| 7 | + |
| 8 | +namespace Microsoft.AspNetCore.Http.Validation; |
| 9 | + |
| 10 | +internal static class TypeExtensions |
| 11 | +{ |
| 12 | + /// <summary> |
| 13 | + /// Determines whether the specified type is an enumerable type. |
| 14 | + /// </summary> |
| 15 | + /// <param name="type">The type to check.</param> |
| 16 | + /// <returns><see langword="true"/> if the type is enumerable; otherwise, <see langword="false"/>.</returns> |
| 17 | + public static bool IsEnumerable(this Type type) |
| 18 | + { |
| 19 | + // Check if type itself is an IEnumerable |
| 20 | + if (type.IsGenericType && |
| 21 | + (type.GetGenericTypeDefinition() == typeof(IEnumerable<>) || |
| 22 | + type.GetGenericTypeDefinition() == typeof(ICollection<>) || |
| 23 | + type.GetGenericTypeDefinition() == typeof(List<>) || |
| 24 | + type.GetGenericTypeDefinition() == typeof(IList<>))) |
| 25 | + { |
| 26 | + return true; |
| 27 | + } |
| 28 | + |
| 29 | + // Or an array |
| 30 | + if (type.IsArray) |
| 31 | + { |
| 32 | + return true; |
| 33 | + } |
| 34 | + |
| 35 | + // Then evaluate if it implements IEnumerable and is not a string |
| 36 | + if (typeof(IEnumerable).IsAssignableFrom(type) && |
| 37 | + type != typeof(string)) |
| 38 | + { |
| 39 | + return true; |
| 40 | + } |
| 41 | + |
| 42 | + return false; |
| 43 | + } |
| 44 | + |
| 45 | + /// <summary> |
| 46 | + /// Determines whether the specified type is a nullable type. |
| 47 | + /// </summary> |
| 48 | + /// <param name="type">The type to check.</param> |
| 49 | + /// <returns><see langword="true"/> if the type is nullable; otherwise, <see langword="false"/>.</returns> |
| 50 | + public static bool IsNullable(this Type type) |
| 51 | + { |
| 52 | + if (type.IsValueType) |
| 53 | + { |
| 54 | + return false; |
| 55 | + } |
| 56 | + |
| 57 | + if (type.IsGenericType && |
| 58 | + type.GetGenericTypeDefinition() == typeof(Nullable<>)) |
| 59 | + { |
| 60 | + return true; |
| 61 | + } |
| 62 | + |
| 63 | + return false; |
| 64 | + } |
| 65 | + |
| 66 | + /// <summary> |
| 67 | + /// Tries to get the <see cref="RequiredAttribute"/> from the specified array of validation attributes. |
| 68 | + /// </summary> |
| 69 | + /// <param name="attributes">The array of <see cref="ValidationAttribute"/> to search.</param> |
| 70 | + /// <param name="requiredAttribute">The found <see cref="RequiredAttribute"/> if available, otherwise null.</param> |
| 71 | + /// <returns><see langword="true"/> if a <see cref="RequiredAttribute"/> is found; otherwise, <see langword="false"/>.</returns> |
| 72 | + public static bool TryGetRequiredAttribute(this ValidationAttribute[] attributes, [NotNullWhen(true)] out RequiredAttribute? requiredAttribute) |
| 73 | + { |
| 74 | + foreach (var attribute in attributes) |
| 75 | + { |
| 76 | + if (attribute is RequiredAttribute requiredAttr) |
| 77 | + { |
| 78 | + requiredAttribute = requiredAttr; |
| 79 | + return true; |
| 80 | + } |
| 81 | + } |
| 82 | + |
| 83 | + requiredAttribute = null; |
| 84 | + return false; |
| 85 | + } |
| 86 | + |
| 87 | + /// <summary> |
| 88 | + /// Gets all types that the specified type implements or inherits from. |
| 89 | + /// </summary> |
| 90 | + /// <param name="type">The type to analyze.</param> |
| 91 | + /// <returns>A collection containing all implemented interfaces and all base types of the given type.</returns> |
| 92 | + public static List<Type> GetAllImplementedTypes([DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.Interfaces)] this Type type) |
| 93 | + { |
| 94 | + ArgumentNullException.ThrowIfNull(type); |
| 95 | + |
| 96 | + var implementedTypes = new List<Type>(); |
| 97 | + |
| 98 | + // Yield all interfaces directly and indirectly implemented by this type |
| 99 | + foreach (var interfaceType in type.GetInterfaces()) |
| 100 | + { |
| 101 | + implementedTypes.Add(interfaceType); |
| 102 | + } |
| 103 | + |
| 104 | + // Finally, walk up the inheritance chain |
| 105 | + var baseType = type.BaseType; |
| 106 | + while (baseType != null && baseType != typeof(object)) |
| 107 | + { |
| 108 | + implementedTypes.Add(baseType); |
| 109 | + baseType = baseType.BaseType; |
| 110 | + } |
| 111 | + |
| 112 | + return implementedTypes; |
| 113 | + } |
| 114 | + |
| 115 | + /// <summary> |
| 116 | + /// Determines whether the specified type implements the given interface. |
| 117 | + /// </summary> |
| 118 | + /// <param name="type">The type to check.</param> |
| 119 | + /// <param name="interfaceType">The interface type to check for.</param> |
| 120 | + /// <returns>True if the type implements the specified interface; otherwise, false.</returns> |
| 121 | + public static bool ImplementsInterface(this Type type, Type interfaceType) |
| 122 | + { |
| 123 | + ArgumentNullException.ThrowIfNull(type); |
| 124 | + ArgumentNullException.ThrowIfNull(interfaceType); |
| 125 | + |
| 126 | + // Check if interfaceType is actually an interface |
| 127 | + if (!interfaceType.IsInterface) |
| 128 | + { |
| 129 | + throw new ArgumentException($"Type {interfaceType.FullName} is not an interface.", nameof(interfaceType)); |
| 130 | + } |
| 131 | + |
| 132 | + return interfaceType.IsAssignableFrom(type); |
| 133 | + } |
| 134 | +} |
0 commit comments