stoney core: REST API
REST API
- The REST API will be implemented as a first-class citizen
- It provides all the available functions and data to its clients
- Serves as a data and business logic abstraction layer
- The REST API will be implemented using HTTPS and REST principles
- Clients are required to validate the certificate (at least via CA)
- The REST API uses JSON as the primary data interchange format (serialization of data structures should be abstracted), other formats should be possible in the future.
- Authentication via Basic HTTP-Auth
- Multiple authentication methods can be added in the future (possibly Web-Server assisted):
- X509 Certificate based authentication
- Kerberos
- API key with shared secret
- Access tokens
- OAuth
- versioned API:
- starting with one version number in the URI, for example: https://api.selfcare.com/v1/customer , corresponding to the major version in SemVer
- minor version will be added via Request-Header-Field in future (as-needed)
- All API calls need to be fully nonblocking. If an expensive call has to be made to a backend system, the client needs to be provided with a status URI which can be checked for the current status or preferably be notified via WebSockets.
- Input validation must be performed for all data (validation of data happens twice: in the API and the client)
- JSON (or XML) validation has to be done before everything else and the client needs to be informed if he passed invalid syntax (see function.json-last-error and function.json-last-error-msg)
- Meaningful error message will be presented to the client
- All API functions are to be documented using an accepted documentation standard (doxygen (preferred), phpDocumentor or Sami)
- The API will be based on existing, proven and tested open source modules and components, coming either from a framework are as stand alone implementations,
Why a REST API?
- Separation and abstraction of presentation and business logic
- Faster development/test cycles for business logic
- Smaller development packages
- Support for multiple clients with the same code base
- HTML/JS/CSS for selfcare Web GUI
- Command line interface for easy scripting
- Integration into third party provisioning systems for resellers
- Automatic testing of functionality
- Base for responsive resp. Mobile First Web-Applications/-Design
- On the Yii PHP Framework Homepage: Extensions tagged with "rest"
- On the Yii PHP Framework Homepage: RestfullYii or on GitHub: RestfullYii
- On the Yii PHP Framework Homepage: Extensions tagged with "api"
- yii-apiauth
Service implementation details
Base URI
The RESTful web service has to be accessible via a secure HTTP (HTTPS) base URI, for instance https://api.example.com/v1/customers
.
The definition of the base URI is up to the provider of the service. The only requirements are the use of HTTPS and the presence of the service's version information, so that further changes are possible without breaking existing clients.
Client authentication
The service needs to authenticate each client via HTTP basic authentication by a user name and a corresponding password.
Data interchange format
The service needs to accept and send all data in the JSON data interchange format via HTTP, encoded as UTF-8. Thus a client needs to accept and use the application/json
media type. Further media types might be supported in the future.
This results in the following required request and respons headers:
Request header | Response header |
---|---|
Accept: application/json
|
Content-Type: application/json; charset=UTF-8
|
If the client sends an Accept
header with an unsupported value (at the moment only application/json
is supported), the service will respond with a 406
(Not Acceptable) error code.
If no Accept
header is sent, the server will use json, possibly pretty-printed and annotated.
Future extension:
Client may supply application/vnd.org.stoney-cloud.api+json
as Content-Type
to declare the requested schema/format of the data. This can then also be used to introduce additional versioning.
Error codes and responses
The service needs to return appropriate HTTP status codes for every request, the following table lists the commonly used codes:
HTTP status code | Text | Description |
---|---|---|
200 | OK | Success. |
201 | Created | A new resource was successfully created. |
400 | Bad Request | The request was invalid. A descriptive error message will be sent within the response body. |
404 | Not Found | The requested resource could not be found but may be available again in the future. |
406 | Not Acceptable | The requested resource is only capable of generating content not acceptable according to the Accept headers sent in the request. |
401 | Unauthorized | The client has failed or not yet tried to authenticate. |
403 | Forbidden | The client is not allowed to access the requested resource. |
500 | Internal Server Error | An internal error succoured. A descriptive error message will be sent within the response body. |
503 | Service Unavailable | The service is temporary unavailable, because it is overloaded or down for maintenance |
Additionally the service returns descriptive error objects in case a HTTP error was returned (4xx) within the message body of the response. An error object consists of an error code and a human readable error message:
{ "errors": [ { "code": 123, "message": "down" } ] }
Mandatory headers
Besides the above mentioned headers, the following headers are mandatory.
- every answer to a GET reqest should always include
ETag
andLast-Modified
header. This allows a proxy to cache requests and a client to revalidate already fetched data. - the service must recognize
ETag
,Last-Modified
andCache-Control: none
provided by the client and act accordingly. - every answer to a GET request must include proper
Cache-Control
headers
Resources and HTTP methods
Resources are always nouns, and specified in plural (such as resellers, customers, users etc.), this prevents one from dealing with irregular pluralizations such as person/people.
The manipulation of resources happens via the HTTP request methods such as GET
, POST
, PUT
, DELETE
and PATCH
.
The following example illustrates the concept with a fictive user resource:
HTTP request | Description |
---|---|
GET /users
|
Retrieves a list of users |
GET /users/12345678
|
Retrieves a specific user with user ID 12345678 |
POST /users
|
Creates a new user |
PUT /users/12345678
|
Updates the user with user ID 12345678 |
PATCH /users/12345678
|
Partly updates the user with user ID 12345678 |
DELETE /users/12345678
|
Deletes the user with user ID 12345678 |
DELETE /users
|
Deletes all users |
Relations
If a relation can only exist within another resource, it will be represent by its URI, for example: /threads/123/messages/45
. This URI represents the message with ID #45 of the forum thread with ID #123.
If a resources can stand by its own, such as users it won't be added as a sub-resource. Relations are always returned as URIs, which the client can hit.
@TBD: Shall there be a functionality to request the embedding of elements, for relations that are commonly requested alongside the resource (to save requests)?
Filtering, sorting and searching
Filter, sort and search requests are added as query parameters to the resource URI.
For filtering the objects returned by a resource URI, the name of an object's attribute is added as a query parameter with the required value.
For example, get all active user elements GET /users?status=active
For sorting the objects returned by a resource URI, the query parameter sort
is added with the object's sort attribute(s) as the value.
For example, sort all users by their last and first name GET /users?sort=lastname,firstname
For full text search the objects returned by a resource URI, the query parameter q
is added with the value to search for.
Example: GET /users?q=Muell
will return users named Mueller
as well as the ones living at Muellhaldenstrasse
.