This project aims to provide a simple interface to query and persist data with Doctrine ORM. It will allow you to focus on domain logic rather than persistence logic, resulting in more readable and dry controllers.
By following a few simple conventions you'll be able to reduce the amount of code needed to store and update data to your database when using Doctrine ORM. See examples below.
<?php
use App\Entities\Person;
use RenanBritz\DoctrineUtils\Persistence;
class PersonController extends AbstractController
{
private $em;
private $persistence;
public function __construct()
{
$this->em = $this->getDoctrine()->getEntityManager();
$this->persistence = new Persistence($this->em);
}
/** Create a new person. */
public function store(Request $request)
{
$data = $request->all();
// Validation logic...
$this->persistence->persist(Person::class, $data);
// Domain/Business logic...
}
/** Update existing person. */
public function update(Request $request, int $personId)
{
$person = $this->em->getRepository(Person::class)->findOneById($personId);
if (!$person) {
// Return 404 error.
}
$data = $request->all();
// Validation logic...
$this->persistence->persist($person, $data);
// Domain/Business logic...
}
}
{
"name": "John Doe",
"gender": 1,
"contacts": [
{
"value": "[email protected]",
"type": 1,
"method": 1
},
{
"value": "99999999",
"type": 1,
"method": 2
}
],
"role": {
"name": "Admin",
"permissions": [
{
"title": "UPDATE_PERSON"
}
]
},
"addresses": [
{
"street": "Street Name",
"zipcode": "999999999",
"number": "1234",
"type": 1,
"city": {
"id": 1
}
}
]
}
{
"id": 2,
"role": {
"id": 3,
"permissions": [
2
]
},
"addresses": [
2
],
"contacts": [
11,
13
]
}
The persistence class will recursively persist data to the entity and its associations using the Class Metadata definitions.
All data passed to the persist() method must have been validated and checked for mass assignment. This library will not help you with that.
- The entity identifier must be named
id
. - All entity fields and associations must have getter and setter methods formatted in
camelCase
. e.g:getName()
. Setter method forid
is not required. - When updating Collection Associations (One to Many or Many to Many), you must provide the id of elements that you want to keep. Otherwise they will be deleted. If you provide
id
along with other data, the entity will be kept and also persisted again.