src\Controller\Routes.php line 62

  1. <?php
  2. namespace App\Controller;
  3. use LogicException;
  4. use Klio\Symfony\RouterResponse;
  5. use Klio\KlioBundle\Symfony\Controller;
  6. use Klio\KlioBundle\Symfony\RouteController;
  7. use Psr\Container\NotFoundExceptionInterface;
  8. use Symfony\Component\HttpFoundation\Request;
  9. use Psr\Container\ContainerExceptionInterface;
  10. use Symfony\Component\HttpFoundation\Response;
  11. use Symfony\Component\Routing\Annotation\Route;
  12. use Symfony\Component\HtmlSanitizer\HtmlSanitizerInterface;
  13. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  14. class Routes extends RouteController
  15. {
  16.     /**
  17.      * @param Request $request 
  18.      * @return Response 
  19.      * @throws LogicException 
  20.      * @throws NotFoundExceptionInterface 
  21.      * @throws ContainerExceptionInterface 
  22.      */
  23.     #[Route(
  24.         '/actualites/{subpath}',
  25.         name'actualites',
  26.         methods: ['GET''HEAD''POST'],
  27.         requirements: ['subpath' => '.+$']
  28.     )]
  29.     public function actualites(HtmlSanitizerInterface $sanitizerRequest $request): Response
  30.     {
  31.         // initialize l'object RouteController 
  32.         $this->init(); // $this->init("/private/Config.php");
  33.         /* === la logique propre à ce groupe de routes === */
  34.         // on force toutes ces routes à utiliser le même controller spécifique
  35.         $this->setController('/actualites/Actualites.php');
  36.         $this->controller->addTwig(['searchTerm' => @$_SESSION['searchTerm']]);
  37.         /* === la logique propre à ce groupe de routes === */
  38.         // On renvoie le résultat
  39.         return new Response($this->getResponse(), $this->getStatus());
  40.     }
  41.     /**
  42.      * @param Request $request 
  43.      * @return Response 
  44.      * @throws LogicException 
  45.      * @throws NotFoundExceptionInterface 
  46.      * @throws ContainerExceptionInterface 
  47.      */
  48.     #[Route(
  49.         '/{subpath}',
  50.         name'all',
  51.         methods: ['GET''HEAD''POST'],
  52.         requirements: ['subpath' => ".*"],
  53.     )]
  54.     public function all(Request $requestHtmlSanitizerInterface $sanitizer): Response
  55.     {
  56.         // initialize l'object RouteController 
  57.         // defini les constantes avec un fichier de config en option
  58.         $this->init(); // $this->init("/private/Config.php");
  59.         /* === la logique propre à ce groupe de routes === */
  60.         // on ajoute un controller au controller /path/Controller.php
  61.         //$this->setController('/Controller.php');
  62.         /* === la logique propre à ce groupe de routes === */
  63.         $this->addController('/pages/Controller.php');
  64.         $this->controller->addTwig(['searchTerm' => @$_SESSION['searchTerm']]);
  65.         // On renvoie le résultat
  66.         return new Response($this->getResponse(), $this->getStatus());
  67.     }
  68.     /**
  69.      * Routes::notFound(Controller) défini le comportement du site en cas de d'erreur 404
  70.      * on peut renvoyer certaines infos, choisir d'inclure un Template404.twig spécifique, ou inclure une ogique pour des 404 différenciés
  71.      * on renvoyer en général un $CONTROLLER->setTemplate(string) (on peut ajouter des variables twig $CONTROLLER->setTwig(array)) et un $CONTROLLER->setStatus(404)
  72.      * Mais on peut aussi renvoyer un $CONTROLLER->setResponse(string) pour certaines routes de type API
  73.      *
  74.      * @param Controller $CONTROLLER
  75.      * @return void
  76.      */
  77.     public static function notFound(Controller &$CONTROLLER)
  78.     {
  79.         //$CONTROLLER->addTwig(['searchTerm' => @$_SESSION['searchTerm']]);
  80.         $CONTROLLER->setStatus(404);
  81.         $CONTROLLER->setTemplate('/404.twig');
  82.     }
  83. }