custom/plugins/ShopvotePlugin/src/Subscriber/CheckoutSubscriber.php line 53

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopvote\ShopvotePlugin\Subscriber;
  3. use Exception;
  4. use Shopvote\ShopvotePlugin\Components\DBHelperService;
  5. use Shopvote\ShopvotePlugin\Struct\TransferStruct;
  6. use Shopware\Core\Checkout\Order\Aggregate\OrderLineItem\OrderLineItemEntity;
  7. use Shopware\Core\System\SystemConfig\SystemConfigService;
  8. use Shopware\Storefront\Page\Checkout\Finish\CheckoutFinishPageLoadedEvent;
  9. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  10. class CheckoutSubscriber implements EventSubscriberInterface
  11. {
  12.     /** @var SystemConfigService */
  13.     private $systemConfigService;
  14.     /** @var DBHelperService */
  15.     private $dbHelperService;
  16.     /** @var TransferStruct */
  17.     private $transferStruct;
  18.     /**
  19.      * CheckoutSubscriber constructor.
  20.      * @param SystemConfigService $systemConfigService
  21.      */
  22.     public function __construct(SystemConfigService $systemConfigService)
  23.     {
  24.         $this->systemConfigService $systemConfigService;
  25.     }
  26.     /**
  27.      * @param DBHelperService $dbHelperService
  28.      */
  29.     public function setDBHelperService(DBHelperService $dbHelperService)
  30.     {
  31.         $this->dbHelperService $dbHelperService;
  32.     }
  33.     /**
  34.      * @inheritDoc
  35.      */
  36.     public static function getSubscribedEvents() :array
  37.     {
  38.         return [
  39.             CheckoutFinishPageLoadedEvent::class  => ['checkoutFinishPageLoaded'1],
  40.         ];
  41.     }
  42.     /**
  43.      * @param CheckoutFinishPageLoadedEvent $event
  44.      * @throws Exception
  45.      */
  46.     public function checkoutFinishPageLoaded(CheckoutFinishPageLoadedEvent $event)
  47.     {
  48.         $this->transferStruct = new TransferStruct();
  49.         /**
  50.          * Filling Custom Struct with data
  51.          */
  52.         $this->transferStruct->setApiKey($this->systemConfigService->get("ShopvotePlugin.config.apiKey"));
  53.         $this->transferStruct->setCustomerMail($event->getSalesChannelContext()->getCustomer()->getEmail());
  54.         $this->transferStruct->setOrderNumber($event->getPage()->getOrder()->getOrderNumber());
  55.         /**
  56.          * Changing from OrderLineItemEntity to ProductEntity
  57.          */
  58.         /** @var OrderLineItemEntity $lineItem */
  59.         foreach ($event->getPage()->getOrder()->getLineItems() as $lineItem) {
  60.             if ($lineItem->getType() === 'product') {
  61.                 $productEntity $this->dbHelperService->getArticle($lineItem->getProductId());
  62.                 $productEntity->addExtension('cover'$lineItem->getCover());
  63.                 $this->transferStruct->addEntity($productEntity);
  64.             }
  65.         }
  66.         /** Sending data to frontend */
  67.         $event->getPage()->addExtension('TransferStruct'$this->transferStruct);
  68.     }
  69. }