-
Notifications
You must be signed in to change notification settings - Fork 253
/
Copy pathOpenApiYamlDocumentReader.cs
207 lines (183 loc) · 7.67 KB
/
OpenApiYamlDocumentReader.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
205
206
207
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.Json.Nodes;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.OpenApi.Exceptions;
using Microsoft.OpenApi.Extensions;
using Microsoft.OpenApi.Interfaces;
using Microsoft.OpenApi.Models;
using Microsoft.OpenApi.Readers.Interface;
using Microsoft.OpenApi.Readers.Services;
using Microsoft.OpenApi.Services;
using Microsoft.OpenApi.Validations;
namespace Microsoft.OpenApi.Readers
{
/// <summary>
/// Service class for converting contents of TextReader into OpenApiDocument instances
/// </summary>
internal class OpenApiYamlDocumentReader : IOpenApiReader<JsonNode, OpenApiDiagnostic>
{
private readonly OpenApiReaderSettings _settings;
/// <summary>
/// Create stream reader with custom settings if desired.
/// </summary>
/// <param name="settings"></param>
public OpenApiYamlDocumentReader(OpenApiReaderSettings settings = null)
{
_settings = settings ?? new OpenApiReaderSettings();
}
/// <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="diagnostic">Returns diagnostic object containing errors detected during parsing</param>
/// <returns>Instance of newly created OpenApiDocument</returns>
public OpenApiDocument Read(JsonNode input, out OpenApiDiagnostic diagnostic)
{
diagnostic = new OpenApiDiagnostic();
var context = new ParsingContext(diagnostic)
{
ExtensionParsers = _settings.ExtensionParsers,
BaseUrl = _settings.BaseUrl
};
OpenApiDocument document = null;
try
{
// Parse the OpenAPI Document
document = context.Parse(input);
if (_settings.LoadExternalRefs)
{
throw new InvalidOperationException("Cannot load external refs using the synchronous Read, use ReadAsync instead.");
}
ResolveReferences(diagnostic, document);
}
catch (OpenApiException ex)
{
diagnostic.Errors.Add(new OpenApiError(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 document;
}
public async Task<ReadResult> ReadAsync(JsonNode input, CancellationToken cancellationToken = default)
{
var diagnostic = new OpenApiDiagnostic();
var context = new ParsingContext(diagnostic)
{
ExtensionParsers = _settings.ExtensionParsers,
BaseUrl = _settings.BaseUrl
};
OpenApiDocument document = null;
try
{
// Parse the OpenAPI Document
document = context.Parse(input);
if (_settings.LoadExternalRefs)
{
await LoadExternalRefs(document, cancellationToken);
}
ResolveReferences(diagnostic, document);
}
catch (OpenApiException ex)
{
diagnostic.Errors.Add(new OpenApiError(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 ReadResult()
{
OpenApiDocument = document,
OpenApiDiagnostic = diagnostic
};
}
private async Task LoadExternalRefs(OpenApiDocument document, CancellationToken cancellationToken)
{
// Create workspace for all documents to live in.
var openApiWorkSpace = new OpenApiWorkspace();
// Load this root document into the workspace
var streamLoader = new DefaultStreamLoader(_settings.BaseUrl);
var workspaceLoader = new OpenApiWorkspaceLoader(openApiWorkSpace, _settings.CustomExternalLoader ?? streamLoader, _settings);
await workspaceLoader.LoadAsync(new OpenApiReference() { ExternalResource = "/" }, document, cancellationToken);
}
private void ResolveReferences(OpenApiDiagnostic diagnostic, OpenApiDocument document)
{
List<OpenApiError> errors = new List<OpenApiError>();
// Resolve References if requested
switch (_settings.ReferenceResolution)
{
case ReferenceResolutionSetting.ResolveAllReferences:
throw new ArgumentException("Resolving external references is not supported");
case ReferenceResolutionSetting.ResolveLocalReferences:
errors.AddRange(document.ResolveReferences());
break;
case ReferenceResolutionSetting.DoNotResolveReferences:
break;
}
foreach (var item in errors)
{
diagnostic.Errors.Add(item);
}
}
/// <summary>
/// Reads the stream input and parses the fragment of an OpenAPI description into an Open API Element.
/// </summary>
/// <param name="input">TextReader containing OpenAPI description to parse.</param>
/// <param name="version">Version of the OpenAPI specification that the fragment conforms to.</param>
/// <param name="diagnostic">Returns diagnostic object containing errors detected during parsing</param>
/// <returns>Instance of newly created OpenApiDocument</returns>
public T ReadFragment<T>(JsonNode input, OpenApiSpecVersion version, out OpenApiDiagnostic diagnostic) where T : IOpenApiElement
{
diagnostic = new OpenApiDiagnostic();
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 OpenApiError(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;
}
}
}