-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathJsonFirstApiActionDescriptor.cs
90 lines (85 loc) · 3.47 KB
/
JsonFirstApiActionDescriptor.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Reflection;
using WebApiClientCore.Attributes;
namespace WebApiClientCore.Implementations
{
/// <summary>
/// 当非GET或HEAD请求的缺省参数特性声明时
/// 为复杂参数类型的参数应用JsonContentAttribute的ApiActionDescriptor
/// </summary>
public class JsonFirstApiActionDescriptor : DefaultApiActionDescriptor
{
private static readonly IApiParameterAttribute pathQueryAttribute = new PathQueryAttribute();
private static readonly IApiParameterAttribute jsonContentAttribute = new JsonContentAttribute();
/// <summary>
/// 当非GET或HEAD请求的缺省参数特性声明时
/// 为复杂参数类型的参数应用JsonContentAttribute
/// </summary>
/// <param name="method"></param>
/// <param name="interfaceType"></param>
public JsonFirstApiActionDescriptor(
MethodInfo method,
[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] Type interfaceType)
: base(method, interfaceType)
{
var defineGetHead = this.Attributes.Any(a => this.IsGetHeadAttribute(a));
if (defineGetHead == false)
{
this.Parameters = this.GetApiParameterDescriptors().ToReadOnlyList();
}
}
/// <summary>
/// 获取参数描述
/// </summary>
/// <returns></returns>
private IEnumerable<ApiParameterDescriptor> GetApiParameterDescriptors()
{
foreach (var parameter in this.Parameters)
{
var parameterType = parameter.ParameterType;
var realType = Nullable.GetUnderlyingType(parameterType) ?? parameterType;
var defaultAttribute = this.IsSimpleType(realType) ? pathQueryAttribute : jsonContentAttribute;
yield return new DefaultApiParameterDescriptor(parameter.Member, defaultAttribute);
}
}
/// <summary>
/// 是否为Get或Head特性
/// </summary>
/// <param name="apiActionAttribute">方法特性</param>
/// <returns></returns>
protected virtual bool IsGetHeadAttribute(IApiActionAttribute apiActionAttribute)
{
if (apiActionAttribute is HttpMethodAttribute methodAttribute)
{
var httpMethod = methodAttribute.Method;
return httpMethod == HttpMethod.Get || httpMethod == HttpMethod.Head;
}
return false;
}
/// <summary>
/// 是否为简单类型
/// 这些类型缺省特性时仍然使用PathQueryAttribute
/// </summary>
/// <param name="realType">真实类型,非 nullable</param>
/// <returns></returns>
protected virtual bool IsSimpleType(Type realType)
{
return realType.IsPrimitive
|| realType.IsInheritFrom<Enum>()
|| realType == typeof(string)
|| realType == typeof(decimal)
|| realType == typeof(DateTime)
|| realType == typeof(DateTimeOffset)
|| realType == typeof(Guid)
|| realType == typeof(Uri)
|| realType == typeof(Version)
|| realType == typeof(TimeSpan)
|| realType == typeof(IPAddress);
}
}
}