如果您在不同的控制器中有可重复的逻辑,请考虑使用控制器插件来实现逻辑 DRY。您可以在需要检查的每个控制器中使用此插件:
class MyController extends AbstractActionController
{
public function indexAction()
{
if (!$this->ldapAuth()->isLoggedIn()) {
// Do something
}
}
}
控制器插件必须实现接口Zend\Mvc\Controller\Plugin\PluginInterface
,但使用提供的抽象更容易AbstractPlugin
:
namespace MyModule\Controller\Plugin;
use Zend\Mvc\Controller\Plugin\AbstractPlugin;
use Zend\Session\Container;
class LdapAuth extends AbstractPlugin
{
const SESSION_KEY = 'user';
protected $session;
public function __construct()
{
$this->session = new Container(self::SESSION_KEY);
}
public function isLoggedIn()
{
return isset($this->session->username);
}
public function getUsername()
{
return $this->session->username;
}
}
此设置中的唯一技巧是您需要在服务管理器中注册插件。因此,获取您的module.config.php
配置文件并添加以下行:
'controller_plugins' => array(
'invokables' => array(
'ldapAuth' => 'MyModule\Controller\Plugin\LdapAuth',
),
),