-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathPathItem.php
218 lines (201 loc) · 7.84 KB
/
PathItem.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
<?php
/**
* @copyright Copyright (c) 2018 Carsten Brandt <[email protected]> and contributors
* @license https://github.com/cebe/php-openapi/blob/master/LICENSE
*/
namespace cebe\openapi\spec;
use cebe\openapi\ReferenceContext;
use cebe\openapi\SpecBaseObject;
use cebe\openapi\SpecObjectInterface;
use cebe\openapi\json\JsonPointer;
/**
* Describes the operations available on a single path.
*
* A Path Item MAY be empty, due to ACL constraints. The path itself is still exposed to the documentation
* viewer but they will not know which operations and parameters are available.
*
* @link https://github.com/OAI/OpenAPI-Specification/blob/3.0.2/versions/3.0.2.md#pathItemObject
*
* @property string $summary
* @property string $description
* @property Operation|null $get
* @property Operation|null $put
* @property Operation|null $post
* @property Operation|null $delete
* @property Operation|null $options
* @property Operation|null $head
* @property Operation|null $patch
* @property Operation|null $trace
* @property Server[] $servers
* @property Parameter[]|Reference[] $parameters
*
*/
class PathItem extends SpecBaseObject
{
/**
* @var Reference|null
*/
private $_ref;
/**
* @return array array of attributes available in this object.
*/
protected function attributes(): array
{
return [
'summary' => Type::STRING,
'description' => Type::STRING,
'get' => Operation::class,
'put' => Operation::class,
'post' => Operation::class,
'delete' => Operation::class,
'options' => Operation::class,
'head' => Operation::class,
'patch' => Operation::class,
'trace' => Operation::class,
'servers' => [Server::class],
'parameters' => [Parameter::class],
];
}
/**
* Create an object from spec data.
* @param array $data spec data read from YAML or JSON
* @throws \cebe\openapi\exceptions\TypeErrorException in case invalid data is supplied.
*/
public function __construct(array $data)
{
if (isset($data['$ref'])) {
// Allows for an external definition of this path item.
// $ref in a Path Item Object is not a Reference.
// https://github.com/OAI/OpenAPI-Specification/issues/1038
$this->_ref = new Reference(['$ref' => $data['$ref']], PathItem::class);
unset($data['$ref']);
}
parent::__construct($data);
}
/**
* @return mixed returns the serializable data of this object for converting it
* to JSON or YAML.
*/
public function getSerializableData()
{
$data = parent::getSerializableData();
if ($this->_ref instanceof Reference) {
$data->{'$ref'} = $this->_ref->getReference();
}
if (isset($data->servers) && empty($data->servers)) {
unset($data->servers);
}
if (isset($data->parameters) && empty($data->parameters)) {
unset($data->parameters);
}
return $data;
}
/**
* Perform validation on this object, check data against OpenAPI Specification rules.
*/
protected function performValidation()
{
// no required arguments
}
/**
* Return all operations of this Path.
* @return Operation[]
*/
public function getOperations()
{
$operations = [];
foreach ($this->attributes() as $attribute => $type) {
if ($type === Operation::class && isset($this->$attribute)) {
$operations[$attribute] = $this->$attribute;
}
}
return $operations;
}
/**
* Allows for an external definition of this path item. The referenced structure MUST be in the format of a
* PathItem Object. The properties of the referenced structure are merged with the local Path Item Object.
* If the same property exists in both, the referenced structure and the local one, this is a conflict.
* In this case the behavior is *undefined*.
* @return Reference|null
*/
public function getReference(): ?Reference
{
return $this->_ref;
}
/**
* Set context for all Reference Objects in this object.
*/
public function setReferenceContext(ReferenceContext $context)
{
if ($this->_ref instanceof Reference) {
$this->_ref->setContext($context);
}
parent::setReferenceContext($context);
}
/**
* Resolves all Reference Objects in this object and replaces them with their resolution.
* @throws \cebe\openapi\exceptions\UnresolvableReferenceException in case resolving a reference fails.
*/
public function resolveReferences(?ReferenceContext $context = null)
{
if ($this->_ref instanceof Reference) {
$pathItem = $this->_ref->resolve($context);
$this->_ref = null;
// The properties of the referenced structure are merged with the local Path Item Object.
foreach (self::attributes() as $attribute => $type) {
if (!isset($pathItem->$attribute)) {
continue;
}
// If the same property exists in both, the referenced structure and the local one, this is a conflict.
if (isset($this->$attribute) && !empty($this->$attribute)) {
$this->addError("Conflicting properties, property '$attribute' exists in local PathItem and also in the referenced one.");
}
$this->$attribute = $pathItem->$attribute;
// resolve references in all properties assinged from the reference
// use the referenced object context in this case
if ($this->$attribute instanceof Reference) {
$referencedObject = $this->$attribute->resolve();
$this->$attribute = $referencedObject;
if (!$referencedObject instanceof Reference && $referencedObject !== null) {
$referencedObject->resolveReferences();
}
} elseif ($this->$attribute instanceof SpecObjectInterface) {
$this->$attribute->resolveReferences();
} elseif (is_array($this->$attribute)) {
foreach ($this->$attribute as $k => $item) {
if ($item instanceof Reference) {
$referencedObject = $item->resolve();
$this->$attribute = [$k => $referencedObject] + $this->$attribute;
if (!$referencedObject instanceof Reference && $referencedObject !== null) {
$referencedObject->resolveReferences();
}
} elseif ($item instanceof SpecObjectInterface) {
$item->resolveReferences();
}
}
}
}
if ($pathItem instanceof SpecBaseObject) {
foreach ($pathItem->getExtensions() as $extensionKey => $extension) {
$this->{$extensionKey} = $extension;
}
}
}
parent::resolveReferences($context);
}
/**
* Provide context information to the object.
*
* Context information contains a reference to the base object where it is contained in
* as well as a JSON pointer to its position.
* @param SpecObjectInterface $baseDocument
* @param JsonPointer $jsonPointer
*/
public function setDocumentContext(SpecObjectInterface $baseDocument, JsonPointer $jsonPointer)
{
parent::setDocumentContext($baseDocument, $jsonPointer);
if ($this->_ref instanceof Reference) {
$this->_ref->setDocumentContext($baseDocument, $jsonPointer->append('$ref'));
}
}
}