rtxlabs / datatransformation-bundle
Provides mappers for generate complex JSON outputs from entities
Installs: 1 473
Dependents: 0
Suggesters: 0
Security: 0
Stars: 13
Watchers: 6
Forks: 1
Open Issues: 2
Type:symfony-bundle
Requires
This package is not auto-updated.
Last update: 2024-10-26 15:03:25 UTC
README
Symfony2 Bundle that can help building REST services.
Example
Providing a REST service that returns a list of contacts linked with companies. The service has to deliver something like that:
[{ "id": 1181, "address": null, "email": "max.mustermann@dtb.com", "firstname": "Max", "lastname": "Mustermann", "company": 7 } , { "id" : 1177, "address" : null, "email" : "uwe.klawitter@dtb.com", "firstname" : "Uwe", "lastname" : "Klawitter", "company": 298 }]
To generate this, some Doctrine entities have to be loaded from a repository and converted into json. Performing an json_encode() to on the entities won't work, because the entity contains proxy objects to the company. To solve this, the DoctrineBinder can be used:
$result = $this->container->get('doctrinebinder')->bind($models)->execute(); // finally the result has to be converted into json to return it as an response $json = Dencoder::decode($result);