custom/plugins/CompraPasswordValidatorSW6/src/Storefront/Controller/AuthController.php line 93

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Compra\PasswordValidatorSW6\Storefront\Controller;
  3. use Compra\PasswordValidatorSW6\Core\System\Service\PasswordValidationService;
  4. use Shopware\Core\Checkout\Customer\SalesChannel\AbstractLoginRoute;
  5. use Shopware\Core\Checkout\Customer\SalesChannel\AbstractLogoutRoute;
  6. use Shopware\Core\Checkout\Customer\SalesChannel\AbstractResetPasswordRoute;
  7. use Shopware\Core\Checkout\Customer\SalesChannel\AbstractSendPasswordRecoveryMailRoute;
  8. use Shopware\Core\Framework\DataAbstractionLayer\EntityRepositoryInterface;
  9. use Shopware\Core\Framework\DataAbstractionLayer\Exception\InconsistentCriteriaIdsException;
  10. use Shopware\Core\Framework\Routing\Annotation\RouteScope;
  11. use Shopware\Core\Framework\Validation\DataBag\RequestDataBag;
  12. use Shopware\Core\System\SalesChannel\Context\SalesChannelContextServiceInterface;
  13. use Shopware\Core\System\SalesChannel\SalesChannelContext;
  14. use Shopware\Core\System\SystemConfig\SystemConfigService;
  15. use Shopware\Storefront\Checkout\Cart\SalesChannel\StorefrontCartFacade;
  16. use Shopware\Storefront\Page\Account\Login\AccountLoginPageLoader;
  17. use Shopware\Core\Checkout\Cart\SalesChannel\CartService;
  18. use Shopware\Storefront\Page\Account\RecoverPassword\AccountRecoverPasswordPageLoader;
  19. use Symfony\Component\HttpFoundation\Request;
  20. use Symfony\Component\HttpFoundation\Response;
  21. use Symfony\Component\Routing\Annotation\Route;
  22. use Shopware\Storefront\Framework\Routing\Annotation\NoStore;
  23. /**
  24.  * @RouteScope(scopes={"storefront"})
  25.  */
  26. class AuthController extends \Shopware\Storefront\Controller\AuthController
  27. {
  28.     /**
  29.      * @var PasswordValidationService
  30.      */
  31.     private $passwordValidator;
  32.     /**
  33.      * @var \Shopware\Storefront\Controller\AuthController
  34.      */
  35.     private $originService;
  36.     public function __construct(
  37.         AccountLoginPageLoader $loginPageLoader,
  38.         AbstractSendPasswordRecoveryMailRoute $sendPasswordRecoveryMailRoute,
  39.         AbstractResetPasswordRoute $resetPasswordRoute,
  40.         AbstractLoginRoute $loginRoute,
  41.         AbstractLogoutRoute $logoutRoute,
  42.         StorefrontCartFacade $cartFacade,
  43.         AccountRecoverPasswordPageLoader $recoverPasswordPageLoader,
  44.         SalesChannelContextServiceInterface $salesChannelContextService,
  45.         PasswordValidationService $passwordValidator,
  46.         \Shopware\Storefront\Controller\AuthController $controller
  47.     ) {
  48.         parent::__construct(
  49.             $loginPageLoader,
  50.             $sendPasswordRecoveryMailRoute,
  51.             $resetPasswordRoute,
  52.             $loginRoute,
  53.             $logoutRoute,
  54.             $cartFacade,
  55.             $recoverPasswordPageLoader,
  56.             $salesChannelContextService,
  57.         );
  58.         $this->passwordValidator $passwordValidator;
  59.         $this->originService $controller;
  60.     }
  61.     /**
  62.      * Controller to overwrite shopware auth (password reset) controller to include password validation
  63.      * @Route("/account/recover/password", name="frontend.account.recover.password.reset", methods={"POST"})
  64.      *
  65.      * @throws InconsistentCriteriaIdsException
  66.      */
  67.     public function resetPassword(RequestDataBag $dataSalesChannelContext $context): Response
  68.     {
  69.         $hash $data->get('password')->get('hash');
  70.         if($this->passwordValidator->validatePassword($data->get("password")->get("newPassword"), $context)){
  71.             return $this->originService->resetPassword($data$context);
  72.         }
  73.         else{
  74.             return $this->forwardToRoute('frontend.account.recover.password.page', ['hash' => $hash'formViolations' => ['passwordViolation' => true], 'passwordFormViolation' => true]);
  75.         }
  76.     }
  77.     // implements all origin methods to allow further decoration in other classes and plugins
  78.     /**
  79.      * @Route("/account/login", name="frontend.account.login.page", methods={"GET"})
  80.      * @NoStore
  81.      */
  82.     public function loginPage(Request $requestRequestDataBag $dataSalesChannelContext $context): Response
  83.     {
  84.         return $this->originService->loginPage($request$data$context);
  85.     }
  86.     /**
  87.      * @Route("/account/guest/login", name="frontend.account.guest.login.page", methods={"GET"})
  88.      * @NoStore
  89.      */
  90.     public function guestLoginPage(Request $requestSalesChannelContext $context): Response
  91.     {
  92.         return $this->originService->guestLoginPage($request$context);
  93.     }
  94.     /**
  95.      * @Route("/account/logout", name="frontend.account.logout.page", methods={"GET"})
  96.      */
  97.     public function logout(Request $requestSalesChannelContext $contextRequestDataBag $dataBag): Response
  98.     {
  99.         return $this->originService->logout($request$context$dataBag);
  100.     }
  101.     /**
  102.      * @Route("/account/login", name="frontend.account.login", methods={"POST"}, defaults={"XmlHttpRequest"=true})
  103.      */
  104.     public function login(Request $requestRequestDataBag $dataSalesChannelContext $context): Response
  105.     {
  106.         return $this->originService->login($request$data$context);
  107.     }
  108.     /**
  109.      * @Route("/account/recover", name="frontend.account.recover.page", methods={"GET"})
  110.      */
  111.     public function recoverAccountForm(Request $requestSalesChannelContext $context): Response
  112.     {
  113.         return $this->originService->recoverAccountForm($request$context);
  114.     }
  115.     /**
  116.      * @Route("/account/recover", name="frontend.account.recover.request", methods={"POST"})
  117.      */
  118.     public function generateAccountRecovery(Request $requestRequestDataBag $dataSalesChannelContext $context): Response
  119.     {
  120.         return $this->originService->generateAccountRecovery($request$data$context);
  121.     }
  122.     /**
  123.      * @Route("/account/recover/password", name="frontend.account.recover.password.page", methods={"GET"})
  124.      */
  125.     public function resetPasswordForm(Request $requestSalesChannelContext $context): Response
  126.     {
  127.         return $this->originService->resetPasswordForm($request$context);
  128.     }
  129. }