# |
Apr 21st 2017, 13:52 |
Neon1024 |
So I can selectivly overload methods as I need |
# |
Apr 21st 2017, 13:52 |
Neon1024 |
class ApiAppController extends Apiv3AppController |
# |
Apr 21st 2017, 13:52 |
Neon1024 |
use App\Controller\Api\V3\ApiAppController as Apiv3AppController; |
# |
Apr 21st 2017, 13:52 |
Neon1024 |
I extend |
# |
Apr 21st 2017, 13:51 |
admad |
*wasteful |
# |
Apr 21st 2017, 13:51 |
admad |
Neon1024: how do you handle routing for case where you just needs changes to say one controller for v4 but rest stay same as v3. Would be waste to create all new controller for v4 |
# |
Apr 21st 2017, 13:49 |
Neon1024 |
So v4 has different response structure and etc |
# |
Apr 21st 2017, 13:49 |
Neon1024 |
I’ve recently had to redo all the json output though |
# |
Apr 21st 2017, 13:49 |
Neon1024 |
So I used the json listener and it works okay |
# |
Apr 21st 2017, 13:49 |
Neon1024 |
Unfortunatly bravo-kernels excellenet jsonapi listener wasn’t done when I started |
# |
Apr 21st 2017, 13:49 |
birdy247 |
Im on this :slightly_smiling_face: |
# |
Apr 21st 2017, 13:48 |
Neon1024 |
Yep |
# |
Apr 21st 2017, 13:47 |
birdy247 |
Neon1024 did you just use crud for your API? |
# |
Apr 21st 2017, 13:47 |
Neon1024 |
birdy247, Not sure it’s recorded |
# |
Apr 21st 2017, 13:45 |
admad |
would have gotten a lot more tickets if it didnt work with config shown in readme |
# |
Apr 21st 2017, 13:45 |
awi |
hi. Is there a datasource for couchbase in cakephp3? |
# |
Apr 21st 2017, 13:45 |
birdy247 |
slide 12 is the ticket :slightly_smiling_face: |
# |
Apr 21st 2017, 13:45 |
admad |
don't think anything has changed in 3.4 to cause problem |
# |
Apr 21st 2017, 13:45 |
birdy247 |
I need to get on crud! |
# |
Apr 21st 2017, 13:45 |
Neon1024 |
inorite! |
# |
Apr 21st 2017, 13:45 |
birdy247 |
Neon1024 thats ace |
# |
Apr 21st 2017, 13:44 |
hmic |
i do have an empty initialize in the controller just calling parent::initialize |
# |
Apr 21st 2017, 13:44 |
admad |
it's supposed to work |
# |
Apr 21st 2017, 13:44 |
admad |
please debug and let me know why it doesn't work :slightly_smiling_face: |
# |
Apr 21st 2017, 13:43 |
hmic |
admad: but it does not work if specified at all. no auth at all is done with it in place! *or* i am doing something terribly wrong |
# |
Apr 21st 2017, 13:42 |
Neon1024 |
birdy247, Perhaps see my Cakefest talk? https://www.slideshare.net/davidyell/how-i-built-web-services-in-cakephp :p </pimp> |
# |
Apr 21st 2017, 13:42 |
birdy247 |
controllers then live in that? |
# |
Apr 21st 2017, 13:42 |
birdy247 |
and V3 is a folder |
# |
Apr 21st 2017, 13:42 |
birdy247 |
Api is a folder |
# |
Apr 21st 2017, 13:42 |
admad |
s/for/from |
# |
Apr 21st 2017, 13:42 |
Neon1024 |
Plus the sneeky side bonus is that you can extend controllers |
# |
Apr 21st 2017, 13:42 |
admad |
@hmic: i showed it as default in readme mainly to avoid tickets for those trying to get auth info in beforeFilter() :slightly_smiling_face: |
# |
Apr 21st 2017, 13:42 |
birdy247 |
So In terms of folder structure |
# |
Apr 21st 2017, 13:41 |
Neon1024 |
10/10 would version again |
# |
Apr 21st 2017, 13:41 |
Neon1024 |
I did, it’s worked great for me :) |
# |
Apr 21st 2017, 13:41 |
birdy247 |
So you used prefix routes? |
# |
Apr 21st 2017, 13:41 |
Neon1024 |
So I can have \App\Controller\Api\V3\ProductsController |
# |
Apr 21st 2017, 13:41 |
Neon1024 |
birdy247, The trick I used was to use /api as a prefix, then have version prefixes under that |
# |
Apr 21st 2017, 13:41 |
birdy247 |
so in cake, how would I handle versions? |
# |
Apr 21st 2017, 13:40 |
technofection |
@hmic I am still stuck :( |
# |
Apr 21st 2017, 13:39 |
birdy247 |
Neon1024 ah yes, thats what I am used to |