src/Controller/DefaultController.php line 16

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\User;
  4. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  5. use Symfony\Component\HttpFoundation\Request;
  6. use Symfony\Contracts\Translation\TranslatorInterface;
  7. use Symfony\Component\Routing\Annotation\Route;
  8. class DefaultController extends AbstractController
  9. {
  10.     /**
  11.      * @Route("/", name="homepage")
  12.      */
  13.     public function indexAction(Request $requestTranslatorInterface $translator)
  14.     {
  15.         $user $this->getUser();
  16.         if(!$user)
  17.         {
  18.           return $this->render('security/login.html.twig', [
  19.             'last_username' => null,
  20.             'error' => null,
  21.           ]);
  22.         } elseif ($user->getUserStatus()->getId() != 2) {
  23.             $this->get('security.token_storage')->setToken(null);
  24.             $this->get('session')->invalidate();
  25.             return $this->render('security/login.html.twig', [
  26.                 'last_username' => null,
  27.                 'error' => null,
  28.             ]);
  29.         }
  30.         else {
  31.           // replace this example code with whatever you need
  32.           if($user->getRole()->getId() == User::ROLE_ADMIN || $user->getRole()->getId() == User::ROLE_SUPER_ADMIN)
  33.           {
  34.               return $this->redirectToRoute('dashboard_index');
  35.            /* return $this->render('dashboard/index.html.twig', [
  36.                 'base_dir' => realpath($this->getParameter('kernel.project_dir')).DIRECTORY_SEPARATOR,
  37.             ]);*/
  38.           } elseif ($user->getRole()->getId() == User::ROLE_CUSTOMER) {
  39.               if ($user->getCustomer() === null)
  40.               {
  41.                   if (count($user->getUserCustomerList()) >= 1)
  42.                   {
  43.                       $user->setCustomer($user->getUserCustomerList()->getValues()[0]->getCustomer());
  44.                       $em $this->getDoctrine()->getManager();
  45.                       $em->flush();
  46.                   } else {
  47.                       $this->get('security.token_storage')->setToken(null);
  48.                       $this->get('session')->invalidate();
  49.                       $no_customer_supplier $translator->trans('error.no_customer_supplier');
  50.                       return $this->render('@Twig/Exception/error.html.twig', [
  51.                           'status_code' => 500,
  52.                           'status_text' => $no_customer_supplier,
  53.                       ]);
  54.                   }
  55.               }
  56.             return $this->redirectToRoute('dashboard_index_customer');
  57.           } else {
  58.               return $this->redirectToRoute('dashboard_index_supplier');
  59.             }
  60.         }
  61.     }
  62.     public function pageNotFoundAction()
  63.     {
  64.         return $this->render('@Twig/Exception/error.html.twig', [
  65.             'status_code' => 404,
  66.             'status_text' => 'Not Found!',
  67.         ]);
  68.     }
  69. }