This listener allows you to easily create a JSON or XML Api built on top of Crud.
Note
The API listener
depends on the RequestHandler
to be loaded before Crud
.
Please also see the CakePHP documentation on JSON and XML views
You need to tell the Router
to parse extensions else it won’t be able to process and render json
and xml
URL extension.
Attach it on the fly in your controllers beforeFilter
, this is recommended if you want to attach it only to
specific controllers and actions.
<?php
class SamplesController extends AppController {
public function beforeFilter(\Cake\Event\EventInterface $event)
{
parent::beforeFilter($event);
$this->Crud->addListener('Crud.Api');
}
}
Attach it using components array, this is recommended if you want to attach it to all controllers, application wide.
<?php
class AppController extends Controller {
public function initialize(): void
{
$this->loadComponent('RequestHandler');
$this->loadComponent('Crud.Crud', [
'actions' => [
'Crud.Index',
'Crud.View'
],
'listeners' => ['Crud.Api']
]);
}
The Api Listener creates 3 new detectors in your Request
object.
Checks if the extension of the request is .json
or if the requester accepts json as part of the
HTTP accepts
header.
Checks if the extension of the request is .xml
or if the requester accepts XML as part of the HTTP accepts
header.
Checking if the request is either is('json')
or is('xml')
.
If the current request doesn’t evaluate is('api')
to true, the listener
won’t do anything at all.
All its callbacks will simply return NULL
and don’t get in your way.
In case of an error, in order to get a standardized response in either
json
or xml
- according to the API request type, for api requests,
the default CakePHP exception renderer needs to be overridden.
Set the Error.exceptionRenderer
config in config/app.php
to
\Crud\Error\ExceptionRenderer::class
as following:
'Error' => [
'errorLevel' => E_ALL,
'exceptionRenderer' => \Crud\Error\ExceptionRenderer::class,
'skipLog' => [],
'log' => true,
'trace' => true,
],
The API listener will try to enforce some best practices on how an API should behave.
For a request to index
and view
the HTTP request type must be
HTTP GET
- else an MethodNotAllowed
exception will be raised.
For a request to add
the HTTP request type must be HTTP POST
-
else an MethodNotAllowed
exception will be raised.
For a request to edit
the HTTP request type must be HTTP PUT
-
else an MethodNotAllowed
exception will be raised.
For a request to delete
the HTTP request type must be HTTP DELETE
-
else an MethodNotAllowed
exception will be raised.
The default response format for both XML and JSON has two root keys, success
and data
. It’s possible to add
your own root keys by using the serialize
view builder option.
{
"success": true,
"data": {
}
}
<response>
<success>1</success>
<data></data>
</response>
The data.exception
key is only returned if debug
is > 0
{
"success": false,
"data": {
"code": 500,
"url": "/some/url.json",
"name": "Some exception message",
"exception": {
"class": "CakeException",
"code": 500,
"message": "Some exception message",
"trace": []
}
}
}
<response>
<success>0</success>
<data>
<code>500</code>
<url>/some/url.json</url>
<name>Some exception message</name>
<exception>
<class>CakeException</class>
<code>500</code>
<message>Some exception message</message>
<trace></trace>
<trace></trace>
</exception>
<queryLog/>
</data>
</response>
success
is based on the event->subject->success
parameter from the
Add
action.
If success
is false
a HTTP response code of 422
will be returned,
along with a list of validation errors from the model in the data
property
of the response body.
If success
is true
a HTTP response code of 201
will be returned,
along with the id of the created record in the data
property of the
response body.
The success
return data can be customized by setting the api.success.data.entity
config for the action.
//In your Controller/Action
$this->Crud->action()->setConfig('api.success.data.entity', [
'id', //Extract the `id` value from the entity and place it into the `id` key in the return data.
'status' => 'status_value' //Extract the `status_value` value from the entity and place it into the `status` key in the return data.
]);
success
is based on the event->subject->success
parameter from the
Edit
action.
If success
is false
a HTTP response code of 422
will be returned,
along with a list of validation errors from the model in the data
property
of the response body.
If success
is true
a HTTP response code of 200
will be returned
(even when the resource has not been updated).
success
is based on the event->subject->success
parameter from
the Delete
action.
If success
is false
a HTTP response code of 400
will be returned.
If success
is true
a HTTP response code of 200
will be returned,
along with empty data
property in the response body.
In case an id
is provided to a crud action and the id does not exist in
the database, a 404
NotFoundException` will be thrown.
In case a ìd
is provided to a crud action and the id is not valid
according to the database type a 500 BadRequestException
will be thrown