Cakeアプリでは、基本認証を行っています。私はそれをシンプルでセマンティックに保つことを好みます(ACLは好きではありません)ので、単にユーザーの役割をチェックし、それに応じて許可または拒否します。
これで、認証はすべて期待どおりに機能しますが、ユーザーが許可されたアクションを試行したかどうかに関係なく、Authエラーメッセージが表示されるという奇妙な問題が発生します。ログアウトした後も表示されたままになります。
AppControllerは次のとおりです。
public $components = array(
'Session',
'Password',
'Auth' => array(
'loginRedirect' => array('controller' => 'users', 'action' => 'index'),
'logoutRedirect' => array('controller' => 'pages', 'action' => 'display', 'home'),
'authError' => "Sorry, you're not allowed to do that.",
'authorize' => array('Controller')
),
'RequestHandler'
);
public function beforeFilter() {
$this->set('loggedIn', $this->Auth->loggedIn());
$this->set('current_user', $this->Auth->user());
$this->set('admin', $this->_isAdmin());
$this->set('coach', $this->_isCoach());
$this->Auth->allow('login', 'logout', 'display');
}
public function isAuthorized($user) {
if (isset($user['role']) && $user['role'] === 'admin') {
return true;
}
return false;
}
beforeFilterとisAuthorizedは別のコントローラーから:
public function beforeFilter() {
parent::beforeFilter();
}
public function isAuthorized($user) {
if ($user['role'] === 'coach') {
if ($this->action === 'index') {
return true;
}
if (in_array($this->action, array('view', 'edit', 'delete'))) {
$id = $this->request->params['pass'][0];
$this->User->id = $id;
if ($this->User->field('client_id') === $user['client_id'] )
return true;
} else {
return false;
}
}
return false;
}
return parent::isAuthorized($user);
}