我想更改控制器的默认操作取决于登录的用户。例如。我的站点中有两个用户:发布者和作者,我想将发布者操作设置为发布者登录时的默认操作,作者也是如此。
我应该怎么办?我什么时候可以检查我的角色并设置他们的相关操作?
另一种方法是在控制器的方法中设置defaultAction
属性。有点像这样:init()
<?php
class MyAwesomeController extends Controller{ // or extends CController depending on your code
public function init(){
parent::init(); // no need for this call if you don't have anything in your parent init()
if(array_key_exists('RolePublisher', Yii::app()->authManager->getRoles(Yii::app()->user->id)))
$this->defaultAction='publisher'; // name of your action
else if (array_key_exists('RoleAuthor', Yii::app()->authManager->getRoles(Yii::app()->user->id)))
$this->defaultAction='author'; // name of your action
}
// ... rest of your code
}
?>
查看CAuthManager 的getRoles()
,查看返回的数组的格式为'role'=>CAuthItem object
,这就是我使用array_key_exists()
.
如果你不知道,动作名称将只是没有动作部分的名称,例如,如果你有,public function actionPublisher(){...}
那么动作名称应该是:publisher
。
另一个更简单的方法是保持默认操作不变,但该默认操作仅根据登录的用户类型调用附加操作函数。例如,您有条件调用 indexAction 函数this->userAction
或 this->publisherAction
取决于检查谁登录。
我认为您可以在用户表中保存“第一个用户页面”。当用户通过身份验证时,您可以从数据库加载此页面。你在哪里可以做到这一点?我认为最好的地方是 UserIdentity 类。之后,您可以在 SiteController::actionLogin();
您可以获取或设置“首页”值:
if (null === $user->first_page) {
$firstPage = 'site/index';
} else {
$firstPage = $user->first_page;
}
这是一个完整的类:
class UserIdentity extends CUserIdentity
{
private $_id;
public function authenticate()
{
$user = User::model()->findByAttributes(array('username' => $this->username));
if ($user === null) {
$this->errorCode = self::ERROR_USERNAME_INVALID;
} else if ($user->password !== $user->encrypt($this->password)) {
$this->errorCode = self::ERROR_PASSWORD_INVALID;
} else {
$this->_id = $user->id;
if (null === $user->first_page) {
$firstPage = 'site/index';
} else {
$firstPage = $user->first_page;
}
$this->errorCode = self::ERROR_NONE;
}
return !$this->errorCode;
}
public function getId()
{
return $this->_id;
}
}
/**
* Displays the login page
*/
public function actionLogin()
{
$model = new LoginForm;
// if it is ajax validation request
if (isset($_POST['ajax']) && $_POST['ajax'] === 'login-form') {
echo CActiveForm::validate($model);
Yii::app()->end();
}
// collect user input data
if (isset($_POST['LoginForm'])) {
$model->attributes = $_POST['LoginForm'];
// validate user input and redirect to the previous page if valid
if ($model->validate() && $model->login())
$this->redirect(Yii::app()->user->first_page);
}
// display the login form
$this->render('login', array('model' => $model));
}
此外,您只能在此文件中编写正确的代码。在 SiteController 文件中。