At the moment I use Auth Component for users to login / logout - ACL is defined to sort between user groups (Guests, Users, Admins) - with obvious restrictions; Admin being able to access everything, the user can only access edit in the users controller and the guest being able to see just the display / index / view etc etc.

Now to prevent users from editing another user - I have a function called isOwner() which essentially checks if you are trying to edit your own profile; and also checks if it is an admin trying to edit. If the user is the owner of the content they're trying to edit, then it allows it otherwise it just redirects with a flash message.

Having read through http://book.cakephp.org/view/1245/Defining-Permissions-Cake-s-Database-ACL - I wondered if it was possible to define this in the ACL?

Something along the lines of:

$this->Acl->allow(array('model' => 'User', 'foreign_key' => $id), 'Users', 'edit', $id) 

Though I haven't dug deep enough and I'm assuming I'd have to make some sort of beforeSave() with the above line for each new user registered to be allowed to edit his profile.

link|improve this question
stackoverflow.com/questions/6745683/… almost the same thing – pleasedontbelong Jul 20 '11 at 14:12
Not really - I actually want to use the ACO_ARO for permissions, not move away from it. – Shaz Jul 20 '11 at 18:57
Cake's ACL is painful to use, not sure why you're so keen on it. But since you use Auth, maybe I can suggest that you set the contents of $this->Auth->user() as a static variable, and then you can access the values in your model method. Also, I would not use callbacks, as it makes debugging difficult. – Wayne K. Jul 21 '11 at 2:15
I disagree - I think ACL is pretty powerful and makes it easy for user permissions in large applications. I do have $this->Auth->user() as a static variable accessible everywhere but its not really related to the question above? I find callbacks are fine - not anymore difficult than ACL itself. – Shaz Jul 21 '11 at 10:13
hey shaz, how would the user be getting access to another profile? the users/edit action should not take an id parameter, it should always assume the id of the logged in user making the request. am i missing something? – Jonah Jul 23 '11 at 17:59
show 3 more comments
feedback

1 Answer

up vote 1 down vote accepted

[ i've decided to post this as an answer cause it contains code examples ]

You could create a component (or a function) and use the beforeFilter() callback in the app_controller, that way you wont need to manually add the function to all controllers.

Also you could use multiple prefixes for the actions (see Routing.prefixes in the core), it will make it easier to control the access. Something like:

[app_controller.php]

function beforeFilter() {
    if(isset($this->params['prefix']) && $this->params['prefix'] == 'admin'){
         if(!isAdmin() || !isOwner())
             $this->cakeError('error404');
    }
}

[users_controller.php]

  function admin_edit($id = null){
        ... // edit as usual
    }

In a LAMP stack your bottleneck is usually at the database

my problem with cake is the number of queries it makes. Once i saw that my "contact" page that made 21 queries only to retrieve the data structure, and the permissions for this public page.

The only way to justify the use of ACL for accessing data is when the permissions are dynamic, i.e. "user#29 can edit user#12 because the Admin decided it in the backoffice". But if you have static rules for accessing the data (like "users can only edit their own info and admins can edit everything") its kinda useless to perform queries when you already know the answers, because this rules won't change in time.

so it all depends on your app.. Finally, one last thought, if you're still planing to make more queries =P you could set the authorize method of the Auth component. But using the ACL Component for this, seems to me like a bad idea

Cheers!

link|improve this answer
Different to what I wanted but still a really good alternative, thanks! – Shaz Aug 18 '11 at 10:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.