custom/plugins/HelmaTheme/src/Subscriber/OnCheckoutOrderPlacedEvent.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 OnCheckoutOrderPlacedEvent 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.             CheckoutOrderPlacedEvent::class => 'on_CheckoutOrderPlacedEvent'
  90.         ];
  91.     }
  92.     public function on_CheckoutOrderPlacedEvent(CheckoutOrderPlacedEvent $event): void
  93.     {
  94.         $lineItems $event->getOrder()->getLineItems();
  95.         // Get teasers
  96.         $criteria = new Criteria();
  97.         $criteria->addFilter(new EqualsFilter('name''Gewerk'));
  98.         /** @var PropertyGroupCollection<PropertyGroupEntity> $groups */
  99.         $groups $this->groupRepository->search($criteriaContext::createDefaultContext())->getEntities();
  100.         $groupsArray = [];
  101.         /** @var PropertyGroupEntity $group */
  102.         foreach ($groups as $group) {
  103.             $groupsArray[] = $group;
  104.         }
  105.         if (empty($groupsArray)) {
  106.             return;
  107.         } else {
  108.             $groupId $groupsArray[0]->getId();
  109.         }
  110.         $teasersArray = [];
  111.         $newAdded false;
  112.         $count 0;
  113.         foreach ($lineItems as $lineItem) {
  114.             foreach ($lineItem->getPayload()['propertyIds'] as $propertyId) {
  115.                 // Get teasers
  116.                 $criteria = new Criteria();
  117.                 $criteria->addFilter(new EqualsFilter('id'$propertyId));
  118.                 $criteria->addFilter(new EqualsFilter('groupId'$groupId));
  119.                 /** @var PropertyGroupOptionCollection<PropertyGroupOptionEntity> $teasers */
  120.                 $teasers $this->propertyRepository->search($criteriaContext::createDefaultContext())->getEntities();
  121.                 /** @var PropertyGroupOptionEntity $teaser */
  122.                 foreach ($teasers as $teaser) {
  123.                     if ($teasersArray && $teasersArray[0]) {
  124.                         $count 0;
  125.                         foreach ($teasersArray as $item) {
  126.                             if ($item->getId() == $teaser->getId()) {
  127.                                 $count++;
  128.                             }
  129.                         }
  130.                         if ($count == 0) {
  131.                             $teasersArray[] = $teaser;
  132.                         }
  133.                     } else {
  134.                         $teasersArray[] = $teaser;
  135.                     }
  136.                 }
  137.             }
  138.         }
  139.         usort($teasersArray, array($this"sort_objects_by_total"));
  140.         $newOrder = new OrderLineItemCollection();
  141.         foreach ($teasersArray as $item) {
  142.             foreach ($lineItems as $lineItem) {
  143.                 foreach ($lineItem->getPayload()['propertyIds'] as $propertyId) {
  144.                     if ($item->getId() == $propertyId) {
  145.                         $newOrder->add($lineItem);
  146.                         $newAdded true;
  147.                     }
  148.                 }
  149.             }
  150.         }
  151.         foreach ($lineItems as $lineItem) {
  152.             $hasProp false;
  153.             foreach ($lineItem->getPayload()['propertyIds'] as $propertyId) {
  154.                 foreach ($teasersArray as $item) {
  155.                     if ($item->getId() == $propertyId) {
  156.                         $hasProp true;
  157.                     }
  158.                 }
  159.             }
  160.             if ($hasProp == false) {
  161.                 $newOrder->add($lineItem);
  162.                 $newAdded true;
  163.             }
  164.         }
  165.         if ($newAdded && $newOrder) {
  166.             $event->getOrder()->setLineItems($newOrder);
  167.         }
  168.     }
  169.     private function sort_objects_by_total($a$b)
  170.     {
  171.         if ($a->getName() == $b->getName()) {
  172.             return 0;
  173.         }
  174.         return ($a->getName() < $b->getName()) ? -1;
  175.     }
  176.     private function sort_objects_by_position($a$b)
  177.     {
  178.         if ($a->getPosition() == $b->getPosition()) {
  179.             return 0;
  180.         }
  181.         return ($a->getPosition() < $b->getPosition()) ? -1;
  182.     }
  183. }