API Response Trait

Much of modern PHP development requires building API's, whether simply to provide data for a javascript-heavy single page application, or as a standalone product. CodeIgniter provides an API Response trait that can be used with any controller to make common response types simple, with no need to remember which HTTP status code should be returned for which response types.

Example Usage

The following example shows a common usage pattern within your controllers.

<?php namespace App\Controllers;

class Users extends \CodeIgniter\Controller
{
    use CodeIgniter\API\ResponseTrait;

    public function createUser()
    {
        $model = new UserModel();
        $user = $model->save($this->request->getPost());

        // Respond with 201 status code
        return $this->respondCreated();
    }
}

In this example, an HTTP status code of 201 is returned, with the generic status message, 'Created'. Methods exist for the most common use cases:

// Generic response method
respond($data, 200);
// Generic failure response
fail($errors, 400);
// Item created response
respondCreated($data);
// Item successfully deleted
respondDeleted($data);
// Client isn't authorized
failUnauthorized($description);
// Forbidden action
failForbidden($description);
// Resource Not Found
failNotFound($description);
// Data did not validate
failValidationError($description);
// Resource already exists
failResourceExists($description);
// Resource previously deleted
failResourceGone($description);
// Client made too many requests
failTooManyRequests($description);

Handling Response Types

When you pass your data in any of these methods, they will determine the data type to format the results as based on the following criteria:

  • If $data is a string, it will be treated as HTML to send back to the client.
  • If $data is an array, it will try to negotiate the content type with what the client asked for, defaulting to JSON
    if nothing else has been specified within ConfigAPI.php, the $supportedResponseFormats property.

To define the formatter that is used, edit ConfigAPI.php. The $supportedResponseFormats contains a list of mime types that your application can automatically format the response for. By default, the system knows how to format both XML and JSON responses:

public $supportedResponseFormats = [
    'application/json',
    'application/xml'
];

This is the array that is used during Content Negotiation to determine which type of response to return. If no matches are found between what the client requested and what you support, the first format in this array is what will be returned.

Next, you need to define the class that is used to format the array of data. This must be a fully qualified class name, and the class must implement CodeIgniterAPIFormatterInterface. Formatters come out of the box that support both JSON and XML:

public $formatters = [
    'application/json' => \CodeIgniter\API\JSONFormatter::class,
    'application/xml'  => \CodeIgniter\API\XMLFormatter::class
];

So, if your request asks for JSON formatted data in an Accept header, the data array you pass any of the respond* or fail* methods will be formatted by the CodeIgniterAPIJSONFormatter class. The resulting JSON data will be sent back to the client.

Class Reference

respond($data[, $statusCode=200[, $message='']])
パラメータ:
  • $data (mixed) -- The data to return to the client. Either string or array.
  • $statusCode (int) -- The HTTP status code to return. Defaults to 200
  • $message (string) -- A custom "reason" message to return.

This is the method used by all other methods in this trait to return a response to the client.

The $data element can be either a string or an array. By default, a string will be returned as HTML, while an array will be run through json_encode and returned as JSON, unless Content Negotiation determines it should be returned in a different format.

If a $message string is passed, it will be used in place of the standard IANA reason codes for the response status. Not every client will respect the custom codes, though, and will use the IANA standards that match the status code.

注釈

Since it sets the status code and body on the active Response instance, this should always be the final method in the script execution.

fail($messages[, int $status=400[, string $code=null[, string $message='']]])
パラメータ:
  • $messages (mixed) -- A string or array of strings that contain error messages encountered.
  • $status (int) -- The HTTP status code to return. Defaults to 400.
  • $code (string) -- A custom, API-specific, error code.
  • $message (string) -- A custom "reason" message to return.
戻り値:

A multi-part response in the client's preferred format.

The is the generic method used to represent a failed response, and is used by all of the other "fail" methods.

The $messages element can be either a string or an array of strings.

The $status parameter is the HTTP status code that should be returned.

Since many APIs are better served using custom error codes, a custom error code can be passed in the third parameter. If no value is present, it will be the same as $status.

If a $message string is passed, it will be used in place of the standard IANA reason codes for the response status. Not every client will respect the custom codes, though, and will use the IANA standards that match the status code.

The response is an array with two elements: error and messages. The error element contains the status code of the error. The messages element contains an array of error messages. It would look something like:

$response = [

'status' => 400, 'code' => '321a', 'messages' => [

'Error message 1', 'Error message 2'

]

];

respondCreated($data[, string $message = ''])
パラメータ:
  • $data (mixed) -- The data to return to the client. Either string or array.
  • $message (string) -- A custom "reason" message to return.
戻り値:

The value of the Response object's send() method.

Sets the appropriate status code to use when a new resource was created, typically 201.

$user = $userModel->insert($data);

return $this->respondCreated($user);

respondDeleted($data[, string $message = ''])
パラメータ:
  • $data (mixed) --

    The data to return to the client. Either string or array. :param string $message: A custom "reason" message to return. :returns: The value of the Response object's send() method.

    Sets the appropriate status code to use when a new resource was deleted as the result of this API call, typically 200.

$user = $userModel->delete($id); return $this->respondDeleted(['id' => $id]);

failUnauthorized(string $description[, string $code=null[, string $message = '']])
パラメータ:
  • $description (mixed) -- The error message to show the user.
  • $code (string) -- A custom, API-specific, error code.
  • $message (string) -- A custom "reason" message to return.
戻り値:

The value of the Response object's send() method.

Sets the appropriate status code to use when the user either has not been authorized, or has incorrect authorization. Status code is 401.

return $this->failUnauthorized('Invalid Auth token');

failForbidden(string $description[, string $code=null[, string $message = '']])
パラメータ:
  • $description (mixed) -- The error message to show the user.
  • $code (string) -- A custom, API-specific, error code.
  • $message (string) -- A custom "reason" message to return.
戻り値:

The value of the Response object's send() method.

Unlike failUnauthorized, this method should be used when the requested API endpoint is never allowed. Unauthorized implies the client is encouraged to try again with different credentials. Forbidden means the client should not try again because it won't help. Status code is 403.

return $this->failForbidden('Invalid API endpoint.');

failNotFound(string $description[, string $code=null[, string $message = '']])
パラメータ:
  • $description (mixed) -- The error message to show the user. :param string $code: A custom, API-specific, error code. :param string $message: A custom "reason" message to return. :returns: The value of the Response object's send() method.

Sets the appropriate status code to use when the requested resource cannot be found. Status code is 404.

return $this->failNotFound('User 13 cannot be found.');

failValidationError(string $description[, string $code=null[, string $message = '']])
パラメータ:
  • $description (mixed) -- The error message to show the user.
  • $code (string) -- A custom, API-specific, error code.
  • $message (string) -- A custom "reason" message to return.
戻り値:

The value of the Response object's send() method.

Sets the appropriate status code to use when data the client sent did not pass validation rules. Status code is typically 400.

return $this->failValidationError($validation->getErrors());

failResourceExists(string $description[, string $code=null[, string $message = '']])
パラメータ:
  • $description (mixed) -- The error message to show the user.
  • $code (string) -- A custom, API-specific, error code.
  • $message (string) -- A custom "reason" message to return.
戻り値:

The value of the Response object's send() method.

Sets the appropriate status code to use when the resource the client is trying to create already exists. Status code is typically 409.

return $this->failResourceExists('A user already exists with that email.');

failResourceGone(string $description[, string $code=null[, string $message = '']])
パラメータ:
  • $description (mixed) -- The error message to show the user.
  • $code (string) -- A custom, API-specific, error code.
  • $message (string) -- A custom "reason" message to return.
戻り値:

The value of the Response object's send() method.

Sets the appropriate status code to use when the requested resource was previously deleted and is no longer available. Status code is typically 410.

return $this->failResourceGone('That user has been previously deleted.');

failTooManyRequests(string $description[, string $code=null[, string $message = '']])
パラメータ:
  • $description (mixed) -- The error message to show the user.
  • $code (string) -- A custom, API-specific, error code.
  • $message (string) -- A custom "reason" message to return.
戻り値:

The value of the Response object's send() method.

Sets the appropriate status code to use when the client has called an API endpoint too many times. This might be due to some form of throttling or rate limiting. Status code is typically 400.

return $this->failTooManyRequests('You must wait 15 seconds before making another request.');