|
@@ -13,16 +13,16 @@ use Symfony\Component\Routing\Annotation\Route;
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
use App\Entity\Film;
|
|
|
use App\Form\FilmType;
|
|
|
+use Doctrine\ORM\EntityManagerInterface;
|
|
|
|
|
|
class VideothequeController extends AbstractController
|
|
|
{
|
|
|
/**
|
|
|
* @Route("/", name="videotheque_liste")
|
|
|
*/
|
|
|
- public function listeAction(Request $request)
|
|
|
+ public function listeAction(Request $request, EntityManagerInterface $em)
|
|
|
{
|
|
|
$note = (int) $request->query->get('note');
|
|
|
- $em = $this->getDoctrine()->getManager();
|
|
|
$repo = $em->getRepository('App:Film');
|
|
|
$listeFilms = $repo->findTous($note);
|
|
|
|
|
@@ -36,9 +36,8 @@ class VideothequeController extends AbstractController
|
|
|
/**
|
|
|
* @Route("/liste-by/{id}", name="videotheque_listepargenre")
|
|
|
*/
|
|
|
- public function listeParGenreAction(\App\Entity\Genre $genre)
|
|
|
+ public function listeParGenreAction(\App\Entity\Genre $genre, EntityManagerInterface $em)
|
|
|
{
|
|
|
- $em = $this->getDoctrine()->getManager();
|
|
|
$films = $em->getRepository('App:Film')->findFilmWithGenre(array($genre->getName()));
|
|
|
|
|
|
return $this->render('videotheque/liste.html.twig', array(
|
|
@@ -50,9 +49,8 @@ class VideothequeController extends AbstractController
|
|
|
/**
|
|
|
* @Route("/liste-by_real/{id}", name="videotheque_listeparreal")
|
|
|
*/
|
|
|
- public function listeParRealisateurAction(Realisateur $realisateur)
|
|
|
+ public function listeParRealisateurAction(Realisateur $realisateur, EntityManagerInterface $em)
|
|
|
{
|
|
|
- $em = $this->getDoctrine()->getManager();
|
|
|
$films = $em->getRepository('App:Film')->findFilmWithReal(array($realisateur->getNomComplet()));
|
|
|
|
|
|
return $this->render('videotheque/liste.html.twig', array(
|
|
@@ -64,12 +62,11 @@ class VideothequeController extends AbstractController
|
|
|
/**
|
|
|
* @Route("/ajouter", name="videotheque_ajouter")
|
|
|
*/
|
|
|
- public function ajouterAction(Request $request, UniciteCollections $uniciteCollections)
|
|
|
+ public function ajouterAction(Request $request, UniciteCollections $uniciteCollections, EntityManagerInterface $em)
|
|
|
{
|
|
|
$film = new Film;
|
|
|
$film->setAuthered($this->getUser());
|
|
|
$form = $this->createForm(FilmType::class, $film);
|
|
|
- $em = $this->getDoctrine()->getManager();
|
|
|
|
|
|
$form->handleRequest($request);
|
|
|
if ($form->isSubmitted() && $form->isValid())
|
|
@@ -89,11 +86,10 @@ class VideothequeController extends AbstractController
|
|
|
/**
|
|
|
* @Route("/modifier/{id}", name="videotheque_modifier")
|
|
|
*/
|
|
|
- public function modifierAction(Request $request, Film $film, UniciteCollections $uniciteCollections)
|
|
|
+ public function modifierAction(Request $request, Film $film, UniciteCollections $uniciteCollections, EntityManagerInterface $em)
|
|
|
{
|
|
|
$form = $this->createForm(FilmType::class, $film);
|
|
|
$form->handleRequest($request);
|
|
|
- $em = $this->getDoctrine()->getManager();
|
|
|
if ($form->isSubmitted() && $form->isValid())
|
|
|
{
|
|
|
$film = $uniciteCollections->assureUniciteCollections($film);
|
|
@@ -102,7 +98,6 @@ class VideothequeController extends AbstractController
|
|
|
return $this->redirectToRoute('videotheque_voirfilm',array('id'=>$film->getId()));
|
|
|
}
|
|
|
|
|
|
-
|
|
|
return $this->render('videotheque/modifier.html.twig', array(
|
|
|
'form' => $form->createView(),
|
|
|
));
|
|
@@ -112,13 +107,12 @@ class VideothequeController extends AbstractController
|
|
|
* @Route("/supprimer/{id}", name="videotheque_supprimer")
|
|
|
* @IsGranted("ROLE_ADMIN")
|
|
|
*/
|
|
|
- public function supprimerAction(Request $request, Film $film)
|
|
|
+ public function supprimerAction(Request $request, Film $film, EntityManagerInterface $em)
|
|
|
{
|
|
|
$form = $this->get('form.factory')->create();
|
|
|
$form->handleRequest($request);
|
|
|
if ($form->isSubmitted() && $form->isValid())
|
|
|
{
|
|
|
- $em = $this->getDoctrine()->getManager();
|
|
|
$commentaire = $em->getRepository('App:Commentaire')->findOneBy(array('film'=>$film));
|
|
|
if ($commentaire != null)
|
|
|
{
|
|
@@ -139,9 +133,8 @@ class VideothequeController extends AbstractController
|
|
|
/**
|
|
|
* @Route("/fichefilm/{id}", name="videotheque_voirfilm")
|
|
|
*/
|
|
|
- public function voirFilmAction(Request $request, \App\Entity\Film $film, Security $security)
|
|
|
+ public function voirFilmAction(Request $request, \App\Entity\Film $film, Security $security, EntityManagerInterface $em)
|
|
|
{
|
|
|
- $em = $this->getDoctrine()->getManager();
|
|
|
$repoComment = $em->getRepository('App:Commentaire');
|
|
|
if ($security->isGranted('IS_AUTHENTICATED_REMEMBERED'))
|
|
|
{
|
|
@@ -183,11 +176,9 @@ class VideothequeController extends AbstractController
|
|
|
/**
|
|
|
* @Route("/ajax_req_realisateurs", name="videotheque_ajax_realisateurs")
|
|
|
*/
|
|
|
- public function ajaxRealisateurs(Request $request)
|
|
|
+ public function ajaxRealisateurs(Request $request, EntityManagerInterface $em)
|
|
|
{
|
|
|
- $realisateurs = $this
|
|
|
- ->getDoctrine()
|
|
|
- ->getManager()
|
|
|
+ $realisateurs = $em
|
|
|
->getRepository('App:Realisateur')
|
|
|
->findNomsComplets();
|
|
|
$liste = array();
|
|
@@ -202,11 +193,9 @@ class VideothequeController extends AbstractController
|
|
|
/**
|
|
|
* @Route("/ajax_req_genres", name="videotheque_ajax_genres")
|
|
|
*/
|
|
|
- public function ajaxGenres(Request $request)
|
|
|
+ public function ajaxGenres(Request $request, EntityManagerInterface $em)
|
|
|
{
|
|
|
- $genres = $this
|
|
|
- ->getDoctrine()
|
|
|
- ->getManager()
|
|
|
+ $genres = $em
|
|
|
->getRepository('App:Genre')
|
|
|
->findGenres();
|
|
|
$liste = array();
|