我的服务中定义的函数getCurrentOrDefaultLocale()
可以从控制器或命令行脚本调用。
从CLI访问request
服务会引发异常,我正在使用它来检测CLI调用。然而,仅为此目的捕获异常对我来说似乎很糟糕。
是否有任何可靠的方法来检查当前上下文(执行,浏览器与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();
}
答案 0 :(得分:8)
您只需使用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;
}
}
此代码剪切来自我自己的项目,在那里我遇到了一个非常类似的问题。