custom/plugins/HelmaTheme/src/Subscriber/OnStorefrontRenderEvent.php line 110

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 OnStorefrontRenderEvent 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.             StorefrontRenderEvent::class => 'on_StorefrontRenderEvent'
  90.         ];
  91.     }
  92.     public function on_StorefrontRenderEvent(StorefrontRenderEvent $event)
  93.     {
  94.         $context $event->getParameters()['context'];
  95.         $route =$event->getRequest()->attributes->get('_route');
  96.           
  97.         if ($context->getCustomer()) {
  98.             $customer=$context->getCustomer();
  99.             if (isset($customer->getCustomFields()['custom_user_Password_Reset'])) {
  100.                 if ($customer->getCustomFields()['custom_user_Password_Reset']) {
  101.                     $event->setParameter('isPasswordChanged'true);
  102.                     $event->setParameter('isPasswordChanged_reset'true);
  103.                     if ( $route == 'frontend.detail.page' || $route == 'frontend.navigation.page'||$route == 'frontend.home.page' || $route == 'frontend.account.home.page') {
  104.                         $this->RequestToPasswordReset($customer->getEmail());
  105.                     }
  106.                 }
  107.             }
  108.             if (isset($customer->getCustomFields()['custom_user_First_Logon'])) {
  109.                 if ($customer->getCustomFields()['custom_user_First_Logon']) {
  110.                     $event->setParameter('isPasswordChanged'true);
  111.                     $event->setParameter('isPasswordChanged_firstLogin'true);
  112.                     if ($route == 'frontend.detail.page' || $route == 'frontend.navigation.page' ||$route == 'frontend.home.page'||$route == 'frontend.account.home.page') {
  113.                         $this->RequestToPasswordReset($customer->getEmail());
  114.                     }
  115.                 }
  116.             }
  117.         }
  118.     }
  119.     public function RequestToPasswordReset(String $mail): void
  120.     {
  121.         // Get teasers
  122.         $criteria = new Criteria();
  123.        if(strpos$mail'@' ) !== false)
  124.         {
  125.         $criteria->addFilter(new EqualsFilter('email'$mail));
  126.         }else{
  127.             if(preg_match('/^\d+$/'$mail))
  128.             {
  129.             $criteria->addFilter(new EqualsFilter('customerNumber'$mail));
  130.             }
  131.         }
  132.            
  133.     
  134.  
  135.         /** @var CustomerCollection<CustomerEntity> $customers */
  136.         $customers $this->customerRepository->search($criteriaContext::createDefaultContext())->getEntities();
  137.         $customersArray = [];
  138.         /** @var CustomerEntity $customer */
  139.         foreach ($customers as $customer) {
  140.             $customersArray[] = $customer;
  141.         }
  142.             if (isset($customersArray[0]->getCustomFields()['custom_user_Password_Reset'])) {
  143.                 if ($customersArray[0]->getCustomFields()['custom_user_Password_Reset']) {
  144.                     $rout = new RedirectResponse('/account/profile');
  145.                     $rout->setTargetUrl('/account/profile');
  146.                     $rout->send();
  147.                 }
  148.             }
  149.             if (isset($customersArray[0]->getCustomFields()['custom_user_First_Logon'])) {
  150.                 if ($customersArray[0]->getCustomFields()['custom_user_First_Logon']) {
  151.                     $rout = new RedirectResponse('/account/profile');
  152.                     $rout->setTargetUrl('/account/profile');
  153.                     $rout->send();
  154.                 }
  155.             }
  156.         
  157.     }
  158. }