<?php declare(strict_types=1);
namespace Compra\PasswordValidatorSW6\Storefront\Controller;
use Compra\PasswordValidatorSW6\Core\System\Service\PasswordValidationService;
use Shopware\Core\Checkout\Customer\SalesChannel\AbstractLoginRoute;
use Shopware\Core\Checkout\Customer\SalesChannel\AbstractLogoutRoute;
use Shopware\Core\Checkout\Customer\SalesChannel\AbstractResetPasswordRoute;
use Shopware\Core\Checkout\Customer\SalesChannel\AbstractSendPasswordRecoveryMailRoute;
use Shopware\Core\Framework\DataAbstractionLayer\EntityRepositoryInterface;
use Shopware\Core\Framework\DataAbstractionLayer\Exception\InconsistentCriteriaIdsException;
use Shopware\Core\Framework\Routing\Annotation\RouteScope;
use Shopware\Core\Framework\Validation\DataBag\RequestDataBag;
use Shopware\Core\System\SalesChannel\Context\SalesChannelContextServiceInterface;
use Shopware\Core\System\SalesChannel\SalesChannelContext;
use Shopware\Core\System\SystemConfig\SystemConfigService;
use Shopware\Storefront\Checkout\Cart\SalesChannel\StorefrontCartFacade;
use Shopware\Storefront\Page\Account\Login\AccountLoginPageLoader;
use Shopware\Core\Checkout\Cart\SalesChannel\CartService;
use Shopware\Storefront\Page\Account\RecoverPassword\AccountRecoverPasswordPageLoader;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Shopware\Storefront\Framework\Routing\Annotation\NoStore;
/**
* @RouteScope(scopes={"storefront"})
*/
class AuthController extends \Shopware\Storefront\Controller\AuthController
{
/**
* @var PasswordValidationService
*/
private $passwordValidator;
/**
* @var \Shopware\Storefront\Controller\AuthController
*/
private $originService;
public function __construct(
AccountLoginPageLoader $loginPageLoader,
AbstractSendPasswordRecoveryMailRoute $sendPasswordRecoveryMailRoute,
AbstractResetPasswordRoute $resetPasswordRoute,
AbstractLoginRoute $loginRoute,
AbstractLogoutRoute $logoutRoute,
StorefrontCartFacade $cartFacade,
AccountRecoverPasswordPageLoader $recoverPasswordPageLoader,
SalesChannelContextServiceInterface $salesChannelContextService,
PasswordValidationService $passwordValidator,
\Shopware\Storefront\Controller\AuthController $controller
) {
parent::__construct(
$loginPageLoader,
$sendPasswordRecoveryMailRoute,
$resetPasswordRoute,
$loginRoute,
$logoutRoute,
$cartFacade,
$recoverPasswordPageLoader,
$salesChannelContextService,
);
$this->passwordValidator = $passwordValidator;
$this->originService = $controller;
}
/**
* Controller to overwrite shopware auth (password reset) controller to include password validation
* @Route("/account/recover/password", name="frontend.account.recover.password.reset", methods={"POST"})
*
* @throws InconsistentCriteriaIdsException
*/
public function resetPassword(RequestDataBag $data, SalesChannelContext $context): Response
{
$hash = $data->get('password')->get('hash');
if($this->passwordValidator->validatePassword($data->get("password")->get("newPassword"), $context)){
return $this->originService->resetPassword($data, $context);
}
else{
return $this->forwardToRoute('frontend.account.recover.password.page', ['hash' => $hash, 'formViolations' => ['passwordViolation' => true], 'passwordFormViolation' => true]);
}
}
// implements all origin methods to allow further decoration in other classes and plugins
/**
* @Route("/account/login", name="frontend.account.login.page", methods={"GET"})
* @NoStore
*/
public function loginPage(Request $request, RequestDataBag $data, SalesChannelContext $context): Response
{
return $this->originService->loginPage($request, $data, $context);
}
/**
* @Route("/account/guest/login", name="frontend.account.guest.login.page", methods={"GET"})
* @NoStore
*/
public function guestLoginPage(Request $request, SalesChannelContext $context): Response
{
return $this->originService->guestLoginPage($request, $context);
}
/**
* @Route("/account/logout", name="frontend.account.logout.page", methods={"GET"})
*/
public function logout(Request $request, SalesChannelContext $context, RequestDataBag $dataBag): Response
{
return $this->originService->logout($request, $context, $dataBag);
}
/**
* @Route("/account/login", name="frontend.account.login", methods={"POST"}, defaults={"XmlHttpRequest"=true})
*/
public function login(Request $request, RequestDataBag $data, SalesChannelContext $context): Response
{
return $this->originService->login($request, $data, $context);
}
/**
* @Route("/account/recover", name="frontend.account.recover.page", methods={"GET"})
*/
public function recoverAccountForm(Request $request, SalesChannelContext $context): Response
{
return $this->originService->recoverAccountForm($request, $context);
}
/**
* @Route("/account/recover", name="frontend.account.recover.request", methods={"POST"})
*/
public function generateAccountRecovery(Request $request, RequestDataBag $data, SalesChannelContext $context): Response
{
return $this->originService->generateAccountRecovery($request, $data, $context);
}
/**
* @Route("/account/recover/password", name="frontend.account.recover.password.page", methods={"GET"})
*/
public function resetPasswordForm(Request $request, SalesChannelContext $context): Response
{
return $this->originService->resetPasswordForm($request, $context);
}
}