-
Notifications
You must be signed in to change notification settings - Fork 251
/
Copy pathOpenApiRequestBodyReference.cs
125 lines (110 loc) · 4.24 KB
/
OpenApiRequestBodyReference.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
using System;
using System.Collections.Generic;
using Microsoft.OpenApi.Interfaces;
using Microsoft.OpenApi.Writers;
namespace Microsoft.OpenApi.Models.References
{
/// <summary>
/// Request Body Object Reference.
/// </summary>
public class OpenApiRequestBodyReference : OpenApiRequestBody, IOpenApiReferenceableWithTarget<OpenApiRequestBody>
{
internal OpenApiRequestBody _target;
private readonly OpenApiReference _reference;
private string _description;
/// <summary>
/// Gets the target request body.
/// </summary>
/// <remarks>
/// If the reference is not resolved, this will return null.
/// </remarks>
public OpenApiRequestBody Target
{
get
{
_target ??= Reference.HostDocument.ResolveReferenceTo<OpenApiRequestBody>(_reference);
OpenApiRequestBody resolved = new OpenApiRequestBody(_target);
if (!string.IsNullOrEmpty(_description)) resolved.Description = _description;
return resolved;
}
}
/// <summary>
/// Constructor initializing the reference object.
/// </summary>
/// <param name="referenceId">The reference Id.</param>
/// <param name="hostDocument">The host OpenAPI document.</param>
/// <param name="externalResource">Optional: External resource in the reference.
/// It may be:
/// 1. a absolute/relative file path, for example: ../commons/pet.json
/// 2. a Url, for example: http://localhost/pet.json
/// </param>
public OpenApiRequestBodyReference(string referenceId, OpenApiDocument hostDocument, string externalResource = null)
{
Utils.CheckArgumentNullOrEmpty(referenceId);
_reference = new OpenApiReference()
{
Id = referenceId,
HostDocument = hostDocument,
Type = ReferenceType.RequestBody,
ExternalResource = externalResource
};
Reference = _reference;
}
internal OpenApiRequestBodyReference(OpenApiRequestBody target, string referenceId)
{
_target = target;
_reference = new OpenApiReference()
{
Id = referenceId,
Type = ReferenceType.RequestBody,
};
}
/// <inheritdoc/>
public override string Description
{
get => string.IsNullOrEmpty(_description) ? Target.Description : _description;
set => _description = value;
}
/// <inheritdoc/>
public override IDictionary<string, OpenApiMediaType> Content { get => Target.Content; set => Target.Content = value; }
/// <inheritdoc/>
public override bool Required { get => Target.Required; set => Target.Required = value; }
/// <inheritdoc/>
public override IDictionary<string, IOpenApiExtension> Extensions { get => Target.Extensions; set => Target.Extensions = value; }
/// <inheritdoc/>
public override void SerializeAsV3(IOpenApiWriter writer)
{
if (!writer.GetSettings().ShouldInlineReference(_reference))
{
_reference.SerializeAsV3(writer);
return;
}
else
{
SerializeInternal(writer, (writer, element) => element.SerializeAsV3(writer));
}
}
/// <inheritdoc/>
public override void SerializeAsV31(IOpenApiWriter writer)
{
if (!writer.GetSettings().ShouldInlineReference(_reference))
{
_reference.SerializeAsV31(writer);
return;
}
else
{
SerializeInternal(writer, (writer, element) => element.SerializeAsV31(writer));
}
}
/// <inheritdoc/>
private void SerializeInternal(IOpenApiWriter writer,
Action<IOpenApiWriter, IOpenApiReferenceable> action)
{
Utils.CheckArgumentNull(writer);
action(writer, Target);
}
}
}