# |
Sep 30th 2016, 08:28 |
Neon1024 |
Ouch thatâ??s old |
# |
Sep 30th 2016, 08:28 |
Neon1024 |
Oh 3.7.* |
# |
Sep 30th 2016, 08:27 |
Neon1024 |
Which 4.3 version of PHP Unit is it for Cake 2? |
# |
Sep 30th 2016, 08:25 |
steinkel |
@kingloui check https://github.com/CakeDC/users/blob/master/src/View/Helper/AuthLinkHelper.php it will provide you exactly that feature |
# |
Sep 30th 2016, 08:23 |
sandeeep |
Thanks Neon1024 |
# |
Sep 30th 2016, 08:22 |
kingloui |
isnâ??t the authComponents isAuthorized method the right place to check? |
# |
Sep 30th 2016, 08:22 |
kingloui |
actually the authorization should be interchangeable, I need the check for a menubuilder to check if a menuitem should be rendered or not. In the end for my projects i will use CakeDC users but it should work for any kind of authorization system |
# |
Sep 30th 2016, 08:21 |
Neon1024 |
Think of it the same way as a User hasMany Addresses, Users hasMany TelephoneNumbers |
# |
Sep 30th 2016, 08:21 |
Neon1024 |
So you users table can be clean, and your extra data is normalized into itâ??s own table |
# |
Sep 30th 2016, 08:21 |
Neon1024 |
Admin users donâ??t have any details, but regular users do |
# |
Sep 30th 2016, 08:21 |
Neon1024 |
Users hasOne UserDetails |
# |
Sep 30th 2016, 08:21 |
Neon1024 |
Just donâ??t do it. |
# |
Sep 30th 2016, 08:21 |
Neon1024 |
You DO NOT need two tables of users |
# |
Sep 30th 2016, 08:20 |
Neon1024 |
No, |
# |
Sep 30th 2016, 08:20 |
sandeeep |
<Neon1024>With belongs to option where admin is not mapped with this table. Right? |
# |
Sep 30th 2016, 08:20 |
dereuromark |
instead of having a lot of isAuthorized() code in each controller, a very lightweight TinyAuth approach# |
# |
Sep 30th 2016, 08:19 |
dereuromark |
unless it is dynamic deciisions |
# |
Sep 30th 2016, 08:19 |
kingloui |
what* |
# |
Sep 30th 2016, 08:19 |
kingloui |
how to you mean with use the same plugin? |
# |
Sep 30th 2016, 08:19 |
dereuromark |
kingloui: for you I would recommend using the same plugin, takes all the overhead away from the controller code. |
# |
Sep 30th 2016, 08:18 |
Neon1024 |
sandeeep: No, youâ??d normalize that data out into a related table |
# |
Sep 30th 2016, 08:18 |
Neon1024 |
As your controller will extend it |
# |
Sep 30th 2016, 08:18 |
sandeeep |
In my system normal user have to fill lot of information which is not required in admin case, so do i have to use separate table to store these data |
# |
Sep 30th 2016, 08:18 |
Neon1024 |
Why are you not using the isAuthorized() method in the AppController, which would seem to me, the easiest way to achieve this |
# |
Sep 30th 2016, 08:16 |
kingloui |
I want to check if a url is authorized for the user |
# |
Sep 30th 2016, 08:16 |
kingloui |
can someone give me a hint why $this->_registry->getController()->Auth->isAuthorized(null, $request); gets authorized by the current controller and not by the one requested by passed argument $request? |
# |
Sep 30th 2016, 08:15 |
dereuromark |
If you use sth like https://github.com/dereuromark/cakephp-tinyauth it is a matter of 3 minutes :slightly_smiling_face: |
# |
Sep 30th 2016, 08:14 |
dereuromark |
sandeeep: yeah, always use a single entry point ( login) and a user table with role_id s |
# |
Sep 30th 2016, 08:14 |
sandeeep |
Ok than how i can limit normal user to access admin interface |
# |
Sep 30th 2016, 08:14 |
Neon1024 |
Creating two separate tables will make your development significantly harder, for no benefit |
# |
Sep 30th 2016, 08:14 |
dereuromark |
birdy247 dev of it seems to be pretty stale these days |
# |
Sep 30th 2016, 08:13 |
Neon1024 |
sandeeep: I would recommend using a single table for all your users and adding a role to each one to determine if theyâ??re an admin or not |
# |
Sep 30th 2016, 08:13 |
sandeeep |
Hi. I am new with cakePHP 3.x. Is it possible to use two different login table for admin routine and normal |
# |
Sep 30th 2016, 08:12 |
Neon1024 |
Morning all |
# |
Sep 30th 2016, 08:06 |
charolastra |
changing ->find('all') to 'list' in a baked project results in a "Unable to find table class for current entity" exception. it mentions an related n:m table at the bottom. any hints on what's going on? |
# |
Sep 30th 2016, 08:02 |
birdy247 |
@dereuromark I do :) |
# |
Sep 30th 2016, 07:27 |
kingloui |
I use ControllerAuthorize |
# |
Sep 30th 2016, 07:09 |
kingloui |
I debugged the authcomponents isAuthorized method, and double checked that the authorizer is not the controller where the request was made for |
# |
Sep 30th 2016, 06:55 |
kingloui |
I think $this->_registry->getController()->Auth->isAuthorized(null, $request); does something sketchy |
# |
Sep 30th 2016, 06:55 |
kingloui |
Hey guys I have a problem with the auth component: I want to check if the logged user can access a certain url, I borrowed this function from CakeDC/Users http://pastebin.com/i0yFMpGJ Problem is, it always returns true because it checks for the controller/actions where Iâ??m currently in and not for the one I passed as argument. I check that the request created has the correct params, nothing unordinary to find there. |
# |
Sep 30th 2016, 05:59 |
abhilashlohar |
but when i add first entry with no parent id , it is not saving |