-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
OpenApiSchemaExtensions.cs
191 lines (156 loc) · 8.41 KB
/
OpenApiSchemaExtensions.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Microsoft.AspNetCore.Mvc.ApiExplorer;
using Microsoft.AspNetCore.Routing.Constraints;
using Microsoft.OpenApi.Models;
using AnnotationsDataType = System.ComponentModel.DataAnnotations.DataType;
namespace Swashbuckle.AspNetCore.SwaggerGen
{
public static class OpenApiSchemaExtensions
{
public static void ApplyValidationAttributes(this OpenApiSchema schema, IEnumerable<object> customAttributes)
{
foreach (var attribute in customAttributes)
{
if (attribute is DataTypeAttribute dataTypeAttribute)
ApplyDataTypeAttribute(schema, dataTypeAttribute);
else if (attribute is MinLengthAttribute minLengthAttribute)
ApplyMinLengthAttribute(schema, minLengthAttribute);
else if (attribute is MaxLengthAttribute maxLengthAttribute)
ApplyMaxLengthAttribute(schema, maxLengthAttribute);
else if (attribute is RangeAttribute rangeAttribute)
ApplyRangeAttribute(schema, rangeAttribute);
else if (attribute is RegularExpressionAttribute regularExpressionAttribute)
ApplyRegularExpressionAttribute(schema, regularExpressionAttribute);
else if (attribute is StringLengthAttribute stringLengthAttribute)
ApplyStringLengthAttribute(schema, stringLengthAttribute);
}
}
public static void ApplyRouteConstraints(this OpenApiSchema schema, ApiParameterRouteInfo routeInfo)
{
foreach (var constraint in routeInfo.Constraints)
{
if (constraint is MinRouteConstraint minRouteConstraint)
ApplyMinRouteConstraint(schema, minRouteConstraint);
else if (constraint is MaxRouteConstraint maxRouteConstraint)
ApplyMaxRouteConstraint(schema, maxRouteConstraint);
else if (constraint is MinLengthRouteConstraint minLengthRouteConstraint)
ApplyMinLengthRouteConstraint(schema, minLengthRouteConstraint);
else if (constraint is MaxLengthRouteConstraint maxLengthRouteConstraint)
ApplyMaxLengthRouteConstraint(schema, maxLengthRouteConstraint);
else if (constraint is RangeRouteConstraint rangeRouteConstraint)
ApplyRangeRouteConstraint(schema, rangeRouteConstraint);
else if (constraint is RegexRouteConstraint regexRouteConstraint)
ApplyRegexRouteConstraint(schema, regexRouteConstraint);
else if (constraint is LengthRouteConstraint lengthRouteConstraint)
ApplyLengthRouteConstraint(schema, lengthRouteConstraint);
else if (constraint is LongRouteConstraint || constraint is FloatRouteConstraint || constraint is DecimalRouteConstraint)
schema.Type = "number";
else if (constraint is IntRouteConstraint)
schema.Type = "integer";
else if (constraint is GuidRouteConstraint || constraint is StringRouteConstraint)
schema.Type = "string";
else if (constraint is BoolRouteConstraint)
schema.Type = "boolean";
}
}
public static string ResolveType(this OpenApiSchema schema, SchemaRepository schemaRepository)
{
if (schema.Reference != null && schemaRepository.Schemas.TryGetValue(schema.Reference.Id, out OpenApiSchema definitionSchema))
return definitionSchema.ResolveType(schemaRepository);
foreach (var subSchema in schema.AllOf)
{
var type = subSchema.ResolveType(schemaRepository);
if (type != null) return type;
}
return schema.Type;
}
private static void ApplyDataTypeAttribute(OpenApiSchema schema, DataTypeAttribute dataTypeAttribute)
{
var formats = new Dictionary<AnnotationsDataType, string>
{
{ AnnotationsDataType.DateTime, "date-time" },
{ AnnotationsDataType.Date, "date" },
{ AnnotationsDataType.Time, "time" },
{ AnnotationsDataType.Duration, "duration" },
{ AnnotationsDataType.PhoneNumber, "tel" },
{ AnnotationsDataType.Currency, "currency" },
{ AnnotationsDataType.Text, "string" },
{ AnnotationsDataType.Html, "html" },
{ AnnotationsDataType.MultilineText, "multiline" },
{ AnnotationsDataType.EmailAddress, "email" },
{ AnnotationsDataType.Password, "password" },
{ AnnotationsDataType.Url, "uri" },
{ AnnotationsDataType.ImageUrl, "uri" },
{ AnnotationsDataType.CreditCard, "credit-card" },
{ AnnotationsDataType.PostalCode, "postal-code" }
};
if (formats.TryGetValue(dataTypeAttribute.DataType, out string format))
{
schema.Format = format;
}
}
private static void ApplyMinLengthAttribute(OpenApiSchema schema, MinLengthAttribute minLengthAttribute)
{
if (schema.Type == "array")
schema.MinItems = minLengthAttribute.Length;
else
schema.MinLength = minLengthAttribute.Length;
}
private static void ApplyMinLengthRouteConstraint(OpenApiSchema schema, MinLengthRouteConstraint minLengthRouteConstraint)
{
if (schema.Type == "array")
schema.MinItems = minLengthRouteConstraint.MinLength;
else
schema.MinLength = minLengthRouteConstraint.MinLength;
}
private static void ApplyMaxLengthAttribute(OpenApiSchema schema, MaxLengthAttribute maxLengthAttribute)
{
if (schema.Type == "array")
schema.MaxItems = maxLengthAttribute.Length;
else
schema.MaxLength = maxLengthAttribute.Length;
}
private static void ApplyMaxLengthRouteConstraint(OpenApiSchema schema, MaxLengthRouteConstraint maxLengthRouteConstraint)
{
if (schema.Type == "array")
schema.MaxItems = maxLengthRouteConstraint.MaxLength;
else
schema.MaxLength = maxLengthRouteConstraint.MaxLength;
}
private static void ApplyRangeAttribute(OpenApiSchema schema, RangeAttribute rangeAttribute)
{
schema.Maximum = decimal.TryParse(rangeAttribute.Maximum.ToString(), out decimal maximum)
? maximum
: schema.Maximum;
schema.Minimum = decimal.TryParse(rangeAttribute.Minimum.ToString(), out decimal minimum)
? minimum
: schema.Minimum;
}
private static void ApplyRangeRouteConstraint(OpenApiSchema schema, RangeRouteConstraint rangeRouteConstraint)
{
schema.Maximum = rangeRouteConstraint.Max;
schema.Minimum = rangeRouteConstraint.Min;
}
private static void ApplyMinRouteConstraint(OpenApiSchema schema, MinRouteConstraint minRouteConstraint)
=> schema.Minimum = minRouteConstraint.Min;
private static void ApplyMaxRouteConstraint(OpenApiSchema schema, MaxRouteConstraint maxRouteConstraint)
=> schema.Maximum = maxRouteConstraint.Max;
private static void ApplyRegularExpressionAttribute(OpenApiSchema schema, RegularExpressionAttribute regularExpressionAttribute)
{
schema.Pattern = regularExpressionAttribute.Pattern;
}
private static void ApplyRegexRouteConstraint(OpenApiSchema schema, RegexRouteConstraint regexRouteConstraint)
=> schema.Pattern = regexRouteConstraint.Constraint.ToString();
private static void ApplyStringLengthAttribute(OpenApiSchema schema, StringLengthAttribute stringLengthAttribute)
{
schema.MinLength = stringLengthAttribute.MinimumLength;
schema.MaxLength = stringLengthAttribute.MaximumLength;
}
private static void ApplyLengthRouteConstraint(OpenApiSchema schema, LengthRouteConstraint lengthRouteConstraint)
{
schema.MinLength = lengthRouteConstraint.MinLength;
schema.MaxLength = lengthRouteConstraint.MaxLength;
}
}
}