这个问题始于我不明白为什么我不能将变量传递给 symfony2 全局辅助函数(服务),但是感谢比我聪明的人,我意识到我的错误是关于尝试在一个没有的类中使用 security_context没有注射所以...
这是最终的结果,有效的代码。我发现没有更好的方法可以使这对社区有所帮助。
这是您如何从 symfony2 中的全局函数或辅助函数中从 security_context 获取用户和其他数据的方法。
我有以下类和功能:
<?php
namespace BizTV\CommonBundle\Helper;
use Symfony\Component\DependencyInjection\ContainerInterface as Container;
class globalHelper {
private $container;
public function __construct(Container $container) {
$this->container = $container;
}
//This is a helper function that checks the permission on a single container
public function hasAccess($container)
{
$user = $this->container->get('security.context')->getToken()->getUser();
//do my stuff
}
}
...定义为这样的服务(在 app/config/config.yml 中)...
#Registering my global helper functions
services:
biztv.helper.globalHelper:
class: BizTV\CommonBundle\Helper\globalHelper
arguments: ['@service_container']
现在,在我的控制器中,我像这样调用这个函数......
public function createAction($id) {
//do some stuff, transform $id into $entity of my type...
//Check if that container is within the company, and if user has access to it.
$helper = $this->get('biztv.helper.globalHelper');
$access = $helper->hasAccess($entity);