tbn/json-annotation-bundle
Symfony bundle that adds a @Json annotation for controllers to automatically return JSON responses. Wraps successful return arrays and exceptions into a consistent payload (success/data/message), with configurable keys, HTTP codes, and optional POST query echo/auth errors.
The JsonAnnotationBundle permits to use an annotation Json for your controller
Use the annotation @Json() in your controller
#Configuration
Some parameters are optionnals:
json_annotation:
exception_code: 500 #the http code used for the exception
data_key: "data" # the key used to contains the data, it can be directly at the root, using the "" parameter
exception_message_key: "message" #the key for the exeception message
success_key: "success" #the key for the success (that is true is the result is ok, false for an exception)
post_query_back: false #do we send back the post parameters
post_query_key: "query" #the key for the post back parameters
enable_authentication_error: false #A json response is sent back is the user is not authenticated or not granted
It is a json stream with the property 'success' with the true value and the property 'data' containing the array returned in the controller
It is a json stream with the property 'success' with the false value and the property 'message' containing the error
"tbn/json-annotation-bundle": "dev-master"
new tbn\JsonAnnotationBundle\JsonAnnotationBundle()
use tbn\JsonAnnotationBundle\Configuration\Json;
class DefaultController extends Controller
{
/**
* The main view
*
* @Route("/someroute")
* @Json()
*
* @return array
*/
public function somerouteAction()
{
return array('data1' => 'value1', 'data2' => 'value2');
}
}
It will send back a json stream
'success' => true
'data' => ['data1' => 'value1', 'data2' => 'value2']
use tbn\JsonAnnotationBundle\Configuration\Json;
class DefaultController extends Controller
{
/**
* The main view
*
* @Route("/someroute")
* @Json()
*
* @return array
*/
public function somerouteAction()
{
throw \Exception('some error occured');
}
}
It will send back a json stream
'success' => false
'message' => 'some error occured'
A pre-hook event is dispatched at the beginning of the json response. It can be used to validate a token for example.
some_bundle.listener.json_token_validation_listener:
class: "some_bundle\\Listener\\JsonTokenValidationListener"
tags:
- { name: kernel.event_listener, event: json.pre_hook, method: onJsonPrehook }
The method has one argument of type JsonPreHookEvent.
public function onJsonPrehook(JsonPreHookEvent $jsonPreHookEvent)
How can I help you explore Laravel packages today?