custom/plugins/HelmaTheme/src/Subscriber/OnKernelEventsREQUEST.php line 111

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace HelmaTheme\Subscriber;
  4. use Doctrine\DBAL\Connection;
  5. use Shopware\Core\Checkout\Cart\Cart;
  6. use Shopware\Core\Checkout\Cart\Event\CartSavedEvent;
  7. use Shopware\Core\Checkout\Cart\Error\ErrorCollection;
  8. use Shopware\Core\Checkout\Cart\Event\CheckoutOrderPlacedEvent;
  9. use Shopware\Core\Checkout\Cart\LineItem\LineItemCollection;
  10. use Shopware\Core\Checkout\Customer\Event\CustomerBeforeLoginEvent;
  11. use Shopware\Core\Checkout\Document\Event\DocumentTemplateRendererParameterEvent;
  12. use Shopware\Core\Checkout\Order\Aggregate\OrderLineItem\OrderLineItemCollection;
  13. use Shopware\Core\Content\MailTemplate\Service\Event\MailBeforeSentEvent;
  14. use Shopware\Core\Content\Property\PropertyGroupCollection;
  15. use Shopware\Core\Content\Property\PropertyGroupEntity;
  16. use Shopware\Core\Framework\Context;
  17. use Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria;
  18. use Shopware\Core\Framework\DataAbstractionLayer\Search\Filter\EqualsFilter;
  19. use Shopware\Core\PlatformRequest;
  20. use Shopware\Storefront\Event\StorefrontRenderEvent;
  21. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  22. use Shopware\Core\Framework\DataAbstractionLayer\EntityRepositoryInterface;
  23. use Shopware\Core\Content\Property\Aggregate\PropertyGroupOption\PropertyGroupOptionCollection;
  24. use Shopware\Core\Content\Property\Aggregate\PropertyGroupOption\PropertyGroupOptionEntity;
  25. use Symfony\Component\DependencyInjection\Container;
  26. use Shopware\Core\Checkout\Customer\CustomerCollection;
  27. use Shopware\Core\Checkout\Customer\CustomerEntity;
  28. use Symfony\Component\HttpFoundation\RedirectResponse;
  29. use Symfony\Component\HttpKernel\Event\RequestEvent;
  30. use Symfony\Component\HttpKernel\KernelEvents;
  31. use Twig\Environment;
  32. use Shopware\Core\Content\Media\MediaEntity;
  33. use Shopware\Core\Content\Media\MediaCollection;
  34. use Shopware\Storefront\Framework\Cache\CacheResponseSubscriber;
  35. use Shopware\Storefront\Event\RouteRequest\RouteRequestEvent;
  36. use Symfony\Component\HttpKernel\Event\KernelEvent;
  37. use Dompdf\Dompdf;
  38. use Dompdf\Options;
  39. use Symfony\Component\Validator\Constraints\Length;
  40. class OnKernelEventsREQUEST implements EventSubscriberInterface
  41. {
  42.     /**
  43.      * @var EntityRepositoryInterface
  44.      */
  45.     private $propertyRepository;
  46.     /**
  47.      * @var EntityRepositoryInterface
  48.      */
  49.     private $groupRepository;
  50.     private $container;
  51.     /**
  52.      * @var EntityRepositoryInterface
  53.      */
  54.     private $customerRepository;
  55.     /**
  56.      * @var Environment
  57.      */
  58.     private $twig;
  59.     /**
  60.      * @var EntityRepositoryInterface
  61.      */
  62.     private $mediaRepository;
  63.      /**
  64.      * @var SystemConfigService
  65.      */
  66.     private $systemConfigService;
  67.     public function __construct(
  68.         EntityRepositoryInterface $propertyRepository,
  69.         EntityRepositoryInterface $groupRepository,
  70.         Container $container,
  71.         EntityRepositoryInterface $customerRepository,
  72.         Environment $environment,
  73.         EntityRepositoryInterface $mediaRepository
  74.     ) {
  75.         $this->propertyRepository $propertyRepository;
  76.         $this->groupRepository $groupRepository;
  77.         $this->container $container;
  78.         $this->customerRepository $customerRepository;
  79.         $this->twig $environment;
  80.         $this->mediaRepository $mediaRepository;
  81.     }
  82.     /**
  83.      * @return array<string, string>
  84.      */
  85.     public static function getSubscribedEvents(): array
  86.     {
  87.         // Return the events to listen to as array like this:  <event to listen to> => <method to execute>
  88.         return [
  89.             KernelEvents::REQUEST => 'on_KernelEventsREQUEST'
  90.         ];
  91.     }
  92.  
  93.     public function on_KernelEventsREQUEST(RequestEvent $event): void
  94.     {
  95.        
  96.         $request $event->getRequest();
  97.         $attributes $request->attributes;
  98.         $params $attributes->get('_route_params');
  99.         $route $attributes->get('_route');
  100.         if (isset($_SERVER['SHOPWARE_HTTP_CACHE_ENABLED'])) {
  101.             if ($_SERVER['SHOPWARE_HTTP_CACHE_ENABLED']) {
  102.                 $cacheState $request->cookies->get('sw-states');
  103.                 if (!empty($cacheState)) {
  104.                     if (!str_contains($cacheStateCacheResponseSubscriber::STATE_LOGGED_IN)) {
  105.                         $this->directToLoginPage($request);
  106.                     }
  107.                 } else {
  108.                     $this->directToLoginPage($request);
  109.                 }
  110.             }
  111.         }
  112.         if ($route == 'frontend.account.profile.password.save') {
  113.             $requestPass $request->request;
  114.             $password $requestPass->get('password')['password'];
  115.             $newPassword $requestPass->get('password')['newPassword'];
  116.             $mail $requestPass->get('email');
  117.     
  118.             if ($mail) {
  119.                 // Get teasers
  120.                 $criteria = new Criteria();
  121.                 $criteria->addFilter(new EqualsFilter('email'$mail));
  122.                 /** @var CustomerCollection<CustomerEntity> $customers */
  123.                 $customers $this->customerRepository->search($criteriaContext::createDefaultContext())->getEntities();
  124.                 $customersArray = [];
  125.                 /** @var CustomerEntity $customer */
  126.                 foreach ($customers as $customer) {
  127.                     $customersArray[] = $customer;
  128.                 }
  129.                 if (password_verify($password$customersArray[0]->getPassword()) && !(password_verify($newPassword$customersArray[0]->getPassword()))) {
  130.                     $customFields $customersArray[0]->getCustomFields();
  131.                     if(isset($customFields['custom_user_Password_Reset'])){
  132.                         if($customFields['custom_user_Password_Reset']){
  133.                             $customFields['custom_user_Password_Reset'] = false;
  134.                         }
  135.                     }
  136.                     if(isset($customFields['custom_user_First_Logon'])){
  137.                         if($customFields['custom_user_First_Logon']){
  138.                             $customFields['custom_user_First_Logon'] = false;
  139.                         }
  140.                     }
  141.                     $customersArray[0]->setCustomFields($customFields);
  142.                     $data[] = [
  143.                         'id'        => $customersArray[0]->getId(),
  144.                         'customFields' => $customersArray[0]->getCustomFields()
  145.                     ];
  146.                     $this->customerRepository->update($dataContext::createDefaultContext());
  147.                     $rout = new RedirectResponse('/account');
  148.                     $rout->setTargetUrl('/account');
  149.                     $rout->send();
  150.                 }
  151.             }
  152.         }
  153.     }
  154.     public function directToLoginPage($request): void
  155.     {
  156.         $attributes $request->attributes;
  157.         $params $attributes->get('_route_params');
  158.         $route $attributes->get('_route');
  159.         if ($route == 'frontend.detail.page') {
  160.             $prodId $params['productId'];
  161.             $url '/account/login?redirectTo=frontend.detail.page&redirectParameters=%7B"productId":"' $prodId '"%7D';
  162.             $rout = new RedirectResponse($url);
  163.             $rout->setTargetUrl($url);
  164.             $rout->send();
  165.         }
  166.         if ($route == 'frontend.navigation.page') {
  167.             $navId $params['navigationId'];
  168.             $url '/account/login?redirectTo=frontend.navigation.page&redirectParameters=%7B"navigationId":"' $navId '"%7D';
  169.             $rout = new RedirectResponse($url);
  170.             $rout->setTargetUrl($url);
  171.             $rout->send();
  172.         }
  173.     }
  174. }