0

在阅读了 Zend 文档和这里的一些帖子之后,我无法弄清楚如何从用户表中获取我的用户角色。

目前我在 AuthController 中像这样使用 Zend_Auth:

// Set authentication adapter and map ID and Cre.
// only admins could log in here
$adapter = new Zend_Auth_Adapter_DbTable($this->db,
            'customers',
            'login',
            'password',
            'MD5(?)');
$adapter->setIdentity($form->getValue('username'))
    ->setCredential($form->getValue('password'));

// Check if authentification is right
$result = Zend_Auth::getInstance()->authenticate($adapter);

if (!$result->isValid()) {
    ..
}

然后通过 Zend_Controller_Plugin 检查它并根据结果进行路由:

if (Zend_Auth::getInstance()->hasIdentity()) {
        return;
} elseif ($request->getControllerName() == 'auth' || $request->getControllerName() == 'index') {
        return;
} else {
        $request->setControllerName('index');
        $request->setActionName('index');
        return;
}

现在我想根据用户的滚动更改路线。如果用户是管理员,他可以访问 AdminController,但是如何从我的用户表中获取角色?该列称为类型,它包含一个字符串,表示角色。

我希望你能帮助我。

问候,

-lony

4

2 回答 2

1

getResultRowObject使用适配器的方法将您的身份验证结果行存储在 Zend_Auth 中。请参阅http://framework.zend.com/manual/en/zend.auth.adapter.dbtable.html#zend.auth.adapter.dbtable.advanced.storing_result_row

于 2010-12-08T00:20:24.077 回答
1

谢谢菲尔,它有效!

仅用于编译我的解决方案。我将此添加到 AuthController:

// fetches role and login name out of
// user table and store it in auth session
$data = $adapter->getResultRowObject(array(
                    'role',
                    'username'
                ));
Zend_Auth::getInstance()->getStorage()->write($data);

现在我可以通过键入以下内容在任何地方访问我的角色(或用户名):

$role = Zend_Auth::getInstance()->getIdentity()->role;
于 2010-12-08T05:49:23.197 回答