64 Comments

  1. This is really great and something sorely missing from the core Cake distro. My only suggestion is that you do not assume the reader has so much in place already. I suspect most people who are looking for something like this are doing so because they could not get the complicated aro/aco stuff working easily and would love a step-by-step of getting tinyAuth up and running.

    Also, the examples and tutorials in the cookbook 2.0 have users/groups tables instead of users/roles. You might want to specify the schema your plugin expects since it is different from those.

  2. There is one thing I am having trouble with. When an action is not allowed, the site just hangs and returns nothing. Any suggestions on how to have it return some kind of page, or return back to where it came from with a flash error message?

    Here is what I have in my AppController beforeFilter()

    //Configure AuthComponent
    $this->Auth->authorize = array('Tools.Tiny');
    $this->set('authUser', $this->Auth->user());
    //$this->Auth->authenticate = array('Form');
    $this->Auth->loginAction = array('controller' => 'users', 'action' => 'login');
    $this->Auth->logoutRedirect = array('controller' => 'users', 'action' => 'login');
    $this->Auth->loginRedirect = array('controller' => 'contacts', 'action' => 'index');
  3. Good points. I will have to refine it.

    Ok, so roles in 1.3 have changed to groups in 2.0 then? But they still seem to be 1:N only (multiple roles/groups per user not possible). The documentation doesn’t reveal much.

    About your problem:
    Your Auth component is responsable for that. The Tiny (or any other Auth for that matter) can only return true/false or the right to access this page. It used to redirect to /. But I opened a ticket (http://cakephp.lighthouseapp.com/projects/42648/tickets/2390-auth-component-should-not-redirect-to-index-if-loginredirect-is-set) because it doesnt make any sense if you are a logged in user (you would want to be redirected to $this->Auth->loginRedirect).
    And thats exactly what the core Auth component does:

    $this->flash($this->authError);
    $controller->redirect($controller->referer('/'), null, true);
  4. OK, I think I figured out part of the hanging issue. When a page is not authorized, it is trying to redirect to /, but that is also not authorized. I have not figured out how to specify / in the acl.ini file. It is probably obvious, but I’m still a cake newbie.

  5. Well, that is a misconfiguration ๐Ÿ™‚ Your homepage (/) should always be public. Use $this->Auth->allow() in your controller for this action.

  6. I always get a failure after login:

    Notice (8): Undefined index: role_id [APP/Plugin/Tools/Controller/Component/Auth/TinyAuthorize.php, line 69]

    Mein Model ist so definiert:

    class User extends AppModel{
    public $name = 'User';
    public $belongsTo = array(
    'Group' => array(
    'className' => 'Group',
    'foreignKey' => 'group_id',
    )
    );

            public $hasAndBelongsToMany = array(
                'Role' => array(
                    'className'                 => 'Role',
                    'joinTable'                 => 'roles_users',
                    'foreignKey'                => 'user_id',
                    'assosciationForeignKey'    => 'role_id',
                    'unique'                    => true,
                ),
                'Shop' => array(
                    'className'                 => 'Shop',
                    'joinTable'                 => 'shops_users',
                    'foreignKey'                => 'shop_user_id',
                    'assosciationForeignKey'    => 'shop_id',
                    'unique'                    => true,
                )
            );</code></pre>
    

    Any Hints?
    Good work - keep on!

  7. You need to make sure the session contains the role information after logging the user in:

    HABTM (multiple roles per user):
    User.Role.id1,id2,…,idx,

    BT (one role per user):
    User.role_id

  8. got it, thanks again for the quick support! Is there a easy way to build a dynamic menu with the acls? (It depends on the role if a user can see the menu item)
    Keep up the good work!

  9. I updated the class to allow other parent model relations besides "User<–>Role". It should be closer to the cookbook now, where they use "Groups".

    @jetwes
    There sure is a way to do that. I would like to use sth like that very much, as well.
    Basically we would need a helper to display certain "navigation" blocks and hide the ones you don’t have access to. With caching this should be not too resource-eating…

  10. Hey Mark,

    Thanks for the good work.

    I am saying its good, because it looks like that &amp; you won’t claim it being the fastest &amp; easiest..

    I am a newbie in Cake, I have setup cake2.0 &amp; I tried to follow your instructions but like "Matt" said, you can still make the tutorial more clear &amp; to the point &amp; step by step. I got confused at points like –

    "If you donโ€™t want this, use Configure to store your keys like so:"

    I took some time to figure out that I need to do this in bootstrap file using Configure::write.. I am still not sure if this is the right way..

    Basically, steps starting from we downloading cake &amp; till the point where we are ready with a basic setup will be something that will help this a lot

    Thanks &amp; Hoping you help me out

  11. No. Pretty sure it won’t work with < 2.0. Mainly because Auth greatly improved in 2.0 and works pretty different from what it used to.

    But with some effort you might be able to downgrade it.

  12. I cannot authorize, although I pass the password authentication step.

    authorize() in TinyAuthorize.php receives $user that lacks any joins to roles table:

    array(
    ‘id’ =&gt; (int) 6,
    ‘username’ =&gt; ‘rihad’,
    ‘created’ =&gt; ‘2012-05-15 16:30:10’,
    ‘modified’ =&gt; ‘2012-05-17 16:36:24’,
    )

    so of course it can’t find $user[‘Role’]
    Here’s my user class:
    class Milli extends AppModel {
    public $hasAndBelongsToMany = array(
    ‘Role’ =&gt; array(
    ‘className’ =&gt; ‘Role’,
    ‘joinTable’ =&gt; ‘roles_users’,
    ‘foreignKey’ =&gt; ‘user_id’,
    ‘assosciationForeignKey’ =&gt; ‘role_id’,
    ‘unique’ =&gt; ‘keepExisting’));

    }

    class Role is empty.

    class MilliController extends AppController
    public $components = array(
    ‘Session’,
    ‘Auth’ =&gt; array(
    ‘loginRedirect’ =&gt; array(‘controller’ =&gt; ‘milli’, ‘action’ =&gt; ‘index’),
    ‘logoutRedirect’ =&gt; array(‘controller’ =&gt; ‘milli’, ‘action’ =&gt; ‘index’),
    ‘authenticate’ =&gt; array(‘Form’ =&gt; array(‘userModel’ =&gt; ‘Milli’)),
    ‘authorize’ =&gt; array(‘Tiny’ =&gt; array(‘aclModel’ =&gt; ‘Role’)),
    ‘loginAction’ =&gt; array(‘controller’ =&gt; ‘milli’, ‘action’ =&gt; ‘login’)));

        public function beforeFilter() {
                $this-&amp;gt;Auth-&amp;gt;allow(&#039;login&#039;, &#039;logout&#039;);
        }
    

    Please help…

  13. sorry here’s the code again:

    array(
            'id' => (int) 6,
            'username' => 'rihad',
            'created' => '2012-05-15 16:30:10',
            'modified' => '2012-05-17 16:36:24',
    )
    
    so of course it can't find $user['Role']
    Here's my user class:
    class Milli extends AppModel {
            public $hasAndBelongsToMany = array(
                            'Role' => array(
                                'className'                 => 'Role',
                                'joinTable'                 =>
    'roles_users',
                                'foreignKey'                => 'user_id',
                                'assosciationForeignKey'    => 'role_id',
                                'unique'                    =>
    'keepExisting'));
    
    }
    
    class Role is empty.
    
    class MilliController extends AppController
           public $components = array(
                    'Session',
                    'Auth' => array(
                            'loginRedirect' => array('controller' =>
    'milli', 'action' => 'index'),
                            'logoutRedirect' => array('controller' =>
    'milli', 'action' => 'index'),
                            'authenticate' => array('Form' =>
    array('userModel' => 'Milli')),
                            'authorize' => array('Tiny' =>
    array('aclModel' => 'Role')),
                            'loginAction' => array('controller' =>
    'milli', 'action' => 'login')));
    
            public function beforeFilter() {
                    $this->Auth->allow('login', 'logout');
            }

    Please help…

  14. tinyauthdb is not my project. so i am not familiar with that.
    regarding your second post – did you place it in the plugin or in the app?

    make sure recursive is high enough.
    I use my own AuthExt class which does that all for me.
    You might want to do this, as well.

    PS: with cake2.2 you can now set containable for this data, as well.

  15. Thanks for replying, Mark. I put it in my app’s Controllers/Components/Auth/
    recursive is 1 by default and should be enough"
    "1 Cake fetches a Group, its domain and its associated Users"
    I’ll still try setting it to 2 or 3 tomorrow and see.

    Other than that should the retrieval of user data and joins happen automagically? All I have is a user model with HABTM to roles through roles_users. No reverse relationships of any kind.

  16. The core itself usually only supports belongsTo (single role) – therefore the user itself should have sufficed so far.
    That’s why I recommend the AuthExt component to modify it accordingly.

  17. You mean a class that subclasses TinyAuthorize? Then how would I change "recursive" from there? Isn’t it in the model’s config?

  18. No, subclassing AuthComponent and overriding the part where it only fetches the User record itself.
    Or – as mentioned before – ugprade to 2.2 and use contain

  19. Hi, Mark. As you suggested I’ve added recursive =&gt; 1

            public $components = array(
                    'Session',
                    'Auth' => array(
                            'authenticate' => array('Form' => array('userModel' => 'Milli', 'recursive' => 1)),
                            'authorize' => array('Tiny' => array('aclModel' => 'Role')),

    And now findUser() in BaseAuthenticate.php indeed fetches the user deeply with its Role. But TinyAuth still is getting the shallow user in its authorize(). Would you happen to know what’s going on? The session (/tmp/sess* files) is lacking the Role stuff.

  20. I’ve tried adding joins in my User model beforeFind():

            public function beforeFind(array $query) {
                    $query['joins'] = array(
                            array(
                                    'table' => 'roles_users',
                                    'alias' => 'RolesUser',
                                    'type' => 'INNER',
                                    'conditions' =>
    array('Milli.id=RolesUser.user_id')),
                            array(
                                    'table' => 'roles',
                                    'alias' => 'Role',
                                    'type' => 'INNER',
                                    'conditions' =>
    array('RolesUser.role_id=Role.id')));
    
                    return $query;
            }

    Now Model::find() correctly does receives the join info:
    /lib/Cake/Model/Model.php (line 2676)

    array(
            'conditions' => array(
                    'Milli.username' => 'rihad',
                    'Milli.password' => '17bce4ac9c39019189b7bba280af55de9fe1d9a7'
            ),
            'fields' => null,
            'joins' => array(
                    (int) 0 => array(
                            'table' => 'roles_users',
                            'alias' => 'RolesUser',
                            'type' => 'INNER',
                            'conditions' => array(
                                    (int) 0 => 'Milli.id=RolesUser.user_id'
                            )
                    ),
                    (int) 1 => array(
                            'table' => 'roles',
                            'alias' => 'Role',
                            'type' => 'INNER',
                            'conditions' => array(
                                    (int) 0 => 'RolesUser.role_id=Role.id'
                            )
                    )
            ),
            'limit' => (int) 1,
            'offset' => null,
            'order' => array(
                    (int) 0 => null
            ),
            'page' => (int) 1,
            'group' => null,
            'callbacks' => true,
            'recursive' => (int) 2

    But the User is still fetched with Role side by side, so
    BaseAuthenticate ignores Role.

    array(
            (int) 0 => array(
                    'Milli' => array(
                            'password' => '*****',
                            'id' => (int) 6,
                            'username' => 'rihad',
                            'password_expiration' => null,
                            'created' => '2012-05-15 16:30:10',
                            'modified' => '2012-05-18 10:14:07',
                            'last_accessed' => null
                    ),
                    'Role' => array(
                            (int) 0 => array(
                                    'id' => (int) 1,
                                    'alias' => 'operations',
                                    'RolesUser' => array(
                                            'id' => (int) 6,
                                            'role_id' => (int) 1,
                                            'user_id' => (int) 6
                                    )
                            )
                    )
            )
    )

    I’m expecting Role to be nested inside Milli, or something like that.

    Please help, it’s a SNAFU, I’ve invested too much of my limited time
    to get the job done, it’s too late to go looking for a working
    framework ๐Ÿ™ I admit that it’s probably a misconfiguration from my
    part. But I can’t fix it.

  21. OK, I’ve worked around this deficiency by doing 2 things:
    (1) added ‘recursive’ =&gt; 1 to AuthI

            public $components = array(
                    'Auth' => array(
                            'authenticate' => array('Form' =>
    array('userModel' => 'Milli', 'recursive' => 1)),

    (2) writing afterFind() callback in my model:

            public function afterFind(array $query) {
                    if (count($query) == 1) {
                            # single result fetched
                            $record = &$query[0];
                            if (isset($record['Role']) &&
    is_array($record['Role'])) {
                                    $roles = array();
                                    foreach ($record['Role'] as $role)
                                            $roles[] = $role['RolesUser']
    ['role_id'];
                                    $record[$this->alias]['Role'] =
    $roles;
                                    unset($record['Role']);
                            }
                    }
    
                    return $query;
            }

    You bet this is ugly! But works.
    There’s one small problem, though. When I remove currently logged in user’s role to access a specific resource, he can still do so. Looks like authorize() accesses Session data, and Session has active user roles cached.

  22. I can’t get to work the part to allow superadmin access everything. Altough superadmin is logged in, it does not allow that role to access everything. Therefore I must setup all actions in acl.ini to make it work. Any ideas?

  23. Did you apply the quicktip from above? Make sure that the Role array in your Session is filled. If you use a single role based approach, you would have to check User.role_id in the session instead (not User.Role)

  24. Sent last post by mistake. What I changed was $this->Auth->allow(‘*’) to $this->Auth>allow() (I’m using 2.2.1). Now it’s working perfectly!

  25. facepalm
    Anyways, you state that "You must not declare your public actions this way! All those must be declared using

    $this->Auth->allow()

    ."
    But here I am not trying to allow access to anyone to public actions, but to allow superadmin (after he has logged in as so) access non-public actions (as showed in the

    $this->Auth->allow('*');

    snippet, that I had to modify). What am I getting wrong? :s

  26. The difference is HOW you do it. If you do it inside the beforeFilter for the superadmin role only it will also only affect users with this role. makes sense, doesn’t it? Just include the check from above:

    if (in_array(Configure::read('Role.superadmin'), $userRoles)) {
        //only then allow all
    }
  27. That’s understood. I think I didn’t express myself well. What I modified was:

    public function beforeFilter() {
        parent::beforeFilter();
        if (/* checks logged user is admin */) {
            $this->Auth->allow('*');
        }
    }

    To this to make it work:

    public function beforeFilter() {
        parent::beforeFilter();
        if (/* checks logged user is admin */) {
            $this->Auth->allow();
        }
    }
  28. that’s true. it depends on what cake version you are using.
    in earlier versions it was ‘*’ now it is just no arguments.
    I updated the tutorial to make it clearer ๐Ÿ™‚ thank you for pointing that out.

  29. Hi. How can i use TinyAuth without user table? I created user model

    App::uses('AppModel', 'Model');
    /**
     * User Model
     *
     */
    class User extends AppModel {
        public $useTable = false;
    }

    andi get error:
    Error: Call to a member function find() on a non-object
    File: /home/chyrus/projekty/seotool/www/app/Plugin/Tools/Controller/Component/Auth/TinyAuthorize.php
    Line: 162

  30. You need to make Configure::read($this->settings[‘aclModel’]); work

    So provide them in Configure as described above in your bootstrap/config etc:

    $config['Role']  = ...
  31. I see the code of TinyAuth and I want to use the public function validate() to do individual checks for certain roles to show edit buttons etc. But I cant find a way to access validate(), is there any?

  32. Hello, thanks for great plugin, but I am stucked at the moment… When I try access for example /users/add, I am redirected to /.

    My AppController:

      class AppController extends Controller {
      
        public $components = array(
          'Auth' => array(
            'authenticate' => array(
              'Blowfish' => array(
                'contain' => array(
                  'Group' => array(
                    'fields' => array(
                      'id'
                  )
                )
              ) 
              )
            )
          )
        );
    
        public function beforeFilter() {
    
          $this->Auth->authorize = array(
            'Tools.Tiny' => array(
              'aclModel' => 'Group' 
            )
          );
        
        }
    
      }

    My acl.ini:

    [Users]
    add = Administrator

    Session array:

    [Auth] => Array
            (
                [User] => Array
                    (
                        [id] => 1
                        [username] => Bacon
                        [email] => 
                        [Group] => Array
                            (
                                [0] => Array
                                    (
                                        [id] => 1
                                        [GroupsUser] => Array
                                            (
                                                [id] => 1
                                                [user_id] => 1
                                                [group_id] => 1
                                            )
    
                                    )
    
                                [1] => Array
                                    (
                                        [id] => 2
                                        [GroupsUser] => Array
                                            (
                                                [id] => 2
                                                [user_id] => 1
                                                [group_id] => 2
                                            )
    
                                    )
    
                            )
    
                    )
    
            )

    Any idea, please?

  33. It tries to look for the ids in User.Group directly – as find(list) would return them.
    You need to put them in as flat array of ids.

    User.Group => array(1, 2, 3, ...)

    .

    or enhance the component.

  34. Wow, what an extremely quick reply! ๐Ÿ™‚ Thanks. I was afraid of that… Hope I will find solution to convert it to flat array.

  35. You will be happy to hear that the deeper "contained" Role array is now supported ๐Ÿ™‚

  36. Mark, many thanks for your work! ๐Ÿ™‚ I finally got it working.

    But I would like to say, that maybe you should mention, that Group.alias (or Role.alias) have to be in lowercase in order to work. Took me few hours to realize, why am I not authorized to action, even if I have it set properly.

    Well, now it works, that in my acl.ini I can have:
    [Users]
    info = admin
    OR
    info = Admin

    and it would work because every role from .ini will be converted to lowercase (because $newRole = Configure::read($this-&gt;settings[‘aclModel’] . ‘.’ . strtolower($role));).

    But if you have $this-&gt;settings[‘aclModel’][‘Admin’], it won’t work, because $newRole is looking for [‘admin’]. I don’t know if it is bug or feature, but I think it should be mentioned for other users to realize. Or maybe you can convert roles to lowercase also when you write them to config (Configure::write($this-&gt;settings[‘aclModel’], $availableRoles);).

    I am wondering that I am the only one with this issue… ๐Ÿ™‚ Keep your great work!

  37. I was wondering if anyone would know where the best place would be to put a restriction for something like ‘RolesUser.site_id =&gt; 2’ I am working on a SaaS app so I have 1 User to many roles but I need to select only roles pertaining to the domain(site_id) they are on

    $this-&gt;Auth-&gt;authenticate = array(
    ‘Form’ =&gt; array(
    ‘scope’ =&gt; array(‘RolesUser.site_id’ =&gt; $result[‘Sites’][‘site_id’]),
    ‘recursive’ =&gt; 1,
    )
    );

    But it doesnt work

  38. Ok I got it sorted and Im posting what I did to make it work.

    class User extends AppModel {
    
        public $primaryKey = 'id';
        public $hasAndBelongsToMany = array(
        'Role' => array(
            'className' => 'Role',
            'joinTable' => 'roles_users',
            'foreignKey' => 'user_id',
            'assosciationForeignKey' => 'role_id',
            'unique' => 'keepExisting'
        )
        );
    
        function __construct($id = false, $table = null, $ds = null) { 
            $this->hasAndBelongsToMany['Role']['conditions'] = array('RolesUser.site_id' => Configure::read('Settings.site_id')); 
            parent::__construct($id, $table, $ds); 
        }

    The only issue Im still having and I dont thinkits tied to Tiny is I cant get the fields to work so I can use email instead of username

  39. Hello Mark,

    I followed all the steps in this tutorial but I don’t know why authorization always fails. I’m using version 2.4.0. Can you please help me out?

    Here’s what I added to my config.php file:

    $config['Group'] = array(
        'admin' => 1
    );

    and include it in my AppController.php

        public function beforeFilter() {
            // include TinyAuth
            $this->Auth->authorize = array('Tiny');
    
            //Configure AuthComponent
            $this->Auth->authenticate = array('Form');
           .... other logics...

    and here’s my acl.ini file:

    [Users]
    * = admin

    When I access any actions in UsersController under /users the authorization always fails without any errors. Also I changed the aclModel and aclKey in TinyAuthorize.php to Group and group_id, respectively, but it still doesn’t work.

    Thanks for your help,

    Thiem

  40. They key question is: What is in your session? If the expected and required data is not there (and in the form that it is supposed to) it will not work ๐Ÿ™‚
    Please check your session data under the key "Auth".

  41. Typo fix in article (extra parenthesis at end):
    $this->Auth->authenticate = array(‘Form’));

    Great work, keep it up!

  42. Althought this is not strictly related to Tiny, there’s a small inconvenient when using authenticating via cookie a user.
    Let’s suppose the superadmin, logs back in after some time, his session has expired but the "remember me" cookie is active. If he tries to access a non-public action, he well get a non-authorized redirect.
    This happens because

    Although the "allow all" code is executed in AppController:

    $userRoles = $this->Session->read('Auth.User.Role');
    if ($userRoles && in_array(Configure::read('Role.superadmin'), $userRoles)) {
        // Skip auth for this user entirely
        $this->Auth->allow('*'); // cake2.x: `$this->Auth->allow();` without any argument!
    }

    The condition will fail because the session data for the user is empty.

    After AppController::beforeFilter() the AuthComponent::startup() methods is called, the

    $this->_isAllowed($controller)

    Will return false, because no actions were allowed, and also the

    $this->isAuthorized($this->user())

    Will return false because Tiny hasn’t the superadmin listed in the .ini config.

    A workaround I’ve found modifying Tiny was to add this to the top of acl.ini

    [_global]
    * = superadmin
    And added this check right after the ACL load in Tiny:
    // all access check
    if (isset($this->_acl['_global'])) {
        $matchArray = $this->_acl['_global']['*'];
        foreach ($roles as $role) {
            if (in_array((string)$role, $matchArray)) {
                return true;
            }
        }
    }

    This way the ACL check is executed after loading the user allowing the superadmin to access all actions.

    What do you think?

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.