|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?php
-
- namespace Lc\SovBundle\Doctrine;
-
- use Doctrine\ORM\Decorator\EntityManagerDecorator;
- use Doctrine\ORM\EntityManager as DoctrineEntityManager;
- use Doctrine\ORM\EntityManagerInterface;
- use Lc\SovBundle\Event\EntityManager\EntityManagerEvent;
- use Lc\SovBundle\Doctrine\EntityInterface;
- use Symfony\Component\EventDispatcher\EventDispatcherInterface;
-
- /**
- * class EntityManager.
- *
- * @author La clic !!!!
- */
- class EntityManager extends EntityManagerDecorator
- {
- protected EventDispatcherInterface $eventDispatcher;
-
- protected DoctrineEntityManager $entityManager;
-
-
- public function __construct(EntityManagerInterface $wrapped, EventDispatcherInterface $eventDispatcher)
- {
- $this->eventDispatcher = $eventDispatcher;
- parent::__construct($wrapped);
- }
-
- public function getRepository($className)
- {
- return $this->wrapped->getRepository($this->getEntityName($className));
- }
-
- public function new($className)
- {
- $entityName = $this->getEntityName($className);
-
- return new $entityName;
- }
-
- public function create(EntityInterface $entity): self
- {
- $this->persist($entity);
- $this->eventDispatcher->dispatch(new EntityManagerEvent($entity), EntityManagerEvent::CREATE_EVENT);
-
- return $this;
- }
-
- public function update(EntityInterface $entity): self
- {
- $this->persist($entity);
- $this->eventDispatcher->dispatch(new EntityManagerEvent($entity), EntityManagerEvent::UPDATE_EVENT);
-
- return $this;
- }
-
- public function delete(EntityInterface $entity): self
- {
- $this->remove($entity);
- $this->eventDispatcher->dispatch(new EntityManagerEvent($entity), EntityManagerEvent::DELETE_EVENT);
-
- return $this;
- }
-
- public function flush($entity=null): self
- {
- $this->wrapped->flush($entity);
-
- return $this;
- }
-
- public function clear($objectName = null): self
- {
- $this->wrapped->clear($objectName);
-
- return $this;
- }
-
- public function refresh($object): self
- {
- $this->wrapped->refresh($object);
-
- return $this;
- }
-
- public function persist($entity)
- {
- $this->wrapped->persist($entity);
- }
-
- public function getClassMetadata($className)
- {
- return $this->wrapped->getClassMetadata($className);
- }
-
- public function getEntityName($className)
- {
- if (substr($className, -9) === 'Interface') {
- return $this->wrapped->getClassMetadata($className)->getName();
- } else {
- return $className;
- }
- }
- }
|