core/lib/Thelia/Controller/Front/DefaultController.php line 40

  1. <?php
  2. /*
  3.  * This file is part of the Thelia package.
  4.  * http://www.thelia.net
  5.  *
  6.  * (c) OpenStudio <info@thelia.net>
  7.  *
  8.  * For the full copyright and license information, please view the LICENSE
  9.  * file that was distributed with this source code.
  10.  */
  11. namespace Thelia\Controller\Front;
  12. use Thelia\Core\HttpFoundation\Request;
  13. use Thelia\Core\HttpFoundation\Response;
  14. use Thelia\Core\HttpKernel\Exception\RedirectException;
  15. use Thelia\Model\ConfigQuery;
  16. use Thelia\Tools\URL;
  17. /**
  18.  * This is the defualt Thelia controller, which is called when no controller was found to process the request.
  19.  *
  20.  * @author Manuel Raynaud <mraynadu@openstudio.fr>
  21.  */
  22. class DefaultController extends BaseFrontController
  23. {
  24.     /**
  25.      * This is the default Thelia behaviour if no action is defined.
  26.      *
  27.      * If the request contains a 'view' parameter, this view will be displayed.
  28.      * If the request contains a '_view' attribute (set in the route definition, for example), this view will be displayed.
  29.      * Otherwise, we will use the "index" view.
  30.      *
  31.      * Additionaly, if the URL rewriting is enabled, the method will check if a redirect to the pâge rewritten URL should
  32.      * be done.
  33.      *
  34.      * @throw RedirectException if a redirection to the rewritted URL shoud be done.
  35.      */
  36.     public function noAction(Request $request): void
  37.     {
  38.         $view null;
  39.         if (!$view $request->query->get('view')) {
  40.             if ($request->request->has('view')) {
  41.                 $view $request->request->get('view');
  42.             }
  43.         }
  44.         if (null !== $view) {
  45.             $request->attributes->set('_view'$view);
  46.         }
  47.         if (null === $view && null === $request->attributes->get('_view')) {
  48.             $request->attributes->set('_view''index');
  49.         }
  50.         if (ConfigQuery::isRewritingEnable()) {
  51.             if ($request->attributes->get('_rewritten'false) === false) {
  52.                 /* Does the query GET parameters match a rewritten URL ? */
  53.                 $rewrittenUrl URL::getInstance()->retrieveCurrent($request);
  54.                 if ($rewrittenUrl->rewrittenUrl !== null) {
  55.                     /* 301 redirection to rewritten URL */
  56.                     throw new RedirectException($rewrittenUrl->rewrittenUrl301);
  57.                 }
  58.             }
  59.         }
  60.     }
  61.     public function emptyRoute()
  62.     {
  63.         return new Response(null204);
  64.     }
  65. }