瀏覽代碼

Ajout d'une page publique pour les fiches film

François 5 年之前
父節點
當前提交
0f8b2f9d52

+ 1 - 1
config/packages/security.yaml

@@ -42,7 +42,7 @@ security:
     # Easy way to control access for large sections of your site
     # Note: Only the *first* access control that matches will be used
     access_control:
-        - { path: ^/(login$|register$|motdepasseoublie$|resetpassword/token=|activate/token=) , roles: IS_AUTHENTICATED_ANONYMOUSLY }
+        - { path: ^/(login$|register$|motdepasseoublie$|resetpassword/token=|activate/token=|public/) , roles: IS_AUTHENTICATED_ANONYMOUSLY }
         - { path: ^/admin, roles: ROLE_ADMIN }
         - { path: ^/genre, roles: ROLE_MODERATEUR }
         - { path: ^/, roles: IS_AUTHENTICATED_REMEMBERED }

+ 16 - 0
src/Controller/VideothequeController.php

@@ -171,6 +171,22 @@ class VideothequeController extends AbstractController
         ));
     }
 
+    /**
+     * @Route("/public/{id}", name="videotheque_voirfilm_public")
+     */
+	public function voirFilmPublicAction(Request $request, \App\Entity\Film $film)
+    {
+        $em = $this->getDoctrine()->getManager();
+        $repoComment = $em->getRepository('App:Commentaire');
+        $commentaires = $repoComment->findBy(array('film'=>$film));
+
+        return $this->render('videotheque/voirfilm.html.twig', array(
+            'film' => $film,
+            'commentaires'  => $commentaires,
+        ));
+    }
+
+
     /**
      * @Route("/ajax_req_realisateurs", name="videotheque_ajax_realisateurs")
      */

+ 11 - 9
templates/base.html.twig

@@ -85,16 +85,18 @@
 						<h1>{% block titre %}{% endblock %}</h1>
 					</div>
 					<div class="col-4">
-						<div class="text-right">
-						<a data-toggle="collapse" role="button" href="#collapseAide" aria-expanded="false" aria-controls="collapseAide">Aide <i class="fa fa-chevron-down"></i></a>
-						</div>
-						<div class="card collapse" id="collapseAide">
-							<div class="card-body">
-								<p><i class="fa fa-star text-primary"></i> : Films que l'on souhaite voir. On les retrouve dans "Liste de mes films"</p>
-								<p><i class="fa fa-eye fa-lg text-success"></i> : Film qu'on a vu</p>
-								<p><i class="fa fa-eye-slash fa-lg text-secondary"></i> : Film qu'on n'a pas vu</p>
+						{% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
+							<div class="text-right">
+							<a data-toggle="collapse" role="button" href="#collapseAide" aria-expanded="false" aria-controls="collapseAide">Aide <i class="fa fa-chevron-down"></i></a>
 							</div>
-						</div>
+							<div class="card collapse" id="collapseAide">
+								<div class="card-body">
+									<p><i class="fa fa-star text-primary"></i> : Films que l'on souhaite voir. On les retrouve dans "Liste de mes films"</p>
+									<p><i class="fa fa-eye fa-lg text-success"></i> : Film qu'on a vu</p>
+									<p><i class="fa fa-eye-slash fa-lg text-secondary"></i> : Film qu'on n'a pas vu</p>
+								</div>
+							</div>
+						{% endif %}
 					</div>
 				</div>
 

+ 55 - 38
templates/videotheque/voirfilm.html.twig

@@ -2,33 +2,34 @@
 
 {% block title %}Fiche film - {{ film.titre }}{% endblock %}
 {% block titre %}
-    {%  if film.usersWantToView.contains(app.user) %}
-        {% set follow_icone = "fa fa-star" %}
-        {% set follow_texte = "Supprimer ce film de votre liste à voir" %}
-    {% else %}
-        {% set follow_icone = "fa fa-star-o" %}
-        {% set follow_texte = "Ajouter ce film à votre liste à voir" %}
+    {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
+        {%  if film.usersWantToView.contains(app.user) %}
+            {% set follow_icone = "fa fa-star" %}
+            {% set follow_texte = "Supprimer ce film de votre liste à voir" %}
+        {% else %}
+            {% set follow_icone = "fa fa-star-o" %}
+            {% set follow_texte = "Ajouter ce film à votre liste à voir" %}
+        {% endif %}
+        <a href="#" data-fonction="switch"
+                    data-icone-actif="fa fa-star"
+                    data-icone-inactif="fa fa-star-o"
+                    data-path="{{ path('maliste_modifier_a_voir') }}"
+                    data-toggle="tooltip"
+                    title="{{ follow_texte }}"
+                    data-content="{{ film.id }}">
+            <i class="{{ follow_icone }}"></i></a>
+        {% if film.usersWhoSeen.contains(app.user) %}
+            {% set vu_icone = '<i class="fa fa-eye text-success"></i>' %}
+        {% else %}
+            {% set vu_icone = '<i class="fa fa-eye-slash text-secondary"></i>' %}
+        {% endif %}				
+        <a href="#" data-fonction="switch"
+                    data-path="{{ path('maliste_modifier_vus') }}"
+                    data-content="{{ film.id }}"
+                    data-icone-actif = "fa fa-eye text-success"
+                    data-icone-inactif = "fa fa-eye-slash text-secondary">
+            {{ vu_icone | raw }}</a>
     {% endif %}
-    <a href="#" data-fonction="switch"
-                data-icone-actif="fa fa-star"
-                data-icone-inactif="fa fa-star-o"
-                data-path="{{ path('maliste_modifier_a_voir') }}"
-                data-toggle="tooltip"
-                title="{{ follow_texte }}"
-                data-content="{{ film.id }}">
-        <i class="{{ follow_icone }}"></i></a>
-    {% if film.usersWhoSeen.contains(app.user) %}
-        {% set vu_icone = '<i class="fa fa-eye text-success"></i>' %}
-    {% else %}
-        {% set vu_icone = '<i class="fa fa-eye-slash text-secondary"></i>' %}
-    {% endif %}				
-    <a href="#" data-fonction="switch"
-                data-path="{{ path('maliste_modifier_vus') }}"
-                data-content="{{ film.id }}"
-                data-icone-actif = "fa fa-eye text-success"
-                data-icone-inactif = "fa fa-eye-slash text-secondary">
-        {{ vu_icone | raw }}</a>
-    
     {{ film.titre }}
     
     {% if film.note > 0 %}
@@ -56,11 +57,13 @@
                         <div class="card-header">
                             <div class="row">
                                 <h5 class="col-10">Fiche technique</h5>
-                                <div class="col-2">
-                                    <a data-toggle="tooltip" title="Modifier la fiche du film" href="{{ path('videotheque_modifier', {'id': film.id}) }}"><i class="fa fa-edit fa-lg"></i></a>
-                                    {% if is_granted('ROLE_ADMIN') %}<a href="{{ path('videotheque_supprimer', {'id': film.id})  }}"><i class="fa fa-trash fa-lg", style="color:Tomato;"></i></a>{% endif %}
+                                {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
+                                    <div class="col-2">
+                                        <a data-toggle="tooltip" title="Modifier la fiche du film" href="{{ path('videotheque_modifier', {'id': film.id}) }}"><i class="fa fa-edit fa-lg"></i></a>
+                                        {% if is_granted('ROLE_ADMIN') %}<a href="{{ path('videotheque_supprimer', {'id': film.id})  }}"><i class="fa fa-trash fa-lg", style="color:Tomato;"></i></a>{% endif %}
 
-                                </div>
+                                    </div>
+                                {% endif %}
                             </div>
                         </div>
                         <div class="card-body">
@@ -70,13 +73,25 @@
                                 <dt class="col-4">Réalisateur(s)</dt>
                                 <dd class="col-8">
                                 {% for realisateur in film.realisateurs %}
-                                    <a href="{{ path('videotheque_listeparreal', {'id': realisateur.id}) }}"><span class="badge badge-info">{{ realisateur.nomComplet }}</span></a>
+                                    {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
+                                        <a href="{{ path('videotheque_listeparreal', {'id': realisateur.id}) }}">
+                                    {% endif %}
+                                    <span class="badge badge-info">{{ realisateur.nomComplet }}</span>
+                                    {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
+                                        </a>
+                                    {% endif %}
                                 {% endfor %}
                                 </dd>
                                 <dt class="col-4">Genre</dt>
                                 <dd class="col-8">
                                 {% for genre in film.genres %}
-                                    <a href="{{ path('videotheque_listepargenre', {'id': genre.id}) }}"><span class="badge badge-info">{{ genre.name }}</span></a>
+                                    {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
+                                        <a href="{{ path('videotheque_listepargenre', {'id': genre.id}) }}">
+                                    {% endif %}
+                                    <span class="badge badge-info">{{ genre.name }}</span>
+                                    {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
+                                        </a>
+                                    {% endif %}
                                 {% endfor %}
                                 </dd>
                                 {% if film.lien is not null %}
@@ -128,12 +143,14 @@
                     <h5>Commentaires</h5>
                 </div>
                 <div class="card-body">
-                    <p>
-                        <a data-toggle="collapse" role="button" href="#collapseCommentaire" aria-expanded="false" aria-controls="collapseCommentaire">Commenter <i class="fa fa-chevron-down"></i></a>
-                    </p>
-                    <div class="collapse" id="collapseCommentaire">
-                    {{ include('videotheque/form_commentaire.html.twig') }}
-                    </div>
+                    {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
+                        <p>
+                            <a data-toggle="collapse" role="button" href="#collapseCommentaire" aria-expanded="false" aria-controls="collapseCommentaire">Commenter <i class="fa fa-chevron-down"></i></a>
+                        </p>
+                        <div class="collapse" id="collapseCommentaire">
+                        {{ include('videotheque/form_commentaire.html.twig') }}
+                        </div>
+                    {% endif %}
                     <div class="list-group">
                         {% for commentaire in commentaires %}
                             <div class="list-group-item">