src/Controller/Frontend/DefaultController.php line 234

Open in your IDE?
  1. <?php
  2. namespace App\Controller\Frontend;
  3. use Doctrine\ORM\EntityManagerInterface;
  4. use Symfony\Component\HttpFoundation\Request;
  5. use Symfony\Component\HttpFoundation\Response;
  6. use Symfony\Component\Routing\Annotation\Route;
  7. use Symfony\Component\HttpFoundation\JsonResponse;
  8. use Symfony\Component\HttpFoundation\RedirectResponse;
  9. use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
  10. use Symfony\Contracts\Translation\TranslatorInterface;
  11. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  12. use Symfony\Component\Mailer\MailerInterface;
  13. use Symfony\Component\Mime\Email;
  14. use Symfony\Bridge\Twig\Mime\TemplatedEmail;
  15. use App\Services\MailerService;
  16. use App\Services\MessageService;
  17. use App\Services\OptionService;
  18. use App\Entity\{
  19.     Page,
  20.     Block,
  21.     Contact,
  22.     Categorypage,
  23.     Actualites,
  24.     Um6p\Event,
  25.     Um6p\MediaEvent,
  26.     Um6p\Speaker
  27. };
  28. use App\Form\Frontend\ContactpublicType;
  29. use App\Form\Frontend\CandidaturepublicType;
  30. use App\Form\Frontend\Sothema\PharmapublicType;
  31. class DefaultController extends AbstractController
  32. {
  33.     /**
  34.      * @Route("/{langue}/master-program", name="new_page")
  35.      */
  36.     public function newPage(): Response
  37.     {
  38.         return $this->render('Frontend/new_page.html.twig');
  39.     }
  40.     /**
  41.      * @var OptionService
  42.      */
  43.     private $configRepo;
  44.     public function __construct(OptionService $configRepo)
  45.     {
  46.         $this->configRepo $configRepo;
  47.     }
  48.     /**
  49.      * Change the locale for the current user
  50.      *
  51.      * @param String $langue
  52.      * @return array
  53.      *
  54.      * @Route("/setlocale/{langue}", name="select_lang", defaults={"langue":"en"}, requirements={"_locale":"en|fr"})
  55.      */
  56.     public function setLocaleAction($langue "en"Request $request)
  57.     {
  58.         if ($langue != null) {
  59.             $request->getSession()->set('_locale'$langue);
  60.             $this->get('session')->set('_locale'$langue);
  61.             $request->setLocale($langue);
  62.         }
  63.         $url $this->generateUrl('frontend_home', array('_locale' => $langue));
  64.         return new RedirectResponse($url);
  65.     }
  66.     /**
  67.      * @Route("/{_locale}", name="frontend_home", defaults={"_locale":"en"}, requirements={"_locale":"en|fr"})
  68.      */
  69.     public function index(): Response
  70.     {
  71.         $em                $this->getDoctrine()->getManager();
  72.         $page_selected     $em->getRepository(Page::class)->findOneBySlug('home');
  73.        // $list_inspirations = $em->getRepository(inspiration::class)->getAllHomePublic();
  74.         return $this->render('Frontend/Page/index.html.twig', [
  75.             'page_selected'      => $page_selected
  76.         ]);
  77.     }
  78.     /**
  79.      * @Route("/_header", name="_header")
  80.      */
  81.     public function _header(): Response
  82.     {
  83.         $em                $this->getDoctrine()->getManager();
  84.         $categorier_pages  $em->getRepository(Categorypage::class)->getAllpublic();
  85.         return $this->render('Frontend/_header.html.twig', [
  86.             'categorier_pages'  =>  $categorier_pages
  87.         ]);
  88.     }
  89.     /**
  90.      * @Route("/_footer", name="_footer")
  91.      */
  92.     public function _footer(Request $request): Response
  93.     {
  94.         return $this->render('Frontend/_footer.html.twig');
  95.     }
  96.     /*  Actualités  */
  97.     /**
  98.      * @Route("/{_locale}/actualites", name="actualites", defaults={"_locale":"en"}, requirements={"_locale":"en|fr"})
  99.      */
  100.     public function actualites(Request $request): Response
  101.     {
  102.         $em                $this->getDoctrine()->getManager();
  103.         $nbrmax_article    $this->configRepo->getValue('article_nbr_page');
  104.         $page              $request->query->getInt('page'1);
  105.         $page_selected     $em->getRepository(Page::class)->findOneBySlug('actualites');
  106.         $list_actualites   $em->getRepository(Actualites::class)->findAllPagination($page$nbrmax_article);
  107.         $pagination        = array(
  108.             'page'        => $page,
  109.             'nbPages'     => ceil(count($list_actualites) / $nbrmax_article),
  110.             'nomRoute'    => 'actualites',
  111.             'paramsRoute' => array()
  112.         );
  113.         if ($page_selected) {
  114.             return $this->render('Frontend/Actualites/actualites.html.twig', [
  115.                 'page_selected'     => $page_selected,
  116.                 'list_actualites'   => $list_actualites,
  117.                 'pagination'        => $pagination
  118.             ]);
  119.         }
  120.         throw new NotFoundHttpException();
  121.     }
  122.     /**
  123.      * @Route("/{_locale}/actualites/{slug}", name="actu_selected", defaults={"_locale":"en"}, requirements={"_locale":"en|fr"})
  124.      */
  125.     public function actuSelected($slugRequest $request): Response
  126.     {
  127.         $em               $this->getDoctrine()->getManager();
  128.         $page_selected    $em->getRepository(Page::class)->findOneBySlug('actualites');
  129.         $actu_selected    $em->getRepository(Actualites::class)->findOneBySlug($slug);
  130.         if ($actu_selected) {
  131.             return $this->render('Frontend/Actualites/actu_selected.html.twig', [
  132.                 'page_selected'   => $page_selected,
  133.                 'actu_selected'   => $actu_selected
  134.             ]);
  135.         }
  136.         throw new NotFoundHttpException();
  137.     }
  138.     //Events
  139.     
  140.     /**
  141.      * @Route("/{_locale}/seminars-conferences/{slug}", name="event_selected", defaults={"_locale":"en"}, requirements={"_locale":"en|fr"})
  142.      */
  143.     public function eventSelected($slugRequest $request): Response
  144.     {
  145.         $em                $this->getDoctrine()->getManager();
  146.       //  $page_selected    = $em->getRepository(Page::class)->findOneBySlug('seminars-conferences');
  147.         $event_selected    $em->getRepository(Event::class)->findOneBySlug($slug);
  148.         $list_galerie      $em->getRepository(MediaEvent::class)->getAllPublic($event_selected);
  149.         $list_videos       $em->getRepository(MediaEvent::class)->getAllPublicByOpen($event_selected);
  150.         $list_speakers     $em->getRepository(Speaker::class)->getAllPublic($event_selected);
  151.         if ($event_selected) {
  152.             return $this->render('Frontend/Events/event_selected.html.twig', [
  153.                 'event_selected'  => $event_selected,
  154.                 'list_galerie'    => $list_galerie,
  155.                 'list_videos'     => $list_videos,
  156.                 'list_speakers'   => $list_speakers,
  157.             ]);
  158.         }
  159.         throw new NotFoundHttpException();
  160.     }
  161.     /**
  162.      * @Route("/{_locale}/contact", name="contact", defaults={"_locale":"en"}, requirements={"_locale":"en|fr"})
  163.      */
  164.     public function contact(Request $requestMailerInterface $mailer): Response
  165.     {
  166.         $contact         = new Contact();
  167.         $em              $this->getDoctrine()->getManager();
  168.         $page_selected   $em->getRepository(Page::class)->findOneBySlug('contact');
  169.         $form            $this->createForm(ContactpublicType::class, $contact, array(
  170.             'action' => $this->generateUrl('contact'),
  171.             'method' => 'POST'
  172.         ));
  173.         if ($request->isMethod('POST')) {
  174.             $form->handleRequest($request);
  175.             if ($form->isValid()) {
  176.                 $em->persist($contact);
  177.                 $em->flush();
  178.                 /* $datamail = $this->sendEmail($contact,'Contact',"Frontend/Email/_contact.html.twig");
  179.                     $mailer->send($datamail); */
  180.                 $request->getSession()->getFlashBag()->add('notice_success''Votre message a bien été envoyé');
  181.                 return $this->redirectToRoute('contact');
  182.             } else {
  183.                 $request->getSession()->getFlashBag()->add('notice_error''Votre formulaire est invalide');
  184.             }
  185.         }
  186.         return $this->render('Frontend/Contact/contact.html.twig', [
  187.             'page_selected'   => $page_selected,
  188.             'form'            => $form->createView()
  189.         ]);
  190.     }
  191.     /**
  192.      * @Route("/{_locale}/{slug}", name="page_single_simple", defaults={"_locale":"en"}, requirements={"_locale":"en|fr"})
  193.      */
  194.     public function pageSingleSimple($slugRequest $request): Response
  195.     {
  196.         $em                  $this->getDoctrine()->getManager();
  197.         $page_selected       $em->getRepository(Page::class)->findOneBySlug($slug);
  198.         
  199.         if ($page_selected) {
  200.             return $this->render('Frontend/Page/page_single.html.twig', [
  201.                 'page_selected'   => $page_selected
  202.             ]);
  203.         }
  204.         throw $this->createNotFoundException('Page not found');
  205.     }
  206.     /**
  207.      * @Route("/{_locale}/{catslug}/{slug}", name="page_single", defaults={"_locale":"en"}, requirements={"_locale":"en|fr"})
  208.      */
  209.     public function pageSingle($catslug$slugRequest $request): Response
  210.     {
  211.         $em                 $this->getDoctrine()->getManager();
  212.         $cat_selected       $em->getRepository(Categorypage::class)->findOneBySlug($catslug);
  213.         $page_selected      $em->getRepository(Page::class)->findOneBySlug($slug);
  214.         if ($page_selected) {
  215.             if ($page_selected->getSlug() == 'seminars-conferences') {
  216.                 $nbrmax_article    $this->configRepo->getValue('articles_nbr_page');
  217.                 $page_current      $request->query->getInt('page'1);
  218.     
  219.                 $list_events    $em->getRepository(Event::class)->findAllPagineEtTrie($page_current$nbrmax_article);
  220.                 $pagination        = array(
  221.                     'page'        => $page_current,
  222.                     'nbPages'     => ceil(count($list_events) / $nbrmax_article),
  223.                     'nomRoute'    => 'page_single',
  224.                     'paramsRoute' => array(
  225.                                             'catslug' => $catslug,
  226.                                             'slug'    => $slug
  227.                                         )
  228.                 );
  229.                 return $this->render('Frontend/Events/list_events.html.twig', [
  230.                     'page_selected'  => $page_selected,
  231.                     'list_events'    => $list_events,
  232.                     'pagination'     => $pagination,
  233.                 ]);
  234.             }
  235.         
  236.         
  237.             return $this->render('Frontend/Page/page_single.html.twig', [
  238.                 'cat_selected'    => $cat_selected,
  239.                 'page_selected'   => $page_selected
  240.             ]);
  241.         }
  242.         throw $this->createNotFoundException('Page not found');
  243.     }
  244.     private function sendEmail($data$object$template)
  245.     {
  246.         $dataview  =  $this->renderView($template, array('contact' => $data));
  247.         $email = (new Email())
  248.             ->from($this->configRepo->getValue('mail_envoie'))
  249.             ->to($this->configRepo->getValue('mail_reception'))
  250.             ->subject($object)
  251.             ->html($dataview);
  252.         return $email;
  253.     }
  254.     private function sendEmailCC($data$object$template)
  255.     {
  256.         $dataview  =  $this->renderView($template, array('visiteur' => $data));
  257.         $email = (new Email())
  258.             ->from($this->configRepo->getValue('mail_envoie'))
  259.             ->to($data->getMailadresse())
  260.             ->subject($object)
  261.             ->html($dataview);
  262.         return $email;
  263.     }
  264. }