<?php
declare(strict_types=1);
namespace HelmaTheme\Subscriber;
use Doctrine\DBAL\Connection;
use Shopware\Core\Checkout\Cart\Cart;
use Shopware\Core\Checkout\Cart\Event\CartSavedEvent;
use Shopware\Core\Checkout\Cart\Error\ErrorCollection;
use Shopware\Core\Checkout\Cart\Event\CheckoutOrderPlacedEvent;
use Shopware\Core\Checkout\Cart\LineItem\LineItemCollection;
use Shopware\Core\Checkout\Customer\Event\CustomerBeforeLoginEvent;
use Shopware\Core\Checkout\Document\Event\DocumentTemplateRendererParameterEvent;
use Shopware\Core\Checkout\Order\Aggregate\OrderLineItem\OrderLineItemCollection;
use Shopware\Core\Content\MailTemplate\Service\Event\MailBeforeSentEvent;
use Shopware\Core\Content\Property\PropertyGroupCollection;
use Shopware\Core\Content\Property\PropertyGroupEntity;
use Shopware\Core\Framework\Context;
use Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria;
use Shopware\Core\Framework\DataAbstractionLayer\Search\Filter\EqualsFilter;
use Shopware\Core\PlatformRequest;
use Shopware\Storefront\Event\StorefrontRenderEvent;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Shopware\Core\Framework\DataAbstractionLayer\EntityRepositoryInterface;
use Shopware\Core\Content\Property\Aggregate\PropertyGroupOption\PropertyGroupOptionCollection;
use Shopware\Core\Content\Property\Aggregate\PropertyGroupOption\PropertyGroupOptionEntity;
use Symfony\Component\DependencyInjection\Container;
use Shopware\Core\Checkout\Customer\CustomerCollection;
use Shopware\Core\Checkout\Customer\CustomerEntity;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpKernel\Event\RequestEvent;
use Symfony\Component\HttpKernel\KernelEvents;
use Twig\Environment;
use Shopware\Core\Content\Media\MediaEntity;
use Shopware\Core\Content\Media\MediaCollection;
use Shopware\Storefront\Framework\Cache\CacheResponseSubscriber;
use Shopware\Storefront\Event\RouteRequest\RouteRequestEvent;
use Symfony\Component\HttpKernel\Event\KernelEvent;
use Dompdf\Dompdf;
use Dompdf\Options;
use Symfony\Component\Validator\Constraints\Length;
class OnKernelEventsREQUEST implements EventSubscriberInterface
{
/**
* @var EntityRepositoryInterface
*/
private $propertyRepository;
/**
* @var EntityRepositoryInterface
*/
private $groupRepository;
private $container;
/**
* @var EntityRepositoryInterface
*/
private $customerRepository;
/**
* @var Environment
*/
private $twig;
/**
* @var EntityRepositoryInterface
*/
private $mediaRepository;
/**
* @var SystemConfigService
*/
private $systemConfigService;
public function __construct(
EntityRepositoryInterface $propertyRepository,
EntityRepositoryInterface $groupRepository,
Container $container,
EntityRepositoryInterface $customerRepository,
Environment $environment,
EntityRepositoryInterface $mediaRepository
) {
$this->propertyRepository = $propertyRepository;
$this->groupRepository = $groupRepository;
$this->container = $container;
$this->customerRepository = $customerRepository;
$this->twig = $environment;
$this->mediaRepository = $mediaRepository;
}
/**
* @return array<string, string>
*/
public static function getSubscribedEvents(): array
{
// Return the events to listen to as array like this: <event to listen to> => <method to execute>
return [
KernelEvents::REQUEST => 'on_KernelEventsREQUEST'
];
}
public function on_KernelEventsREQUEST(RequestEvent $event): void
{
$request = $event->getRequest();
$attributes = $request->attributes;
$params = $attributes->get('_route_params');
$route = $attributes->get('_route');
if (isset($_SERVER['SHOPWARE_HTTP_CACHE_ENABLED'])) {
if ($_SERVER['SHOPWARE_HTTP_CACHE_ENABLED']) {
$cacheState = $request->cookies->get('sw-states');
if (!empty($cacheState)) {
if (!str_contains($cacheState, CacheResponseSubscriber::STATE_LOGGED_IN)) {
$this->directToLoginPage($request);
}
} else {
$this->directToLoginPage($request);
}
}
}
if ($route == 'frontend.account.profile.password.save') {
$requestPass = $request->request;
$password = $requestPass->get('password')['password'];
$newPassword = $requestPass->get('password')['newPassword'];
$mail = $requestPass->get('email');
if ($mail) {
// Get teasers
$criteria = new Criteria();
$criteria->addFilter(new EqualsFilter('email', $mail));
/** @var CustomerCollection<CustomerEntity> $customers */
$customers = $this->customerRepository->search($criteria, Context::createDefaultContext())->getEntities();
$customersArray = [];
/** @var CustomerEntity $customer */
foreach ($customers as $customer) {
$customersArray[] = $customer;
}
if (password_verify($password, $customersArray[0]->getPassword()) && !(password_verify($newPassword, $customersArray[0]->getPassword()))) {
$customFields = $customersArray[0]->getCustomFields();
if(isset($customFields['custom_user_Password_Reset'])){
if($customFields['custom_user_Password_Reset']){
$customFields['custom_user_Password_Reset'] = false;
}
}
if(isset($customFields['custom_user_First_Logon'])){
if($customFields['custom_user_First_Logon']){
$customFields['custom_user_First_Logon'] = false;
}
}
$customersArray[0]->setCustomFields($customFields);
$data[] = [
'id' => $customersArray[0]->getId(),
'customFields' => $customersArray[0]->getCustomFields()
];
$this->customerRepository->update($data, Context::createDefaultContext());
$rout = new RedirectResponse('/account');
$rout->setTargetUrl('/account');
$rout->send();
}
}
}
}
public function directToLoginPage($request): void
{
$attributes = $request->attributes;
$params = $attributes->get('_route_params');
$route = $attributes->get('_route');
if ($route == 'frontend.detail.page') {
$prodId = $params['productId'];
$url = '/account/login?redirectTo=frontend.detail.page&redirectParameters=%7B"productId":"' . $prodId . '"%7D';
$rout = new RedirectResponse($url);
$rout->setTargetUrl($url);
$rout->send();
}
if ($route == 'frontend.navigation.page') {
$navId = $params['navigationId'];
$url = '/account/login?redirectTo=frontend.navigation.page&redirectParameters=%7B"navigationId":"' . $navId . '"%7D';
$rout = new RedirectResponse($url);
$rout->setTargetUrl($url);
$rout->send();
}
}
}