src/Controller/DefaultController.php line 65

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\Routing\Annotation\Route;
  5. use Symfony\Component\HttpFoundation\Request;
  6. use Symfony\Component\HttpFoundation\Response;
  7. use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
  8. use Symfony\Component\Mailer\MailerInterface;
  9. use Symfony\Bridge\Twig\Mime\TemplatedEmail;
  10. use Symfony\Component\Mime\Email;
  11. use Symfony\Component\Mime\Address;
  12. use OlaSoft\Common;
  13. use App\Entity\Subscribers;
  14. use App\Entity\Services;
  15. use App\Entity\Articles;
  16. use App\Entity\ArticlesCategories;
  17. use App\Entity\Structures;
  18. use App\Entity\StructuresCategories;
  19. use App\Entity\Resources;
  20. use App\Entity\ResourcesPhases;
  21. use App\Entity\ResourcesCategories;
  22. use App\Entity\Pages;
  23. use App\Entity\Banners;
  24. use App\Entity\Videos;
  25. use App\Entity\Messages;
  26. use App\Form\MessagesType;
  27. use App\Form\SubscribersType;
  28. use App\Entity\Members;
  29. use App\Entity\Formations;
  30. use App\Entity\Registrations;
  31. use App\Form\RegistrationsType;
  32. class DefaultController extends AbstractController
  33. {
  34.     /**
  35.      * @Route("/", name="home")
  36.      */
  37.     public function index()
  38.     {
  39.         $em $this->getDoctrine()->getManager();
  40.         $banner $em->getRepository(Banners::class)->findOneBy(['isEnabled'=>1], ['id'=>'desc']);
  41.         $articles $em->getRepository(Articles::class)->findBy(['isEnabled'=>1], ['date'=>'desc'], 3);
  42.         $formations $em->getRepository(Formations::class)->findBy(['isEnabled'=>1]);
  43.         // $docs = $em->getRepository(Resources::class)->findBy(['isEnabled' => 1], ['id'=>'desc'], 3);
  44.         // $videos = $em->getRepository(Videos::class)->findBy(['isEnabled'=>1], ['id'=>'desc'], 3);
  45.         $page $em->getRepository(Pages::class)->findOneBySlug('a-propos');
  46.         return $this->render('Default/index.html.twig',[
  47.             'banner' => $banner,
  48.             'articles' => $articles,
  49.             // 'videos' => $videos,
  50.             // 'docs' => $docs,
  51.             'page' => $page,
  52.             'formations'=>$formations,
  53.         ]);
  54.     }
  55.     /**
  56.      * @Route("/sitemap.xml", name="sitemap", defaults={"xml"=true, "_format"="xml"})
  57.      */
  58.     public function menu($activeMenu null$isFooter false$xml false)
  59.     {
  60.         $em $this->getDoctrine()->getManager();
  61.         $formations $em->getRepository(Formations::class)->findBy(['isEnabled'=>1]);
  62.         $structuresCats $em->getRepository(StructuresCategories::class)->findBy(['isEnabled'=>1]);
  63.         $articlesCats $em->getRepository(ArticlesCategories::class)->findAll();
  64.         $resourcesCats $em->getRepository(ResourcesCategories::class)->findAll();
  65.         return $this->render($xml 'Default/sitemap.xml.twig' : ($isFooter 'Default/footer.html.twig' 'Default/menu.html.twig'),[
  66.             'formations'=>$formations,
  67.             'structuresCats'=>$structuresCats,
  68.             'articlesCats'=>$articlesCats,
  69.             'resourcesCats'=>$resourcesCats,
  70.             'activeMenu'=>$activeMenu,
  71.         ]);
  72.     }
  73.     /**
  74.      * @Route("/recherche/", name="search")
  75.      */
  76.     public function search(Request $requestSectors $sector null)
  77.     {
  78.         $keywords $request->query->get('keywords');
  79.         $em $this->getDoctrine()->getManager();
  80.         $articles $em->getRepository(Articles::class)->createQueryBuilder('a')
  81.             ->leftjoin('a.banner','b')
  82.             ->leftjoin('a.category','c')
  83.             ->leftjoin('a.type','t')
  84.             ->leftjoin('a.album','aa')
  85.             ->leftjoin('a.biblio','ab')
  86.             ->leftjoin('a.sector','s')
  87.             ->orderBy('a.date','DESC')
  88.             ->andWhere("a.date <= '".(new \DateTime())->format('Y-m-d H:i:s')."'")
  89.             ->andWhere('a.isEnabled = 1')
  90.             ->andWhere('(a.title like :k or a.description like :k or c.name like :k or s.label like :k )')
  91.             ->setParameter('k','%'.$keywords.'%')
  92.             ->getQuery()->getResult();
  93.         $docs $em->getRepository(Resources::class)->createQueryBuilder('o')
  94.             ->leftjoin('o.category','c')
  95.             ->leftjoin('o.sector','s')
  96.             ->where('o.title like :k or o.description like :k or c.label like :k or s.label like :k ')
  97.             ->andWhere('o.isEnabled = 1')
  98.             ->setParameter('k','%'.$keywords.'%')
  99.             ->getQuery()->getResult();
  100.         $pages $em->getRepository(Pages::class)->createQueryBuilder('o')
  101.             ->where('o.title like :k or o.description like :k or o.titleAlt like :k or o.pictureTitle like :k or o.pictureSubtitle like :k or o.content like :k')
  102.             ->andWhere('o.isEnabled = 1')
  103.             ->setParameter('k','%'.$keywords.'%')
  104.             ->getQuery()->getResult();
  105.         $structs $em->getRepository(Structures::class)->createQueryBuilder('o')
  106.             ->leftjoin('o.sector','s')
  107.             ->where('o.name like :k or o.abbreviation like :k or s.label like :k or o.director like :k or o.description like :k or o.content like :k or o.address like :k or o.website like :k')
  108.             ->andWhere('o.isEnabled = 1')
  109.             ->setParameter('k','%'.$keywords.'%')
  110.             ->getQuery()->getResult();
  111.         return $this->render('Default/search.html.twig',[
  112.             'articles'=>$articles,
  113.             'docs'=>$docs,
  114.             'pages'=>$pages,
  115.             'keywords'=>$keywords
  116.         ]);
  117.     }
  118.     /**
  119.      * @Route("/formations/", name="formations")
  120.      */
  121.     public function formations(Request $request)
  122.     {
  123.         $em $this->getDoctrine()->getManager();
  124.         $list $em->getRepository(Formations::class)->findBy(['isEnabled'=>1]);
  125.         return $this->render('Default/formations.html.twig',[
  126.             'list'=>$list
  127.         ]);
  128.     }
  129.     /**
  130.      * @Route("/formation/{id}/{slug}/", name="formation", requirements={"id": "\d+"})
  131.      * @Route("/formation/{id}/", requirements={"id": "\d+"})
  132.      */
  133.     public function project(Formations $item$slug null)
  134.     {
  135.         return $this->render('Default/formation.html.twig',[
  136.             'item'=>$item,
  137.         ]);
  138.     }
  139.     /**
  140.      * @Route("/articles/", name="articles")
  141.      * @Route("/articles/{offset}/", name="articles-page", requirements={"offset": "\d+"})
  142.      * @Route("/articles/{cat}/", name="articles-cat")
  143.      * @Route("/articles/{cat}/{offset}/", name="articles-cat-page", requirements={"offset": "\d+"})
  144.      */
  145.     public function articles($offset 1$cat null)
  146.     {
  147.         $offset--;
  148.         $limit 30;
  149.         $of $offset*$limit;
  150.         $params = [];
  151.         $em $this->getDoctrine()->getManager();
  152.         $cat $cat $em->getRepository(ArticlesCategories::class)->findOneBySlug($cat) : null;
  153.         $list $em->getRepository(Articles::class)->createQueryBuilder('a')
  154.             ->leftjoin('a.banner','b')
  155.             ->leftjoin('a.category','c')
  156.             ->leftjoin('a.type','t')
  157.             ->leftjoin('a.album','aa')
  158.             ->leftjoin('a.biblio','ab')
  159.             ->orderBy('a.date','DESC')
  160.             ->andWhere("a.date <= '".(new \DateTime())->format('Y-m-d H:i:s')."'")
  161.             ->andWhere('a.isEnabled = 1')
  162.         ;
  163.         if($cat) {
  164.             $list $list->andWhere('c.id = '.$cat->getId());
  165.             $params['cat'] = $cat->getSlug();
  166.         }
  167.         $count $list->select('count(distinct(a.id))')->getQuery()->getResult()[0][1];
  168.         $list $list->select('a')
  169.             ->setMaxResults($limit)
  170.             ->setFirstResult($of)
  171.             ->getQuery()->getResult();
  172.         return $this->render('Default/articles.html.twig',[
  173.             'articles'=>$list,
  174.             'cat'=>$cat,
  175.             'count'=>$count,
  176.             'table_limit'=>$limit,
  177.             'offset'=>$offset,
  178.             'params'=>$params
  179.         ]);
  180.     }
  181.     /**
  182.      * @Route("/article/{id}/{slug}/", name="article", requirements={"id": "\d+"})
  183.      * @Route("/article/{id}/", requirements={"id": "\d+"})
  184.      */
  185.     public function article(Articles $article$slug null)
  186.     {
  187.         if(!$article->getIsEnabled() && !$this->isGranted('ROLE_USER'))
  188.             return $this->redirectToRoute('articles');
  189.         if($article->getURL())
  190.             return $this->redirect($article->getURL());
  191.         $em $this->getDoctrine()->getManager();
  192.         $list $em->getRepository(Articles::class)->createQueryBuilder('a')
  193.             ->leftjoin('a.banner','b')
  194.             ->leftjoin('a.category','c')
  195.             ->leftjoin('a.type','t')
  196.             ->leftjoin('a.album','aa')
  197.             ->leftjoin('a.biblio','ab')
  198.             ->orderBy('a.date','DESC')
  199.             ->andWhere('a.id <> '.$article->getId())
  200.             ->andWhere("a.date <= '".(new \DateTime())->format('Y-m-d H:i:s')."'")
  201.             ->andWhere('a.isEnabled = 1')
  202.             ->setMaxResults(4)
  203.             ->getQuery()
  204.             ->getResult();
  205.         return $this->render('Default/article.html.twig',[
  206.             'article'=>$article,
  207.             'list'=>$list,
  208.         ]);
  209.     }
  210.     /**
  211.      * @Route("/videos/", name="videos")
  212.      */
  213.     public function videos()
  214.     {
  215.         $em $this->getDoctrine()->getManager();
  216.         $videos $em->getRepository(Videos::class)->findBy(['isEnabled'=>true], ['id'=>'desc']);
  217.         return $this->render('Default/videos.html.twig',[
  218.             'videos'=>$videos
  219.         ]);
  220.     }
  221.     /**
  222.      * @Route("/video/{id}/", name="video", requirements={"id": "\d+"})
  223.      */
  224.     public function video(Videos $video)
  225.     {
  226.         return $this->render('Default/video.html.twig',[
  227.             'video'=>$video
  228.         ]);
  229.     }
  230.     /**
  231.      * @Route("/conseil-pedagogique/", name="advisors", defaults={"title":"Conseil pédagogique"})
  232.      * @Route("/comite-direction/", name="members", defaults={"title":"Comité de direction"})
  233.      * @Route("/conseil-administration/", name="administrators", defaults={"title":"Conseil d'administration"})
  234.      */
  235.     public function members($title)
  236.     {
  237.         $em $this->getDoctrine()->getManager();
  238.         $list $em->getRepository(Members::class)->findBy(['isEnabled' => 1], ['id'=>'asc']);
  239.         return $this->render('Default/members.html.twig',[
  240.             'list'=>$list,
  241.             'title'=>$title
  242.         ]);
  243.     }
  244.     /**
  245.      * @Route("/formateurs/", name="teachers")
  246.      */
  247.     public function teachers()
  248.     {
  249.         $em $this->getDoctrine()->getManager();
  250.         $list $em->getRepository(Members::class)->findBy(['isEnabled' => 1], ['id'=>'asc']);
  251.         return $this->render('Default/teachers.html.twig',[
  252.             'list'=>$list,
  253.         ]);
  254.     }
  255.     /**
  256.      * @Route("/directions/", name="structures")
  257.      * @Route("/directions/{slug}/", name="structures-cat")
  258.      */
  259.     public function structures(StructuresCategories $cat null)
  260.     {
  261.         $em $this->getDoctrine()->getManager();
  262.         $filter = ['isEnabled' => 1];
  263.         if($cat$filter['category'] = $cat->getId();
  264.         $list $em->getRepository(Structures::class)->findBy($filter, ['id'=>'asc']);
  265.         $groups $cat null $em->getRepository(StructuresCategories::class)->findBy(['isEnabled'=>1], ['id'=>'asc']);
  266.         return $this->render('Default/links.html.twig',[
  267.             'list'=>$list,
  268.             'groups'=>$groups,
  269.             'cat'=>$cat,
  270.         ]);
  271.     }
  272.     /**
  273.      * @Route("/structure/{id}/{slug}/", name="structure")
  274.      */
  275.     public function structure(Structures $struct)
  276.     {
  277.         return $this->render('Default/structure.html.twig',[
  278.             'struct'=>$struct,
  279.         ]);
  280.     }
  281.     /**
  282.      * @Route("/documents/", name="resources")
  283.      * @Route("/documents/{slug}/", name="resources-cat")
  284.      */
  285.     public function resources(Request $requestResourcesCategories $cat null)
  286.     {
  287.         $keyword $request->get('q');
  288.         $offset $request->get('offset') ?? 1;
  289.         $offset--;
  290.         $limit 50;
  291.         $of $offset*$limit;
  292.         $em $this->getDoctrine()->getManager();
  293.         $query =  $em->getRepository(Resources::class)->createQueryBuilder('r')
  294.             ->leftjoin('r.category','c')
  295.             ->where('r.isEnabled = 1')
  296.             ->orderBy('r.date','desc');
  297.         if($cat$query $query->andWhere('c.id = '.$cat->getId())->addOrderBy('r.date','desc');
  298.         if($keyword)
  299.             $query $query->andWhere('(r.title like :k or r.description like :k or c.label like :k)')
  300.             ->setParameter('k','%'.$keyword.'%');
  301.         $count $query->select('count(r.id)')->getQuery()->getResult()[0][1];
  302.         $list $query->select('r')->setMaxResults($limit)->setFirstResult($of)->getQuery()->getResult();
  303.         return $this->render('Default/resources.html.twig',[
  304.             'cat'=>$cat,
  305.             'list'=>$list,
  306.             'count'=>$count,
  307.             'table_limit'=>$limit,
  308.             'offset'=>$offset,
  309.             'keyword'=>$keyword
  310.         ]);
  311.     }
  312.     /**
  313.      * @Route("/a-propos/", name="about", defaults={"slug":"a-propos"})
  314.      * @Route("/mot-directeur/", name="word", defaults={"slug":"mot-directeur"})
  315.      * @Route("/attributions/", name="attributions", defaults={"slug":"attributions"})
  316.      * @Route("/organisation/", name="organisation", defaults={"slug":"organisation"})
  317.      * @Route("/reglement-interieur/", name="statuses", defaults={"slug":"statuts-reglement-interieur"})
  318.      * @Route("/commissariat-comptes/", name="auditors", defaults={"slug":"commissariat-comptes"})
  319.      * @Route("/page/{slug}/", name="page")
  320.      */
  321.     public function page(Pages $page null$menu null$subtitle null)
  322.     {
  323.         return $this->render('Default/page.html.twig',[
  324.             'page'=>$page,
  325.             'menu'=>$menu,
  326.             'subtitle'=>$subtitle,
  327.         ]);
  328.     }
  329.     /**
  330.      * @Route("/contacts/", name="contacts")
  331.      */
  332.     public function contact(MailerInterface $mailer)
  333.     {
  334.         $request $this->get('request_stack')->getCurrentRequest();
  335.         $em $this->getDoctrine()->getManager();
  336.         $msg = new Messages();
  337.         $form $this->createForm(MessagesType::class, $msg);
  338.         $form->handleRequest($request);
  339.         if ($form->isSubmitted() && $form->isValid()){
  340.             $browser Common::getBrowser(nulltrue);
  341.             $msg->setIP($request->getClientIP());
  342.             $msg->setBrowser($browser['name']);
  343.             $msg->setOS($browser['platform']);
  344.             $msg->setDate(new \DateTime);
  345.             $em->persist($msg);
  346.             $em->flush();
  347.             $author $msg->getFName().' '.$msg->getLName();
  348.             $message"<b>Nom et prénoms : </b>".$author.
  349.                 "<br/><b>Adresse électronique : </b>".$msg->getEmail().
  350.                 "<br/><b>Object : </b>".$msg->getObject().
  351.                 "<br/><b>Message :</b><p style='border-left: 3px solid #ccc; padding-left: 10px; padding-top: 5px; padding-bottom: 5px;'>".nl2br($msg->getContent())."</p>";
  352.             $email = (new TemplatedEmail())
  353.                 ->from('noreply@'.$_SERVER['HTTP_HOST'])
  354.                 ->to(Common::params('contacts')['email'])
  355.                 ->replyTo(new Address($msg->getEmail(),$author))
  356.                 ->priority(Email::PRIORITY_HIGH)
  357.                 ->subject(Common::params('sitename').' - '.$msg->getObject())
  358.                 ->html($message);
  359.             $mailer->send($email);
  360.             $this->addFlash("notice","Votre message a été envoyé avec succès.");
  361.             return $this->redirectToRoute('contacts');
  362.         }
  363.         return $this->render('Default/contacts.html.twig',['form'=>$form->createView()]);
  364.     }
  365.     /**
  366.      * @Route("/inscription/", name="subscribers", defaults={"isEmbed"=false})
  367.      */
  368.     public function subscribers(Request $request$isEmbed true)
  369.     {
  370.         $em $this->getDoctrine()->getManager();
  371.         $subs = new Subscribers();
  372.         $form $this->createForm(SubscribersType::class, $subs);
  373.         $form->handleRequest($request);
  374.         if ($form->isSubmitted()){
  375.             if($form->isValid()){
  376.                 $exist $em->getRepository(Subscribers::class)->findOneByEmail($subs->getEmail());
  377.                 if(!$exist){
  378.                     $browser=Common::getBrowser(nulltrue);
  379.                     $subs->setIP($request->getClientIP());
  380.                     $subs->setBrowser($browser['name']);
  381.                     $subs->setOS($browser['platform']);
  382.                     $subs->setDate(new \DateTime);
  383.                     $em->persist($subs);
  384.                     $em->flush();
  385.                 }
  386.             }
  387.             $this->addFlash('notice','Félicitations.<br>Votre inscription a été effectuée avec succès.');
  388.             return $this->redirectToRoute('home');
  389.         }
  390.         return $this->render($isEmbed 'Default/subscribers-form.html.twig' 'Default/subscribers.html.twig',['form'=>$form->createView()]);
  391.     }
  392. }