Symfony - 动态更改配置值

时间:2017-03-03 15:54:00

标签: symfony symfony-cmf

我使用的是Symfony CMF,它有一个RoutingAutoBundle,它公开了这些参数:

cmf_routing_auto:
    ....
    persistence:
        phpcr:
            route_basepath: /routes

我需要动态设置route_basepath,是否可以动态更改config.yml值?

我正在构建一个为每个用户隔离的CMS,为此,我将每个用户路由存储在他自己的PHPCR文档中。

我的想法是在早期请求侦听器中根据请求HTTP_HOST和/或子域更改路由器基路径。

修改

这是结构。

enter image description here

1 个答案:

答案 0 :(得分:1)

对于其他任何尝试这样做的人来说,当你不熟悉CMF捆绑包时,这是一项非常复杂的任务,如果你依赖于请求,那么事件监听器等不能动态更改自动路由,即route_basepath。 ,此时请求将不可用。

我设法做到以下几点:

覆盖" cmf_routing.phpcr_candidates_prefix"服务,并用您自己的候选前缀服务替换所有对它的引用。

class OverrideRoutePrefixListener implements CompilerPassInterface
{
    public function process(ContainerBuilder $container)
    {
        $routePrefixDefinition = $container->getDefinition('cmf_routing.phpcrodm_route_idprefix_listener');
        $routePrefixDefinition->replaceArgument(0, new Reference('app.phpcr_candidates_prefix'));

        $routeLocalePrefixDefinition = $container->getDefinition('cmf_routing.phpcrodm_route_locale_listener');
        $routeLocalePrefixDefinition->replaceArgument(0, new Reference('app.phpcr_candidates_prefix'));
    }
}

您自己的服务应该是原始子类并更改构造函数,您可能需要复制一堆私有字段等。

public function __construct(array $prefixes, array $locales = array(), ManagerRegistry $doctrine = null, $limit = 20)
{
    // Do something else here, if you just want multiple prefixes, its supported by the config 
    // But if you want to fetch them from the database or the like, you have to do this.
    $prefixes = ['/users/admin/sites/test/routes', '/users/admin/sites/test/simple'];

    parent::__construct($prefixes, $locales = array(), $doctrine = null, $limit = 20);
    $this->setPrefixes($prefixes);

    $this->doctrine = $doctrine;
}

在您自己的cmf_routing.phpcr_candidates_prefix中,您可以自由地将前缀解析为您想要的任何内容。

第二步是覆盖PhpcrOdmAdapter,您可以使用编译器传递来执行此操作。

class OverridePhpcrOdmAdapter implements CompilerPassInterface
{
    public function process(ContainerBuilder $container)
    {
        $definition = $container->getDefinition('cmf_routing_auto.adapter.phpcr_odm');
        $definition->setClass(PhpcrOdmAdapter::class);
    }
}

并在构造函数中更改基本路径。