-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathDefaultApiParameterDescriptor.cs
145 lines (126 loc) · 5.12 KB
/
DefaultApiParameterDescriptor.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Reflection;
using System.Threading;
using WebApiClientCore.Attributes;
using WebApiClientCore.Implementations.TypeAttributes;
namespace WebApiClientCore.Implementations
{
/// <summary>
/// 表示请求Api的参数描述
/// </summary>
[DebuggerDisplay("Name = {Name}")]
public class DefaultApiParameterDescriptor : ApiParameterDescriptor
{
/// <summary>
/// 缺省参数特性时的默认特性
/// </summary>
private static readonly IApiParameterAttribute defaultAttribute = new PathQueryAttribute();
/// <summary>
/// 获取参数名称
/// </summary>
public override string Name { get; protected set; }
/// <summary>
/// 获取关联的参数信息
/// </summary>
public override ParameterInfo Member { get; protected set; }
/// <summary>
/// 获取参数索引
/// </summary>
public override int Index { get; protected set; }
/// <summary>
/// 获取参数类型
/// </summary>
public override Type ParameterType { get; protected set; }
/// <summary>
/// 获取关联的参数特性
/// </summary>
public override IReadOnlyList<IApiParameterAttribute> Attributes { get; protected set; }
/// <summary>
/// 获取关联的ValidationAttribute特性
/// </summary>
public override IReadOnlyList<ValidationAttribute> ValidationAttributes { get; protected set; }
/// <summary>
/// 请求Api的参数描述
/// </summary>
/// <param name="parameter">参数信息</param>
/// <exception cref="ArgumentNullException"></exception>
public DefaultApiParameterDescriptor(ParameterInfo parameter)
: this(parameter, defaultAttribute)
{
}
/// <summary>
/// 请求Api的参数描述
/// </summary>
/// <param name="parameter">参数信息</param>
/// <param name="defaultAttribute">缺省特性时使用的默认特性</param>
/// <exception cref="ArgumentNullException"></exception>
public DefaultApiParameterDescriptor(ParameterInfo parameter, IApiParameterAttribute defaultAttribute)
{
if (parameter == null)
{
throw new ArgumentNullException(nameof(parameter));
}
var parameterAttributes = parameter.GetCustomAttributes().ToArray();
var parameterType = parameter.ParameterType;
var parameterAlias = parameterAttributes.OfType<AliasAsAttribute>().FirstOrDefault();
var parameterName = parameterAlias == null ? parameter.Name : parameterAlias.Name;
var validationAttributes = parameterAttributes.OfType<ValidationAttribute>().ToReadOnlyList();
this.Member = parameter;
this.Name = parameterName ?? string.Empty;
this.Index = parameter.Position;
this.ParameterType = parameterType;
this.ValidationAttributes = validationAttributes;
var attributes = this.GetAttributes(parameter, parameterAttributes).ToArray();
if (attributes.Length == 0)
{
this.Attributes = new[] { defaultAttribute }.ToReadOnlyList();
}
else
{
this.Attributes = attributes.ToReadOnlyList();
}
}
/// <summary>
/// 获取参数的特性
/// </summary>
/// <param name="parameter">参数</param>
/// <param name="attributes">参数声明的所有特性</param>
/// <returns></returns>
protected virtual IEnumerable<IApiParameterAttribute> GetAttributes(ParameterInfo parameter, Attribute[] attributes)
{
var parameterType = parameter.ParameterType;
if (parameterType.IsInheritFrom<HttpContent>() == true)
{
return RepeatOne<HttpContentTypeAttribute>();
}
if (parameterType.IsInheritFrom<IApiParameter>() || parameterType.IsInheritFrom<IEnumerable<IApiParameter>>())
{
return RepeatOne<ApiParameterTypeAttribute>();
}
if (parameterType == typeof(CancellationToken) || parameterType.IsInheritFrom<IEnumerable<CancellationToken>>())
{
return RepeatOne<CancellationTokenTypeAttribute>();
}
if (parameterType == typeof(FileInfo) || parameterType.IsInheritFrom<IEnumerable<FileInfo>>())
{
return RepeatOne<FileInfoTypeAttribute>();
}
return attributes.OfType<IApiParameterAttribute>();
}
/// <summary>
/// 返回单次的迭代器
/// </summary>
/// <typeparam name="T"></typeparam>
/// <returns></returns>
private static IEnumerable<T> RepeatOne<T>() where T : new()
{
return Enumerable.Repeat(new T(), 1);
}
}
}