0

这是我的自定义安全监听器(来自 sym 2.0)

namespace mine\UserBundle\EventListener;

use Symfony\Component\Security\Http\Event\InteractiveLoginEvent;
use Symfony\Component\Security\Core\SecurityContext;
use Symfony\Component\HttpFoundation\Session as Session;


class SecurityListener
{
    protected $security;
    protected $session;

/**
* Constructs a new instance of SecurityListener.
*
* @param SecurityContext $security The security context
* @param Session $session The session
*/
    public function __construct(SecurityContext $security, Session $session)//<-- here
    {
        //You can bring whatever you need here, but for a start this should be useful to you
        $this->security = $security;
        $this->session = $session;
    }

/**
* Invoked after a successful login.
*
* @param InteractiveLoginEvent $event The event
*/
    public function onSecurityInteractiveLogin(InteractiveLoginEvent $event)
    {
         //Your logic needs to go here
         //You can addRole 
         //Even persist if you want but bring the right tools to your constructor
         $security = $this->security; 

         if ($security->getToken()->getUser()->hasPlus()) {       
            $security->getToken()->getUser()->addRole('ROLE_PLUSUSER');    
         }

    }
}

我假设在 2.0 和 2.1 之间发生了一些命名空间或类似的变化(我现在正试图将它一直提升到 2.3),因为我抛出了这个错误:

ContextErrorException:可捕获的致命错误:参数 2 传递给 mine\UserBundle\EventListener\SecurityListener::__construct() 必须是 Symfony\Component\HttpFoundation\Session 的实例,给定 Symfony\Component\HttpFoundation\Session\Session 的实例

4

1 回答 1

1

好的,将依赖项更改为

使用 Symfony\Component\HttpFoundation\Session\Session;

成功了。似乎与错误消息所说的完全相反......

于 2014-12-05T21:32:01.327 回答