src/Controller/Front/FrontPageController.php line 104

Open in your IDE?
  1. <?php
  2. namespace Acme\SudcmsBundle\Controller\Front;
  3. use Acme\SudcmsBundle\Entity\AddressBookCategory;
  4. use Acme\SudcmsBundle\Entity\AnnuaireCategs;
  5. use Acme\SudcmsBundle\Entity\ContactHistorique;
  6. use Acme\SudcmsBundle\Entity\FormElements;
  7. use Acme\SudcmsBundle\Entity\FormSite;
  8. use Acme\SudcmsBundle\Entity\Pages;
  9. use Acme\SudcmsBundle\Entity\PagesBlocs;
  10. use Acme\SudcmsBundle\Form\FrontContactType;
  11. use Acme\SudcmsBundle\Repository\AddressBookCategoryRepository;
  12. use Acme\SudcmsBundle\Repository\FormAdressesRepository;
  13. use Acme\SudcmsBundle\Repository\FormSiteRepository;
  14. use Acme\SudcmsBundle\Repository\PagesRepository;
  15. use Acme\SudcmsBundle\Service\FormBuilderService;
  16. use Acme\SudcmsBundle\Service\MailerService;
  17. use Acme\SudcmsBundle\Service\OtideaUtils;
  18. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  19. use Symfony\Component\Filesystem\Exception\FileNotFoundException;
  20. use Symfony\Component\HttpFoundation\Request;
  21. use Symfony\Component\HttpFoundation\RequestStack;
  22. use Symfony\Component\HttpFoundation\Session\Session;
  23. use Symfony\Component\HttpKernel\KernelInterface;
  24. use Symfony\Component\Routing\Annotation\Route;
  25. use Twig\Environment;
  26. class FrontPageController extends AbstractController {
  27.     private $appKernel;
  28.     private $otideaUtils;
  29.     private $mailerService;
  30.     private $session;
  31.     private $twig null;
  32.     private $formSiteRepo;
  33.     private $formAdressesRepo;
  34.     private $requestStack;
  35.     private $formService;
  36.     private $popupFront     null;
  37.     private $currentPage    null;
  38.     private $fileAriane     = array();
  39.     private $isThereSlider  = array();
  40.     private $isThereGalerie = array();
  41.     private $tabVerifCarte  = array();
  42.     private $pageWithForm   false;
  43.     public function __construct(KernelInterface    $appKernelMailerService $mailerService,
  44.                                 FormSiteRepository $formSiteRepoFormAdressesRepository $formAdressesRepo,
  45.                                 RequestStack       $requestStackOtideaUtils $otideaUtils,
  46.                                 FormBuilderService $formService) {
  47.         $this->session = new Session();
  48.         $this->appKernel $appKernel;
  49.         $this->requestStack $requestStack;
  50.         $this->otideaUtils $otideaUtils;
  51.         $this->mailerService $mailerService;
  52.         $this->formSiteRepo $formSiteRepo;
  53.         $this->formAdressesRepo $formAdressesRepo;
  54.         $this->formService $formService;
  55.     }
  56.     #[Route(path'/change_locale/{locale}'name'front_change_locale'defaults: ['locale' => ''])]
  57.     public function changeLocale($localeRequest $request) {
  58.         // On stocke la langue dans la session
  59.         $request->getSession()->set('_locale'$locale);
  60.         $request->getSession()->remove('_localeMenu');
  61.         // On revient sur la page précédente
  62.         //        return $this->redirect($request->headers->get('referer'));
  63.         return $this->redirectToRoute("front_home");
  64.     }
  65.     #[Route(path'/change_locale_menu/{localMenu}'name'front_change_locale_menu'defaults: ['localMenu' => ''])]
  66.     public function changeLocaleMenu($localMenuRequest $request) {
  67.         // On stocke la langue dans la session
  68.         $request->getSession()->set('_locale'"fr");
  69.         $request->getSession()->set('_localeMenu'$localMenu);
  70.         // On revient sur la page précédente
  71.         //        return $this->redirect($request->headers->get('referer'));
  72.         return $this->redirectToRoute("front_home");
  73.     }
  74.     /*     * *********************************************************************** */
  75.     /*     * ************ FONCTION APPELEE AUTOMATIQUEMENT PAR UN BLOC HTML ******** */
  76.     /*     * *********************************************************************** */
  77.     private function fichier_exemple() {
  78.         //@TODO -- le fichier template doit étendre de bloc-html.html.twig
  79.         return array(
  80.             'var1' => 'value1',
  81.             'var2' => 'value2',
  82.         );
  83.     }
  84.     #[Route(path: ['fr' => '/page/{name}''en' => '/page-en/{name}''es' => '/pagina/{name}',
  85.                    'it' => '/pagina/{name}''de' => '/seite/{name}''pt' => '/pagina/{name}',
  86.                    'pl' => '/strona/{name}''ru' => '/stranitsa/{name}''zh' => '/ye/{name}',
  87.                    'tr' => '/sayfa/{name}'], name'front_page'defaults: ['name' => ''])]
  88.     public function page($nameRequest $requestPagesRepository $repoAddressBookCategoryRepository $anCatRepo,
  89.                          Environment $twig$marker_id 0) {
  90.         $this->twig $twig;
  91.         $this->currentPage $repo->findOneBy(['permalien' => $name'psite' => CURRENT_SITE_ID]);
  92.         if ($this->currentPage == null)
  93.             throw $this->createNotFoundException();
  94.         $this->getRubriquePrincipal($this->currentPage);
  95.         //Soumission d'un formulaire administrable
  96.         if ($request->get('formulaire_id') && $request->get('captcha')) {
  97.             if (trim($request->get('captcha')) == $request->get('captcha_resp')) {
  98.                 $this->sendForm($request$request->get('formulaire_id'));
  99.             } else {
  100.                 $this->otideaUtils->createPopup(["title"   => 'Vérification',
  101.                                                  "message" => 'Vous avez échoué au test de vérification, veuillez essayer de nouveau.',
  102.                                                  "btn2"    => null]);
  103.             }
  104.         }
  105.         $page_content $this->getPageBlocs($request);
  106.         $page_content_mediasForCanonical $this->getPageMediasForCanon();
  107.         $page_descriptionRef $this->getDescriptionRef();
  108.         $annuaireCategs $anCatRepo->findBy(['abcSiteUid' => CURRENT_SITE_ID], ['abcOrder' => 'ASC']);
  109.         $annuaire $anCatRepo->findByFicheWithCategories(['site_uid' => CURRENT_SITE_ID'site_lang' => 'fr']);
  110.         return $this->render('front/front_page/page.html.twig', [
  111.             "page_content"                  => $page_content,
  112.             "pageContentMediasForCanonical" => $page_content_mediasForCanonical,
  113.             "descriptionRef"                => $page_descriptionRef,
  114.             "page"                          => $this->currentPage,
  115.             "isThereSlider"                 => $this->isThereSlider,
  116.             "isThereGalerie"                => $this->isThereGalerie,
  117.             "tabVerifCarte"                 => $this->tabVerifCarte,
  118.             "fileAriane"                    => array_reverse($this->fileAriane),
  119.             'markerSelect'                  => $marker_id,
  120.             //                    'geojsonLayers' => $this->getGeoJsonCarteTerritoire(),
  121.             'annuaireCategs'                => $annuaireCategs,
  122.             'annuaire'                      => $annuaire,
  123.             'pageWithForm'                  => $this->pageWithForm,
  124.         ]);
  125.     }
  126.     /**
  127.      * Soumission d'un formulaire administrable
  128.      * @param int $formulaire_id
  129.      */
  130.     private function sendForm($request$formulaire_id) {
  131.         $htmlContent '';
  132.         $entityManager $this->getDoctrine()->getManager();
  133.         $form $entityManager->getRepository(FormSite::class)->find($formulaire_id);
  134.         $elements $entityManager->getRepository(FormElements::class)->findBy(['form_id' => $formulaire_id]);
  135.         $htmlContent .= '<h2>Détail du formulaire :</h2>';
  136.         $htmlContent .= '<p>Ce mail vous est envoyé depuis le formulaire "' $form->getSubject() . '" du site internet.</p>';
  137.         //Préparation du contenu HTML
  138.         $htmlContent .= '<ul>';
  139.         if (is_array($_POST) && sizeof($_POST) > 0) {
  140.             foreach ($_POST as $key => $post) {
  141.                 $keyExplode explode('=='$key);
  142.                 if ($keyExplode !== false && sizeof($keyExplode) > 1) {
  143.                     //Cas du RGPD
  144.                     if ($keyExplode[1] == 'rgpd') {
  145.                         $labelElmt '';
  146.                         foreach ($elements as $element) {
  147.                             if ($element->getElementType() == 'rgpd') {
  148.                                 $labelElmt $element->getElementLabel();
  149.                             }
  150.                         }
  151.                         $htmlContent .= "<li>Le " date('d/m/Y H:i:s') . " " $labelElmt ".</li>";
  152.                         //Autres champs
  153.                     } else {
  154.                         foreach ($elements as $element) {
  155.                             if ($element->getId() == $keyExplode[0]) {
  156.                                 if (is_array($request->get($key))) {
  157.                                     $htmlContent .= "<li><strong>" $element->getElementLabel() . " : </strong>" implode(', ',
  158.                                                                                                                             $request->get($key)) . "</li>";
  159.                                 } else {
  160.                                     $htmlContent .= "<li><strong>" $element->getElementLabel() . " : </strong>" $request->get($key) . "</li>";
  161.                                 }
  162.                             }
  163.                         }
  164.                     }
  165.                 }
  166.             }
  167.         }
  168.         $htmlContent .= '</ul>';
  169.         //Envoi du mail
  170.         $this->mailerService->fromName SITE_NAME;
  171.         $this->mailerService->subject "Formulaire - " $form->getSubject();
  172.         $this->mailerService->sendMail($allRecipients = array(), $htmlContent$attachments = array(),
  173.                                        $form->getName());
  174.         //Affichage de la popup de confirmation
  175.         $this->otideaUtils->createPopup(["title" => 'Confirmation'"message" => 'Soumission du formulaire avec succès',
  176.                                          "btn2"  => null]);
  177.         //        echo '<pre>';
  178.         //        print_r($htmlContent);
  179.         //        echo '</pre>';
  180.         //
  181.         //        exit();
  182.     }
  183.     private function getGeoJsonCarteTerritoire() {
  184.         $layersMap = array();
  185.         //eurocampus problème avec le fichier
  186.         $layers = ['arsenal''cappyrenees''centrekennedy''cognac''creaminnov''ecoparc''gabas''garounere',
  187.                    'gave''mayelane''monge''poleadourpyrenees''poleartisanaleechez''pyreneaeropole''saux',
  188.                    'seguelongue'];
  189.         foreach ($layers as $layer) {
  190.             $layersMap[$layer] = file_get_contents($this->appKernel->getProjectDir() . '/public/import/geojson/' $layer '.geojson');
  191.         }
  192.         return $layersMap;
  193.     }
  194.     private function getPageBlocs(Request $request) {
  195.         $content '';
  196.         $entityManager $this->getDoctrine()->getManager();
  197.         $blocs $entityManager->getRepository(PagesBlocs::class)->findByListeBlocsWithMedia($this->currentPage->getPageId(),
  198.                                                                                              "page");
  199.         if (is_array($blocs) && sizeof($blocs) > 0) {
  200.             foreach ($blocs as $bloc) {
  201.                 $annuaireCategs = array();
  202.                 $annuaire = array();
  203.                 $tabVerif = array();
  204.                 if ($bloc['bloc_type'] == 'formulaire') {
  205.                     $this->pageWithForm true;
  206.                     $form $entityManager->getRepository(FormSite::class)->findOneBy(['id' => $bloc['bloc_formulaire_id']]);
  207.                     //                    if($form != null){
  208.                     //                        $content .= $this->formService->create($bloc['bloc_formulaire_id'],
  209.                     //                            ['editingMode' => false, 'method' => 'post', 'action' => '', 'captchaMode' => true],
  210.                     //                            ['id' => $form->getName(), 'class' => $form->getName(), 'name' => 'front_formulaire']
  211.                     //                        );
  212.                     //                    }
  213.                     if ($form != null) {
  214.                         $contentTemp $this->formService->create(
  215.                             ['editingMode' => false'method' => 'post''action' => '''captchaMode' => true],
  216.                             ['id'   => $form->getName(), 'class' => $form->getName() . ' mbr-form',
  217.                              'name' => 'front_formulaire'],
  218.                             $bloc['bloc_formulaire_id'],
  219.                             $request
  220.                         );
  221.                         $content .= $this->renderView("front/front_page/bloc-" $bloc['bloc_type'] . ".html.twig",
  222.                                                       ['bloc' => $bloc'result' => $contentTemp]);
  223.                     }
  224.                     //...
  225.                 } else if ($bloc['bloc_type'] == 'html') {
  226.                     $content .= $this->htmlfile($bloc);
  227.                 } else {
  228.                     if ($bloc['bloc_type'] == 'texte_slider') {
  229.                         $this->isThereSlider[] = $bloc['bloc_id'];
  230.                     }
  231.                     if ($bloc['bloc_type'] == 'galerie') {
  232.                         $this->isThereGalerie[] = $bloc['bloc_id'];
  233.                     }
  234.                     if ($bloc['bloc_type'] == 'carte') {
  235.                         $this->tabVerifCarte explode(","$bloc['bloc_texte']);
  236.                         $annuaireCategs $entityManager->getRepository(AddressBookCategory::class)->findBy(['site_uid' => 1],
  237.                                                                                                             ['an_cat_order' => 'ASC']);
  238.                         $annuaire $entityManager->getRepository(AddressBookCategory::class)->findByFicheWithCategories(1,
  239.                                                                                                                          'fr');
  240.                     }
  241.                     $MediasBlocs $entityManager->getRepository(Pages::class)->getAllMediasByBloc($blocs);
  242.                     $currentBlocMedias = array();
  243.                     foreach ($MediasBlocs as $media) {
  244.                         if ($bloc['bloc_id'] == $media["id_bloc"]) {
  245.                             $currentBlocMedias[] = $media;
  246.                         }
  247.                     }
  248.                     if ($bloc['bloc_type'] == 'texte_image' && empty($currentBlocMedias)) {
  249.                         $bloc['bloc_type'] = 'texte';
  250.                     }
  251.                     if ($bloc['bloc_type'] == 'texte_slider' && empty($currentBlocMedias)) {
  252.                         $bloc['bloc_type'] = 'texte';
  253.                     }
  254.                     //                    dd($currentBlocMedias[0]);
  255.                     $content .= $this->renderView("front/front_page/bloc-" $bloc['bloc_type'] . ".html.twig", [
  256.                         'medias'         => $currentBlocMedias,
  257.                         'bloc'           => $bloc,
  258.                         "uniqId"         => uniqid(),
  259.                         'annuaireCategs' => $annuaireCategs,
  260.                         'annuaire'       => $annuaire,
  261.                         'page'           => $this->currentPage
  262.                     ]);
  263.                 }
  264.             }
  265.         }
  266.         return $content;
  267.     }
  268.     private function getPageMediasForCanon() {
  269.         $contentMedForCannon = array();
  270.         $entityManager $this->getDoctrine()->getManager();
  271.         $blocs $entityManager->getRepository(PagesBlocs::class)->findByListeBlocsWithMedia($this->currentPage->getPageId(),
  272.                                                                                              "page");
  273.         if (is_array($blocs) && sizeof($blocs) > 0) {
  274.             foreach ($blocs as $bloc) {
  275.                 $MediasBlocs $entityManager->getRepository(Pages::class)->getAllMediasByBloc($blocs);
  276.                 foreach ($MediasBlocs as $media) {
  277.                     if ($bloc['bloc_id'] == $media["id_bloc"]) {
  278.                         $contentMedForCannon[] = $media;
  279.                     }
  280.                 }
  281.             }
  282.         }
  283.         return $contentMedForCannon;
  284.     }
  285.     private function getDescriptionRef() {
  286.         $entityManager $this->getDoctrine()->getManager();
  287.         $blocs $entityManager->getRepository(PagesBlocs::class)->findByListeBlocsWithMedia($this->currentPage->getPageId(),
  288.                                                                                              "page");
  289.         $descriptionRef "";
  290.         $contentDescrRefOk 0;
  291.         if (is_array($blocs) && sizeof($blocs) > 0) {
  292.             foreach ($blocs as $bloc) {
  293.                 if (($bloc['bloc_type'] == 'texte' || $bloc['bloc_type'] == 'texte_image') && $contentDescrRefOk == 0) {
  294.                     if ($bloc['bloc_titre'] != "" && $bloc['bloc_titre'] != " ") {
  295.                         $descriptionRef $bloc['bloc_titre'];
  296.                     }
  297.                     if ($bloc['bloc_sstitre'] != "" && $bloc['bloc_sstitre'] != " ") {
  298.                         $descriptionRef .= " - " $bloc['bloc_sstitre'];
  299.                     }
  300.                     if ($bloc['bloc_texte'] != "" && $bloc['bloc_texte'] != " ") {
  301.                         $descriptionRef .= " : " strip_tags($bloc['bloc_texte']);
  302.                     }
  303.                 }
  304.             }
  305.         }
  306.         return $descriptionRef;
  307.     }
  308.     //Dans le cas d'une page statique on charge le contenu du fichier HTML
  309.     private function htmlfile($bloc) {
  310.         $blocHTML '';
  311.         $result '';
  312.         //Execution de la fonction correspondant à la page statique si besoin
  313.         $filename $this->getFonctionParFichier($bloc['bloc_htmlfile']);
  314.         $rc = new \ReflectionClass('Acme\\SudcmsBundle\\Controller\\Front\\FrontPageController');
  315.         if (substr($filename07) == "contact" && $rc->hasMethod("contact")) {
  316.             $result $this->contact();
  317.         } elseif ($rc->hasMethod($filename)) {
  318.             $result $this->$filename();
  319.         }
  320.         $originFile $this->appKernel->getProjectDir() . "/templates/front/front_page/bloc-" $bloc['bloc_type'] . ".html.twig";
  321.         if (file_exists($originFile)) {
  322.             $blocHTML $this->renderView("front/front_page/bloc-" $bloc['bloc_type'] . ".html.twig", [
  323.                 'bloc'   => $bloc,
  324.                 'result' => $result,
  325.                 'page'   => $this->currentPage,
  326.             ]);
  327.         } else {
  328.             throw new FileNotFoundException("Le fichier " $bloc['bloc_htmlfile'] . " n'existe pas."0null,
  329.                                             $originFile);
  330.         }
  331.         return $blocHTML;
  332.     }
  333.     /**
  334.      * Retourne le nom de la fonction à appeler en fonction du nom du fichier .html
  335.      * @param string $fichier
  336.      * @return string
  337.      */
  338.     private function getFonctionParFichier($fichier) {
  339.         $fichier str_replace(array('-'), '_'$fichier);
  340.         $fichier str_replace(array('.html''.twig'), ''$fichier);
  341.         return $fichier;
  342.     }
  343.     /**
  344.      * Retournee l'id de la rubrique principale d'une page
  345.      * @param array $page
  346.      */
  347.     private function getRubriquePrincipal($page) {
  348.         $pparent $page->getPparent();
  349.         while ($pparent 0) {
  350.             $repo $this->getDoctrine()->getManager()->getRepository(Pages::class);
  351.             $page $repo->findOneBy(["pageId" => $pparent]);
  352.             $this->fileAriane[] = $page;
  353.             $pparent $page->getPparent();
  354.         }
  355.     }
  356.     private function socialwall() {
  357.         $originFile $this->appKernel->getProjectDir() . '/templates/front_page/pages_statiques/socialwall.html.twig';
  358.         if (file_exists($originFile)) {
  359.             return $this->renderView("front_page/pages_statiques/socialwall.html.twig", [
  360.             ]);
  361.         } else {
  362.             throw new FileNotFoundException("Le fichier socialwall.html.twig n'existe pas."0null$originFile);
  363.         }
  364.     }
  365.     public function contact() {
  366.         $contact = new ContactHistorique;
  367.         $form $this->createForm(FrontContactType::class, $contact);
  368.         $form->handleRequest($this->requestStack->getCurrentRequest());
  369.         if ($form->isSubmitted() && $form->isValid()) {
  370.             // cleaning inputs + setting additionnals fields
  371.             $contact->setNom(htmlspecialchars($form->get('nom')->getData(), ENT_QUOTES"UTF-8"));
  372.             $contact->setPrenom(htmlspecialchars($form->get('prenom')->getData(), ENT_QUOTES"UTF-8"));
  373.             $contact->setSociete(null);
  374.             $contact->setVille(htmlspecialchars($form->get('ville')->getData(), ENT_QUOTES"UTF-8"));
  375.             $contact->setTel(htmlspecialchars($form->get('tel')->getData(), ENT_QUOTES"UTF-8"));
  376.             $contact->setEmail(htmlspecialchars($form->get('email')->getData(), ENT_QUOTES"UTF-8"));
  377.             $contact->setMessage(htmlspecialchars($form->get('message')->getData(), ENT_QUOTES"UTF-8"));
  378.             $contact->setCreationDatetime(new \DateTime());
  379.             $contact->setSiteLang($this->requestStack->getCurrentRequest()->getLocale());
  380.             $contact->setSiteUid(CURRENT_SITE_ID);
  381.             $contact->setSource($this->formSiteRepo->findOneBy(["name" => "contact"]));
  382.             $entityManager $this->getDoctrine()->getManager();
  383.             if ($this->requestStack->getCurrentRequest()->getLocale() == "fr") {
  384.                 $titleOK SITE_NAME " | confirmation d'envoi";
  385.                 $msgOK "Le message a bien été enregistré. Nous vous répondrons dans les plus brefs délais.";
  386.                 $titleKO SITE_NAME " | Echec de l'envoi.";
  387.                 $msgKO "Le message n'a pas été enregistré.";
  388.             } else {
  389.                 $titleOK SITE_NAME " | your message has been send.";
  390.                 $msgOK "The message has been saved. We will respond as soon as possible.";
  391.                 $titleKO SITE_NAME " | Failed to send the message.";
  392.                 $msgKO "The message was not saved.";
  393.             }
  394.             try {
  395.                 $entityManager->persist($contact);
  396.                 $result $entityManager->flush();
  397.                 $this->otideaUtils->createPopup(["title" => $titleOK"message" => $msgOK"btn2" => null]);
  398.                 $this->mailerService->sendEmailFromForm(["form" => $form"formName" => "contact"]);
  399.                 $affOverlayCenter true;
  400.             } catch (Exception $e) {
  401.                 $this->otideaUtils->createPopup(["title" => $titleKO"message" => $msgKO"btn2" => null]);
  402.                 $affOverlayCenter true;
  403.                 //                    throw $e;
  404.             }
  405.         }
  406.         $originFile $this->appKernel->getProjectDir() . '/templates/front_page/pages_statiques/form-contact.html.twig';
  407.         if (file_exists($originFile)) {
  408.             return $this->renderView("front_page/pages_statiques/form-contact.html.twig", [
  409.                 'formContact' => $form->createView(),
  410.             ]);
  411.         } else {
  412.             throw new FileNotFoundException("Le fichier form-contact.html.twig n'existe pas."0null$originFile);
  413.         }
  414.     }
  415. }