mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 23:59:26 +03:00
49 lines
1.1 KiB
PHP
49 lines
1.1 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\Routing;
|
|
|
|
use Symfony\Component\Routing\Route;
|
|
use Symfony\Component\Routing\RouteCollection;
|
|
|
|
final class FilteredRouteCollectionBuilder
|
|
{
|
|
private $pathPatterns;
|
|
|
|
public function __construct(array $pathPatterns = [])
|
|
{
|
|
$this->pathPatterns = $pathPatterns;
|
|
}
|
|
|
|
public function filter(RouteCollection $routes): RouteCollection
|
|
{
|
|
$filteredRoutes = new RouteCollection();
|
|
foreach ($routes->all() as $name => $route) {
|
|
if ($this->match($route)) {
|
|
$filteredRoutes->add($name, $route);
|
|
}
|
|
}
|
|
|
|
return $filteredRoutes;
|
|
}
|
|
|
|
private function match(Route $route): bool
|
|
{
|
|
foreach ($this->pathPatterns as $pathPattern) {
|
|
if (!preg_match('{'.$pathPattern.'}', $route->getPath())) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|