custom/plugins/CompraPasswordValidatorSW6/src/Storefront/Controller/AccountProfileController.php line 87

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\Cart\Exception\CustomerNotLoggedInException;
  5. use Shopware\Core\Checkout\Customer\SalesChannel\AbstractChangeCustomerProfileRoute;
  6. use Shopware\Core\Checkout\Customer\SalesChannel\AbstractChangeEmailRoute;
  7. use Shopware\Core\Checkout\Customer\SalesChannel\AbstractChangePasswordRoute;
  8. use Shopware\Core\Framework\Routing\Annotation\RouteScope;
  9. use Shopware\Core\Framework\Validation\DataBag\RequestDataBag;
  10. use Shopware\Core\System\SalesChannel\SalesChannelContext;
  11. use Shopware\Storefront\Page\Account\Overview\AccountOverviewPageLoader;
  12. use Shopware\Storefront\Page\Account\Profile\AccountProfilePageLoader;
  13. use Symfony\Component\HttpFoundation\Request;
  14. use Symfony\Component\HttpFoundation\Response;
  15. use Symfony\Component\Routing\Annotation\Route;
  16. use Shopware\Core\Checkout\Customer\SalesChannel\AbstractDeleteCustomerRoute;
  17. use Shopware\Core\Checkout\Customer\CustomerEntity;
  18. use Shopware\Core\Framework\Routing\Annotation\LoginRequired;
  19. use Shopware\Storefront\Framework\Routing\Annotation\NoStore;
  20. use Psr\Log\LoggerInterface;
  21. /**
  22.  * @RouteScope(scopes={"storefront"})
  23.  */
  24. class AccountProfileController extends \Shopware\Storefront\Controller\AccountProfileController
  25. {
  26.     /**
  27.      * @var PasswordValidationService
  28.      */
  29.     private $passwordValidator;
  30.     /**
  31.      * @var \Shopware\Storefront\Controller\AccountProfileController
  32.      */
  33.     private $originService;
  34.     public function __construct(
  35.         AccountOverviewPageLoader                                $overviewPageLoader,
  36.         AccountProfilePageLoader                                 $profilePageLoader,
  37.         AbstractChangeCustomerProfileRoute                       $changeCustomerProfileRoute,
  38.         AbstractChangePasswordRoute                              $changePasswordRoute,
  39.         AbstractChangeEmailRoute                                 $changeEmailRoute,
  40.         AbstractDeleteCustomerRoute                              $deleteCustomerRoute,
  41.         LoggerInterface                                          $logger,
  42.         PasswordValidationService                                         $passwordValidator,
  43.         \Shopware\Storefront\Controller\AccountProfileController $controller
  44.     ) {
  45.         parent::__construct(
  46.             $overviewPageLoader,
  47.             $profilePageLoader,
  48.             $changeCustomerProfileRoute,
  49.             $changePasswordRoute,
  50.             $changeEmailRoute,
  51.             $deleteCustomerRoute,
  52.             $logger
  53.         );
  54.         $this->originService $controller;
  55.         $this->passwordValidator $passwordValidator;
  56.     }
  57.     /**
  58.      * Controller to overwrite shopware profile (change password) controller to include password validation
  59.      * @LoginRequired()
  60.      * @Route("/account/profile/password", name="frontend.account.profile.password.save", methods={"POST"})
  61.      * @throws CustomerNotLoggedInException
  62.      */
  63.     public function savePassword(RequestDataBag $dataSalesChannelContext $context, ?CustomerEntity $customer null): Response
  64.     {
  65.         if($this->passwordValidator->validatePassword($data->get("password")->get("newPassword"), $context)){
  66.             return $this->originService->savePassword($data$context$customer);
  67.         }
  68.         else{
  69.             return $this->forwardToRoute('frontend.account.profile.page', ['formViolations' => ['passwordViolation' => true], 'passwordFormViolation' => true]);
  70.         }
  71.     }
  72.     // implements all origin methods to allow further decoration in other classes and plugins
  73.     /**
  74.      * @LoginRequired()
  75.      * @Route("/account", name="frontend.account.home.page", methods={"GET"})
  76.      * @NoStore
  77.      */
  78.     public function index(Request $requestSalesChannelContext $contextCustomerEntity $customer): Response
  79.     {
  80.         return $this->originService->index($request$context$customer);
  81.     }
  82.     /**
  83.      * @LoginRequired()
  84.      * @Route("/account/profile", name="frontend.account.profile.page", methods={"GET"})
  85.      * @NoStore
  86.      */
  87.     public function profileOverview(Request $requestSalesChannelContext $context): Response
  88.     {
  89.         return $this->originService->profileOverview($request$context);
  90.     }
  91.     /**
  92.      * @LoginRequired()
  93.      * @Route("/account/profile", name="frontend.account.profile.save", methods={"POST"})
  94.      */
  95.     public function saveProfile(RequestDataBag $dataSalesChannelContext $contextCustomerEntity $customer): Response
  96.     {
  97.         return $this->originService->saveProfile($data$context$customer);
  98.     }
  99.     /**
  100.      * @LoginRequired()
  101.      * @Route("/account/profile/email", name="frontend.account.profile.email.save", methods={"POST"})
  102.      */
  103.     public function saveEmail(RequestDataBag $dataSalesChannelContext $contextCustomerEntity $customer): Response
  104.     {
  105.         return $this->originService->saveEmail($data$context$customer);
  106.     }
  107.     /**
  108.      * @LoginRequired()
  109.      * @Route("/account/profile/delete", name="frontend.account.profile.delete", methods={"POST"})
  110.      */
  111.     public function deleteProfile(Request $requestSalesChannelContext $contextCustomerEntity $customer): Response
  112.     {
  113.         return $this->originService->deleteProfile($request$context$customer);
  114.     }
  115. }