vendor/kzl/kzl-framework-bundle/src/Controller/UserController.php line 15

Open in your IDE?
  1. <?php
  2. namespace Kzl\FrameworkBundle\Controller;
  3. use Kzl\FrameworkBundle\Common\KzlFrameworkStatic;
  4. use Kzl\FrameworkBundle\Entity\Tenant;
  5. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  6. use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
  7. /**
  8.  * @todo ichikawa ログイン前のテナントCD取得方法見直し(OnRequestListener内で行いたい)
  9.  */
  10. class UserController extends AbstractController
  11. {
  12.     public function login(AuthenticationUtils $authenticationUtils)
  13.     {
  14.         if ($this->getUser()) {
  15.             $tenantManager KzlFrameworkStatic::getTenantManager();
  16.             return $this->redirectToRoute('app_top', ['subfolder' => $tenantManager->getSubfolder()]);
  17.         }
  18.         $em $this->getDoctrine()->getManager();
  19.         $url parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
  20.         $urlArray explode('/'$url);
  21.         $subfolder $urlArray[1];
  22.         $tenantCd $em->getRepository(Tenant::class)
  23.             ->getActiveTenantCd($subfolder);
  24.         $session KzlFrameworkStatic::getSession();
  25.         $session->set('tenant_fillter_tenant_cd'$tenantCd);
  26.         // get the login error if there is one
  27.         $error $authenticationUtils->getLastAuthenticationError();
  28.         // last username entered by the user
  29.         $lastUsername $authenticationUtils->getLastUsername();
  30.         return $this->render('user/login.html.twig', [
  31.             'last_username' => $lastUsername,
  32.             'error' => $error,
  33.         ]);
  34.     }
  35.     public function logout(): void
  36.     {
  37.         throw new \LogicException('This method can be blank - it will be intercepted by the logout key on your firewall.');
  38.     }
  39. }