NelmioApiDocBundle/RouteDescriber/RouteMetadataDescriber.php

99 lines
3.3 KiB
PHP
Raw Normal View History

2016-06-30 23:30:37 +02:00
<?php
/*
2016-12-29 12:09:26 +01:00
* This file is part of the NelmioApiDocBundle package.
2016-06-30 23:30:37 +02:00
*
2016-12-29 12:09:26 +01:00
* (c) Nelmio
2016-06-30 23:30:37 +02:00
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
2016-12-29 12:09:26 +01:00
namespace Nelmio\ApiDocBundle\RouteDescriber;
2016-06-30 23:30:37 +02:00
use EXSyst\Component\Swagger\Operation;
use EXSyst\Component\Swagger\Parameter;
2016-08-01 19:58:57 +02:00
use EXSyst\Component\Swagger\Swagger;
use LogicException;
2016-06-30 23:30:37 +02:00
use Symfony\Component\Routing\Route;
2019-04-10 20:52:45 +02:00
/**
* Should be last route describer executed to make sure all params are set.
*/
2016-11-30 15:04:53 +01:00
final class RouteMetadataDescriber implements RouteDescriberInterface
2016-06-30 23:30:37 +02:00
{
2016-07-15 00:40:30 +02:00
use RouteDescriberTrait;
2016-06-30 23:30:37 +02:00
2016-07-15 00:40:30 +02:00
public function describe(Swagger $api, Route $route, \ReflectionMethod $reflectionMethod)
2016-06-30 23:30:37 +02:00
{
foreach ($this->getOperations($api, $route) as $operation) {
2016-07-29 18:40:56 +02:00
$operation->merge(['schemes' => $route->getSchemes()]);
2016-06-30 23:30:37 +02:00
2016-08-04 22:27:10 +02:00
$requirements = $route->getRequirements();
$compiledRoute = $route->compile();
$existingParams = $this->getRefParams($api, $operation);
2019-04-10 20:52:45 +02:00
2016-12-01 17:19:33 +01:00
// Don't include host requirements
2016-08-04 22:27:10 +02:00
foreach ($compiledRoute->getPathVariables() as $pathVariable) {
2016-12-01 17:19:33 +01:00
if ('_format' === $pathVariable) {
continue;
}
$paramId = $pathVariable.'/path';
$parameter = $existingParams[$paramId] ?? null;
if (null !== $parameter) {
if (!$parameter->getRequired()) {
throw new LogicException(\sprintf('Global parameter "%s" is used as part of route "%s" and must be set as "required"', $pathVariable, $route->getPath()));
}
continue;
2019-04-10 20:52:45 +02:00
}
2016-08-04 22:27:10 +02:00
$parameter = $operation->getParameters()->get($pathVariable, 'path');
$parameter->setRequired(true);
2017-07-03 23:46:15 +02:00
if (null === $parameter->getType()) {
$parameter->setType('string');
}
2016-08-04 22:27:10 +02:00
2019-04-10 20:52:45 +02:00
if (isset($requirements[$pathVariable]) && null === $parameter->getPattern()) {
$parameter->setPattern($requirements[$pathVariable]);
2016-08-04 22:27:10 +02:00
}
2016-06-30 23:30:37 +02:00
}
}
}
/**
* The '$ref' parameters need special handling, since their objects are missing 'name' and 'in'.
*
* @return Parameter[] existing $ref parameters
*/
private function getRefParams(Swagger $api, Operation $operation): array
{
/** @var Parameter[] $globalParams */
$globalParams = $api->getParameters();
$existingParams = [];
foreach ($operation->getParameters() as $id => $parameter) {
$ref = $parameter->getRef();
if (null === $ref) {
// we only concern ourselves with '$ref' parameters, so continue the loop
continue;
}
$ref = \mb_substr($ref, 13); // trim the '#/parameters/' part of ref
if (!isset($globalParams[$ref])) {
// this shouldn't happen during proper configs, but in case of bad config, just ignore it here
continue;
}
$refParameter = $globalParams[$ref];
// param ids are in form {name}/{in}
$existingParams[\sprintf('%s/%s', $refParameter->getName(), $refParameter->getIn())] = $refParameter;
}
return $existingParams;
}
2016-06-30 23:30:37 +02:00
}