François Drouhard 2 years ago
parent
commit
0247c79003

+ 2 - 1
config/packages/security.yaml

@@ -48,9 +48,10 @@ 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=|fichefilm/|$|liste-by/|liste-by_real/|recherche|prochaines-sorties$) , roles: PUBLIC_ACCESS }
+        - { path: ^/(login$|register$|motdepasseoublie$|resetpassword/token=|activate/token=|fichefilm/|$|liste-by/|liste-by_real/|recherche|prochaines-sorties$|p/about$) , roles: PUBLIC_ACCESS }
         - { path: ^/admin, roles: ROLE_ADMIN }
         - { path: ^/genre, roles: ROLE_MODERATEUR }
+        - { path: ^/p/edit, roles: ROLE_ADMIN }
         - { path: ^/, roles: IS_AUTHENTICATED_REMEMBERED }
 
 

+ 16 - 11
src/Form/CommentaireType.php

@@ -2,6 +2,7 @@
 
 namespace App\Form;
 
+use App\Entity\Commentaire;
 use Symfony\Component\Form\Extension\Core\Type\NumberType;
 use Symfony\Component\Form\AbstractType;
 use Symfony\Component\Form\Extension\Core\Type\TextareaType;
@@ -18,10 +19,10 @@ class CommentaireType extends AbstractType
     public function buildForm(FormBuilderInterface $builder, array $options): void
     {
 	    $builder
-            ->add('note', NumberType::class, array (
+            ->add('note', NumberType::class, [
                 'required'  => false,
                 'label'       => false,
-                'attr'      => array (
+                'attr'      => [
                     'min'   => 0,
                     'max'   => 5,
                     'class' => "rating",
@@ -30,17 +31,21 @@ class CommentaireType extends AbstractType
                     'data-show-caption' => "false",
                     'data-size'         => "sm",
                     'data-theme'          => "krajee-fa"
-                )
-            ))
-            ->add('contenu', TextareaType::class, array(
+                ]
+            ])
+            ->add('contenu', TextareaType::class, [
                 'required' => false,
-                'label' => false
-                ))
-                ->add('save', SubmitType::class, array(
+                'label' => false,
+                'attr'  => [
+                    'rows'  => 10
+                ]
+            ])
+            ->add('save', SubmitType::class, [
 		        'label' => 'Enregistrer le commentaire',
-                'attr'=>array(
+                'attr' => [
                     'class'  =>  'btn-primary'
-                )));
+                ]
+            ]);
     }
     
     /**
@@ -49,7 +54,7 @@ class CommentaireType extends AbstractType
     public function configureOptions(OptionsResolver $resolver): void
     {
         $resolver->setDefaults([
-            'data_class' => 'App\Entity\Commentaire',
+            'data_class' => Commentaire::class,
         ]);
     }
 

+ 6 - 1
src/Form/PageType.php

@@ -5,6 +5,7 @@ namespace App\Form;
 use App\Entity\Page;
 use Symfony\Component\Form\AbstractType;
 use Symfony\Component\Form\Extension\Core\Type\SubmitType;
+use Symfony\Component\Form\Extension\Core\Type\TextareaType;
 use Symfony\Component\Form\FormBuilderInterface;
 use Symfony\Component\OptionsResolver\OptionsResolver;
 
@@ -14,7 +15,11 @@ class PageType extends AbstractType
     {
         $builder
             //->add('name')
-            ->add('content')
+            ->add('content', TextareaType::class, [
+                'attr'  => [
+                    'rows'  => 30
+                ]
+            ])
             ->add('Enregistrer', SubmitType::class)
         ;
     }

+ 4 - 1
src/Service/Mattermost.php

@@ -7,6 +7,7 @@ use App\Entity\Film;
 use App\Entity\User;
 use Symfony\Component\HttpFoundation\RequestStack;
 use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
+use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface;
 use Symfony\Contracts\HttpClient\HttpClientInterface;
 
 /**
@@ -39,8 +40,10 @@ class Mattermost
                     ]
                 ]
             );
+            // Appeler au moins une méthode pour déclencher l'exception en cas d'erreur réseau
+            $response->getHeaders();
 
-        } catch (\Exception $e) {
+        } catch (TransportExceptionInterface $e) {
             $this->requestStack->getSession()->getFlashBag()->add('error', "L'envoi vers mattermost a échoué.");
         }
     }

+ 10 - 0
templates/navbar.html.twig

@@ -16,6 +16,11 @@
                     {% if app.request.attributes.get('_route') == 'prochaines_sorties' %}active{% endif %}"
                     href="{{ path('prochaines_sorties') }}">Prochaines sorties</a>
                 </li>
+                <li class="nav-item">
+                    <a class="nav-link
+                    {% if app.request.attributes.get('_route') == 'app_page_show' %}active{% endif %}"
+                    href="{{path('app_page_show', {'name': 'about'}) }}">A propos</a>
+                </li>
             </ul>
         {% endif %}
         {%  if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
@@ -56,6 +61,11 @@
                     </li>
                 </ul>
             {%  endif %}
+            <li class="nav-item">
+                <a class="nav-link
+                {% if app.request.attributes.get('_route') == 'app_page_show' %}active{% endif %}"
+                href="{{path('app_page_show', {'name': 'about'}) }}">A propos</a>
+            </li>
         </ul>
         {% endif %}
         <ul class="navbar-nav">

+ 1 - 1
templates/page/edit.html.twig

@@ -1,6 +1,6 @@
 {% extends 'base.html.twig' %}
 
 {% block body %}
-    <h1>{{ "Modifier" | trans }} "{{ title }}"</h1>
+    <h1>{{ "modifier_page" | trans }} "{{ title }}"</h1>
     {{ form(form) }}
 {% endblock %}

+ 4 - 0
templates/page/index.html.twig

@@ -1,6 +1,10 @@
 {% extends 'base.html.twig' %}
 
 {% block body %}
+    {% if is_granted('ROLE_ADMIN') %}
+        <a href="{{ path('app_page_edit', {'name': page.name}) }}" class="btn btn-primary mb-3"><i class="fa fa-edit"></i> {{ "edit_page" | trans }}</a>
+    {% endif %}
+    
     {% apply markdown_to_html %}
         {{ page.content }}
     {% endapply %}

+ 3 - 0
translations/messages.fr.yaml

@@ -17,6 +17,9 @@ repeat-password: Répéter le mot de passe
 Recherche: Recherche
 Rechercher: Rechercher
 search_in_tmdb: Rechercher un titre de film sur TheMovieDB.org
+modifier_page: Modifier la page
+Content: Contenu de la page
+edit_page: Editer la page
 
 Username: Nom d'utilisateur
 Prenom: Prénom