Giter VIP home page Giter VIP logo

Comments (9)

dereuromark avatar dereuromark commented on May 13, 2024

The main reason is that the session is not static access anymore in 3.x, as such you need to pass it in manually now.

from cakephp-tinyauth.

dereuromark avatar dereuromark commented on May 13, 2024

But if you use the component or helper, it should be done for you, and you can use the same nice wrapping as before: `$this->AuthUser->hasRole()``.
Those are currently part of the tools plugin, where the Auth part should be as well (or?), as this seems to be quite more specific than the tinyauth itself.

from cakephp-tinyauth.

repher avatar repher commented on May 13, 2024

Hello!

Thanks for your answer. I just testet using AuthUser but something is wrong.

I put $this->loadComponent('Tools.AuthUser'); after loading TinyAuth and tried debug($this->AuthUser->hasRole( ROLE_MEMBER )); afterwards resulting in false when it should be true.

In auth.php (which i loaded in bootstrap.php) is the following defined:

define('ROLE_MEMBER', 1);
define('ROLE_OFFICE', 2);

return [
    'Roles' => [
        'office' => ROLE_OFFICE,
        'member' => ROLE_MEMBER,
    ],
];

Every definition in acl.ini works perfectly.

It seems that there is an error in AuthUserTrait::roles(). The call to $roles = $this->user(USER_ROLE_KEY); returns null. If I replace it for example with $roles = $this->user('role_id'); it works.

Am I doing something wrong?

Thanks,
Bernhard

from cakephp-tinyauth.

dereuromark avatar dereuromark commented on May 13, 2024

Sure you defined USER_ROLE_KEY?
As the code shows it defaults to define('USER_ROLE_KEY', 'Roles') for non-db config.

from cakephp-tinyauth.

repher avatar repher commented on May 13, 2024

Mmmh, I thought this is handled like a linked model and translated somewhere to role_id ...?

What about this comment? Says like it sould be role_id ...?

from cakephp-tinyauth.

dereuromark avatar dereuromark commented on May 13, 2024

Just define it as you need it in your bootstrap :)

define('USER_ROLE_KEY', 'role_id')

from cakephp-tinyauth.

repher avatar repher commented on May 13, 2024

It works! Thanks!

I was wondering if you could give me some advice? Using TinyAuth I need to check for ACL rights given in acl.ini. Right now I'm using a custom component llike this:

class AclComponent extends Component {
    public function check ( $controllerName, $action, $plugin = null )  {
        $request = new Request();
        $request->addParams( [ 'controller' => $controllerName, 'action' => $action, 'plugin' => $plugin ] );
        return $controller = $this->_registry->getController()->Auth->isAuthorized( null, $request );
    }
}

Is this ok? Or is there a better way I'm not seeing ...?

Thanks!

from cakephp-tinyauth.

dereuromark avatar dereuromark commented on May 13, 2024

cool.
Feel free to PR docs adjustments so other people know what to do :)

Well, the acl was never intended to be used like this. So if it works, I guess its fine.
There might be refactoring possible that could make it cleaner or easier, though.
If you have suggestions let me know.

from cakephp-tinyauth.

repher avatar repher commented on May 13, 2024

Mmmh. I guess adding this functionality to TinyAuthorize.php would be a good idea. What do you think about a wrapper aroung TinyAuthorize::authorize($user, Request $request)?

from cakephp-tinyauth.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.