forked from zircote/swagger-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAugmentRefs.php
More file actions
104 lines (92 loc) · 3.82 KB
/
Copy pathAugmentRefs.php
File metadata and controls
104 lines (92 loc) · 3.82 KB
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
<?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
{
use Concerns\RefTrait;
public function __invoke(Analysis $analysis): void
{
$this->resolveAllOfRefs($analysis);
$this->resolveFQCNRefs($analysis);
$this->removeDuplicateRefs($analysis);
}
/**
* Update refs broken due to <code>allOf</code> augmenting.
*/
protected function resolveAllOfRefs(Analysis $analysis): void
{
$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 property 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 (str_starts_with((string) $annotation->ref, $origRef)) {
$annotation->ref = str_replace($origRef, $updatedRef, (string) $annotation->ref);
}
}
}
}
}
}
protected function resolveFQCNRefs(Analysis $analysis): void
{
$annotations = $analysis->getAnnotationsOfType(OA\Components::componentTypes());
foreach ($annotations as $annotation) {
if (property_exists($annotation, 'ref') && !Generator::isDefault($annotation->ref) && is_string($annotation->ref) && !$this->isRef($annotation->ref)) {
// check if we can resolve the ref to a component
$resolved = false;
foreach (OA\Components::componentTypes() as $type) {
if ($refSchema = $analysis->getAnnotationForSource($annotation->ref, $type)) {
$resolved = true;
$annotation->ref = OA\Components::ref($refSchema);
}
}
if (!$resolved && ($refAnnotation = $analysis->getAnnotationForSource($annotation->ref, $annotation::class))) {
$annotation->ref = OA\Components::ref($refAnnotation);
}
}
}
}
protected function removeDuplicateRefs(Analysis $analysis): void
{
$schemas = $analysis->getAnnotationsOfType(OA\Schema::class);
foreach ($schemas as $schema) {
if (!Generator::isDefault($schema->allOf)) {
$refs = [];
$dupes = [];
foreach ($schema->allOf as $ii => $allOfSchema) {
if (!Generator::isDefault($allOfSchema->ref)) {
if (in_array($allOfSchema->ref, $refs)) {
$dupes[] = $allOfSchema->ref;
$analysis->removeAnnotation($allOfSchema);
unset($schema->allOf[$ii]);
continue;
}
$refs[] = $allOfSchema->ref;
}
}
if ($dupes) {
$schema->allOf = array_values($schema->allOf);
}
}
}
}
}