<?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 OnStorefrontRenderEvent 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 [
StorefrontRenderEvent::class => 'on_StorefrontRenderEvent'
];
}
public function on_StorefrontRenderEvent(StorefrontRenderEvent $event)
{
$context = $event->getParameters()['context'];
$route =$event->getRequest()->attributes->get('_route');
if ($context->getCustomer()) {
$customer=$context->getCustomer();
if (isset($customer->getCustomFields()['custom_user_Password_Reset'])) {
if ($customer->getCustomFields()['custom_user_Password_Reset']) {
$event->setParameter('isPasswordChanged', true);
$event->setParameter('isPasswordChanged_reset', true);
if ( $route == 'frontend.detail.page' || $route == 'frontend.navigation.page'||$route == 'frontend.home.page' || $route == 'frontend.account.home.page') {
$this->RequestToPasswordReset($customer->getEmail());
}
}
}
if (isset($customer->getCustomFields()['custom_user_First_Logon'])) {
if ($customer->getCustomFields()['custom_user_First_Logon']) {
$event->setParameter('isPasswordChanged', true);
$event->setParameter('isPasswordChanged_firstLogin', true);
if ($route == 'frontend.detail.page' || $route == 'frontend.navigation.page' ||$route == 'frontend.home.page'||$route == 'frontend.account.home.page') {
$this->RequestToPasswordReset($customer->getEmail());
}
}
}
}
}
public function RequestToPasswordReset(String $mail): void
{
// Get teasers
$criteria = new Criteria();
if(strpos( $mail, '@' ) !== false)
{
$criteria->addFilter(new EqualsFilter('email', $mail));
}else{
if(preg_match('/^\d+$/', $mail))
{
$criteria->addFilter(new EqualsFilter('customerNumber', $mail));
}
}
/** @var CustomerCollection<CustomerEntity> $customers */
$customers = $this->customerRepository->search($criteria, Context::createDefaultContext())->getEntities();
$customersArray = [];
/** @var CustomerEntity $customer */
foreach ($customers as $customer) {
$customersArray[] = $customer;
}
if (isset($customersArray[0]->getCustomFields()['custom_user_Password_Reset'])) {
if ($customersArray[0]->getCustomFields()['custom_user_Password_Reset']) {
$rout = new RedirectResponse('/account/profile');
$rout->setTargetUrl('/account/profile');
$rout->send();
}
}
if (isset($customersArray[0]->getCustomFields()['custom_user_First_Logon'])) {
if ($customersArray[0]->getCustomFields()['custom_user_First_Logon']) {
$rout = new RedirectResponse('/account/profile');
$rout->setTargetUrl('/account/profile');
$rout->send();
}
}
}
}