OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
API
/
vendor
/
zircote
/
swagger-php
/
src
/
Processors
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/07/2024 04:34:30 AM
rwxr-xr-x
📄
AugmentParameters.php
3.21 KB
08/07/2024 04:34:30 AM
rw-r--r--
📄
AugmentProperties.php
8.44 KB
08/07/2024 04:34:30 AM
rw-r--r--
📄
AugmentRefs.php
3.88 KB
08/07/2024 04:34:30 AM
rw-r--r--
📄
AugmentRequestBody.php
1.43 KB
08/07/2024 04:34:30 AM
rw-r--r--
📄
AugmentSchemas.php
5.42 KB
08/07/2024 04:34:30 AM
rw-r--r--
📄
BuildPaths.php
2.21 KB
08/07/2024 04:34:30 AM
rw-r--r--
📄
CleanUnmerged.php
995 bytes
08/07/2024 04:34:30 AM
rw-r--r--
📄
CleanUnusedComponents.php
3.56 KB
08/07/2024 04:34:30 AM
rw-r--r--
📁
Concerns
-
08/07/2024 04:34:51 AM
rwxr-xr-x
📄
DocBlockDescriptions.php
3.1 KB
08/07/2024 04:34:30 AM
rw-r--r--
📄
ExpandClasses.php
1.68 KB
08/07/2024 04:34:30 AM
rw-r--r--
📄
ExpandEnums.php
3.64 KB
08/07/2024 04:34:30 AM
rw-r--r--
📄
ExpandInterfaces.php
2.09 KB
08/07/2024 04:34:30 AM
rw-r--r--
📄
ExpandTraits.php
3.54 KB
08/07/2024 04:34:30 AM
rw-r--r--
📄
MergeIntoComponents.php
1.08 KB
08/07/2024 04:34:30 AM
rw-r--r--
📄
MergeIntoOpenApi.php
1.88 KB
08/07/2024 04:34:30 AM
rw-r--r--
📄
MergeJsonContent.php
2.07 KB
08/07/2024 04:34:30 AM
rw-r--r--
📄
MergeXmlContent.php
2.05 KB
08/07/2024 04:34:30 AM
rw-r--r--
📄
OperationId.php
2.1 KB
08/07/2024 04:34:30 AM
rw-r--r--
📄
ProcessorInterface.php
151 bytes
08/07/2024 04:34:30 AM
rw-r--r--
Editing: AugmentRefs.php
Close
<?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); $this->removeDuplicateRefs($analysis); } /** * Update refs broken due to `allOf` augmenting. */ protected function resolveAllOfRefs(Analysis $analysis): void { /** @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): void { /** @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); } elseif ($refAnnotation = $analysis->getAnnotationForSource($annotation->ref, get_class($annotation))) { $annotation->ref = OA\Components::ref($refAnnotation); } } } } protected function removeDuplicateRefs(Analysis $analysis): void { /** @var OA\Schema[] $schemas */ $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->annotations->detach($allOfSchema); unset($schema->allOf[$ii]); continue; } $refs[] = $allOfSchema->ref; } } if ($dupes) { $schema->allOf = array_values($schema->allOf); } } } } }