-
Notifications
You must be signed in to change notification settings - Fork 242
/
Copy pathOpenApiJsonReader.cs
204 lines (184 loc) · 7.83 KB
/
OpenApiJsonReader.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
192
193
194
195
196
197
198
199
200
201
202
203
204
// 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.Services;
using Microsoft.OpenApi.Interfaces;
using Microsoft.OpenApi.Reader.Services;
using System.Collections.Generic;
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 stream input and parses it into an Open API document.
/// </summary>
/// <param name="input">TextReader containing OpenAPI description to parse.</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(TextReader input,
OpenApiReaderSettings settings = null,
CancellationToken cancellationToken = default)
{
JsonNode jsonNode;
var diagnostic = new OpenApiDiagnostic();
settings ??= new OpenApiReaderSettings();
// Parse the JSON text in the TextReader into JsonNodes
try
{
jsonNode = LoadJsonNodes(input);
}
catch (JsonException ex)
{
diagnostic.Errors.Add(new OpenApiError($"#line={ex.LineNumber}", $"Please provide the correct format, {ex.Message}"));
return new ReadResult
{
OpenApiDocument = null,
OpenApiDiagnostic = diagnostic
};
}
return await ReadAsync(jsonNode, settings, cancellationToken: cancellationToken);
}
/// <summary>
/// Parses the JsonNode input into an Open API document.
/// </summary>
/// <param name="jsonNode">The JsonNode input.</param>
/// <param name="settings">The Reader settings to be used during parsing.</param>
/// <param name="format">The OpenAPI format.</param>
/// <param name="cancellationToken">Propagates notifications that operations should be cancelled.</param>
/// <returns></returns>
public async Task<ReadResult> ReadAsync(JsonNode jsonNode,
OpenApiReaderSettings settings,
string format = null,
CancellationToken cancellationToken = default)
{
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);
if (settings.LoadExternalRefs)
{
var diagnosticExternalRefs = await LoadExternalRefsAsync(document, cancellationToken, settings, format);
// Merge diagnostics of external reference
if (diagnosticExternalRefs != null)
{
diagnostic.Errors.AddRange(diagnosticExternalRefs.Errors);
diagnostic.Warnings.AddRange(diagnosticExternalRefs.Warnings);
}
}
document.SetReferenceHostDocument();
}
catch (OpenApiException ex)
{
diagnostic.Errors.Add(new(ex));
}
// Validate the document
if (settings.RuleSet != null && settings.RuleSet.Rules.Any())
{
var openApiErrors = document.Validate(settings.RuleSet);
foreach (var item in openApiErrors.OfType<OpenApiValidatorError>())
{
diagnostic.Errors.Add(item);
}
foreach (var item in openApiErrors.OfType<OpenApiValidatorWarning>())
{
diagnostic.Warnings.Add(item);
}
}
return new()
{
OpenApiDocument = document,
OpenApiDiagnostic = diagnostic
};
}
/// <inheritdoc/>
public T ReadFragment<T>(TextReader input,
OpenApiSpecVersion version,
out OpenApiDiagnostic diagnostic,
OpenApiReaderSettings settings = null) where T : IOpenApiElement
{
JsonNode jsonNode;
// Parse the JSON
try
{
jsonNode = LoadJsonNodes(input);
}
catch (JsonException ex)
{
diagnostic = new();
diagnostic.Errors.Add(new($"#line={ex.LineNumber}", ex.Message));
return default;
}
return ReadFragment<T>(jsonNode, version, out diagnostic);
}
/// <inheritdoc/>
public T ReadFragment<T>(JsonNode input,
OpenApiSpecVersion version,
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);
}
catch (OpenApiException ex)
{
diagnostic.Errors.Add(new(ex));
}
// Validate the element
if (settings.RuleSet != null && settings.RuleSet.Rules.Any())
{
var errors = element.Validate(settings.RuleSet);
foreach (var item in errors)
{
diagnostic.Errors.Add(item);
}
}
return (T)element;
}
private JsonNode LoadJsonNodes(TextReader input)
{
var nodes = JsonNode.Parse(input.ReadToEnd());
return nodes;
}
private async Task<OpenApiDiagnostic> LoadExternalRefsAsync(OpenApiDocument document, CancellationToken cancellationToken, OpenApiReaderSettings settings, string format = null)
{
// Create workspace for all documents to live in.
var baseUrl = settings.BaseUrl ?? new Uri(OpenApiConstants.BaseRegistryUri);
var openApiWorkSpace = new OpenApiWorkspace(baseUrl);
// Load this root document into the workspace
var streamLoader = new DefaultStreamLoader(settings.BaseUrl);
var workspaceLoader = new OpenApiWorkspaceLoader(openApiWorkSpace, settings.CustomExternalLoader ?? streamLoader, settings);
return await workspaceLoader.LoadAsync(new OpenApiReference() { ExternalResource = "/" }, document, format ?? OpenApiConstants.Json, null, cancellationToken);
}
}
}