<?php declare(strict_types=1);
namespace Shopvote\ShopvotePlugin\Subscriber;
use Exception;
use Shopvote\ShopvotePlugin\Components\DBHelperService;
use Shopvote\ShopvotePlugin\Struct\TransferStruct;
use Shopware\Core\Checkout\Order\Aggregate\OrderLineItem\OrderLineItemEntity;
use Shopware\Core\System\SystemConfig\SystemConfigService;
use Shopware\Storefront\Page\Checkout\Finish\CheckoutFinishPageLoadedEvent;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
class CheckoutSubscriber implements EventSubscriberInterface
{
/** @var SystemConfigService */
private $systemConfigService;
/** @var DBHelperService */
private $dbHelperService;
/** @var TransferStruct */
private $transferStruct;
/**
* CheckoutSubscriber constructor.
* @param SystemConfigService $systemConfigService
*/
public function __construct(SystemConfigService $systemConfigService)
{
$this->systemConfigService = $systemConfigService;
}
/**
* @param DBHelperService $dbHelperService
*/
public function setDBHelperService(DBHelperService $dbHelperService)
{
$this->dbHelperService = $dbHelperService;
}
/**
* @inheritDoc
*/
public static function getSubscribedEvents() :array
{
return [
CheckoutFinishPageLoadedEvent::class => ['checkoutFinishPageLoaded', 1],
];
}
/**
* @param CheckoutFinishPageLoadedEvent $event
* @throws Exception
*/
public function checkoutFinishPageLoaded(CheckoutFinishPageLoadedEvent $event)
{
$this->transferStruct = new TransferStruct();
/**
* Filling Custom Struct with data
*/
$this->transferStruct->setApiKey($this->systemConfigService->get("ShopvotePlugin.config.apiKey"));
$this->transferStruct->setCustomerMail($event->getSalesChannelContext()->getCustomer()->getEmail());
$this->transferStruct->setOrderNumber($event->getPage()->getOrder()->getOrderNumber());
/**
* Changing from OrderLineItemEntity to ProductEntity
*/
/** @var OrderLineItemEntity $lineItem */
foreach ($event->getPage()->getOrder()->getLineItems() as $lineItem) {
if ($lineItem->getType() === 'product') {
$productEntity = $this->dbHelperService->getArticle($lineItem->getProductId());
$productEntity->addExtension('cover', $lineItem->getCover());
$this->transferStruct->addEntity($productEntity);
}
}
/** Sending data to frontend */
$event->getPage()->addExtension('TransferStruct', $this->transferStruct);
}
}