检测请求服务是否在Symfony 2中可访问



函数getCurrentOrDefaultLocale(),定义在我的服务中,可以从控制器或通过命令行脚本调用。

从CLI访问request服务抛出一个异常,我用它来检测CLI调用。然而,仅为这个目的捕获异常对我来说似乎很糟糕。

是否有任何可靠的方法来检查请求是否可以在当前上下文中访问(执行,浏览器vs CLI)?

/**
 * @return string
 */
protected function getCurrentOrDefaultLocale()
{
    try {
        $request = $this->container->get('request');
    }
    catch(InactiveScopeException $exception) {
        return $this->container->getParameter('kernel.default_locale');
    }
    // With Symfony < 2.1.0 current locale is stored in the session
    if(version_compare($this->sfVersion, '2.1.0', '<')) {
        return $this->container->get('session')->getLocale();
    }
    // Symfony >= 2.1.0 current locale from the request
    return $request->getLocale();
}

您可以简单地使用ContainerInterface::has()/ContainerInterface::hasScope()检查当前容器实例是否有request服务/范围

编辑:

我的错误。您必须使用ContainerInterface::isScopeActive(),以确定request服务是否功能齐全:

public function __construct(ContainerInterface $container, RouterInterface $router) {
    if ($container->isScopeActive('request')) {
        $this->request = $container->get('request');
        $this->router = $router;
    }
}

这个代码片段来自我自己的项目,在那里我遇到了一个非常类似的问题。

相关内容

  • 没有找到相关文章

最新更新