<?php declare(strict_types=1);
namespace Compra\PasswordValidatorSW6\Storefront\Controller;
use Compra\PasswordValidatorSW6\Core\System\Service\PasswordValidationService;
use Shopware\Core\Checkout\Cart\Exception\CustomerNotLoggedInException;
use Shopware\Core\Checkout\Customer\SalesChannel\AbstractChangeCustomerProfileRoute;
use Shopware\Core\Checkout\Customer\SalesChannel\AbstractChangeEmailRoute;
use Shopware\Core\Checkout\Customer\SalesChannel\AbstractChangePasswordRoute;
use Shopware\Core\Framework\Routing\Annotation\RouteScope;
use Shopware\Core\Framework\Validation\DataBag\RequestDataBag;
use Shopware\Core\System\SalesChannel\SalesChannelContext;
use Shopware\Storefront\Page\Account\Overview\AccountOverviewPageLoader;
use Shopware\Storefront\Page\Account\Profile\AccountProfilePageLoader;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Shopware\Core\Checkout\Customer\SalesChannel\AbstractDeleteCustomerRoute;
use Shopware\Core\Checkout\Customer\CustomerEntity;
use Shopware\Core\Framework\Routing\Annotation\LoginRequired;
use Shopware\Storefront\Framework\Routing\Annotation\NoStore;
use Psr\Log\LoggerInterface;
/**
* @RouteScope(scopes={"storefront"})
*/
class AccountProfileController extends \Shopware\Storefront\Controller\AccountProfileController
{
/**
* @var PasswordValidationService
*/
private $passwordValidator;
/**
* @var \Shopware\Storefront\Controller\AccountProfileController
*/
private $originService;
public function __construct(
AccountOverviewPageLoader $overviewPageLoader,
AccountProfilePageLoader $profilePageLoader,
AbstractChangeCustomerProfileRoute $changeCustomerProfileRoute,
AbstractChangePasswordRoute $changePasswordRoute,
AbstractChangeEmailRoute $changeEmailRoute,
AbstractDeleteCustomerRoute $deleteCustomerRoute,
LoggerInterface $logger,
PasswordValidationService $passwordValidator,
\Shopware\Storefront\Controller\AccountProfileController $controller
) {
parent::__construct(
$overviewPageLoader,
$profilePageLoader,
$changeCustomerProfileRoute,
$changePasswordRoute,
$changeEmailRoute,
$deleteCustomerRoute,
$logger
);
$this->originService = $controller;
$this->passwordValidator = $passwordValidator;
}
/**
* Controller to overwrite shopware profile (change password) controller to include password validation
* @LoginRequired()
* @Route("/account/profile/password", name="frontend.account.profile.password.save", methods={"POST"})
* @throws CustomerNotLoggedInException
*/
public function savePassword(RequestDataBag $data, SalesChannelContext $context, ?CustomerEntity $customer = null): Response
{
if($this->passwordValidator->validatePassword($data->get("password")->get("newPassword"), $context)){
return $this->originService->savePassword($data, $context, $customer);
}
else{
return $this->forwardToRoute('frontend.account.profile.page', ['formViolations' => ['passwordViolation' => true], 'passwordFormViolation' => true]);
}
}
// implements all origin methods to allow further decoration in other classes and plugins
/**
* @LoginRequired()
* @Route("/account", name="frontend.account.home.page", methods={"GET"})
* @NoStore
*/
public function index(Request $request, SalesChannelContext $context, CustomerEntity $customer): Response
{
return $this->originService->index($request, $context, $customer);
}
/**
* @LoginRequired()
* @Route("/account/profile", name="frontend.account.profile.page", methods={"GET"})
* @NoStore
*/
public function profileOverview(Request $request, SalesChannelContext $context): Response
{
return $this->originService->profileOverview($request, $context);
}
/**
* @LoginRequired()
* @Route("/account/profile", name="frontend.account.profile.save", methods={"POST"})
*/
public function saveProfile(RequestDataBag $data, SalesChannelContext $context, CustomerEntity $customer): Response
{
return $this->originService->saveProfile($data, $context, $customer);
}
/**
* @LoginRequired()
* @Route("/account/profile/email", name="frontend.account.profile.email.save", methods={"POST"})
*/
public function saveEmail(RequestDataBag $data, SalesChannelContext $context, CustomerEntity $customer): Response
{
return $this->originService->saveEmail($data, $context, $customer);
}
/**
* @LoginRequired()
* @Route("/account/profile/delete", name="frontend.account.profile.delete", methods={"POST"})
*/
public function deleteProfile(Request $request, SalesChannelContext $context, CustomerEntity $customer): Response
{
return $this->originService->deleteProfile($request, $context, $customer);
}
}