I have a site developed with cakephp and I would like to implement acl..
I have two models:
User (with the following actions: add, register, view, modify)
Ingredient (with the actions: add, modify, delete)
I have four types of user: admin, moderator, user and guest.
I don't want the "user" group to be able to access the action modify in the model Ingredient`.
Here is what I tried, but it doesn't work.
Please note that all the tables are created correctly in the database.
In my AppController.php //...
public $components = array(
'Session',
'Auth' => array(
'loginRedirect' => array('controller' => 'users', 'action' => 'index'),
'logoutRedirect' => array('controller' => 'users', 'action' => 'index'),
'authError' => 'Non disponi dei permessi necessari per accedere a questa risorsa',
'authorize' => array(
'Controller',
'Actions' => array(
'actionPath' => 'controllers'
)
)
),
'Acl'
);
public function buildAcoModel ($params) {
$aco = $this->Acl->Aco;
$aco->create ();
$aco->save ($params);
}
//...
In UserController.php
public function index () {
$this->buildAclGroups();
parent::buildAcoModel(array (
'model' => null,
'alias' => 'controllers',
'foreign_key' => null,
'parent_id' => null
));
$this->setUserPermissions();
}
public function register () {
//....
$this->addAroUser($this->request->data, $this->User->id);
//....
}
private function setUserPermissions () {
$this->Acl->allow('admin', 'controllers');
$alias = 'user';
$this->Acl->deny($alias, 'controllers');
$this->Acl->allow($alias, 'controllers/Ingredients/add');
}
private function buildAclGroups () {
$aro = $this->Acl->Aro;
$groups = array (
0 => array (
'alias' => 'admin'
),
1 => array (
'alias' => 'moderator'
),
2 => array (
'alias' => 'user'
),
3 => array (
'alias' => 'guest'
)
);
foreach ($groups as $group) {
$aro->create();
$aro->save($group);
}
}
private function addAroUser ($data, $id) {
$user = array (
'alias' => $data['User']['username'],
'model' => 'User',
'foreign_key' => $id,
'parent_id' => 3 // group user
);
$aro = new Aro ();
$aro->save($user);
}
It doesn't work. What is missing? I have looked at many tutorials but I'm pretty confused right now.