-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathOpenApiSchemaExtensions.cs
More file actions
362 lines (328 loc) · 13.7 KB
/
OpenApiSchemaExtensions.cs
File metadata and controls
362 lines (328 loc) · 13.7 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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using Microsoft.AspNetCore.Mvc.ApiExplorer;
using Microsoft.AspNetCore.Routing.Constraints;
using Microsoft.OpenApi;
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 IOpenApiSchema schema, IEnumerable<object> customAttributes)
{
if (schema is OpenApiSchema concrete)
{
ApplyValidationAttributes(concrete, customAttributes);
}
}
private static void ApplyValidationAttributes(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 LengthAttribute lengthAttribute)
{
ApplyLengthAttribute(schema, lengthAttribute);
}
else if (attribute is Base64StringAttribute)
{
ApplyBase64Attribute(schema);
}
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 IOpenApiSchema schema, ApiParameterRouteInfo routeInfo)
{
if (schema is OpenApiSchema concrete)
{
ApplyRouteConstraints(concrete, routeInfo);
}
}
private static void ApplyRouteConstraints(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;
}
}
}
internal static JsonSchemaType? ResolveType(this IOpenApiSchema schema, SchemaRepository schemaRepository)
{
if (schema is OpenApiSchemaReference reference &&
schemaRepository.Schemas.TryGetValue(reference.Reference.Id, out var definitionSchema))
{
return definitionSchema.ResolveType(schemaRepository);
}
if (schema.AllOf is { Count: > 0 } allOf)
{
foreach (var subSchema in 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;
}
else if (dataTypeAttribute.DataType == AnnotationsDataType.Custom)
{
schema.Format = dataTypeAttribute.CustomDataType;
}
}
private static void ApplyMinLengthAttribute(OpenApiSchema schema, MinLengthAttribute minLengthAttribute)
{
if (schema.Type is { } type && type.HasFlag(JsonSchemaTypes.Array))
{
schema.MinItems = minLengthAttribute.Length;
}
else if (schema.Type is { } objectType && objectType.HasFlag(JsonSchemaTypes.Object))
{
schema.MinProperties = minLengthAttribute.Length;
}
else
{
schema.MinLength = minLengthAttribute.Length;
}
}
private static void ApplyMinLengthRouteConstraint(OpenApiSchema schema, MinLengthRouteConstraint minLengthRouteConstraint)
{
if (schema.Type is { } type && type.HasFlag(JsonSchemaTypes.Array))
{
schema.MinItems = minLengthRouteConstraint.MinLength;
}
else
{
schema.MinLength = minLengthRouteConstraint.MinLength;
}
}
private static void ApplyMaxLengthAttribute(OpenApiSchema schema, MaxLengthAttribute maxLengthAttribute)
{
if (schema.Type is { } type && type.HasFlag(JsonSchemaTypes.Array))
{
schema.MaxItems = maxLengthAttribute.Length;
}
else if (schema.Type is { } objectType && objectType.HasFlag(JsonSchemaTypes.Object))
{
schema.MaxProperties = maxLengthAttribute.Length;
}
else
{
schema.MaxLength = maxLengthAttribute.Length;
}
}
private static void ApplyMaxLengthRouteConstraint(OpenApiSchema schema, MaxLengthRouteConstraint maxLengthRouteConstraint)
{
if (schema.Type is { } type && type.HasFlag(JsonSchemaTypes.Array))
{
schema.MaxItems = maxLengthRouteConstraint.MaxLength;
}
else
{
schema.MaxLength = maxLengthRouteConstraint.MaxLength;
}
}
private static void ApplyLengthAttribute(OpenApiSchema schema, LengthAttribute lengthAttribute)
{
if (schema.Type is { } type && type.HasFlag(JsonSchemaTypes.Array))
{
schema.MinItems = lengthAttribute.MinimumLength;
schema.MaxItems = lengthAttribute.MaximumLength;
}
else if (schema.Type is { } objectType && objectType.HasFlag(JsonSchemaTypes.Object))
{
schema.MinProperties = lengthAttribute.MinimumLength;
schema.MaxProperties = lengthAttribute.MaximumLength;
}
else
{
schema.MinLength = lengthAttribute.MinimumLength;
schema.MaxLength = lengthAttribute.MaximumLength;
}
}
private static void ApplyBase64Attribute(OpenApiSchema schema)
{
schema.Format = "byte";
}
private static void ApplyRangeAttribute(OpenApiSchema schema, RangeAttribute rangeAttribute)
{
object maximumValue = null;
object minimumValue = null;
if (rangeAttribute.Maximum is double || rangeAttribute.Minimum is int)
{
// The range was set with the RangeAttribute(double, double) or RangeAttribute(int, int)
// constructor so we can safely convert the values to strings using the invariant culture
// as we have primitive values to operate on.
maximumValue = rangeAttribute.Maximum;
minimumValue = 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 || rangeAttribute.Minimum is double
? CultureInfo.InvariantCulture
: CultureInfo.CurrentCulture;
var maxString = Convert.ToString(rangeAttribute.Maximum, targetCulture);
var minString = Convert.ToString(rangeAttribute.Minimum, targetCulture);
if (decimal.TryParse(maxString, NumberStyles.Any, targetCulture, out var value))
{
maximumValue = value;
}
if (decimal.TryParse(minString, NumberStyles.Any, targetCulture, out value))
{
minimumValue = value;
}
}
// Ensure that the conversion to string is done using the invariant culture so valid JSON is generated
if (maximumValue is not null)
{
schema.Maximum = Convert.ToString(maximumValue, CultureInfo.InvariantCulture);
}
if (minimumValue is not null)
{
schema.Minimum = Convert.ToString(minimumValue, CultureInfo.InvariantCulture);
}
if (rangeAttribute.MaximumIsExclusive)
{
schema.ExclusiveMaximum = schema.Maximum;
}
if (rangeAttribute.MinimumIsExclusive)
{
schema.ExclusiveMinimum = schema.Minimum;
}
}
private static void ApplyRangeRouteConstraint(OpenApiSchema schema, RangeRouteConstraint rangeRouteConstraint)
{
schema.Maximum = rangeRouteConstraint.Max.ToString(CultureInfo.InvariantCulture);
schema.Minimum = rangeRouteConstraint.Min.ToString(CultureInfo.InvariantCulture);
}
private static void ApplyMinRouteConstraint(OpenApiSchema schema, MinRouteConstraint minRouteConstraint)
=> schema.Minimum = minRouteConstraint.Min.ToString(CultureInfo.InvariantCulture);
private static void ApplyMaxRouteConstraint(OpenApiSchema schema, MaxRouteConstraint maxRouteConstraint)
=> schema.Maximum = maxRouteConstraint.Max.ToString(CultureInfo.InvariantCulture);
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;
}
}