brokalia/doctrine-entity-generator
This Symfony bundle provides a console command to generate doctrine entities with mapping attributes and a mapper class from domain entity class.
Then you can use domain entities in your domain and application layers and map it to doctrine entities for persistence.
bin/console doctrine-generator:entity "App\Domain\MyDomainEntity"
The primary key of the doctrine entity must be the "id" property of domain entity. If there are not an "id" property in the domain entity, the doctrine entity will not have primary key.
class MyDomainEntity {
private string $id; // Will be the doctrine primary key
}
class DoctrineMyDomainEntity {
#[ORM\Column(type: 'string')]
#[ORM\Id]
public string $id;
}
Given MyDomainEntity with some value objects:
// src/Domain/MyDomainEntity.php
class MyDomainEntity {
public function __construct(
private MyDomainEntityId $id,
private SampleValueObject $valueObject,
) {
}
public function getId(): MyDomainEntityId
{
return $this->id;
}
public function getValueObject(): SampleValueObject
{
return $this->valueObject;
}
}
// src/Domain/MyDomainEntityId.php
class MyDomainEntityId
{
public function __construct(private string $value)
{
}
public function getValue(): string
{
return $this->value;
}
}
// src/Domain/EntityId.php
class SampleValueObject
{
public function __construct(
private string $firstAttribute,
private int $secondAttribute
) {
}
public function getFirstAttribute(): string
{
return $this->firstAttribute;
}
public function getSecondAttribute(): int
{
return $this->secondAttribute;
}
}
Generates a doctrine entity and a mapper to map between domain and doctrine entities:
// src/Infrastructure/Persistence/DoctrineMyDomainEntity.php
class DoctrineMyDomainEntity
{
#[ORM\Column(type: 'string')]
#[ORM\Id]
public string $id;
#[ORM\Column(type: 'string')]
public string $valueObject_firstAttribute;
#[ORM\Column(type: 'integer')]
public int $valueObject_secondAttribute;
}
// src/Infrastructure/Persistence/DoctrineMyDomainEntityMapper.php
class DoctrineMyDomainEntityMapper
{
public function fromDomain(
MyDomainEntity $domainEntity,
?DoctrineMyDomainEntity $doctrineEntity,
): DoctrineMyDomainEntity {
$doctrineEntity = $doctrineEntity ?? new DoctrineMyDomainEntity();
$doctrineEntity->id = $domainEntity->getId()->getValue();
$doctrineEntity->valueObject_firstAttribute = $domainEntity->getValueObject()->getFirstAttribute();
$doctrineEntity->valueObject_secondAttribute = $domainEntity->getValueObject()->getSecondAttribute();
return $doctrineEntity;
}
public function toDomain(DoctrineMyDomainEntity $doctrineEntity): MyDomainEntity
{
$reflector = new ReflectionClass(MyDomainEntity::class);
$constructor = $reflector->getConstructor();
if (!$constructor) {
throw new RuntimeException('No constructor');
}
$object = $reflector->newInstanceWithoutConstructor();
$constructor->invoke(
$object,
new MyDomainEntityId($doctrineEntity->id),
new SampleValueObject(
$doctrineEntity->valueObject_firstAttribute,
$doctrineEntity->valueObject_secondAttribute
),
);
return $object;
}
}
Now you can create a repository for the domain entity using doctrine to persist the entity with the mapper.
class MyDomainEntityRepository {
public function __construct(
private EntityManagerInterface $entityManager,
private DoctrineMyDomainEntityMapper $mapper,
) {
}
public function save(MyDomainEntity $entity): void
{
// Get previous existent doctrine entity if exists for update cases
$existentDoctrineEntity = $this->findDoctrineEntity($entity->getId()->getValue());
// Map domain entity to doctrine entity
$doctrineEntity = $this->mapper->fromDomain(
$entity,
$existentDoctrineEntity ?? new DoctrineMyDomainEntity()
);
// Persist
$this->entityManager->persist($doctrineEntity);
$this->entityManager->flush();
}
public function findById(MyDomainEntityId $id): ?MyDomainEntity
{
// Get doctrine entity
$doctrineEntity = $this->findDoctrineEntity($id->getValue());
if (!$doctrineEntity) {
return null;
}
// Return domain entity mapped
return $this->mapper->toDomain($doctrineEntity);
}
private function findDoctrineEntity(string $id): ?DoctrineMyDomainEntity
{
return $this->entityManager->getRepository(DoctrineMyDomainEntity::class)->find($id);
}
}
Make sure Composer is installed globally, as explained in the installation chapter of the Composer documentation.
Open a command console, enter your project directory and execute:
$ composer require --dev brokalia/doctrine-entity-generator
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require --dev brokalia/doctrine-entity-generator
Then, enable the bundle by adding it to the list of registered bundles
in the config/bundles.php file of your project:
// config/bundles.php
return [
// ...
Brokalia\DoctrineEntityGenerator\DoctrineEntityGeneratorBundle::class => ['dev' => true],
];
How can I help you explore Laravel packages today?