forked from zircote/swagger-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OpenApi.php
271 lines (233 loc) · 8.4 KB
/
OpenApi.php
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<?php declare(strict_types=1);
/**
* @license Apache 2.0
*/
namespace OpenApi\Annotations;
use OpenApi\Analysis;
use OpenApi\Generator;
use OpenApi\Util;
/**
* This is the root document object for the API specification.
*
* @see [OAI OpenApi Object](https://github.com/OAI/OpenAPI-Specification/blob/OpenAPI.next/versions/3.0.md#openapi-object)
*
* @Annotation
*/
class OpenApi extends AbstractAnnotation
{
public const VERSION_3_0_0 = '3.0.0';
public const VERSION_3_1_0 = '3.1.0';
public const DEFAULT_VERSION = self::VERSION_3_0_0;
public const SUPPORTED_VERSIONS = [self::VERSION_3_0_0, self::VERSION_3_1_0];
/**
* The semantic version number of the OpenAPI Specification version that the OpenAPI document uses.
*
* The openapi field should be used by tooling specifications and clients to interpret the OpenAPI document.
*
* A version specified via `Generator::setVersion()` will overwrite this value.
*
* This is not related to the API info::version string.
*
* @var string
*/
public $openapi = self::DEFAULT_VERSION;
/**
* Provides metadata about the API. The metadata may be used by tooling as required.
*
* @var Info
*/
public $info = Generator::UNDEFINED;
/**
* An array of <code>@Server</code> objects, which provide connectivity information to a target server.
*
* If not provided, or is an empty array, the default value would be a Server Object with an url value of <code>/</code>.
*
* @var Server[]
*/
public $servers = Generator::UNDEFINED;
/**
* The available paths and operations for the API.
*
* @var PathItem[]
*/
public $paths = Generator::UNDEFINED;
/**
* An element to hold various components for the specification.
*
* @var Components
*/
public $components = Generator::UNDEFINED;
/**
* A declaration of which security mechanisms can be used across the API.
*
* The list of values includes alternative security requirement objects that can be used.
* Only one of the security requirement objects need to be satisfied to authorize a request.
* Individual operations can override this definition.
* To make security optional, an empty security requirement `({})` can be included in the array.
*
* @var array
*/
public $security = Generator::UNDEFINED;
/**
* A list of tags used by the specification with additional metadata.
*
* The order of the tags can be used to reflect on their order by the parsing tools.
* Not all tags that are used by the Operation Object must be declared.
* The tags that are not declared may be organized randomly or based on the tools' logic.
* Each tag name in the list must be unique.
*
* @var Tag[]
*/
public $tags = Generator::UNDEFINED;
/**
* Additional external documentation.
*
* @var ExternalDocumentation
*/
public $externalDocs = Generator::UNDEFINED;
/**
* The available webhooks for the API.
*
* @var Webhook[]
*/
public $webhooks = Generator::UNDEFINED;
/**
* @var Analysis
*/
public $_analysis = Generator::UNDEFINED;
/**
* @inheritdoc
*/
public static $_required = ['openapi', 'info'];
/**
* @inheritdoc
*/
public static $_nested = [
Info::class => 'info',
Server::class => ['servers'],
PathItem::class => ['paths', 'path'],
Components::class => 'components',
Tag::class => ['tags'],
ExternalDocumentation::class => 'externalDocs',
Webhook::class => ['webhooks', 'webhook'],
Attachable::class => ['attachables'],
];
/**
* @inheritdoc
*/
public static $_types = [];
/**
* @inheritdoc
*/
public function validate(?array $stack = null, ?array $skip = null, string $ref = '', $context = null): bool
{
if ($stack !== null || $skip !== null || $ref !== '') {
$this->_context->logger->warning('Nested validation for ' . $this->identity() . ' not allowed');
return false;
}
if (!in_array($this->openapi, self::SUPPORTED_VERSIONS)) {
$this->_context->logger->warning('Unsupported OpenAPI version "' . $this->openapi . '". Allowed versions are: ' . implode(', ', self::SUPPORTED_VERSIONS));
return false;
}
/* paths is optional in 3.1.0 */
if ($this->openapi === self::VERSION_3_0_0 && Generator::isDefault($this->paths)) {
$this->_context->logger->warning('Required @OA\PathItem() not found');
}
if ($this->openapi === self::VERSION_3_1_0
&& Generator::isDefault($this->paths)
&& Generator::isDefault($this->webhooks)
&& Generator::isDefault($this->components)
) {
$this->_context->logger->warning("At least one of 'Required @OA\PathItem(), @OA\Components() or @OA\Webhook() not found'");
return false;
}
return parent::validate([], [], '#', new \stdClass());
}
/**
* Save the OpenAPI documentation to a file.
*/
public function saveAs(string $filename, string $format = 'auto'): void
{
if ($format === 'auto') {
$format = strtolower(substr($filename, -5)) === '.json' ? 'json' : 'yaml';
}
if (strtolower($format) === 'json') {
$content = $this->toJson();
} else {
$content = $this->toYaml();
}
if (file_put_contents($filename, $content) === false) {
throw new \Exception('Failed to saveAs("' . $filename . '", "' . $format . '")');
}
}
/**
* Look up an annotation with a $ref url.
*
* @param string $ref The $ref value, for example: "#/components/schemas/Product"
*/
public function ref(string $ref)
{
if (substr($ref, 0, 2) !== '#/') {
// @todo Add support for external (http) refs?
throw new \Exception('Unsupported $ref "' . $ref . '", it should start with "#/"');
}
return $this->resolveRef($ref, '#/', $this, []);
}
/**
* Recursive helper for ref().
*
* @param array|AbstractAnnotation $container
*/
private static function resolveRef(string $ref, string $resolved, $container, array $mapping)
{
if ($ref === $resolved) {
return $container;
}
$path = substr($ref, strlen($resolved));
$slash = strpos($path, '/');
$subpath = $slash === false ? $path : substr($path, 0, $slash);
$property = Util::refDecode($subpath);
$unresolved = $slash === false ? $resolved . $subpath : $resolved . $subpath . '/';
if (is_object($container)) {
if (property_exists($container, $property) === false) {
throw new \Exception('$ref "' . $ref . '" not found');
}
if ($slash === false) {
return $container->{$property};
}
$mapping = [];
if ($container instanceof AbstractAnnotation) {
foreach ($container::$_nested as $nestedClass => $nested) {
if (is_string($nested) === false && count($nested) === 2 && $nested[0] === $property) {
$mapping[$nestedClass] = $nested[1];
}
}
}
return self::resolveRef($ref, $unresolved, $container->{$property}, $mapping);
} elseif (is_array($container)) {
if (array_key_exists($property, $container)) {
return self::resolveRef($ref, $unresolved, $container[$property], []);
}
foreach ($mapping as $nestedClass => $keyField) {
foreach ($container as $key => $item) {
if (is_numeric($key) && is_object($item) && $item instanceof $nestedClass && (string) $item->{$keyField} === $property) {
return self::resolveRef($ref, $unresolved, $item, []);
}
}
}
}
throw new \Exception('$ref "' . $unresolved . '" not found');
}
/**
* @inheritdoc
*/
#[\ReturnTypeWillChange]
public function jsonSerialize()
{
$data = parent::jsonSerialize();
if (false === $this->_context->isVersion(OpenApi::VERSION_3_1_0)) {
unset($data->webhooks);
}
return $data;
}
}