src/Controller/CoreController.php line 145

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\Request;
  5. use Doctrine\Persistence\ManagerRegistry;
  6. use App\Entity\Page;
  7. class CoreController extends AbstractController
  8. {
  9.     public function home(Request $requestManagerRegistry $em) {
  10.         $user=$this->getUser();
  11.         $portal_activate=$this->getParameter("portal_activate");
  12.         
  13.         if(!$portal_activate) {
  14.             $item_activate=$this->getParameter("item_activate");
  15.             
  16.             $bookmarks=null;
  17.             $items=null;
  18.             $itemcategorys=null;
  19.             
  20.             if($item_activate) {
  21.                 $em->getRepository("App\Entity\Item")->getUserItems($user,$bookmarks,$items,$itemcategorys,null,$request->getSession()->get('ssoitems'));
  22.                 return $this->render('Page\noportal.html.twig',[
  23.                     'useheader'         => true,
  24.                     'usemenu'           => false,
  25.                     'usesidebar'        => false,
  26.                     'item_activate'     => $item_activate,
  27.                     'bookmarks'         => $bookmarks,
  28.                     'items'             => $items,
  29.                     'itemcategorys'     => $itemcategorys
  30.                 ]);
  31.             }
  32.             else {
  33.                 return $this->render('Core\home.html.twig',[
  34.                     'useheader'     => true,
  35.                     'usemenu'       => false,
  36.                     'usesidebar'    => false,              
  37.                 ]);
  38.             }
  39.         }
  40.         else {
  41.             
  42.             // Récupération de la page encours
  43.             $id $request->query->get('id');
  44.             // Récupération redirection potentielle
  45.             $gotoroute $request->query->get('gotoroute');
  46.             $gotoid $request->query->get('gotoid');
  47.             
  48.             // L'utilisateur en cours
  49.            
  50.             // Chargement des chartes à signer
  51.             if($user) {
  52.                 
  53.                 $notices=$em->getRepository("App\Entity\Notice")->getNoticeToRead($user);
  54.                 if(! $notices->isEmpty()) {
  55.                     $notices=$em->getRepository("App\Entity\Notice")->getNoticeUser($user,false);
  56.                     return $this->render('Notice\mustread.html.twig',[
  57.                         'useheader'     => true,
  58.                         'usemenu'       => false,
  59.                         'usesidebar'    => false,    
  60.                         'maxwidth'      => true,
  61.                         'mustread'      => true,
  62.                         'notices'       => $notices,
  63.                         'id'            => $id,
  64.                     ]);
  65.                 }
  66.                 // On s'assure que l'ensemble des champs user obligatoire sont bien renseignés sinon bascule sur le profil
  67.                 $config=$em->getRepository('App\Entity\Config')->find("datauser");
  68.                 $fields=$config->getValue(); 
  69.                 $fields=json_decode($fields,true);                               
  70.                 $toprofil=false;
  71.                 if($fields!="") {
  72.                     foreach($fields as $key => $field) {
  73.                         // Si champs obligatoire
  74.                         if($field["perm"]==2) {
  75.                             switch($key) {
  76.                                 case "firstname": if($user->getFirstname()==""$toprofil=true; break;
  77.                                 case "visible": if($user->getVisible()==""$toprofil=true; break;
  78.                                 //case "authlevel": if($user->getAuthlevel()=="") $toprofil=true; break;
  79.                                 //case "belongingpopulation": if($user->getBelongingpopulation()=="") $toprofil=true; break;
  80.                                 case "job": if($user->getJob()==""$toprofil=true; break;
  81.                                 case "position": if($user->getPosition()==""$toprofil=true; break;
  82.                                 case "niveau02": if($user->geNiveau02()==""$toprofil=true; break;
  83.                                 case "usualname": if($user->getUsualname()==""$toprofil=true; break;
  84.                                 case "gender": if($user->getGender()==""$toprofil=true; break;
  85.                                 case "givensname": if($user->getGivensname()==""$toprofil=true; break;
  86.                                 case "telephonenumber": if($user->getTelephonenumber()==""$toprofil=true; break;
  87.                                 case "postaladress": if($user->getPostaladress()==""$toprofil=true; break;
  88.                                 case "birthdate": if($user->getBirthdate()==""$toprofil=true; break;
  89.                                 case "birthcountry": if($user->getBirthcountry()==""$toprofil=true; break;
  90.                                 case "birthplace": if($user->getBirthplace()==""$toprofil=true; break;
  91.                             }
  92.                         }
  93.                     }
  94.                 }
  95.                 // Si niveau01 commence par autre = alors niveau01other obligatoire
  96.                 $message="";
  97.                 $niveau01=strtolower($user->getNiveau01()->getLabel());
  98.                 if(stripos($niveau01,"autre")===0) {
  99.                     if(!$user->getNiveau01other()) {
  100.                         $toprofil=true;
  101.                         $message="<br>Merci d'indiquer votre ".$this->getParameter("labelniveau01");
  102.                     }
  103.                 }
  104.                 if($toprofil) {
  105.                     return $this->redirect($this->generateUrl('app_core_user',array("info"=>"Merci de compléter votre profil".$message)));                    
  106.                 }
  107.             }
  108.           
  109.             
  110.             // Calcul des pages de l'utilisateur
  111.             $em->getRepository("App\Entity\Page")->getPagesUser($user,$id,$entity,$pagesuser,$pagesadmin,$groupsshared);
  112.             // si aucune page = page par défaut
  113.             if(!$entity) {
  114.                 return $this->render('Page\default.html.twig',[
  115.                     'useheader'     => true,
  116.                     'usemenu'       => false,
  117.                     'usesidebar'    => false
  118.                 ]);
  119.             }            
  120.             return $this->render('Page\pages.html.twig', [
  121.                 'useheader'         => true,
  122.                 'usemenu'           => true,
  123.                 'usesidebar'        => false,                    
  124.                 'entity'            => $entity,
  125.                 'access'            => "user",
  126.                 'pagesadmin'        => $pagesadmin,
  127.                 'pagesuser'         => $pagesuser,
  128.                 'groupsshared'      => $groupsshared,
  129.                 'canadd'            => $request->getSession()->get('cancreatepage'),
  130.                 'widgetsuser'       => $em->getRepository("App\Entity\Widget")->getWidgetAccess("user"),
  131.                 'widgetsgroup'      => $em->getRepository("App\Entity\Widget")->getWidgetAccess("group"),
  132.                 'gotoroute'         => $gotoroute,
  133.                 'gotoid'            => $gotoid,
  134.             ]);
  135.         }
  136.     }
  137.     public function docrest()
  138.     {
  139.         return $this->render('Tool\frame.html.twig', [
  140.             'useheader'         => true,
  141.             'usemenu'           => false,
  142.             'usesidebar'        => true,              
  143.             'url'               => $this->generateUrl('app_swagger_ui')
  144.         ]); 
  145.     }    
  146. }