-
Notifications
You must be signed in to change notification settings - Fork 251
/
Copy pathOpenApiLicenseDeserializer.cs
45 lines (38 loc) · 1.46 KB
/
OpenApiLicenseDeserializer.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
using System;
using Microsoft.OpenApi.Extensions;
using Microsoft.OpenApi.Models;
using Microsoft.OpenApi.Reader.ParseNodes;
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<OpenApiLicense> _licenseFixedFields = new()
{
{
"name",
(o, n, _) => o.Name = n.GetScalarValue()
},
{
"url",
(o, n, _) => o.Url = new(n.GetScalarValue(), UriKind.RelativeOrAbsolute)
},
};
private static readonly PatternFieldMap<OpenApiLicense> _licensePatternFields = new()
{
{s => s.StartsWith(OpenApiConstants.ExtensionFieldNamePrefix, StringComparison.OrdinalIgnoreCase), (o, p, n, _) => o.AddExtension(p, LoadExtension(p, n))}
};
public static OpenApiLicense LoadLicense(ParseNode node, OpenApiDocument hostDocument)
{
var mapNode = node.CheckMapNode("OpenApiLicense");
var license = new OpenApiLicense();
ParseMap(mapNode, license, _licenseFixedFields, _licensePatternFields, doc: hostDocument);
return license;
}
}
}