56 lines
1.9 KiB
PHP
56 lines
1.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Nelmio\ApiDocBundle\RouteDescriber;
|
|
|
|
use Nelmio\ApiDocBundle\Describer\ModelRegistryAwareInterface;
|
|
use Nelmio\ApiDocBundle\Describer\ModelRegistryAwareTrait;
|
|
use Nelmio\ApiDocBundle\RouteDescriber\RouteArgumentDescriber\RouteArgumentDescriberInterface;
|
|
use OpenApi\Annotations as OA;
|
|
use ReflectionMethod;
|
|
use Symfony\Component\HttpKernel\ControllerMetadata\ArgumentMetadataFactoryInterface;
|
|
use Symfony\Component\Routing\Route;
|
|
|
|
final class RouteArgumentDescriber implements RouteDescriberInterface, ModelRegistryAwareInterface
|
|
{
|
|
use RouteDescriberTrait;
|
|
use ModelRegistryAwareTrait;
|
|
|
|
/**
|
|
* @param RouteArgumentDescriberInterface[] $inlineParameterDescribers
|
|
*/
|
|
public function __construct(
|
|
private ArgumentMetadataFactoryInterface $argumentMetadataFactory,
|
|
private iterable $inlineParameterDescribers
|
|
) {
|
|
}
|
|
|
|
public function describe(OA\OpenApi $api, Route $route, ReflectionMethod $reflectionMethod): void
|
|
{
|
|
$controller = $route->getDefault('_controller');
|
|
|
|
try {
|
|
$argumentMetaDataList = $this->argumentMetadataFactory->createArgumentMetadata($controller, $reflectionMethod);
|
|
} catch (\ReflectionException) {
|
|
return;
|
|
}
|
|
|
|
if (!$argumentMetaDataList) {
|
|
return;
|
|
}
|
|
|
|
foreach ($this->getOperations($api, $route) as $operation) {
|
|
foreach ($argumentMetaDataList as $argumentMetadata) {
|
|
foreach ($this->inlineParameterDescribers as $inlineParameterDescriber) {
|
|
if ($inlineParameterDescriber instanceof ModelRegistryAwareInterface) {
|
|
$inlineParameterDescriber->setModelRegistry($this->modelRegistry);
|
|
}
|
|
|
|
$inlineParameterDescriber->describe($argumentMetadata, $operation);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|