Log message #4266573

# At Username Text
# Jun 25th 2021, 16:47 ricmelero this way is cleaner
# Jun 25th 2021, 16:47 ricmelero I had moved all inside Plugin::routes() method to my routes.php, also worked, but it wasn't feel rigth
# Jun 25th 2021, 16:45 ricmelero yeah, that did the trick,
# Jun 25th 2021, 16:44 admad you can use `$routes->loadPlugin('Foo')` at the top of your `routes.php` to load the plugin's route first.
# Jun 25th 2021, 16:43 ricmelero I can get it working, but it feel like a hack
# Jun 25th 2021, 16:43 ricmelero so, they are loaded after app routes
# Jun 25th 2021, 16:42 ricmelero I've app routes defined in config/routes.php, but plugin routes are in each plugin's Plugin::routes() method
# Jun 25th 2021, 16:41 admad Just overly generic routes are bound to cause you problems.
# Jun 25th 2021, 16:40 admad > sorry, it's like this "/{lang}/{controller}/{action}/*" Well then no wonder it matches, fix your routes order.
# Jun 25th 2021, 16:39 ricmelero may I attach an image here?
# Jun 25th 2021, 16:39 kevin.pfeifer but your `/{lang}/admin/{controller}/{action}` route is present above the blue one?
# Jun 25th 2021, 16:38 ricmelero @kevin.pfeifer yep
# Jun 25th 2021, 16:38 kevin.pfeifer so if you enable debugkit and check the “Routes” tab the wrong route is marked blue?
# Jun 25th 2021, 16:37 ricmelero that's why it matchs
# Jun 25th 2021, 16:37 ricmelero sorry, it's like this "/{lang}/{controller}/{action}/*"
# Jun 25th 2021, 16:34 admad > /es/admin/users/view/1 is matching with /{lang}/{controller}/{action} @ricmelero I don't see how that's possible since your URL has 4 parts while the route has just 3 (and there's no `/*` at the end). And even if that's the case just connect your routes for admin prefix earlier.
# Jun 25th 2021, 16:25 nick.vanderwoude @ndm That's good advice, thanks. I was able to make some progress from newing up my own new Response object in the controller and returning that. It prevents the api endpoint from getting redirected, which is better, but I am still having issues getting the data out on the front end
# Jun 25th 2021, 16:10 slackebot whatever you want. But since that's coming from someone who's not familiar with the plugin, take it with a grain of salt.
# Jun 25th 2021, 16:10 ndm @nick.vanderwoude I'm not overly familiar with the plugin, but looking at the code, the redirects seem pretty much hardcoded. https://github.com/CakeDC/users/blob/master/src/Controller/Component/LoginComponent.php#L145 You could probably provide a custom `login()` action, require the trait's method in an aliased fashion, invoke it manually and extract the required information from the returned response, then you can do with it
# Jun 25th 2021, 16:09 ricmelero I was debbuging and I saw that all routes ended up under "/" path in the routes collection, so the revert sorting to move longer paths first, does nothing, and inside that path, plugin routes are added after, so is matching the shorter first, without plugin prefix
# Jun 25th 2021, 16:06 slackebot way.
# Jun 25th 2021, 16:06 ricmelero @admad I'm using your i18n routing plugin, in a cakephp 4 project, and I'd isolated roles within plugins, and I having issues with routing: for example /es/admin/users/view/1 is matching with /{lang}/{controller} /{action} instead of /{lang}/admin/{controller}/{action} Sorry to bother you directly, but I just want to know if it you have used with plugins, if there is something extra to do or if just doesn't suppose to work this
# Jun 25th 2021, 16:01 staccato123 Thanks all. I have now got it throwing errors in my code instead of its code ;) plus it's five o'clock so excellent timing! Have a good weekend, all
# Jun 25th 2021, 15:53 nick.vanderwoude how can I interrupt this login action so I can handle the redirect on the front end?
# Jun 25th 2021, 15:52 nick.vanderwoude the problem is that the 302 redirect occurs, so when the response gets back to the front end it's a 500 because the 302 redirected to the next location before it returned
# Jun 25th 2021, 15:52 nick.vanderwoude This works correctly: when I hit the endpoint it correctly logs in the user with the credentials i sent in a form
# Jun 25th 2021, 15:51 nick.vanderwoude Hi all! I am looking for some support. I am working on setting up a custom React front end to handle log ins. I am connecting to a custom API endpoint that calls the login() action on the LoginTrait of the CakeDC auth plugin
# Jun 25th 2021, 15:41 staccato123 They're very short anyway
# Jun 25th 2021, 15:41 staccato123 @admad will do
# Jun 25th 2021, 15:04 greg138 Inquiring minds want to know...
# Jun 25th 2021, 15:01 admad *them then
# Jun 25th 2021, 15:01 admad staccato123: if you are going to rewrite them them better write them as commands, shells have been deprecated :)
# Jun 25th 2021, 14:59 tyler.adam.lazenby thanks anyways
# Jun 25th 2021, 14:59 tyler.adam.lazenby I figured it out
# Jun 25th 2021, 14:58 greg138 I mean, for example, when you create the encoded string to post, if that was happening inside an anonymous function and referencing a variable that doesn't exist in that context, then what it encodes to would legit be a blank string, and then what your controller receives would be exactly right.
# Jun 25th 2021, 14:57 staccato123 @ndm my imported shells are super small so I have just deleted them for now and I will rewrite them when the main app is working. That's helped, thanks
# Jun 25th 2021, 14:57 tyler.adam.lazenby That the $this->getBody()->getContents() wasn't going to get what was passed
# Jun 25th 2021, 14:56 greg138 Any chance that some part of [the decode / encode process] is failing to give what you expect?
# Jun 25th 2021, 14:56 tyler.adam.lazenby and no I did eventually figure out what it was
# Jun 25th 2021, 14:56 tyler.adam.lazenby you had another question lol... sorry I scrolled way down
# Jun 25th 2021, 14:55 greg138 And my second question?