我只是想在名为“Cauth”的插件中实现Cakephp ACL用户身份验证。我之前实现的相同的工作正常。这次不同的是,它是在插件下。在这里,在控制器中, $这个 - >用户 - >&集团 - GT;找到( '名单');不管用。我收到了以下致命错误:
Fatal Error
Error: Call to a member function find() on a non-object
File: my_dir_path\app\Plugin\Cauth\Controller\UsersController.php
Line: 60
Notice: If you want to customize this error message, create app\View\Errors\fatal_error.ctp
我的代码如下:
小组模特:
var $useTable = 'groups';
public $hasMany = array (
'User' => array (
'className' => 'Cauth.User',
'foreignKey' => 'group_id',
'dependent' => false,
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'exclusive' => '',
'finderQuery' => '',
'counterQuery' => ''
)
);
用户模型:
var $useTable = 'users';
public $belongsTo = array (
'Group' => array (
'className' => 'Cauth.Group',
'foreignKey' => 'group_id',
'conditions' => '',
'fields' => '',
'order' => ''
)
);
用户控制器添加操作,组选择框不起作用。
用户控制器添加操作:
App::uses('CauthAppController', 'Cauth.Controller');
class UsersController extends CauthAppController {
public function add() {
if ($this->request->is('post')) {
$this->User->create();
if ($this->User->save($this->request->data)) {
$this->Session->setFlash(__('The user has been saved'));
$this->redirect(array ('action' => 'index'));
} else {
$this->Session->setFlash(__('The user could not be saved. Please, try again.'));
}
}
$groups = $this->User->Group->find('list');
$this->set(compact('groups'));
}
任何人都可以帮助我解决这个问题。
特别说明: 它正在研究以下案例。
案例1:
如果我从控制器绑定模型而不是正常工作。
$this->User->bindModel(
array ('belongsTo' => array ('Group'))
);
即
public function add() {
$this->User->bindModel(
array ('belongsTo' => array ('Group'))
);
if ($this->request->is('post')) {
$this->User->create();
if ($this->User->save($this->request->data)) {
$this->Session->setFlash(__('The user has been saved'));
$this->redirect(array ('action' => 'index'));
} else {
$this->Session->setFlash(__('The user could not be saved. Please, try again.'));
}
}
$groups = $this->User->Group->find('list');
$this->set(compact('groups'));
}
案例2:
如果我允许所有人的动作名称。管理员拥有所有权限,但我还需要为管理员编写beforeFilter。
public function beforeFilter() {
parent::beforeFilter();
$this->Auth->allow('index', 'add');
}
我找到了另一个案例,使其可行。
案例3:
我的AppController的代码是 -
class AppController extends Controller {
public $helpers = array ('Form', 'Time', 'Html', 'Session', 'Js', 'DebugKit.Toolbar');
public $counter = 0;
public $components = array (
'DebugKit.Toolbar',
'RequestHandler',
'Acl',
'Auth' => array (
'authorize' => array (
'Actions' => array ('actionPath' => 'controllers')
)
),
'Session'
);
public function beforeFilter() {
//Configure AuthComponent
$this->Auth->loginAction = array ('plugin' => 'cauth', 'controller' => 'users', 'action' => 'login');
$this->Auth->logoutRedirect = array ('plugin' => 'cauth', 'controller' => 'users', 'action' => 'login');
$this->Auth->loginRedirect = array ('plugin' => '', 'controller' => 'pages', 'action' => 'display');
}
}
在这种情况下,它无法正常工作。但是当我做到的时候 -
class AppController extends Controller {
public $helpers = array ('Form', 'Time', 'Html', 'Session', 'Js', 'DebugKit.Toolbar');
public $counter = 0;
public $components = array (
'DebugKit.Toolbar',
'RequestHandler',
'Acl',
'Auth' => array (
'authenticate' => array('Form')
),
'Session'
);
public function beforeFilter() {
//Configure AuthComponent
$this->Auth->loginAction = array ('plugin' => 'cauth', 'controller' => 'users', 'action' => 'login');
$this->Auth->logoutRedirect = array ('plugin' => 'cauth', 'controller' => 'users', 'action' => 'login');
$this->Auth->loginRedirect = array ('plugin' => '', 'controller' => 'pages', 'action' => 'display');
}
}
然后协会再次开始工作。仍然无法理解这个组件声明有什么问题。
public $components = array (
'DebugKit.Toolbar',
'RequestHandler',
'Acl',
'Auth' => array (
'authorize' => array (
'Actions' => array ('actionPath' => 'controllers')
)
),
'Session'
);
如果我不这样声明,我的ACL无效。即所有团体都获得相同的许可。
请帮帮我。我已经堆了很长时间了。
答案 0 :(得分:4)
最后,经过以下链接的长期斗争,我找到了解决方案 -
当我使用Auth组件时,用户控制器没有使用Cauth.user模型。它是使用AppModel加载的。但是没有auth组件,它运行正常。因此,使用auth组件的正确方法将是
'Auth' => array (
'authorize' => array (
'Actions' => array (
'actionPath' => 'controllers',
'userModel' => 'Cauth.User',
),
)
),
这就是AppController的总数 -
class AppController extends Controller {
public $helpers = array ('Form', 'Time', 'Html', 'Session', 'Js', 'DebugKit.Toolbar');
public $counter = 0;
public $components = array (
'DebugKit.Toolbar',
'RequestHandler',
'Acl',
'Auth' => array (
'authorize' => array (
'Actions' => array (
'actionPath' => 'controllers',
'userModel' => 'Cauth.User',
),
)
),
'Session'
);
public function beforeFilter() {
//Configure AuthComponent
$this->Auth->loginAction = array ('plugin' => 'cauth', 'controller' => 'users', 'action' => 'login');
$this->Auth->logoutRedirect = array ('plugin' => 'cauth', 'controller' => 'users', 'action' => 'login');
$this->Auth->loginRedirect = array ('plugin' => '', 'controller' => 'pages', 'action' => 'display');
}
}
现在一切正常。谢谢大家。
答案 1 :(得分:0)
假设该组是模型(表)的名称,请从以下位置更改此行:
$groups = $this->User->Group->find('list');
到
$groups = $this->Group->find('list');
希望它会有所帮助!
答案 2 :(得分:0)
尝试两件事来解决这个问题。首先将以下内容添加到您的用户和组插件控制器。
public $uses = array('Users.User', 'Users.Group');
其次,定义插件控制器中的组件。在蛋糕ACL Auth教程中,他们把它放在主AppController中,你需要把它移到插件中。
您可以在UsersAppController或UsersController
中执行以下操作public $components = array(
'Acl',
'Auth',
'Session'
);
希望有效,它确实适合我。