Completed
Push — master ( e62fa2...4391c3 )
by Kristof
133:20 queued 117:59
created

SeoBundle/EventListener/CloneListener.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Kunstmaan\SeoBundle\EventListener;
4
5
use Doctrine\ORM\EntityManager;
6
use Kunstmaan\AdminBundle\Entity\AbstractEntity;
7
use Kunstmaan\AdminBundle\Event\DeepCloneAndSaveEvent;
8
use Kunstmaan\AdminBundle\Helper\CloneHelper;
9
use Kunstmaan\SeoBundle\Entity\Seo;
10
11
/**
12
 * This event will make sure the seo metadata is copied when a page is cloned
13
 */
14
class CloneListener
15
{
16
    /**
17
     * @var EntityManager
18
     */
19
    private $em;
20
21
    /**
22
     * @var CloneHelper
23
     */
24
    private $cloneHelper;
25
26
    /**
27
     * @param EntityManager $em          The entity manager
28
     * @param CloneHelper   $cloneHelper The clone helper
29
     */
30
    public function __construct(EntityManager $em, CloneHelper $cloneHelper)
0 ignored issues
show
You have injected the EntityManager via parameter $em. This is generally not recommended as it might get closed and become unusable. Instead, it is recommended to inject the ManagerRegistry and retrieve the EntityManager via getManager() each time you need it.

The EntityManager might become unusable for example if a transaction is rolled back and it gets closed. Let’s assume that somewhere in your application, or in a third-party library, there is code such as the following:

function someFunction(ManagerRegistry $registry) {
    $em = $registry->getManager();
    $em->getConnection()->beginTransaction();
    try {
        // Do something.
        $em->getConnection()->commit();
    } catch (\Exception $ex) {
        $em->getConnection()->rollback();
        $em->close();

        throw $ex;
    }
}

If that code throws an exception and the EntityManager is closed. Any other code which depends on the same instance of the EntityManager during this request will fail.

On the other hand, if you instead inject the ManagerRegistry, the getManager() method guarantees that you will always get a usable manager instance.

Loading history...
31
    {
32
        $this->em = $em;
33
        $this->cloneHelper = $cloneHelper;
34
    }
35
36
    /**
37
     * @param DeepCloneAndSaveEvent $event
38
     */
39
    public function postDeepCloneAndSave(DeepCloneAndSaveEvent $event)
40
    {
41
        $originalEntity = $event->getEntity();
42
43
        if ($originalEntity instanceof AbstractEntity) {
44
            /* @var Seo $seo */
45
            $seo = $this->em->getRepository('KunstmaanSeoBundle:Seo')->findFor($originalEntity);
46
47
            if (!is_null($seo)) {
48
                /* @var Seo $clonedSeo */
49
                $clonedSeo = $this->cloneHelper->deepCloneAndSave($seo);
50
                $clonedSeo->setRef($event->getClonedEntity());
51
52
                $this->em->persist($clonedSeo);
53
                $this->em->flush($clonedSeo);
54
            }
55
        }
56
    }
57
}
58