Controllers
Introduction
The controller's purpose is to handle a set of requests related to the same resource.
The Controller class supports four different methods, called "handlers", to implement the basic CRUD operations on the resource:
Controller Method
HTTP Method
HTTP Status Code
create
POST
201
read
GET
200
update
UPDATE
204
remove
DELETE
204
The controller handler receives the request instance and returns a response content. Unless otherwise specified, the framework automatically sets the most appropriate HTTP Status Code for the request.
Defining a controller
All the the controllers in a Puro application should be stored in the directory "controllers/".
The following example shows the simplest controller you can create:
It only handles GET requests to a resource and returns the string "Hello world" as response content.
Defining a schema
A very interesting feature of Puro REST Framework is the built-in request validation. To achieve this result you need to define a "schema" for the controller handler that you want to validate.
For example, assuming we have a BookController for the resource /api/books/{:bookId}
, we could define a schema for the controller handler update as the following:
The schema is a dictionary where the key is the name of the parameter that we want to validate and the value is an object containing the constraints we want to apply to that specific parameter.
HTTP exceptions
TODO
Exception Class
HTTP Status Code
HTTP Response Message
HttpException
-
-
BadRequestHttpException
400
"Bad Request"
AccessDeniedHttpException
403
"Forbidden"
NotFoundHttpException
404
"Not Found"
MethodNotAllowedHttpException
405
"Method Not Allowed"
InvalidParameterHttpException
422
"Invalid Parameter"
Last updated
Was this helpful?