src/Diplix/KMGBundle/Controller/AuthController.php line 64

Open in your IDE?
  1. <?php
  2. namespace Diplix\KMGBundle\Controller;
  3. use Diplix\Commons\DataHandlingBundle\Repository\SysLogRepository;
  4. use Diplix\KMGBundle\Entity\User;
  5. use Diplix\KMGBundle\Form\ForgotPasswordForm;
  6. use Diplix\KMGBundle\Form\ResetPasswordForm;
  7. use Diplix\KMGBundle\Helper\ClientConfigProvider;
  8. use Diplix\KMGBundle\Service\MailHelper;
  9. use Doctrine\ORM\NonUniqueResultException;
  10. use Symfony\Component\Form\FormError;
  11. use Symfony\Component\HttpFoundation\Request;
  12. use Symfony\Component\HttpFoundation\Response;
  13. use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface;
  14. use Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface;
  15. use Symfony\Component\Security\Core\Exception\UsernameNotFoundException;
  16. use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
  17. class AuthController extends BaseController
  18. {
  19.     public function __construct(
  20.         protected ClientConfigProvider $ccp,
  21.         protected MailHelper $mailHelper,
  22.         protected UserPasswordHasherInterface $hasher,
  23.         private readonly \Doctrine\Persistence\ManagerRegistry $managerRegistry
  24.     )
  25.     {
  26.     }
  27.     /**
  28.      * Set encrypted pw using the default provider
  29.      * @param User $row
  30.      * @param string $newPw
  31.      * @return true
  32.      */
  33.     protected function setEncryptedUserPw(User $row$newPw)
  34.     {
  35.         $password $this->hasher->hashPassword($row,$newPw);
  36.         $row->setPassword($password);
  37.         return true;
  38.     }
  39.     public function loginAction(Request $request,AuthenticationUtils $authenticationUtils)
  40.     {
  41.         // get the login error if there is one
  42.         $error $authenticationUtils->getLastAuthenticationError();
  43.         // last username entered by the user
  44.         $lastUsername $authenticationUtils->getLastUsername();
  45.         return $this->render(
  46.             'Auth/login.html.twig',
  47.             array(
  48.                 // last username entered by the user
  49.                 'last_username' => $lastUsername,
  50.                 'error'         => $error,
  51.                 'platformSetup' => $this->ccp
  52.             )
  53.         );
  54.     }
  55.     public function forgotPasswordAction(Request $request)
  56.     {
  57.         $rep $this->managerRegistry->getManager()->getRepository(User::class);
  58.         $form $this->createForm(ForgotPasswordForm::class);
  59.         $form->handleRequest($request);
  60.         if ($form->isSubmitted())
  61.         {
  62.             $valid $form->isValid();
  63.             $email $form->get('email')->getData();
  64.             /** @var User $row */
  65.             try
  66.             {
  67.                 $row $rep->loadUserByUsername($email);
  68.             }
  69.             catch (\Throwable $x)
  70.             {
  71.                 $row false;
  72.                 $this->addFlash('danger',$x->getMessage());
  73.             }
  74.             if ( (!$valid) || (!is_object($row)) )
  75.             {
  76.                 $form->addError(new FormError("message.please-check-email"));
  77.                 return $this->render('@DiplixKMG/forgot_password.html.twig',array (
  78.                     "form" => $form->createView(),
  79.                 ));
  80.             }
  81.             $row->setMailActionMode(User::MAIL_ACTION_RESET_PASSWORD);
  82.             $row->setMailActionHashsha1(uniqid('',true)) );
  83.             $rep->flush($row);
  84.             $mh $this->mailHelper;
  85.             try {
  86.                 $mh->ResetPasswordMail($row);
  87.             }
  88.             catch (\Throwable $ex)
  89.             {
  90.                 SysLogRepository::logError($this->managerRegistry->getConnection(),$ex->getMessage(),null,0,'Mail');
  91.                 $this->addFlash('warning',$ex->getMessage());
  92.             }
  93.             $this->addFlash('success'"message.reset-instructions-by-mail");
  94.             return $this->redirect($this->generateUrl('forgot_password'));
  95.     }
  96.         else
  97.         {
  98.             $e $request->query->get("email","");
  99.             if ($e!=""$form->get('email')->setData($e);
  100.             return $this->render('@DiplixKMG/forgot_password.html.twig',array (
  101.                     "form" => $form->createView()
  102.             ));
  103.         }
  104.     }
  105.      public function resetPasswordAction(Request $request$email,$hash)
  106.     {
  107.         $rep $this->managerRegistry->getManager()->getRepository(User::class);
  108.         /** @var User $row */
  109.         $row $rep->getPendingPasswordResetUser($email,$hash);
  110.         if (is_object($row))
  111.         {
  112.             $form $this->createForm(ResetPasswordForm::class);
  113.             $form->handleRequest($request);
  114.             if ($form->isSubmitted())
  115.             {
  116.                 if ($form->isValid())
  117.                 {
  118.                     $this->setEncryptedUserPw($row$form->get('password')->getData());
  119.                     $row->setMailActionMode(User::MAIL_ACTION_NONE);
  120.                     $row->setMailActionHash("");
  121.                     $row->setLastPasswordChange(new \DateTime());
  122.                     $row->setSharedKey(''); // key was encrypted with old pw - it is not usable any more anyway - remove it
  123.                     $rep->flush($row);
  124.                     $this->addFlash('info'"message.password-was-reset");
  125.                     return $this->redirect($this->generateUrl("sys-login"));
  126.                 }
  127.             }
  128.             return $this->render('@DiplixKMG/reset_password.html.twig',array (
  129.                     "form" => $form->createView(),
  130.                     'show_key_warning' => ($row->getSharedKey()!==''),
  131.                     "row"=> $row,
  132.             ));
  133.         }
  134.         else
  135.         {
  136.             $this->addFlash("warning","message.invalid-link");
  137.             return $this->redirectToRoute("kmg_home");
  138.         }
  139.     }
  140.     public function registerAction(Request $request)
  141.     {
  142.         return $this->render('@DiplixKMG/register.html.twig');
  143.     }
  144.     public function unregisterAction(Request $request)
  145.     {
  146.         $ff $this->createForm(ForgotPasswordForm::class);
  147.         $ff->handleRequest($request);
  148.         if ($ff->isSubmitted()&&$ff->isValid())
  149.         {
  150.             $mh $this->mailHelper;
  151.             try {
  152.                 $mh->sendUserRemovalRequest($ff->get('email')->getData());
  153.             }
  154.             catch (\Throwable $ex)
  155.             {
  156.                 SysLogRepository::logError($this->managerRegistry->getConnection(),$ex->getMessage(),null,0,'Mail');
  157.                 //$this->addFlash('warning',$ex->getMessage());
  158.             }
  159.             $this->addFlash('success','Vielen Dank. Wir haben Ihre Anfrage erhalten und werden Sie in Kürze kontaktieren.');
  160.             return $this->redirectToRoute('unregister');
  161.         }
  162.         return $this->render('@DiplixKMG/unregister.html.twig',
  163.         [
  164.             'form'=>$ff->createView()
  165.         ]);
  166.     }
  167.     public function jsonLoginAction(Request $request) :Response
  168.     {
  169.         /** @var User $user */
  170.         $user $this->getUser();
  171.         return $this->json([
  172.             'username' => $user->getUsername(),
  173.             'success' => true,
  174.         ]);
  175.     }
  176. }