src/EventListener/BaseListener.php line 271

Open in your IDE?
  1. <?php
  2. namespace Acme\SudcmsBundle\EventListener;
  3. use Acme\SudcmsBundle\Entity\ActualiteCategs;
  4. use Acme\SudcmsBundle\Entity\EcoCategories;
  5. use Acme\SudcmsBundle\Entity\EcoCustomers;
  6. use Acme\SudcmsBundle\Entity\EcoSettings;
  7. use Acme\SudcmsBundle\Entity\EcoShippingfees;
  8. use Acme\SudcmsBundle\Entity\Language;
  9. use Acme\SudcmsBundle\Entity\Pages;
  10. use Acme\SudcmsBundle\Entity\Site;
  11. use Acme\SudcmsBundle\Entity\SiteReferencement;
  12. use Acme\SudcmsBundle\Entity\Tchat;
  13. use Acme\SudcmsBundle\Repository\AuthUserRepository;
  14. use Acme\SudcmsBundle\Repository\ModuleRepository;
  15. use Acme\SudcmsBundle\Repository\SiteCoordonneesRepository;
  16. use Acme\SudcmsBundle\Repository\SiteGoogleTagManagerRepository;
  17. use Acme\SudcmsBundle\Repository\SiteRepository;
  18. use Acme\SudcmsBundle\Repository\SiteReseauxRepository;
  19. use Acme\SudcmsBundle\Repository\TchatRepository;
  20. use Acme\SudcmsBundle\Service\ApiService;
  21. use Acme\SudcmsBundle\Service\Ecommerce\BasketService;
  22. use Acme\SudcmsBundle\Service\NewsletterService;
  23. use Acme\SudcmsBundle\Service\OtideaUtils;
  24. use Acme\SudcmsBundle\Service\WheatherService;
  25. use Detection\MobileDetect;
  26. use Doctrine\ORM\EntityManagerInterface;
  27. use Symfony\Component\DependencyInjection\ContainerInterface as Container;
  28. use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
  29. use Symfony\Component\HttpKernel\Event\RequestEvent;
  30. use Symfony\Component\HttpKernel\KernelInterface;
  31. use Symfony\Component\Security\Core\Security;
  32. use Symfony\Component\Security\Core\User\UserInterface;
  33. use Twig\Environment;
  34. class BaseListener
  35. {
  36.     private $navigationLoaded false;
  37.     private $twig null;
  38.     private $newsletterService null;
  39.     private $entityManager null;
  40.     private $appKernel;
  41.     private $params;
  42.     private $dirName;
  43.     private $repoAccRes;
  44.     private $nomDuSite;
  45.     private $descriptionSite;
  46.     private $titleSite;
  47.     private $langueFront "";
  48.     private $repoUser;
  49.     private $basket;
  50.     private $repoTchat;
  51.     private $container;
  52.     private $apiService;
  53.     // end default values
  54.     public function __construct(
  55.         Container $container,
  56.         Environment $twig,
  57.         EntityManagerInterface $em,
  58.         KernelInterface $appKernel,
  59.         NewsletterService $newsletterService,
  60.         OtideaUtils $otideaUtils,
  61.         WheatherService $wheatherService,
  62.         SiteReseauxRepository $repoAccRes,
  63.         Security $security,
  64.         AuthUserRepository $repoUser,
  65.         ModuleRepository $repoModule,
  66.         SiteRepository $repoSite,
  67.         SiteCoordonneesRepository $siteCoordonneesRepository,
  68.         ParameterBagInterface $params,
  69.         BasketService $basket,
  70.         TchatRepository $repoTchat,
  71.         SiteGoogleTagManagerRepository $siteGoogleTagManagerRepository,
  72.         ApiService $apiService
  73.     ) {
  74.         $otideaUtils->createPopup(["title" => null"message" => null"popupBtn2" => null]);
  75.         $this->repoAccRes $repoAccRes;
  76.         $this->twig $twig;
  77.         $this->newsletterService $newsletterService;
  78.         $this->otideaUtils $otideaUtils;
  79.         $this->appKernel $appKernel;
  80.         $this->entityManager $em;
  81.         $this->security $security;
  82.         $this->repoUser $repoUser;
  83.         $this->repoModule $repoModule;
  84.         $this->repoSite $repoSite;
  85.         $this->siteCoordonneesRepository $siteCoordonneesRepository;
  86.         $this->siteGoogleTagManagerRepository $siteGoogleTagManagerRepository;
  87.         $this->params $params;
  88.         $this->basket $basket;
  89.         $this->repoTchat $repoTchat;
  90.         $this->container $container;
  91.         $this->apiService $apiService;
  92.         $detect = new MobileDetect;
  93.         /* Any mobile device (phones or tablets). */
  94.         if ($detect->isMobile()) {
  95.             $this->twig->addGlobal("isMobile"true);
  96.         }
  97.         //        $wheatherService->index();
  98.         $this->dirName '';
  99.         if (isset($_SERVER['HTTP_HOST']) && substr(
  100.                 $_SERVER['HTTP_HOST'],
  101.                 0,
  102.                 3
  103.             ) != '127' && substr($_SERVER['HTTP_HOST'], 09) != 'localhost') {
  104.             $this->dirName '';
  105.         }
  106.         $host $_SERVER['HTTP_HOST'];
  107.         $websiteroot = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' "https" "http") . "://" $host;
  108.         $this->twig->addGlobal("websiteroot"$websiteroot $this->dirName);
  109.         $this->twig->addGlobal("postMaxSize"ini_get('post_max_size'));
  110.         $this->twig->addGlobal("modeleTab"false);/* true: interface colonnage / false: site web classique */
  111.         if (!defined('WEBSITEROOT')) {
  112.             define('WEBSITEROOT'$websiteroot $this->dirName);
  113.         }
  114.         $this->CreateRequiredDirectories();
  115.     }
  116.     /*
  117.      * Create directories if they doens't exist
  118.      * @param void
  119.      * @return void
  120.      */
  121.     private function CreateRequiredDirectories()
  122.     {
  123.         $directory[] = $this->appKernel->getProjectDir() . '/public/medias_front/common';
  124.         $directory[] = $this->appKernel->getProjectDir() . '/public/medias_front/common/logosFooter';
  125.         foreach ($directory as $dir) {
  126.             if (!file_exists($dir)) {
  127.                 mkdir($dir755);
  128.             }
  129.         }
  130.     }
  131.     /*
  132.      * Get the url arguments to get the context
  133.      * admin or front to load right ressources
  134.      * @param RequestEvent
  135.      * @return void
  136.      */
  137.     public function onKernelRequest(RequestEvent $event)
  138.     {
  139.         if (!$event->isMainRequest()) {
  140.             // don't do anything if it's not the main request
  141.             return;
  142.         }
  143.         //Définir la langue en cours
  144.         $this->langueFront $event->getRequest()->getLocale();
  145.         $this->session $event->getRequest()->getSession();
  146.         $args explode("/"$event->getRequest()->getPathInfo());
  147.         // clean the path values
  148.         foreach ($args as $key => $arg) {
  149.             if (trim($arg) == "") {
  150.                 unset($args[$key]);
  151.             }
  152.         }
  153.         $args array_values($args);
  154.         $authSitesIds $this->CheckUserSitesAuth();
  155.         //ADMINISTRATION
  156.         if (is_array($args) && isset($args[0]) && $args[0] === "admin") {
  157.             if ($this->entityManager->getRepository(Site::class)->find(
  158.                     $this->session->get('admin_site_uid')
  159.                 ) == null || !in_array(
  160.                     $this->session->get('admin_site_uid'),
  161.                     $authSitesIds
  162.                 )) {
  163.                 if (sizeof($authSitesIds) > 0) {
  164.                     $this->session->set('admin_site_uid'$authSitesIds[0]);
  165.                 } else {
  166.                     $this->session->set('admin_site_uid'1);
  167.                 }
  168.             }
  169.             $this->setSiteName($this->session->get('admin_site_uid'));
  170.             $this->CheckUserModulesAuth($event);
  171.             $this->GetUnactiveModuleForAllUsers();
  172.             $this->LoadAdminRessources();
  173.             $currentSiteUID $this->session->get('admin_site_uid');
  174.             if (!defined('CURRENT_SITE_ID')) {
  175.                 define('CURRENT_SITE_ID'$this->session->get('admin_site_uid'));
  176.             }
  177.         } else {
  178.             if (!defined('CURRENT_SITE_ID')) {
  179.                 define('CURRENT_SITE_ID'$this->container->getParameter('DEFAULT_ID'));
  180.             }
  181.             $currentSiteUID CURRENT_SITE_ID;
  182.             $this->LoadFrontRessources($currentSiteUID);
  183.         }
  184.         if ($currentSiteUID 0) {
  185.             $siteParam $this->repoSite->find($currentSiteUID);
  186.             $this->twig->addGlobal("isEcommerce"$siteParam->getIsEcommerce());
  187.             if ($siteParam->getIsEcommerce()) {
  188.                 $ecoSettings $this->entityManager->getRepository(EcoSettings::class)->findOneBy(
  189.                     ["siteId" => $currentSiteUID]
  190.                 );
  191.                 $this->twig->addGlobal("stockManagement"$ecoSettings $ecoSettings->getStockManagement() : 0);
  192.             }
  193.             $this->twig->addGlobal("logoInMenu"$siteParam->getLogoInMenu());
  194.             $this->twig->addGlobal("rightMenuActivated"$siteParam->getRightMenuActivated());
  195.             $this->twig->addGlobal("breadcrumbActivated"$siteParam->getBreadcrumbIsActive());
  196.             $this->twig->addGlobal("projectDirectory"$siteParam->getProjectDirectory());
  197.             $this->twig->addGlobal("twigNameSpace"$siteParam->getProjectDirectory());
  198.             $this->twig->addGlobal("odysseeType"$siteParam->getOdysseeType());
  199.             $this->twig->addGlobal("SiteId"CURRENT_SITE_ID);
  200.             if (!defined('IS_ECOMMERCE')) {
  201.                 define('IS_ECOMMERCE'$siteParam->getIsEcommerce());
  202.             }
  203.             if (!defined('ODYSSEE_TYPE')) {
  204.                 define('ODYSSEE_TYPE'$siteParam->getOdysseeType());
  205.             }
  206.         }
  207.         // manage the newsletter registration
  208.         if ($event->getRequest()->get("mailNL") && $event->getRequest()->get("accpetRecNL") == 1) {
  209.             $msg $this->newsletterService->addRegistration($event->getRequest()->get("mailNL"));
  210.         }
  211.     }
  212.     private function CheckUserSitesAuth(): array
  213.     {
  214.         if ($this->security->getUser() !== null) {
  215.             $groupsUser $this->repoUser->getAllGroupsUsers();
  216.             $allGroups = array();
  217.             foreach ($this->security->getUser()->getRoles() as $role) {
  218.                 foreach ($groupsUser as $grp) {
  219.                     if ($role == $grp["ag_role"]) {
  220.                         $allGroups[] = $grp["id"];
  221.                     }
  222.                 }
  223.             }
  224.             $listeSitesNav $this->repoSite->getUserSites($allGroups);
  225.             if (!$this->session->has('admin_site_uid') || $this->session->get('admin_site_uid') == null) {
  226.                 $this->session->set('admin_site_uid'$listeSitesNav[0]['ags_site_id']);
  227.             }
  228.         } else {
  229.             $listeSitesNav $this->repoSite->findAll();
  230.             if (!$this->session->has('admin_site_uid') || $this->session->get('admin_site_uid') == null) {
  231.                 $this->session->set('admin_site_uid'$listeSitesNav[0]->getId());
  232.             }
  233.         }
  234.         $this->twig->addGlobal("sitesNav"$listeSitesNav);
  235.         $authSitesIds = [];
  236.         foreach ($listeSitesNav as $site) {
  237.             $authSitesIds[] = is_array($site) ? $site['id'] : $site->getId();
  238.         }
  239.         return $authSitesIds;
  240.     }
  241.     private function CheckUserModulesAuth($event)
  242.     {
  243.         $listeModuleNav null;
  244.         if ($this->security->getUser() !== null) {
  245.             $groupsUser $this->repoUser->getAllGroupsUsers($this->security->getUser()->getId());
  246.             $allModules = array();
  247.             foreach ($this->security->getUser()->getRoles() as $role) {
  248.                 foreach ($groupsUser as $grp) {
  249.                     if ($role == $grp["ag_role"]) {
  250.                         $allModules[] = $grp["id"];
  251.                     }
  252.                 }
  253.             }
  254.             $listeModuleNav $this->repoUser->getModulesUser($allModules$this->session->get('admin_site_uid'));
  255.         }
  256.         //Contrôle de l'accès au module
  257.         $controllerPath $event->getRequest()->attributes->get('_controller');
  258.         if (!$this->getModuleAccessController($controllerPath$listeModuleNav) && !in_array(
  259.                 'ROLE_SUPER_ADMIN',
  260.                 $this->security->getUser()->getRoles()
  261.             )) {
  262.             header('Location: ' WEBSITEROOT '/admin');
  263.             exit();
  264.         }
  265.         $this->twig->addGlobal("listeModuleNav"$listeModuleNav);
  266.     }
  267.     private function getModuleAccessController($controllerPath$listeModuleNav)
  268.     {
  269.         //Bypass pour l'interface de connexion
  270.         $bypassController = [
  271.             'SecurityController',
  272.             'AdminSearchController',
  273.             'error_controller',
  274.             'AdminController',
  275.             'AdminLogsController',
  276.             'AdminSupportController'
  277.         ];
  278.         foreach ($bypassController as $controller) {
  279.             if (strpos($controllerPath$controller) !== false) {
  280.                 return true;
  281.             }
  282.         }
  283.         if (is_array($listeModuleNav)) {
  284.             foreach ($listeModuleNav as $module) {
  285.                 if (strpos($controllerPath$module['mod_controller']) !== false) {
  286.                     return true;
  287.                 }
  288.             }
  289.         }
  290.         return false;
  291.     }
  292.     private function GetUnactiveModuleForAllUsers()
  293.     {
  294.         $unactiveModules = [];
  295.         $allActiveModules $this->repoModule->getModulesUsedByUsers();
  296.         $allModules $this->repoModule->getAllModules();
  297.         $allModulesSA $this->repoModule->getModulesSuperAdmin();
  298.         if (is_array($allActiveModules) && sizeof($allActiveModules) > 0) {
  299.             foreach ($allModules as $modAll) {
  300.                 $active null;
  301.                 foreach ($allActiveModules as $modAct) {
  302.                     if ($modAll["id"] == $modAct["id"]) {
  303.                         $active $modAct;
  304.                         break;
  305.                     }
  306.                 }
  307.                 if ($active == null) {
  308.                     $unactiveModules[] = $modAll;
  309.                 }
  310.             }
  311.         }
  312.         if (is_array($unactiveModules) && sizeof($unactiveModules) > && is_array($allModulesSA)) {
  313.             foreach ($unactiveModules as $key => $modUnact) {
  314.                 foreach ($allModulesSA as $modSA) {
  315.                     if ($modSA["id"] == $modUnact["id"]) {
  316.                         unset($unactiveModules[$key]);
  317.                     }
  318.                 }
  319.             }
  320.         }
  321.         $this->twig->addGlobal("listeUnactiveModuleNav"$unactiveModules);
  322.     }
  323.     /*
  324.      * Ressources to load for the admin
  325.      * @param void
  326.      * @return void
  327.      */
  328.     private function LoadAdminRessources()
  329.     {
  330.         $domain $this->repoSite->find($this->session->get('admin_site_uid'));
  331.         $this->twig->addGlobal("siteDomain"$domain->getSiteDomain());
  332.         $this->twig->addGlobal("admin_site_lang"$this->session->get('admin_site_lang'));
  333.         $this->twig->addGlobal("admin_site_uid"$this->session->get('admin_site_uid'));
  334.         $this->twig->addGlobal(
  335.             "unreadMessages",
  336.             $this->entityManager->getRepository(Tchat::class)->findByDiscussionUnread()
  337.         );
  338.     }
  339.     /*
  340.      * Ressources to load for the front
  341.      * @param void
  342.      * @return void
  343.      */
  344.     private function LoadFrontRessources($site_id)
  345.     {
  346.         //Utilisateur connecté
  347.         $user $this->security->getUser();
  348.         if (($user instanceof UserInterface)) {
  349.             $userConnected $this->entityManager->getRepository(EcoCustomers::class)->findOneBy(
  350.                 ['authUserId' => $user->getId()]
  351.             );
  352.             $this->twig->addGlobal("userConnected"$userConnected);
  353.         } else {
  354.             $userConnected null;
  355.         }
  356.         $webpSupported $this->verifSupportWebP();
  357.         $this->twig->addGlobal("webpSupported"$webpSupported);
  358.         $this->twig->addGlobal("urlPage"'https://' $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']);
  359.         /* POUR NON INDEXATION DU CONTENU */
  360.         if (str_contains($_SERVER['HTTP_HOST'], 'dev-')) {
  361.             $this->twig->addGlobal("isNoDesindex"true);
  362.         } elseif (str_contains($_SERVER['HTTP_HOST'], 'dev.')) {
  363.             $this->twig->addGlobal("isNoDesindex"true);
  364.         }
  365.         $siteCoord $this->siteCoordonneesRepository->findOneBy(['siteUid' => $site_id]);
  366.         $siteGtm $this->siteGoogleTagManagerRepository->findOneBy(['siteUid' => $site_id]);
  367.         $this->twig->addGlobal("siteCoord"$siteCoord);
  368.         $this->twig->addGlobal("siteGtm"$siteGtm);
  369.         $this->setSiteName($site_id);
  370.         $languesActives $this->entityManager->getRepository(Language::class)->findBy(['lang_active' => 1],
  371.             ['lang_order' => 'ASC']);
  372.         $this->twig->addGlobal("languesActives"$languesActives);
  373.         $this->twig->addGlobal("nomDuSite"$this->nomDuSite);
  374.         $this->twig->addGlobal("descriptionSite"$this->descriptionSite);
  375.         $this->twig->addGlobal("titleSite"$this->titleSite);
  376.         $this->twig->addGlobal("typeSousMenu"""); /* "":type normal / "vignette":type vignette */
  377.         $this->twig->addGlobal(
  378.             "typeLienAccueil",
  379.             0
  380.         ); /* 0:pas de lien (juste logo left) / 1:type normal / 2:type maison / 3:type logo centré */
  381.         $this->twig->addGlobal("hasAddThis"false); /* false:non affiché / true:affiché */
  382.         $this->twig->addGlobal("displayNavUp"false); /* false:non affiché / true:affiché */
  383.         $this->twig->addGlobal("displayNavPage"true); /* false:non affiché / true:affiché */
  384.         $this->twig->addGlobal("displayNavDown"true); /* false:non affiché / true:affiché */
  385.         $this->twig->addGlobal("emplacementResSoc"1); /* 0:non affiché / 1:nav_page / 2:nav_up / 3:nav_down */
  386.         $this->twig->addGlobal("carteActive"false); /* false:non active / true:active */
  387.         $this->twig->addGlobal("accReseaux"$this->repoAccRes->findBy([
  388.             'acc_res_active' => 1,
  389.             'site_uid' => $site_id,
  390.             'site_lang' => $this->langueFront
  391.         ]));
  392.         $this->twig->addGlobal("accReseaux"$this->repoAccRes->findBy([
  393.             'acc_res_active' => 1,
  394.             'site_uid' => $site_id,
  395.             'site_lang' => $this->langueFront
  396.         ]));
  397.         if ($userConnected || $userConnected != null) {
  398.             $this->twig->addGlobal(
  399.                 "unreadMessages",
  400.                 $this->repoTchat->controlIfDiscussionUnread($userConnected->getId())
  401.             ); /* affichage des messages non lus */
  402.         }
  403.         //Ecommerce variables
  404.         $this->twig->addGlobal("basket"$this->basket->getBasket());
  405.         $this->twig->addGlobal("totalCountBasket"$this->getProductSumOnBasket());
  406.         $this->twig->addGlobal("subtotal"$this->basket->getSubtotal());
  407.         $this->twig->addGlobal("defaultShippingFees"$this->basket->getDefaultShippingFees());
  408.         $this->twig->addGlobal(
  409.             "freeShippingFees",
  410.             $this->entityManager->getRepository(EcoShippingfees::class)->findByShippingfeesFree(
  411.                 ['country_id' => $site_id]
  412.             )
  413.         );
  414.         $dirWebp "";
  415.         if ($webpSupported === true) {
  416.             $dirWebp "/webp";
  417.         }
  418.         $this->assignImgRep("logosFooter""logosFooter" $dirWebp);
  419.         // Load all repositories here
  420.         $pageRepo $this->entityManager->getRepository(Pages::class);
  421.         $repoCategs $this->entityManager->getRepository(EcoCategories::class);
  422.         $actualiteCategsRepo $this->entityManager->getRepository(ActualiteCategs::class);
  423.         $pages $pageRepo->findByPageArboParLangueEtSiteFront($this->langueFront$site_id);
  424.         $pagesFirstLevel $pageRepo->findAllPagesFirstLevel($this->langueFront$site_id);
  425.         if (!$this->navigationLoaded) {
  426.             $this->twig->addGlobal("pages"$pages);
  427.             $this->twig->addGlobal("pagesFirstLevel"$pagesFirstLevel);
  428.             $this->twig->addGlobal("ecoCategs"$repoCategs->findByEcoCategories());
  429.             $this->twig->addGlobal(
  430.                 "actualiteCategs",
  431.                 $actualiteCategsRepo->findByCategoriesActu(array(
  432.                     'site_lang' => $this->langueFront,
  433.                     'site_uid' => $site_id
  434.                 ))
  435.             );
  436.             $this->twig->addGlobal(
  437.                 "actualiteCategs",
  438.                 $actualiteCategsRepo->findByCategoriesActu(array(
  439.                     'site_lang' => $this->langueFront,
  440.                     'site_uid' => $site_id
  441.                 ))
  442.             );
  443.             $this->navigationLoaded true;
  444.         }
  445.         //Cas d'une page interne (chargement de l'environnement d'une page pour un controller)
  446.         $this->setPageContext();
  447.         if (!$this->apiService->testConnexion()) {
  448.             $this->twig->addGlobal("api_error"true);
  449.         } else {
  450.             $this->twig->addGlobal("api_error"false);
  451.         }
  452.     }
  453.     public function getProductSumOnBasket()
  454.     {
  455.         $nbProd 0;
  456.         if (is_array($this->basket->getBasket())) {
  457.             foreach ($this->basket->getBasket() as $prod) {
  458.                 $nbProd += $prod['qte'];
  459.             }
  460.         }
  461.         return $nbProd;
  462.     }
  463.     /**
  464.      * Défini les variables pour le nom du site
  465.      * @param type $site_id
  466.      */
  467.     private function setSiteName($site_id)
  468.     {
  469.         $infoRefAccueil $this->entityManager->getRepository(SiteReferencement::class)
  470.             ->findOneBy(['site_lang' => $this->langueFront'site_uid' => $site_id]);
  471.         $siteParam $this->repoSite->find($site_id);
  472.         $this->nomDuSite $siteParam !== null $siteParam->getSiteName() : "Nom du site";
  473.         $this->descriptionSite $infoRefAccueil $infoRefAccueil->getAccRefDescription() : "Description du site";
  474.         $this->titleSite $infoRefAccueil $infoRefAccueil->getAccRefTitle() : "Titre du site";
  475.         if (!defined('SITE_NAME')) {
  476.             define('SITE_NAME'$this->nomDuSite);
  477.         }
  478.     }
  479.     /* verification os pour support webp */
  480.     public function verifSupportWebP()
  481.     {
  482.         //detect os
  483.         $user_agent $_SERVER['HTTP_USER_AGENT'];
  484.         $browser "Inconnu";
  485.         $browser_array = array(
  486.             '/mobile/i' => 'Handheld Browser',
  487.             '/msie/i' => 'Internet Explorer',
  488.             '/trident/i' => 'Internet Explorer',
  489.             '/msie/i' => 'msie',
  490.             '/trident/i' => 'Trident',
  491.             '/firefox/i' => 'Firefox',
  492.             '/safari/i' => 'Safari',
  493.             '/chrome/i' => 'Chrome',
  494.             '/edge/i' => 'Edge',
  495.             '/edg/i' => 'Edg',
  496.             '/opera/i' => 'Opera',
  497.             '/opr/i' => 'OPR',
  498.             '/netscape/i' => 'Netscape',
  499.             '/maxthon/i' => 'Maxthon',
  500.             '/konqueror/i' => 'Konqueror'
  501.         );
  502.         foreach ($browser_array as $regex => $value) {
  503.             if (preg_match($regex$user_agent)) {
  504.                 $browser $value;
  505.                 $pos strpos($user_agent$browser);
  506.                 $neoStr substr($user_agent$pos);
  507.                 $posSlash strpos($neoStr"/");
  508.                 $pos2 $posSlash 3;
  509.                 $neoStr2 var_export(substr($neoStr0$pos2), true) . PHP_EOL;
  510.             }
  511.         }
  512.         $supportWebP true;
  513.         /* Browser OK : opera(OPR), Chrome(Chrome), Edge(Edg), Firefox(Firefox) */
  514.         switch ($browser) {
  515.             case "Trident":
  516.             case "Internet Explorer":
  517.             case "msie":
  518.             case "Safari":
  519.                 $supportWebP false;
  520.                 break;
  521.         }
  522.         return $supportWebP;
  523.     }
  524.     /* pour les logos partenaires */
  525.     private function assignImgRep($dest$folder)
  526.     {
  527.         if (!file_exists($this->appKernel->getProjectDir() . '/public/medias_front/common')) {
  528.             mkdir($this->appKernel->getProjectDir() . '/public/medias_front/common');
  529.         }
  530.         $directory[] = $this->appKernel->getProjectDir() . '/public/medias_front/common';
  531.         $directory[] = $this->appKernel->getProjectDir() . '/public/medias_front/common/logosFooter';
  532.         foreach ($directory as $dir) {
  533.             if (!file_exists($dir)) {
  534.                 mkdir($dir755);
  535.             }
  536.         }
  537.         $allFiles scandir($this->appKernel->getProjectDir() . '/public/medias_front/common/' $folder);
  538.         $files array_diff($allFiles, array('.''..'));
  539.         $this->twig->addGlobal($dest$files);
  540.     }
  541.     /*     * ********************************************************************** */
  542.     /*     * ******************* URL INTERNE ******************** */
  543.     /*     * ********************************************************************** */
  544.     private $fileAriane = array();
  545.     private function setPageContext()
  546.     {
  547.         $uriArray explode('/'str_replace($this->dirName''$this->getUriWithoutParams($_SERVER['REQUEST_URI'])));
  548.         if (is_array($uriArray) && sizeof($uriArray) > 0) {
  549.             $page $this->entityManager->getRepository(Pages::class)->findOneBy(['purlInterne' => $uriArray[1]]);
  550.             if ($page != null) {
  551.                 $this->getRubriquePrincipal($page);
  552.                 $this->twig->addGlobal("page"$page);
  553.                 $this->twig->addGlobal("fileAriane"array_reverse($this->fileAriane));
  554.             }
  555.             //            else {
  556.             //                throw new NotFoundHttpException(null, null, 404);
  557.             //            }
  558.         }
  559.     }
  560.     /**
  561.      * Retourne REQUEST_URI sans GET params
  562.      * @param string $request_uri
  563.      * @return string
  564.      */
  565.     private function getUriWithoutParams($request_uri)
  566.     {
  567.         $pos strpos($request_uri'?');
  568.         if ($pos != false) {
  569.             $getParam substr($request_uri$pos);
  570.             $request_uri str_replace($getParam''$request_uri);
  571.         }
  572.         return $request_uri;
  573.     }
  574.     /**
  575.      * Retournee l'id de la rubrique princiapal d'une page
  576.      * @param array $page
  577.      */
  578.     private function getRubriquePrincipal($page)
  579.     {
  580.         $pparent $page->getPparent();
  581.         while ($pparent 0) {
  582.             $repo $this->entityManager->getRepository(Pages::class);
  583.             $page $repo->findOneBy(["pageId" => $pparent]);
  584.             $this->fileAriane[] = $page;
  585.             $pparent $page->getPparent();
  586.         }
  587.     }
  588. }