GithubHelp home page GithubHelp logo

Group-only seem to doesn't work about acl HOT 5 CLOSED

cakephp avatar cakephp commented on May 18, 2024
Group-only seem to doesn't work

from acl.

Comments (5)

lorenzo avatar lorenzo commented on May 18, 2024

Just out of curiosity, try:

$this->addBehavior('Acl.Acl', [
    'type' => 'requester'
]);
$this->eventManager()->detach($this->behaviors()->get('Acl'));

from acl.

Xety avatar Xety commented on May 18, 2024

I just tested and it changed nothing.

Edit: I found the problem, i do some tests before to post the problem.

from acl.

Xety avatar Xety commented on May 18, 2024

Ok, so the problem is this line :
https://github.com/cakephp/acl/blob/master/src/Model/Table/AclNodesTable.php#L113
The $this->entityClass() return all times Acl\Model\Entity\Aro. That's why the function bindNode() in the UserEntity was never executed. I just changed this line by :

\Cake\Core\App::className(\Cake\Utility\Inflector::singularize($name), 'Model/Entity')

and it return the correct entity App\Model\Entity\User so the function bindNode() is correctly executed here :
https://github.com/cakephp/acl/blob/master/src/Model/Table/AclNodesTable.php#L123-L124

I saw this problem by checking again the Cake2 ACL :
https://github.com/cakephp/cakephp/blob/master/lib/Cake/Model/AclNode.php#L131

from acl.

markstory avatar markstory commented on May 18, 2024

We can't assume that people will always have concrete Entity classes. It might be best to get the correct Table class and use that to get an entity instance:

$table = TableRegistry::get($name);
$entityClass = $table->entityClass();

from acl.

Xety avatar Xety commented on May 18, 2024

@markstory Yes you're right, thank for your help !

I close because #31 is open now.

from acl.

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.