瀏覽代碼

Managers Commentaire et Film

François Drouhard 5 年之前
父節點
當前提交
82168dd3b3
共有 3 個文件被更改,包括 60 次插入10 次删除
  1. 41 0
      src/Service/CommentaireManager.php
  2. 8 5
      src/Service/FilmManager.php
  3. 11 5
      src/Service/NoteMoyenne.php

+ 41 - 0
src/Service/CommentaireManager.php

@@ -0,0 +1,41 @@
+<?php
+
+namespace App\Service;
+
+use App\Entity\Commentaire;
+use Doctrine\ORM\EntityManagerInterface;
+use Symfony\Component\Security\Core\Security;
+
+/**
+ * Class CommentaireManager
+ */
+class CommentaireManager {
+    private $em;
+    private $uc;
+    private $user;
+
+    public function __construct(EntityManagerInterface $em, UniciteCollections $uc, Security $security)
+    {
+        $this->em = $em;
+        $this->uc = $uc;
+        $this->user = $security->getUser();
+    }
+
+    public function addCommentaire (Commentaire $commentaire)
+    {
+        $this->em->persist($commentaire);
+        $this->em->flush();
+    }
+
+    public function editCommentaire(Commentaire $commentaire)
+    {
+        $this->em->flush();
+    }
+
+    public function delCommentaire(Commentaire $commentaire)
+    {
+        $commentaire->getFilm()->removeCommentaire($commentaire);
+        $this->em->remove($commentaire);
+        $this->em->flush();
+    }
+}

+ 8 - 5
src/Service/FilmManager.php

@@ -13,11 +13,13 @@ class FilmManager {
     private $em;
     private $uc;
     private $user;
+    private $cm;
 
-    public function __construct(EntityManagerInterface $em, UniciteCollections $uc, Security $security)
+    public function __construct(EntityManagerInterface $em, UniciteCollections $uc, CommentaireManager $cm, Security $security)
     {
         $this->em = $em;
         $this->uc = $uc;
+        $this->cm = $cm;
         $this->user = $security->getUser();
     }
 
@@ -37,12 +39,13 @@ class FilmManager {
 
     public function delFilm(Film $film)
     {
-        /*$commentaire = $this->em->getRepository('App:Commentaire')->findOneBy(array('film'=>$film));
-        if ($commentaire != null)
+        $commentaires = $film->getCommentaires();
+        foreach($commentaires as $commentaire)
         {
-            $this->em->remove($commentaire);
-        }*/
+            $this->cm->delCommentaire($commentaire);
+        }
         $this->em->remove($film);
+
         $this->em->flush();
     }
 }

+ 11 - 5
src/Service/NoteMoyenne.php

@@ -3,7 +3,9 @@
 namespace App\Service;
 
 use App\Entity\Film;
+use Doctrine\Common\Util\Debug;
 use Doctrine\ORM\EntityManagerInterface;
+use Exception;
 
 /**
  * Calculer moyenne pour un film
@@ -18,11 +20,8 @@ class NoteMoyenne {
 
     public function calculerMoyenne (Film $film)
     {
-        $commentaires = $this->em
-            ->getRepository('App:Commentaire')
-            ->findBy(array('film' => $film));
+        $commentaires = $film->getCommentaires();
 
-        $notes[] = array();
         $total = 0;
         $nb = 0;
 
@@ -42,6 +41,13 @@ class NoteMoyenne {
 
         $film->setNote($note);
         $film->setNbComs(count($commentaires));
-        $this->em->flush();
+        try {
+            $this->em->flush();
+        } 
+        
+        catch (Exception $e)
+        {
+            Debug::dump($e->getCode());
+        }
     }
 }