Procházet zdrojové kódy

Ajout des collections de films pour les users et de la possiblité de l'ajouter en favoris

François před 6 roky
rodič
revize
2a177e7b44

+ 1 - 1
src/AppBundle/Controller/VideothequeController.php

@@ -38,7 +38,7 @@ class VideothequeController extends Controller
 	public function ajouterAction(Request $request)
 	{
 		$film = new Film;
-		$film->setUser($this->getUser());
+		$film->setAuthered($this->getUser());
 		$form = $this->createForm(FilmType::class, $film);
 
 		$form->handleRequest($request);

+ 47 - 0
src/AppBundle/Controller/VideothequePersonnelleController.php

@@ -0,0 +1,47 @@
+<?php
+
+namespace AppBundle\Controller;
+
+use Symfony\Bundle\FrameworkBundle\Controller\Controller;
+use Symfony\Component\HttpFoundation\JsonResponse;
+use Symfony\Component\HttpFoundation\Response;
+use Symfony\Component\Routing\Annotation\Route;
+use Symfony\Component\HttpFoundation\Request;
+use AppBundle\Entity\Film;
+use AppBundle\Form\FilmType;
+
+class VideothequePersonnelleController extends Controller
+{
+	/**
+     * @Route("/maliste/", name="videothequepersonnelle_maliste")
+     */
+	public function maListeAction (Request $request)
+    {
+        $resultats = array();
+        $user = $this->getUser();
+        foreach ($user->getFilms() as $key => $film) {
+            $resultats[$key] = $this->get('serializer')->serialize($film, 'json');
+        }
+        return new JsonResponse($resultats);
+    }
+
+    /**
+     * @Route("/maliste/ajouter/", name="maliste_modifier")
+     * @param Request $request
+     * @return JsonResponse
+     */
+    public function modifierFilmDansListeAction(Request $request)
+    {
+        $em = $this->getDoctrine()->getManager();
+        $repo = $em->getRepository('AppBundle:Film');
+        $film = $repo->find($request->request->get('id_film'));
+        if ($request->isXmlHttpRequest())
+        {
+            $film->inverseUserWantToView($this->getUser());
+            $em->flush();
+        }
+        /*$resultat = $this->get('serializer')->serialize($film, 'json');*/
+        return new Response('OK');
+    }
+
+}

+ 69 - 9
src/AppBundle/Entity/Film.php

@@ -56,26 +56,32 @@ class Film
     private $realisateurs;
 
     /**
-     * @ORM\ManyToOne(targetEntity="AppBundle\Entity\User", inversedBy="films")
+     * @ORM\ManyToOne(targetEntity="AppBundle\Entity\User", inversedBy="filmsAjoutes")
      * @ORM\JoinColumn(nullable=true)
      */
-    private $user;
+    private $authered;
+
+    /**
+     * @ORM\ManyToMany(targetEntity="AppBundle\Entity\User", inversedBy="films")
+     * @var \Doctrine\Common\Collections\Collection
+     */
+    private $usersWantToView;
 
     /**
      * @return mixed
      */
-    public function getUser()
+    public function getAuthered()
     {
-        return $this->user;
+        return $this->authered;
     }
 
     /**
-     * @param mixed $user
+     * @param mixed $authered
      */
-    public function setUser($user)
+    public function setAuthered($authered)
     {
-        $this->user = $user;
-        $user->addFilm($this);
+        $this->authered = $authered;
+        $authered->addFilm($this);
     }
 
 
@@ -155,7 +161,7 @@ class Film
     /**
      * Get titre
      *
-     * @return text
+     * @return string
      */
     public function getCommentaire()
     {
@@ -192,6 +198,7 @@ class Film
     public function __construct()
     {
         $this->realisateurs = new \Doctrine\Common\Collections\ArrayCollection();
+        $this->usersWantToView = new \Doctrine\Common\Collections\ArrayCollection();
     }
 
     /**
@@ -227,4 +234,57 @@ class Film
     {
         return $this->realisateurs;
     }
+
+
+    ///////////////////////////////////////////////////////
+    /**
+     * Add user
+     *
+     * @param \AppBundle\Entity\User $user
+     *
+     * @return film
+     */
+    public function addUserWantToView(\AppBundle\Entity\User $user)
+    {
+        $this->usersWantToView[] = $user;
+        $user->addFilm($this);
+
+        return $this;
+    }
+
+    /**
+     * Remove user
+     *
+     * @param \AppBundle\Entity\User $user
+     */
+    public function removeUserWantToView(\AppBundle\Entity\User $user)
+    {
+        $this->usersWantToView->removeElement($user);
+        $user->removeFilm($this);
+    }
+
+    /**
+     * Get usersWantToView
+     *
+     * @return \Doctrine\Common\Collections\Collection
+     */
+    public function getUsersWantToView()
+    {
+        return $this->usersWantToView;
+    }
+
+    /**
+     * Inverse ToSee
+     * @param \AppBundle\Entity\User $user
+     */
+    public function inverseUserWantToView(\AppBundle\Entity\User $user)
+    {
+        if ($this->usersWantToView->contains($user)) {
+            $this->removeUserWantToView($user);
+        } else {
+            $this->addUserWantToView($user);
+        }
+
+    }
+
 }

+ 44 - 1
src/AppBundle/Entity/User.php

@@ -2,6 +2,7 @@
 
 namespace AppBundle\Entity;
 
+use Doctrine\Common\Collections\ArrayCollection;
 use Doctrine\ORM\Mapping as ORM;
 use Symfony\Component\Security\Core\User\UserInterface;
 
@@ -121,7 +122,13 @@ class User implements UserInterface
 
 
     /**
-     * @ORM\OneToMany(targetEntity="AppBundle\Entity\Film", mappedBy="user")
+     * @ORM\OneToMany(targetEntity="AppBundle\Entity\Film", mappedBy="authered")
+     * @var \Doctrine\Common\Collections\Collection
+     */
+    private $filmsAjoutes;
+
+    /**
+     * @ORM\ManyToMany(targetEntity="AppBundle\Entity\Film", mappedBy="usersWantToView")
      * @var \Doctrine\Common\Collections\Collection
      */
     private $films;
@@ -241,9 +248,45 @@ class User implements UserInterface
      */
     public function __construct()
     {
+        $this->filmsAjoutes = new \Doctrine\Common\Collections\ArrayCollection();
         $this->films = new \Doctrine\Common\Collections\ArrayCollection();
     }
 
+    /**
+     * Add film
+     *
+     * @param \AppBundle\Entity\Film $film
+     *
+     * @return User
+     */
+    public function addFilmAjoute(\AppBundle\Entity\Film $film)
+    {
+        $this->filmsAjoutes[] = $film;
+
+        return $this;
+    }
+
+    /**
+     * Remove film
+     *
+     * @param \AppBundle\Entity\Film $film
+     */
+    public function removeFilmAjoute(\AppBundle\Entity\Film $film)
+    {
+        $this->filmsAjoutes->removeElement($film);
+    }
+
+    /**
+     * Get films
+     *
+     * @return \Doctrine\Common\Collections\Collection
+     */
+    public function getFilmsAJoutes()
+    {
+        return $this->filmsAjoutes;
+    }
+
+    ///////////////////////////////////////////////////////////////
     /**
      * Add film
      *

+ 1 - 0
src/AppBundle/Form/UserType.php

@@ -22,6 +22,7 @@ class UserType extends AbstractType
             ->add('username', TextType::class)
             ->add('password', PasswordType::class)
             ->add('prenom', TextType::class)
+            ->add('nom', TextType::class)
             ->add('mail', EmailType::class)
             ->add('roles', ChoiceType::class, array(
                 'choices'   => array (

+ 9 - 0
src/AppBundle/Repository/FilmRepository.php

@@ -10,4 +10,13 @@ namespace AppBundle\Repository;
  */
 class FilmRepository extends \Doctrine\ORM\EntityRepository
 {
+    public function findFilm($id) {
+        $qb = $this->createQueryBuilder('f');
+        $query = $qb
+            ->select('f.titre', 'f.annee')
+            ->where('f.id = :id')
+            ->setParameter('id', $id)
+            ->getQuery();
+        return $query->getSingleResult();
+    }
 }

+ 37 - 3
src/AppBundle/Resources/views/videotheque/liste.html.twig

@@ -18,7 +18,7 @@
 	<tbody>
 		{% for film in listeFilms %}
 		<tr>
-			<td>{%  if film.user.username is defined %}{{ film.user.username }}{% endif %}</td>
+			<td>{%  if film.authered is defined %}{{ film.authered.username }}{% endif %}</td>
 			<td>{{ film.titre }}</td>
 			<td>
 			{% if film.realisateurs is defined %}
@@ -35,11 +35,45 @@
 			<td>
 				<a href="{{ path('videotheque_supprimer', {'id': film.id})  }}"><i class="fas fa-trash", style="color:Tomato;"></i></a>
 				<a href="{{ path('videotheque_modifier', {'id': film.id})  }}"><i class="fas fa-edit", style="color:DodgerBlue;"></i></a>
+				{%  if film.usersWantToView.contains(app.user) %}
+					<a href="#" class="boutonVoir" data-content="{{ film.id }}"><i class="fas fa-star"></i></a>
+				{%  else %}
+					<a href="#" class="boutonVoir" data-content="{{ film.id }}"><i class="far fa-star"></i></a>
 
-
+				{%  endif %}
 			</td>
 		</tr>
 		{% endfor %}
 	</tbody>
 </table>
-{% endblock %}
+{% endblock %}
+
+{% block javascripts %}
+	<script>
+		$(document).ready(function () {
+			$('.boutonVoir').each(function() {
+			    $(this).click(function() {
+			        let $icone = $(this).children('i');
+                    let contenu = $(this).attr('data-content');
+                    $.ajax({
+                        type: 'POST',
+                        url: "{{ path('maliste_modifier') }}",
+                        data: 'id_film=' + contenu,
+                        success: function (data) {
+                            console.log(data);
+                            if ($icone.attr('class') === "fas fa-star") {
+                                $icone.attr('class', "far fa-star");
+							} else {
+                                $icone.attr('class', "fas fa-star");
+							}
+                            return;
+                        },
+                        complete: function () {
+
+                        }
+                    })
+                })
+			})
+        })
+	</script>
+{%  endblock %}

+ 1 - 1
src/AppBundle/Resources/views/videotheque/testajax.html.twig

@@ -28,7 +28,7 @@ $(document).ready( function() {
                 setTimeout(function() {
                     $.ajax({
                         type: 'POST',
-                        url: "{{ path('ajax_requete') }}",
+                        url: "{{ path('ajouter') }}",
                         data: 'mot_cle=' + contenu,
                         success: function (data) {
                             parseJson(data);