-
Notifications
You must be signed in to change notification settings - Fork 941
/
Copy pathAugmentRefs.php
72 lines (62 loc) · 2.63 KB
/
AugmentRefs.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
<?php declare(strict_types=1);
/**
* @license Apache 2.0
*/
namespace OpenApi\Processors;
use OpenApi\Analysis;
use OpenApi\Annotations as OA;
use OpenApi\Generator;
class AugmentRefs implements ProcessorInterface
{
use Concerns\RefTrait;
public function __invoke(Analysis $analysis)
{
$this->resolveAllOfRefs($analysis);
$this->resolveFQCNRefs($analysis);
}
/**
* Update refs broken due to `allOf` augmenting.
*/
protected function resolveAllOfRefs(Analysis $analysis)
{
/** @var OA\Schema[] $schemas */
$schemas = $analysis->getAnnotationsOfType(OA\Schema::class);
// ref rewriting
$updatedRefs = [];
foreach ($schemas as $schema) {
if (!Generator::isDefault($schema->allOf)) {
// do we have to keep track of properties refs that need updating?
foreach ($schema->allOf as $ii => $allOfSchema) {
if (!Generator::isDefault($allOfSchema->properties)) {
$updatedRefs[OA\Components::ref($schema->schema . '/properties', false)] = OA\Components::ref($schema->schema . '/allOf/' . $ii . '/properties', false);
break;
}
}
}
}
if ($updatedRefs) {
foreach ($analysis->annotations as $annotation) {
if (property_exists($annotation, 'ref') && !Generator::isDefault($annotation->ref) && $annotation->ref !== null) {
foreach ($updatedRefs as $origRef => $updatedRef) {
if (0 === strpos($annotation->ref, $origRef)) {
$annotation->ref = str_replace($origRef, $updatedRef, $annotation->ref);
}
}
}
}
}
}
protected function resolveFQCNRefs(Analysis $analysis)
{
/** @var OA\AbstractAnnotation[] $annotations */
$annotations = $analysis->getAnnotationsOfType([OA\Examples::class, OA\Header::class, OA\Link::class, OA\Parameter::class, OA\PathItem::class, OA\RequestBody::class, OA\Response::class, OA\Schema::class, OA\SecurityScheme::class]);
foreach ($annotations as $annotation) {
if (property_exists($annotation, 'ref') && !Generator::isDefault($annotation->ref) && is_string($annotation->ref) && !$this->isRef($annotation->ref)) {
// check if we have a schema for this
if ($refSchema = $analysis->getSchemaForSource($annotation->ref)) {
$annotation->ref = OA\Components::ref($refSchema);
}
}
}
}
}