如何使用zend_auth作为插件

时间:2011-09-18 05:56:11

标签: php zend-framework zend-auth

我正在使用Zend Framework进行首次用户登录,但我对Zend_Auth感到困惑。我读到的所有文章都直接在控制器中使用它。但对我来说,作为一个插件工作更有意义 你们觉得怎么样?

2 个答案:

答案 0 :(得分:3)

您可以将它用作插件,唯一的缺点是如果您在引导程序中初始化插件,那么将为每个控制器和操作执行插件,因为它必须在您的控制器之前运行。

您可以扩展Zend_Auth并添加额外的方法来设置auth适配器并管理存储,然后您可以调用Your_Custom_Auth :: getInstance()来获取auth实例,然后您可以在preDispatcth中检查auth( )需要身份验证的控制器的一部分。

通过这种方式,您可以使用更少的代码轻松地在多个地方使用zend_auth

<?php

class My_User_Authenticator extends Zend_Auth
{
    protected function __construct()
    {}

    protected function __clone()
    {}

    public static function getInstance()
    {
        if (null === self::$_instance) {
            self::$_instance = new self();
        }

        return self::$_instance;
    }

    // example using zend_db_adapter_dbtable and mysql
    public static function getAdapter($username, $password)
    {
        $db = Zend_Controller_Front::getInstance()
                                     ->getParam('bootstrap')
                                     ->getResource('db');

        $authAdapter = new Zend_Auth_Adapter_DbTable($db,
                                                     'accounts',
                                                     'username',
                                                     'password');

        $authAdapter->setIdentity($username)
                    ->setCredential($password)
                    ->setCredentialTreatment(
                        'SHA1(?)'
                    );

        return $authAdapter;
    }

    public static function updateStorage($storageObject)
    {
        self::$_instance->getStorage()->write($storageObject);
    }
}


// in your controllers that should be fully protected, or specific actions
// you could put this in your controller's preDispatch() method
if (My_User_Authenticator::getInstance()->hasIdentity() == false) {
    // forward to login action
}


// to log someone in
$auth = My_User_Authenticator::getInstance();

$result = $auth->authenticate(
    My_User_Authenticator::getAdapter(
        $form->getValue('username'),
        $form->getValue('password'))
);

if ($result->isValid()) {
    $storage = new My_Session_Object();
    $storage->username = $form->getValue('username');
    // this object should hold the info about the logged in user, e.g. account details
    My_User_Authenticator::getInstance()->updateStorage($storage); // session now has identity of $storage
    // forward to page
} else {
    // invalid user or pass
}

希望有所帮助。

答案 1 :(得分:1)

ZF中的“插件”不仅意味着“前端控制器插件”,还有动作助手,查看助手......

ZF大师Matthew Weier O'Phinney撰写了一篇关于创建动作助手的优秀文章,猜猜是什么?...

他用Auth小部件说明了它!

http://weierophinney.net/matthew/archives/246-Using-Action-Helpers-To-Implement-Re-Usable-Widgets.html

不要忘记阅读文章评论,因为很多有趣的Q&amp; A都在那里处理