53

我有一个实现所有routes/URL(s)的控制器。我的想法是在所有帮助页面上提供一个通用索引。

有没有办法获取控制器(从控制器内)定义的所有路由Symfony2

4

6 回答 6

132

您可以做的是将 cmd 与(最高 SF2.6)一起使用

php app/console router:debug

对于 SF 2.7,命令是

php app/console debug:router

对于 SF 3.0,命令是

php bin/console debug:router

它向您显示所有路线。

如果您为每个控制器定义一个前缀(我推荐),您可以例如使用

php app/console router:debug | grep "<prefixhere>"

显示所有匹配的路线

要显示获取控制器中的所有路由,输出基本相同,我将在控制器中使用以下内容(它与 router:debug 命令中使用的方法相同) symfony 组件

/**
 * @Route("/routes", name="routes")
 * @Method("GET")
 * @Template("routes.html.twig")
 *
 * @return array
 */
public function routeAction()
{
    /** @var Router $router */
    $router = $this->get('router');
    $routes = $router->getRouteCollection();

    foreach ($routes as $route) {
        $this->convertController($route);
    }

    return [
        'routes' => $routes
    ];
}


private function convertController(\Symfony\Component\Routing\Route $route)
{
    $nameParser = $this->get('controller_name_converter');
    if ($route->hasDefault('_controller')) {
        try {
            $route->setDefault('_controller', $nameParser->build($route->getDefault('_controller')));
        } catch (\InvalidArgumentException $e) {
        }
    }
}

路线.html.twig

<table>
{% for route in routes %}
    <tr>
        <td>{{ route.path }}</td>
        <td>{{ route.methods|length > 0 ? route.methods|join(', ') : 'ANY' }}</td>
        <td>{{ route.defaults._controller }}</td>
    </tr>
{% endfor %}
</table>

输出将是:

/_wdt/{token} ANY web_profiler.controller.profiler:toolbarAction 等等

于 2013-04-11T08:38:57.103 回答
26

您可以获取所有路由,然后从中创建一个数组,然后将该控制器的路由传递给您的树枝。

这不是一个漂亮的方式,但它的工作原理.. 2.1 反正..

    /** @var $router \Symfony\Component\Routing\Router */
    $router = $this->container->get('router');
    /** @var $collection \Symfony\Component\Routing\RouteCollection */
    $collection = $router->getRouteCollection();
    $allRoutes = $collection->all();

    $routes = array();

    /** @var $params \Symfony\Component\Routing\Route */
    foreach ($allRoutes as $route => $params)
    {
        $defaults = $params->getDefaults();

        if (isset($defaults['_controller']))
        {
            $controllerAction = explode(':', $defaults['_controller']);
            $controller = $controllerAction[0];

            if (!isset($routes[$controller])) {
                $routes[$controller] = array();
            }

            $routes[$controller][]= $route;
        }
    }

    $thisRoutes = isset($routes[get_class($this)]) ?
                                $routes[get_class($this)] : null ;
于 2013-04-11T13:41:38.467 回答
20

我正想这样做,在搜索代码之后,我想出了这个适用于单个控制器(或实际上任何资源)的解决方案。适用于 Symfony 2.4(我没有使用以前的版本进行测试):

$routeCollection = $this->get('routing.loader')->load('\Path\To\Controller\Class');

foreach ($routeCollection->all() as $routeName => $route) {
   //do stuff with Route (Symfony\Component\Routing\Route)
}
于 2014-05-06T18:10:50.870 回答
7

如果有人在这个问题上绊倒,这就是我在全局树枝范围(symfony 4)中导出路由的方式。

src/Helper/Route.php

<?php

namespace App\Helper;

use Symfony\Component\Routing\RouterInterface;

class Routes
{
    private $routes = [];

    public function __construct(RouterInterface $router)
    {
        foreach ($router->getRouteCollection()->all() as $route_name => $route) {
            $this->routes[$route_name] = $route->getPath();
        }
    }

    public function getRoutes(): array
    {
        return $this->routes;
    }
}

src/config/packages/twig.yaml

twig:
    globals:
        route_paths: '@App\Helper\Routes'

 

然后在你的 twig 文件中填充一个 javascript 变量以在你的脚本中使用

<script>
    var Routes = {
        {% for route_name, route_path in routes_service.routes %}
            {{ route_name }}: '{{ route_path }}',
        {% endfor %}
    }
</script>
于 2018-09-02T02:20:13.223 回答
4

在 Symfony 4 中,我想在一个列表中获取所有路由,包括控制器和操作。在 Rails 中,默认情况下你可以得到这个。

在 Symfony 中,您需要将参数添加show-controllersdebug:router命令中。

如果有人在寻找相同的功能,可以通过以下方式获得:

bin/console debug:router --show-controllers

这将产生如下列表

------------------------------------------------------------------------- -------------------------------------
Name                   Method    Scheme    Host     Path                    Controller
------------------------------------------------------------------------- -------------------------------------
app_some_good_name     ANY       ANY       ANY      /example/example        ExampleBundle:Example:getExample
------------------------------------------------------------------------- -------------------------------------
于 2018-05-31T11:13:22.507 回答
2

最安全的方法是使用 symfony 控制器解析器,因为您永远不知道您的控制器是否被定义为完全限定的类名、服务或任何可调用的声明。

    foreach ($this->get('router')->getRouteCollection() as $route) {
        $request = new Request();
        $request->attributes->add($route->getDefaults());

        [$service, $method] = $this->resolver->getController($request);

        // Do whatever you like with the instanciated controller
    }
于 2021-01-26T06:29:14.167 回答