Log message #4193521

# At Username Text
# Jul 16th 2019, 15:27 itmpls i guess i need one in validationDefault too
# Jul 16th 2019, 15:27 ricksaccous to the entity
# Jul 16th 2019, 15:27 ricksaccous after the failed save it attaches
# Jul 16th 2019, 15:26 itmpls how would this work if its triggered on save and not patch entity? does it check for 'errorField' and bind on patchEntity because of that?
# Jul 16th 2019, 15:22 ricksaccous or something like that
# Jul 16th 2019, 15:22 slackebot <ricksaccous>
# Jul 16th 2019, 15:21 ricksaccous so it would look like
# Jul 16th 2019, 15:21 ricksaccous then you just fill out the message param
# Jul 16th 2019, 15:21 ricksaccous @itmpls for some reason i have found it works, if you put the field you want to be the error field first in order in the isUnique
# Jul 16th 2019, 15:18 slackebot null so maybe that's where the problem it is. Has anyone encountered something similar and where could I be wrong?
# Jul 16th 2019, 15:18 scuadra Hello. I am trying to migrate my users table from Cake 2 and use it in a Cake 3 project. I changed my password field in the database to varchar(255). Unfortunately I can't make it work. I used this link (https://book.cakephp.org/3.0/en/controllers/components/authentication.html#changing-hashing-algorithms) but when I checked in vendor\cakephp\cakephp\src\Auth\WeakPasswordHasher.php I found out that in the check() function $hashedPassword is
# Jul 16th 2019, 15:17 itmpls This doesn't seem to trigger an error for the title field?
# Jul 16th 2019, 15:17 yamcomnet @admad ok. Thanks
# Jul 16th 2019, 15:17 itmpls http://dpaste.com/0T86K70
# Jul 16th 2019, 15:16 admad @yamcomnet you can't. But the sequence behaviour automatically sets the order for a find of you haven't set any explicitly
# Jul 16th 2019, 15:10 ricksaccous scroll down a bit to see the options in action
# Jul 16th 2019, 15:10 ricksaccous @itmpls https://book.cakephp.org/3.0/en/orm/validation.html#creating-a-rules-checker
# Jul 16th 2019, 15:09 ricksaccous in most rules
# Jul 16th 2019, 15:09 ricksaccous @itmpls there is an option for errorField or something
# Jul 16th 2019, 15:05 yamcomnet Did not find from documentation. How can is set model default order. Like when i have custom field priority and i want default order by that field ?
# Jul 16th 2019, 15:05 itmpls actually, yeah seems like it runs on save but latter question remains
# Jul 16th 2019, 15:03 itmpls is buildRules post-patch entity? if so is there a way to get the validation messages . to show up? it doesn't let me save but doesn't show errors
# Jul 16th 2019, 14:24 neon1024 ..and implement the secutity component to get a token so users of the wrong roll can’t post the fields they’re not allowed to
# Jul 16th 2019, 14:23 neon1024 Probably implement Crud plugin so I didn’t have to write the similar method code twice
# Jul 16th 2019, 14:23 neon1024 Then I could authorize by method, controller, prefix or something else in the request
# Jul 16th 2019, 14:22 neon1024 Although in this situation I’d probably just roll different methods and templates for ease of maintenance and development
# Jul 16th 2019, 14:22 neon1024 I’d think you’ll need a combination of a helper and changes to the entity `$_accessible` property, to prevent users posting changes to entities from elsewhere
# Jul 16th 2019, 14:21 varun I am looking at limiting field access (not actions) for users with specific roles. Not sure if either is this is useful to me.
# Jul 16th 2019, 14:21 slackebot <nk-sonu>
# Jul 16th 2019, 14:16 neon1024 Even the plugin you link abstracts the Authorization away from the controller into it’s own class
# Jul 16th 2019, 14:16 neon1024 I don’t think putting Authorize code in the controller is a good idea, especially when there is a class abstraction exactly for that purpose
# Jul 16th 2019, 14:07 waspinator I'm using https://github.com/cakephp/authorization
# Jul 16th 2019, 14:06 waspinator I think it's best to check for auth in the controller layer, and leave the model to just do the change
# Jul 16th 2019, 13:56 neon1024 So all your need is `if ($user['role'] === 'admin' andand $request->getParam('controller') === 'Users' andand $request->getParam('action') === 'add') { return true };`
# Jul 16th 2019, 13:54 neon1024 I just followed the instructions https://book.cakephp.org/3.0/en/controllers/components/authentication.html#creating-custom-authorize-objects
# Jul 16th 2019, 13:54 neon1024 Nope
# Jul 16th 2019, 13:48 varun Do you have example somewhere?
# Jul 16th 2019, 13:47 neon1024 I created my own RoleAuthorize class and did it in there
# Jul 16th 2019, 13:43 VarunAgw I am thinking of adding _setRole() method in the model and then check for auth there. Not sure if it's the best solution.
# Jul 16th 2019, 13:41 VarunAgw I have a field "role" in Users table which is default to "user". I want only people with "admin" role to be able to assign role to others. What is the best way to achieve this.
# Jul 16th 2019, 13:41 varun I have a field "role" in Users table which is default to "user". I want only people with "admin" role to be able to assign role to others. What is the best way to achieve this.