-
Notifications
You must be signed in to change notification settings - Fork 251
/
Copy pathOpenApiSchemaDeserializer.cs
182 lines (173 loc) · 6.14 KB
/
OpenApiSchemaDeserializer.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
using System.Collections.Generic;
using System.Globalization;
using Microsoft.OpenApi.Models;
using Microsoft.OpenApi.Extensions;
using Microsoft.OpenApi.Reader.ParseNodes;
using Microsoft.OpenApi.Models.References;
using Microsoft.OpenApi.Models.Interfaces;
using System;
namespace Microsoft.OpenApi.Reader.V2
{
/// <summary>
/// Class containing logic to deserialize Open API V2 document into
/// runtime Open API object model.
/// </summary>
internal static partial class OpenApiV2Deserializer
{
private static readonly FixedFieldMap<OpenApiSchema> _openApiSchemaFixedFields = new()
{
{
"title",
(o, n, _) => o.Title = n.GetScalarValue()
},
{
"multipleOf",
(o, n, _) => o.MultipleOf = decimal.Parse(n.GetScalarValue(), NumberStyles.Float, CultureInfo.InvariantCulture)
},
{
"maximum",
(o, n,_) => o.Maximum = ParserHelper.ParseDecimalWithFallbackOnOverflow(n.GetScalarValue(), decimal.MaxValue)
},
{
"exclusiveMaximum",
(o, n, _) => o.ExclusiveMaximum = bool.Parse(n.GetScalarValue())
},
{
"minimum",
(o, n, _) => o.Minimum = ParserHelper.ParseDecimalWithFallbackOnOverflow(n.GetScalarValue(), decimal.MinValue)
},
{
"exclusiveMinimum",
(o, n, _) => o.ExclusiveMinimum = bool.Parse(n.GetScalarValue())
},
{
"maxLength",
(o, n, _) => o.MaxLength = int.Parse(n.GetScalarValue(), CultureInfo.InvariantCulture)
},
{
"minLength",
(o, n, _) => o.MinLength = int.Parse(n.GetScalarValue(), CultureInfo.InvariantCulture)
},
{
"pattern",
(o, n, _) => o.Pattern = n.GetScalarValue()
},
{
"maxItems",
(o, n, _) => o.MaxItems = int.Parse(n.GetScalarValue(), CultureInfo.InvariantCulture)
},
{
"minItems",
(o, n, _) => o.MinItems = int.Parse(n.GetScalarValue(), CultureInfo.InvariantCulture)
},
{
"uniqueItems",
(o, n, _) => o.UniqueItems = bool.Parse(n.GetScalarValue())
},
{
"maxProperties",
(o, n, _) => o.MaxProperties = int.Parse(n.GetScalarValue(), CultureInfo.InvariantCulture)
},
{
"minProperties",
(o, n, _) => o.MinProperties = int.Parse(n.GetScalarValue(), CultureInfo.InvariantCulture)
},
{
"required",
(o, n, doc) => o.Required = new HashSet<string>(n.CreateSimpleList((n2, p) => n2.GetScalarValue(), doc))
},
{
"enum",
(o, n, _) => o.Enum = n.CreateListOfAny()
},
{
"type",
(o, n, _) => o.Type = n.GetScalarValue().ToJsonSchemaType()
},
{
"allOf",
(o, n, t) => o.AllOf = n.CreateList(LoadSchema, t)
},
{
"items",
(o, n, doc) => o.Items = LoadSchema(n, doc)
},
{
"properties",
(o, n, t) => o.Properties = n.CreateMap(LoadSchema, t)
},
{
"additionalProperties", (o, n, doc) =>
{
if (n is ValueNode)
{
o.AdditionalPropertiesAllowed = bool.Parse(n.GetScalarValue());
}
else
{
o.AdditionalProperties = LoadSchema(n, doc);
}
}
},
{
"description",
(o, n, _) => o.Description = n.GetScalarValue()
},
{
"format",
(o, n, _) => o.Format = n.GetScalarValue()
},
{
"default",
(o, n, _) => o.Default = n.CreateAny()
},
{
"discriminator", (o, n, _) =>
{
o.Discriminator = new()
{
PropertyName = n.GetScalarValue()
};
}
},
{
"readOnly",
(o, n, _) => o.ReadOnly = bool.Parse(n.GetScalarValue())
},
{
"xml",
(o, n, doc) => o.Xml = LoadXml(n, doc)
},
{
"externalDocs",
(o, n, doc) => o.ExternalDocs = LoadExternalDocs(n, doc)
},
{
"example",
(o, n, _) => o.Example = n.CreateAny()
},
};
private static readonly PatternFieldMap<OpenApiSchema> _openApiSchemaPatternFields = new PatternFieldMap<OpenApiSchema>
{
{s => s.StartsWith(OpenApiConstants.ExtensionFieldNamePrefix, StringComparison.OrdinalIgnoreCase), (o, p, n, _) => o.AddExtension(p, LoadExtension(p, n))}
};
public static IOpenApiSchema LoadSchema(ParseNode node, OpenApiDocument hostDocument)
{
var mapNode = node.CheckMapNode("schema");
var pointer = mapNode.GetReferencePointer();
if (pointer != null)
{
var reference = GetReferenceIdAndExternalResource(pointer);
return new OpenApiSchemaReference(reference.Item1, hostDocument, reference.Item2);
}
var schema = new OpenApiSchema();
foreach (var propertyNode in mapNode)
{
propertyNode.ParseField(schema, _openApiSchemaFixedFields, _openApiSchemaPatternFields, hostDocument);
}
return schema;
}
}
}