<?php
namespace Acme\SudcmsBundle\Controller\Front;
use Acme\SudcmsBundle\Entity\AddressBookCategory;
use Acme\SudcmsBundle\Entity\AnnuaireCategs;
use Acme\SudcmsBundle\Entity\ContactHistorique;
use Acme\SudcmsBundle\Entity\FormElements;
use Acme\SudcmsBundle\Entity\FormSite;
use Acme\SudcmsBundle\Entity\Pages;
use Acme\SudcmsBundle\Entity\PagesBlocs;
use Acme\SudcmsBundle\Form\FrontContactType;
use Acme\SudcmsBundle\Repository\AddressBookCategoryRepository;
use Acme\SudcmsBundle\Repository\FormAdressesRepository;
use Acme\SudcmsBundle\Repository\FormSiteRepository;
use Acme\SudcmsBundle\Repository\PagesRepository;
use Acme\SudcmsBundle\Service\FormBuilderService;
use Acme\SudcmsBundle\Service\MailerService;
use Acme\SudcmsBundle\Service\OtideaUtils;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Filesystem\Exception\FileNotFoundException;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\RequestStack;
use Symfony\Component\HttpFoundation\Session\Session;
use Symfony\Component\HttpKernel\KernelInterface;
use Symfony\Component\Routing\Annotation\Route;
use Twig\Environment;
class FrontPageController extends AbstractController {
private $appKernel;
private $otideaUtils;
private $mailerService;
private $session;
private $twig = null;
private $formSiteRepo;
private $formAdressesRepo;
private $requestStack;
private $formService;
private $popupFront = null;
private $currentPage = null;
private $fileAriane = array();
private $isThereSlider = array();
private $isThereGalerie = array();
private $tabVerifCarte = array();
private $pageWithForm = false;
public function __construct(KernelInterface $appKernel, MailerService $mailerService,
FormSiteRepository $formSiteRepo, FormAdressesRepository $formAdressesRepo,
RequestStack $requestStack, OtideaUtils $otideaUtils,
FormBuilderService $formService) {
$this->session = new Session();
$this->appKernel = $appKernel;
$this->requestStack = $requestStack;
$this->otideaUtils = $otideaUtils;
$this->mailerService = $mailerService;
$this->formSiteRepo = $formSiteRepo;
$this->formAdressesRepo = $formAdressesRepo;
$this->formService = $formService;
}
#[Route(path: '/change_locale/{locale}', name: 'front_change_locale', defaults: ['locale' => ''])]
public function changeLocale($locale, Request $request) {
// On stocke la langue dans la session
$request->getSession()->set('_locale', $locale);
$request->getSession()->remove('_localeMenu');
// On revient sur la page précédente
// return $this->redirect($request->headers->get('referer'));
return $this->redirectToRoute("front_home");
}
#[Route(path: '/change_locale_menu/{localMenu}', name: 'front_change_locale_menu', defaults: ['localMenu' => ''])]
public function changeLocaleMenu($localMenu, Request $request) {
// On stocke la langue dans la session
$request->getSession()->set('_locale', "fr");
$request->getSession()->set('_localeMenu', $localMenu);
// On revient sur la page précédente
// return $this->redirect($request->headers->get('referer'));
return $this->redirectToRoute("front_home");
}
/* * *********************************************************************** */
/* * ************ FONCTION APPELEE AUTOMATIQUEMENT PAR UN BLOC HTML ******** */
/* * *********************************************************************** */
private function fichier_exemple() {
//@TODO -- le fichier template doit étendre de bloc-html.html.twig
return array(
'var1' => 'value1',
'var2' => 'value2',
);
}
#[Route(path: ['fr' => '/page/{name}', 'en' => '/page-en/{name}', 'es' => '/pagina/{name}',
'it' => '/pagina/{name}', 'de' => '/seite/{name}', 'pt' => '/pagina/{name}',
'pl' => '/strona/{name}', 'ru' => '/stranitsa/{name}', 'zh' => '/ye/{name}',
'tr' => '/sayfa/{name}'], name: 'front_page', defaults: ['name' => ''])]
public function page($name, Request $request, PagesRepository $repo, AddressBookCategoryRepository $anCatRepo,
Environment $twig, $marker_id = 0) {
$this->twig = $twig;
$this->currentPage = $repo->findOneBy(['permalien' => $name, 'psite' => CURRENT_SITE_ID]);
if ($this->currentPage == null)
throw $this->createNotFoundException();
$this->getRubriquePrincipal($this->currentPage);
//Soumission d'un formulaire administrable
if ($request->get('formulaire_id') && $request->get('captcha')) {
if (trim($request->get('captcha')) == $request->get('captcha_resp')) {
$this->sendForm($request, $request->get('formulaire_id'));
} else {
$this->otideaUtils->createPopup(["title" => 'Vérification',
"message" => 'Vous avez échoué au test de vérification, veuillez essayer de nouveau.',
"btn2" => null]);
}
}
$page_content = $this->getPageBlocs($request);
$page_content_mediasForCanonical = $this->getPageMediasForCanon();
$page_descriptionRef = $this->getDescriptionRef();
$annuaireCategs = $anCatRepo->findBy(['abcSiteUid' => CURRENT_SITE_ID], ['abcOrder' => 'ASC']);
$annuaire = $anCatRepo->findByFicheWithCategories(['site_uid' => CURRENT_SITE_ID, 'site_lang' => 'fr']);
return $this->render('front/front_page/page.html.twig', [
"page_content" => $page_content,
"pageContentMediasForCanonical" => $page_content_mediasForCanonical,
"descriptionRef" => $page_descriptionRef,
"page" => $this->currentPage,
"isThereSlider" => $this->isThereSlider,
"isThereGalerie" => $this->isThereGalerie,
"tabVerifCarte" => $this->tabVerifCarte,
"fileAriane" => array_reverse($this->fileAriane),
'markerSelect' => $marker_id,
// 'geojsonLayers' => $this->getGeoJsonCarteTerritoire(),
'annuaireCategs' => $annuaireCategs,
'annuaire' => $annuaire,
'pageWithForm' => $this->pageWithForm,
]);
}
/**
* Soumission d'un formulaire administrable
* @param int $formulaire_id
*/
private function sendForm($request, $formulaire_id) {
$htmlContent = '';
$entityManager = $this->getDoctrine()->getManager();
$form = $entityManager->getRepository(FormSite::class)->find($formulaire_id);
$elements = $entityManager->getRepository(FormElements::class)->findBy(['form_id' => $formulaire_id]);
$htmlContent .= '<h2>Détail du formulaire :</h2>';
$htmlContent .= '<p>Ce mail vous est envoyé depuis le formulaire "' . $form->getSubject() . '" du site internet.</p>';
//Préparation du contenu HTML
$htmlContent .= '<ul>';
if (is_array($_POST) && sizeof($_POST) > 0) {
foreach ($_POST as $key => $post) {
$keyExplode = explode('==', $key);
if ($keyExplode !== false && sizeof($keyExplode) > 1) {
//Cas du RGPD
if ($keyExplode[1] == 'rgpd') {
$labelElmt = '';
foreach ($elements as $element) {
if ($element->getElementType() == 'rgpd') {
$labelElmt = $element->getElementLabel();
}
}
$htmlContent .= "<li>Le " . date('d/m/Y H:i:s') . " " . $labelElmt . ".</li>";
//Autres champs
} else {
foreach ($elements as $element) {
if ($element->getId() == $keyExplode[0]) {
if (is_array($request->get($key))) {
$htmlContent .= "<li><strong>" . $element->getElementLabel() . " : </strong>" . implode(', ',
$request->get($key)) . "</li>";
} else {
$htmlContent .= "<li><strong>" . $element->getElementLabel() . " : </strong>" . $request->get($key) . "</li>";
}
}
}
}
}
}
}
$htmlContent .= '</ul>';
//Envoi du mail
$this->mailerService->fromName = SITE_NAME;
$this->mailerService->subject = "Formulaire - " . $form->getSubject();
$this->mailerService->sendMail($allRecipients = array(), $htmlContent, $attachments = array(),
$form->getName());
//Affichage de la popup de confirmation
$this->otideaUtils->createPopup(["title" => 'Confirmation', "message" => 'Soumission du formulaire avec succès',
"btn2" => null]);
// echo '<pre>';
// print_r($htmlContent);
// echo '</pre>';
//
// exit();
}
private function getGeoJsonCarteTerritoire() {
$layersMap = array();
//eurocampus problème avec le fichier
$layers = ['arsenal', 'cappyrenees', 'centrekennedy', 'cognac', 'creaminnov', 'ecoparc', 'gabas', 'garounere',
'gave', 'mayelane', 'monge', 'poleadourpyrenees', 'poleartisanaleechez', 'pyreneaeropole', 'saux',
'seguelongue'];
foreach ($layers as $layer) {
$layersMap[$layer] = file_get_contents($this->appKernel->getProjectDir() . '/public/import/geojson/' . $layer . '.geojson');
}
return $layersMap;
}
private function getPageBlocs(Request $request) {
$content = '';
$entityManager = $this->getDoctrine()->getManager();
$blocs = $entityManager->getRepository(PagesBlocs::class)->findByListeBlocsWithMedia($this->currentPage->getPageId(),
"page");
if (is_array($blocs) && sizeof($blocs) > 0) {
foreach ($blocs as $bloc) {
$annuaireCategs = array();
$annuaire = array();
$tabVerif = array();
if ($bloc['bloc_type'] == 'formulaire') {
$this->pageWithForm = true;
$form = $entityManager->getRepository(FormSite::class)->findOneBy(['id' => $bloc['bloc_formulaire_id']]);
// if($form != null){
// $content .= $this->formService->create($bloc['bloc_formulaire_id'],
// ['editingMode' => false, 'method' => 'post', 'action' => '', 'captchaMode' => true],
// ['id' => $form->getName(), 'class' => $form->getName(), 'name' => 'front_formulaire']
// );
// }
if ($form != null) {
$contentTemp = $this->formService->create(
['editingMode' => false, 'method' => 'post', 'action' => '', 'captchaMode' => true],
['id' => $form->getName(), 'class' => $form->getName() . ' mbr-form',
'name' => 'front_formulaire'],
$bloc['bloc_formulaire_id'],
$request
);
$content .= $this->renderView("front/front_page/bloc-" . $bloc['bloc_type'] . ".html.twig",
['bloc' => $bloc, 'result' => $contentTemp]);
}
//...
} else if ($bloc['bloc_type'] == 'html') {
$content .= $this->htmlfile($bloc);
} else {
if ($bloc['bloc_type'] == 'texte_slider') {
$this->isThereSlider[] = $bloc['bloc_id'];
}
if ($bloc['bloc_type'] == 'galerie') {
$this->isThereGalerie[] = $bloc['bloc_id'];
}
if ($bloc['bloc_type'] == 'carte') {
$this->tabVerifCarte = explode(",", $bloc['bloc_texte']);
$annuaireCategs = $entityManager->getRepository(AddressBookCategory::class)->findBy(['site_uid' => 1],
['an_cat_order' => 'ASC']);
$annuaire = $entityManager->getRepository(AddressBookCategory::class)->findByFicheWithCategories(1,
'fr');
}
$MediasBlocs = $entityManager->getRepository(Pages::class)->getAllMediasByBloc($blocs);
$currentBlocMedias = array();
foreach ($MediasBlocs as $media) {
if ($bloc['bloc_id'] == $media["id_bloc"]) {
$currentBlocMedias[] = $media;
}
}
if ($bloc['bloc_type'] == 'texte_image' && empty($currentBlocMedias)) {
$bloc['bloc_type'] = 'texte';
}
if ($bloc['bloc_type'] == 'texte_slider' && empty($currentBlocMedias)) {
$bloc['bloc_type'] = 'texte';
}
// dd($currentBlocMedias[0]);
$content .= $this->renderView("front/front_page/bloc-" . $bloc['bloc_type'] . ".html.twig", [
'medias' => $currentBlocMedias,
'bloc' => $bloc,
"uniqId" => uniqid(),
'annuaireCategs' => $annuaireCategs,
'annuaire' => $annuaire,
'page' => $this->currentPage
]);
}
}
}
return $content;
}
private function getPageMediasForCanon() {
$contentMedForCannon = array();
$entityManager = $this->getDoctrine()->getManager();
$blocs = $entityManager->getRepository(PagesBlocs::class)->findByListeBlocsWithMedia($this->currentPage->getPageId(),
"page");
if (is_array($blocs) && sizeof($blocs) > 0) {
foreach ($blocs as $bloc) {
$MediasBlocs = $entityManager->getRepository(Pages::class)->getAllMediasByBloc($blocs);
foreach ($MediasBlocs as $media) {
if ($bloc['bloc_id'] == $media["id_bloc"]) {
$contentMedForCannon[] = $media;
}
}
}
}
return $contentMedForCannon;
}
private function getDescriptionRef() {
$entityManager = $this->getDoctrine()->getManager();
$blocs = $entityManager->getRepository(PagesBlocs::class)->findByListeBlocsWithMedia($this->currentPage->getPageId(),
"page");
$descriptionRef = "";
$contentDescrRefOk = 0;
if (is_array($blocs) && sizeof($blocs) > 0) {
foreach ($blocs as $bloc) {
if (($bloc['bloc_type'] == 'texte' || $bloc['bloc_type'] == 'texte_image') && $contentDescrRefOk == 0) {
if ($bloc['bloc_titre'] != "" && $bloc['bloc_titre'] != " ") {
$descriptionRef = $bloc['bloc_titre'];
}
if ($bloc['bloc_sstitre'] != "" && $bloc['bloc_sstitre'] != " ") {
$descriptionRef .= " - " . $bloc['bloc_sstitre'];
}
if ($bloc['bloc_texte'] != "" && $bloc['bloc_texte'] != " ") {
$descriptionRef .= " : " . strip_tags($bloc['bloc_texte']);
}
}
}
}
return $descriptionRef;
}
//Dans le cas d'une page statique on charge le contenu du fichier HTML
private function htmlfile($bloc) {
$blocHTML = '';
$result = '';
//Execution de la fonction correspondant à la page statique si besoin
$filename = $this->getFonctionParFichier($bloc['bloc_htmlfile']);
$rc = new \ReflectionClass('Acme\\SudcmsBundle\\Controller\\Front\\FrontPageController');
if (substr($filename, 0, 7) == "contact" && $rc->hasMethod("contact")) {
$result = $this->contact();
} elseif ($rc->hasMethod($filename)) {
$result = $this->$filename();
}
$originFile = $this->appKernel->getProjectDir() . "/templates/front/front_page/bloc-" . $bloc['bloc_type'] . ".html.twig";
if (file_exists($originFile)) {
$blocHTML = $this->renderView("front/front_page/bloc-" . $bloc['bloc_type'] . ".html.twig", [
'bloc' => $bloc,
'result' => $result,
'page' => $this->currentPage,
]);
} else {
throw new FileNotFoundException("Le fichier " . $bloc['bloc_htmlfile'] . " n'existe pas.", 0, null,
$originFile);
}
return $blocHTML;
}
/**
* Retourne le nom de la fonction à appeler en fonction du nom du fichier .html
* @param string $fichier
* @return string
*/
private function getFonctionParFichier($fichier) {
$fichier = str_replace(array('-'), '_', $fichier);
$fichier = str_replace(array('.html', '.twig'), '', $fichier);
return $fichier;
}
/**
* Retournee l'id de la rubrique principale d'une page
* @param array $page
*/
private function getRubriquePrincipal($page) {
$pparent = $page->getPparent();
while ($pparent > 0) {
$repo = $this->getDoctrine()->getManager()->getRepository(Pages::class);
$page = $repo->findOneBy(["pageId" => $pparent]);
$this->fileAriane[] = $page;
$pparent = $page->getPparent();
}
}
private function socialwall() {
$originFile = $this->appKernel->getProjectDir() . '/templates/front_page/pages_statiques/socialwall.html.twig';
if (file_exists($originFile)) {
return $this->renderView("front_page/pages_statiques/socialwall.html.twig", [
]);
} else {
throw new FileNotFoundException("Le fichier socialwall.html.twig n'existe pas.", 0, null, $originFile);
}
}
public function contact() {
$contact = new ContactHistorique;
$form = $this->createForm(FrontContactType::class, $contact);
$form->handleRequest($this->requestStack->getCurrentRequest());
if ($form->isSubmitted() && $form->isValid()) {
// cleaning inputs + setting additionnals fields
$contact->setNom(htmlspecialchars($form->get('nom')->getData(), ENT_QUOTES, "UTF-8"));
$contact->setPrenom(htmlspecialchars($form->get('prenom')->getData(), ENT_QUOTES, "UTF-8"));
$contact->setSociete(null);
$contact->setVille(htmlspecialchars($form->get('ville')->getData(), ENT_QUOTES, "UTF-8"));
$contact->setTel(htmlspecialchars($form->get('tel')->getData(), ENT_QUOTES, "UTF-8"));
$contact->setEmail(htmlspecialchars($form->get('email')->getData(), ENT_QUOTES, "UTF-8"));
$contact->setMessage(htmlspecialchars($form->get('message')->getData(), ENT_QUOTES, "UTF-8"));
$contact->setCreationDatetime(new \DateTime());
$contact->setSiteLang($this->requestStack->getCurrentRequest()->getLocale());
$contact->setSiteUid(CURRENT_SITE_ID);
$contact->setSource($this->formSiteRepo->findOneBy(["name" => "contact"]));
$entityManager = $this->getDoctrine()->getManager();
if ($this->requestStack->getCurrentRequest()->getLocale() == "fr") {
$titleOK = SITE_NAME . " | confirmation d'envoi";
$msgOK = "Le message a bien été enregistré. Nous vous répondrons dans les plus brefs délais.";
$titleKO = SITE_NAME . " | Echec de l'envoi.";
$msgKO = "Le message n'a pas été enregistré.";
} else {
$titleOK = SITE_NAME . " | your message has been send.";
$msgOK = "The message has been saved. We will respond as soon as possible.";
$titleKO = SITE_NAME . " | Failed to send the message.";
$msgKO = "The message was not saved.";
}
try {
$entityManager->persist($contact);
$result = $entityManager->flush();
$this->otideaUtils->createPopup(["title" => $titleOK, "message" => $msgOK, "btn2" => null]);
$this->mailerService->sendEmailFromForm(["form" => $form, "formName" => "contact"]);
$affOverlayCenter = true;
} catch (Exception $e) {
$this->otideaUtils->createPopup(["title" => $titleKO, "message" => $msgKO, "btn2" => null]);
$affOverlayCenter = true;
// throw $e;
}
}
$originFile = $this->appKernel->getProjectDir() . '/templates/front_page/pages_statiques/form-contact.html.twig';
if (file_exists($originFile)) {
return $this->renderView("front_page/pages_statiques/form-contact.html.twig", [
'formContact' => $form->createView(),
]);
} else {
throw new FileNotFoundException("Le fichier form-contact.html.twig n'existe pas.", 0, null, $originFile);
}
}
}