-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathOpenApiSchemaExtensions.cs
More file actions
307 lines (278 loc) · 11.1 KB
/
Copy pathOpenApiSchemaExtensions.cs
File metadata and controls
307 lines (278 loc) · 11.1 KB
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
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
{
private static readonly Dictionary<AnnotationsDataType, string> DataFormatMappings = new()
{
[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",
[AnnotationsDataType.Upload] = "binary",
};
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);
}
#if NET
else if (attribute is LengthAttribute lengthAttribute)
{
ApplyLengthAttribute(schema, lengthAttribute);
}
else if (attribute is Base64StringAttribute base64Attribute)
{
ApplyBase64Attribute(schema);
}
#endif
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);
}
else if (attribute is ReadOnlyAttribute readOnlyAttribute)
{
ApplyReadOnlyAttribute(schema, readOnlyAttribute);
}
else if (attribute is DescriptionAttribute descriptionAttribute)
{
ApplyDescriptionAttribute(schema, descriptionAttribute);
}
}
}
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 FloatRouteConstraint or DecimalRouteConstraint)
{
schema.Type = JsonSchemaTypes.Number;
}
else if (constraint is LongRouteConstraint or IntRouteConstraint)
{
schema.Type = JsonSchemaTypes.Integer;
}
else if (constraint is GuidRouteConstraint or StringRouteConstraint)
{
schema.Type = JsonSchemaTypes.String;
}
else if (constraint is BoolRouteConstraint)
{
schema.Type = JsonSchemaTypes.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)
{
if (DataFormatMappings.TryGetValue(dataTypeAttribute.DataType, out string format))
{
schema.Format = format;
}
}
private static void ApplyMinLengthAttribute(OpenApiSchema schema, MinLengthAttribute minLengthAttribute)
{
if (schema.Type == JsonSchemaTypes.Array)
{
schema.MinItems = minLengthAttribute.Length;
}
else
{
schema.MinLength = minLengthAttribute.Length;
}
}
private static void ApplyMinLengthRouteConstraint(OpenApiSchema schema, MinLengthRouteConstraint minLengthRouteConstraint)
{
if (schema.Type == JsonSchemaTypes.Array)
{
schema.MinItems = minLengthRouteConstraint.MinLength;
}
else
{
schema.MinLength = minLengthRouteConstraint.MinLength;
}
}
private static void ApplyMaxLengthAttribute(OpenApiSchema schema, MaxLengthAttribute maxLengthAttribute)
{
if (schema.Type == JsonSchemaTypes.Array)
{
schema.MaxItems = maxLengthAttribute.Length;
}
else
{
schema.MaxLength = maxLengthAttribute.Length;
}
}
private static void ApplyMaxLengthRouteConstraint(OpenApiSchema schema, MaxLengthRouteConstraint maxLengthRouteConstraint)
{
if (schema.Type == JsonSchemaTypes.Array)
{
schema.MaxItems = maxLengthRouteConstraint.MaxLength;
}
else
{
schema.MaxLength = maxLengthRouteConstraint.MaxLength;
}
}
#if NET
private static void ApplyLengthAttribute(OpenApiSchema schema, LengthAttribute lengthAttribute)
{
if (schema.Type == JsonSchemaTypes.Array)
{
schema.MinItems = lengthAttribute.MinimumLength;
schema.MaxItems = lengthAttribute.MaximumLength;
}
else
{
schema.MinLength = lengthAttribute.MinimumLength;
schema.MaxLength = lengthAttribute.MaximumLength;
}
}
private static void ApplyBase64Attribute(OpenApiSchema schema)
{
schema.Format = "byte";
}
#endif
private static void ApplyRangeAttribute(OpenApiSchema schema, RangeAttribute rangeAttribute)
{
if (rangeAttribute.Maximum is int maximumInteger)
{
// The range was set with the RangeAttribute(int, int) constructor
schema.Maximum = maximumInteger;
schema.Minimum = (int)rangeAttribute.Minimum;
}
else
{
// Parse the range from the RangeAttribute(double, double) or RangeAttribute(string, string) constructor.
// Use the appropriate culture as the user may have specified a culture-specific format for the numbers
// if they specified the value as a string. By default RangeAttribute uses the current culture, but it
// can be set to use the invariant culture.
var targetCulture = rangeAttribute.ParseLimitsInInvariantCulture
? CultureInfo.InvariantCulture
: CultureInfo.CurrentCulture;
schema.Maximum = Convert.ToDecimal(rangeAttribute.Maximum, targetCulture);
schema.Minimum = Convert.ToDecimal(rangeAttribute.Minimum, targetCulture);
}
#if NET
if (rangeAttribute.MinimumIsExclusive)
{
schema.ExclusiveMinimum = true;
}
if (rangeAttribute.MaximumIsExclusive)
{
schema.ExclusiveMaximum = true;
}
#endif
}
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 ApplyReadOnlyAttribute(OpenApiSchema schema, ReadOnlyAttribute readOnlyAttribute)
{
schema.ReadOnly = readOnlyAttribute.IsReadOnly;
}
private static void ApplyDescriptionAttribute(OpenApiSchema schema, DescriptionAttribute descriptionAttribute)
{
schema.Description ??= descriptionAttribute.Description;
}
private static void ApplyLengthRouteConstraint(OpenApiSchema schema, LengthRouteConstraint lengthRouteConstraint)
{
schema.MinLength = lengthRouteConstraint.MinLength;
schema.MaxLength = lengthRouteConstraint.MaxLength;
}
}