Log message #4205102

# At Username Text
# Sep 23rd 2019, 06:15 jotpe Morning
# Sep 23rd 2019, 05:17 javier.villanueva morning all
# Sep 23rd 2019, 04:40 conehead Good morning guys
# Sep 22nd 2019, 20:55 admad nucc11: https://github.com/cakephp/app/blob/master/config/bootstrap.php#L47
# Sep 22nd 2019, 19:20 nucc11 it appears that the development server doesn't automatically load the contents of .env file, or am i missing something?
# Sep 22nd 2019, 18:16 c.wichmann Ä
# Sep 22nd 2019, 16:43 valerij.bancer I wish we would not use cake 2.x at all
# Sep 22nd 2019, 16:38 admad no one's forcing you to use CakePHP or if someone is take it up with them :slightly_smiling_face:
# Sep 22nd 2019, 16:34 valerij.bancer what should projects with enum data types do? migrate to another framework?
# Sep 22nd 2019, 16:31 admad "no and probably never will be"
# Sep 22nd 2019, 16:25 valerij.bancer I mean MySQL data type `enum`. cakedc/enum seems to be something different
# Sep 22nd 2019, 16:23 admad no and probably never will be. There are plugin's to emulate enums though, like cakedc/enum
# Sep 22nd 2019, 16:21 valerij.bancer is there any support of enum data type in 3.x?
# Sep 22nd 2019, 15:21 nucc1 doesn't look like there's a way to allow-all, so go ahead without the Authentication component.
# Sep 22nd 2019, 15:06 admad the 2 components are not dependent on each other
# Sep 22nd 2019, 15:03 nucc1 I like the convenience as well, but i want to do the decision making about what to do myself
# Sep 22nd 2019, 15:03 nucc1 I am hoping to use the Authorization comonent as well and assumed they go together
# Sep 22nd 2019, 15:02 admad the component just provides some extra convenience, it's not really necessary for the auth process
# Sep 22nd 2019, 15:02 admad *that's one way
# Sep 22nd 2019, 15:02 admad they one way. Another thing is for what else do you need the component?
# Sep 22nd 2019, 14:58 nucc1 did you mean make it default to allow-all and then just read the results and do what I desire? I can't see how too use it without loading it
# Sep 22nd 2019, 14:52 nucc1 thanks. :)
# Sep 22nd 2019, 13:30 admad *AuthenticationComponent
# Sep 22nd 2019, 13:30 admad nucc1: just dont load the AuthComponent? Then you can just check result and do whatever you want
# Sep 22nd 2019, 12:59 nucc1 when using the Authentication plugin, is it possible to catch and do something else with the UnAuthenticatedException, or do I have to rely on the redirect?
# Sep 22nd 2019, 12:42 noel There are but they don't seem to work for json-api. Thx anyhow.
# Sep 22nd 2019, 12:27 adam282 I am sure there is some built-in Cake routines and response handlers for JSON
# Sep 22nd 2019, 12:26 adam282 Honestly, I have no idea as in the last app I wrote, I had a small subset of functions that required a JSON response and that was CakePHP 2.x so I did it the way you just mentioned.
# Sep 22nd 2019, 12:22 noel @adam282 turning off autorender and setting the layout to false does indeed prevent the template from being required, which is cool. However _serialize doesn't result in any output. Is there a way to interact with crud-json-api's classes so as to build up a json-api response? Obviously I build up an array manually and then json_encode it and send it as a response but that seems like re-inventing the wheel.
# Sep 22nd 2019, 12:18 noel Ok tx I'll try that. I found this works although it seems heavy-handed: ``` public function index() { if ($this->request->is('jsonapi')) { $response = new \Cake\Http\Response; $response = $response->withType('application/json') ->withStringBody(json_encode(['success' => true])); } return $response; } ```
# Sep 22nd 2019, 12:13 adam282 Something like this inside your function inside your Controller: ``` $this->viewBuilder()->setLayout(false); $this->autoRender = false; ```
# Sep 22nd 2019, 12:12 adam282 Yeah, you need to turn off autorender and set the layout to false
# Sep 22nd 2019, 12:09 noel Hi. Working with crud-json-api – is there a way to have a custom response that has nothing to do with table's in the database for a particular Controller? I tried doing `$this->loadComponent('RequestHandler')` and `$this->set('_serialize', ['myVar'])` but it still seems to be asking for the template.
# Sep 22nd 2019, 11:19 admad @val https://github.com/FriendsOfCake/fixturize
# Sep 22nd 2019, 09:34 valerij.bancer Hi, is there an alternative of Fixturize plugin in 3.x? https://github.com/lorenzo/cakephp-fixturize
# Sep 22nd 2019, 07:29 maymeow need adwise I have relations `users -> addresses -> posts` When administrator wants to delete address or user what to do or what are you doing? • Cascading delete ? (so all things related to users and addresses are deleted • Deactivate user address etc ... so all posts are keep in database?
# Sep 21st 2019, 23:19 D-rex How do I disable csrf?
# Sep 21st 2019, 23:18 D-rex Keep getting CSRF token mismatch even after rem,oving the middleware from the route scope
# Sep 21st 2019, 20:55 noel Ok nvm. Got it
# Sep 21st 2019, 20:39 noel Actually I got the PATCH request working now. However I still have the issue with the exception renderer.
# Sep 21st 2019, 18:50 noel So I assume this is because errorException renderer isn't set up for JSON API... but I can't seem to get that set up using the information in the docs. Any help appreciated tx.