NelmioApiDocBundle/RouteDescriber/RouteDescriberTrait.php
2020-09-20 20:38:43 +02:00

52 lines
1.2 KiB
PHP

<?php
/*
* This file is part of the NelmioApiDocBundle package.
*
* (c) Nelmio
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Nelmio\ApiDocBundle\RouteDescriber;
use Nelmio\ApiDocBundle\OpenApiPhp\Util;
use OpenApi\Annotations as OA;
use OpenApi\Annotations\OpenApi;
use Symfony\Component\Routing\Route;
trait RouteDescriberTrait
{
/**
* @internal
*
* @return OA\Operation[]
*/
private function getOperations(OpenApi $api, Route $route): array
{
$operations = [];
$path = Util::getPath($api, $this->normalizePath($route->getPath()));
$methods = $route->getMethods() ?: Util::OPERATIONS;
foreach ($methods as $method) {
$method = strtolower($method);
if (!in_array($method, Util::OPERATIONS)) {
continue;
}
$operations[] = Util::getOperation($path, $method);
}
return $operations;
}
private function normalizePath(string $path): string
{
if ('.{_format}' === substr($path, -10)) {
$path = substr($path, 0, -10);
}
return $path;
}
}