forked from microsoft/OpenAPI.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpenApiJsonReader.cs
More file actions
224 lines (202 loc) · 8.59 KB
/
OpenApiJsonReader.cs
File metadata and controls
224 lines (202 loc) · 8.59 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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
using System.IO;
using System.Text.Json.Nodes;
using System.Text.Json;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.OpenApi.Models;
using Microsoft.OpenApi.Exceptions;
using Microsoft.OpenApi.Extensions;
using Microsoft.OpenApi.Validations;
using System.Linq;
using Microsoft.OpenApi.Interfaces;
using System;
namespace Microsoft.OpenApi.Reader
{
/// <summary>
/// A reader class for parsing JSON files into Open API documents.
/// </summary>
public class OpenApiJsonReader : IOpenApiReader
{
/// <summary>
/// Reads the memory stream input and parses it into an Open API document.
/// </summary>
/// <param name="input">Memory stream containing OpenAPI description to parse.</param>
/// <param name="location">Location of where the document that is getting loaded is saved</param>
/// <param name="settings">The Reader settings to be used during parsing.</param>
/// <returns></returns>
public ReadResult Read(MemoryStream input,
Uri location,
OpenApiReaderSettings settings)
{
if (input is null) throw new ArgumentNullException(nameof(input));
if (settings is null) throw new ArgumentNullException(nameof(settings));
JsonNode? jsonNode;
var diagnostic = new OpenApiDiagnostic();
settings ??= new OpenApiReaderSettings();
// Parse the JSON text in the stream into JsonNodes
try
{
jsonNode = JsonNode.Parse(input) ?? throw new InvalidOperationException($"Cannot parse input stream, {nameof(input)}.");
}
catch (JsonException ex)
{
diagnostic.Errors.Add(new OpenApiError($"#line={ex.LineNumber}", $"Please provide the correct format, {ex.Message}"));
return new ReadResult
{
Document = null,
Diagnostic = diagnostic
};
}
return Read(jsonNode, location, settings);
}
/// <summary>
/// Parses the JsonNode input into an Open API document.
/// </summary>
/// <param name="jsonNode">The JsonNode input.</param>
/// <param name="location">Location of where the document that is getting loaded is saved</param>
/// <param name="settings">The Reader settings to be used during parsing.</param>
/// <returns></returns>
public ReadResult Read(JsonNode jsonNode,
Uri location,
OpenApiReaderSettings settings)
{
if (jsonNode is null) throw new ArgumentNullException(nameof(jsonNode));
if (settings is null) throw new ArgumentNullException(nameof(settings));
var diagnostic = new OpenApiDiagnostic();
var context = new ParsingContext(diagnostic)
{
ExtensionParsers = settings.ExtensionParsers,
BaseUrl = settings.BaseUrl,
DefaultContentType = settings.DefaultContentType
};
OpenApiDocument? document = null;
try
{
// Parse the OpenAPI Document
document = context.Parse(jsonNode, location);
document.SetReferenceHostDocument();
}
catch (OpenApiException ex)
{
diagnostic.Errors.Add(new(ex));
}
// Validate the document
if (document is not null && settings.RuleSet is not null && settings.RuleSet.Rules.Any())
{
var openApiErrors = document.Validate(settings.RuleSet);
if(openApiErrors is not null)
{
foreach (var item in openApiErrors.OfType<OpenApiValidatorError>())
{
diagnostic.Errors.Add(item);
}
foreach (var item in openApiErrors.OfType<OpenApiValidatorWarning>())
{
diagnostic.Warnings.Add(item);
}
}
}
return new()
{
Document = document,
Diagnostic = diagnostic
};
}
/// <summary>
/// Reads the stream input asynchronously and parses it into an Open API document.
/// </summary>
/// <param name="input">Memory stream containing OpenAPI description to parse.</param>
/// <param name="location">Location of where the document that is getting loaded is saved</param>
/// <param name="settings">The Reader settings to be used during parsing.</param>
/// <param name="cancellationToken">Propagates notifications that operations should be cancelled.</param>
/// <returns></returns>
public async Task<ReadResult> ReadAsync(Stream input,
Uri location,
OpenApiReaderSettings settings,
CancellationToken cancellationToken = default)
{
if (input is null) throw new ArgumentNullException(nameof(input));
if (settings is null) throw new ArgumentNullException(nameof(settings));
JsonNode? jsonNode;
var diagnostic = new OpenApiDiagnostic();
// Parse the JSON text in the stream into JsonNodes
try
{
jsonNode = await JsonNode.ParseAsync(input, cancellationToken: cancellationToken).ConfigureAwait(false) ??
throw new InvalidOperationException($"failed to parse input stream, {nameof(input)}");
}
catch (JsonException ex)
{
diagnostic.Errors.Add(new OpenApiError($"#line={ex.LineNumber}", $"Please provide the correct format, {ex.Message}"));
return new ReadResult
{
Document = null,
Diagnostic = diagnostic
};
}
return Read(jsonNode, location, settings);
}
/// <inheritdoc/>
public T? ReadFragment<T>(MemoryStream input,
OpenApiSpecVersion version,
OpenApiDocument openApiDocument,
out OpenApiDiagnostic diagnostic,
OpenApiReaderSettings? settings = null) where T : IOpenApiElement
{
Utils.CheckArgumentNull(input);
Utils.CheckArgumentNull(openApiDocument);
JsonNode jsonNode;
// Parse the JSON
try
{
jsonNode = JsonNode.Parse(input) ?? throw new InvalidOperationException($"Failed to parse stream, {nameof(input)}");
}
catch (JsonException ex)
{
diagnostic = new();
diagnostic.Errors.Add(new($"#line={ex.LineNumber}", ex.Message));
return default;
}
return ReadFragment<T>(jsonNode, version, openApiDocument, out diagnostic);
}
/// <inheritdoc/>
public T? ReadFragment<T>(JsonNode input,
OpenApiSpecVersion version,
OpenApiDocument openApiDocument,
out OpenApiDiagnostic diagnostic,
OpenApiReaderSettings? settings = null) where T : IOpenApiElement
{
diagnostic = new();
settings ??= new OpenApiReaderSettings();
var context = new ParsingContext(diagnostic)
{
ExtensionParsers = settings.ExtensionParsers
};
IOpenApiElement? element = null;
try
{
// Parse the OpenAPI element
element = context.ParseFragment<T>(input, version, openApiDocument);
}
catch (OpenApiException ex)
{
diagnostic.Errors.Add(new(ex));
}
// Validate the element
if (element is not null && settings.RuleSet is not null && settings.RuleSet.Rules.Any())
{
var errors = element.Validate(settings.RuleSet);
if (errors is not null)
{
foreach (var item in errors)
{
diagnostic.Errors.Add(item);
}
}
}
return (T?)element;
}
}
}