ZF2重定向控制器

时间:2012-10-03 01:00:31

标签: zend-framework2

最重要的是,抱歉我的英语不好。 晚安/日/下午(视您所在地而定) 对不起,如果我问一些可以在这里搜索的东西,我搜索过,甚至找到它,但也许我不明白。 我需要检查控制器中的身份验证,因此,我实现了一个主控制器并将所有真实控制器扩展到它。在我的主控制器中,我检查身份验证并做得很好,但是当我尝试重定向未经身份验证的用户时,它会崩溃! 在网上搜索,我意识到“init,preDispatch等”方法甚至不存在更多,只是“构造”方法,所以我尝试了它,但在构造中没有事件管理器,所以我停在这里。 .. 这是我的代码:

public function __construct(){
    $r = new SimpleRouteStack();
    $r->addRoute('logoff', Literal::factory(array(
                                                'route'=>'/suporte/logoff',
                                                'defaults' => array(
                                                    'action'     => 'logoff',
                                                  'controller' => 'Suporte\Controller\Index',
                                                )
                                        )
                            )
    );
    $e = new MvcEvent();
    $e->setRouter($r);
    $this->setEvent($e);
    $this->getEvent()->setResponse(new Response());
    $this->getEventManager()->attach('*',array($this,'mvcPreDispatch'),100);

public function mvcPreDispatch(){
    $uri = explode('/',substr($_SERVER['REQUEST_URI'],1));
    $uri[2] = !isset($uri[2]) ? "index" : $uri[2];
    $auth = new AuthenticationService();
    $identity = $auth->getStorage()->read();
    $acl = $identity[2];

    if (!$auth->hasIdentity()){                                     
        $this->redirect()->toRoute('suporte/logoff');
    }elseif (   !$acl->hasResource($uri[0].'/'.$uri[1])             
                                        ||                          
                !$acl->isAllowed($identity[1],                      
                                $uri[0].'/'.$uri[1],                
                                $uri[2]                             
                            ) 
            )
                $this->redirect()->toRoute('logoff');
        else{
            /* $this->layout()->id = $identity[0]->getId();
            $this->layout()->nome = $identity[0]->getNome();
            $this->layout()->cargo = $identity[0]->getCargo(); */
            echo "permitido";
            //$this->layout()->recursos = $this->acl->getResources();
        }
}

2 个答案:

答案 0 :(得分:0)

是你的Suporte\Controller\logoff也扩展了大师班。如果是,那么它将导致无限循环indexController>masterController(!loggedin)>logoutController>masterController(!loggedin)>logoutController>..

答案 1 :(得分:0)

我过去怎么说“IT就是巫术”!!! 当我今天醒来时,打开我的电脑,测试控制器和BAZINGA!运行正常...... 为什么?我不敢质疑...... 我的代码就是:

abstract class PadraoControllerSuporte extends AbstractActionController{
public function setEventManager(EventManagerInterface $events){
parent::setEventManager($events);
$controller = $this;
$events->attach('dispatch', function ($e) use ($controller) {
    if (is_callable(array($controller, 'verificaAuth'))){
        call_user_func(array($controller, 'verificaAuth'));
    }
}, 100);

}

public function verificaAuth(){
    $uri = explode('/',substr($_SERVER['REQUEST_URI'],1));
    $uri[2] = !isset($uri[2]) ? "index" : $uri[2];
    $auth = new AuthenticationService();
    $identity = $auth->getStorage()->read();
    $acl = $identity[2];
    if (!$auth->hasIdentity())                                      
        $this->redirect()->toRoute('suporte/logoff');
    elseif (    !$acl->hasResource($uri[0].'/'.$uri[1])                                 !$acl->isAllowed(   $identity[1],
                                    $uri[0].'/'.$uri[1],            
                                    $uri[2]                         
                                ) 
            )
                $this->redirect()->toRoute('logoff');
        else{
            /* $this->layout()->id = $identity[0]->getId();
            $this->layout()->nome = $identity[0]->getNome();
            $this->layout()->cargo = $identity[0]->getCargo(); */
            echo "permitido";
            //$this->layout()->recursos = $this->acl->getResources();
        }
}

我的理解: 我认为“setEventManager”是叠加的,所以它设置为监听“dispatch”事件并调用我的verificaAuth函数重定向(如果未经过身份验证)注销或允许它进行身份验证。 希望这很有用...... 谢谢你们!