<?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 OnDocumentTemplateRendererParameterEvent 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 [
DocumentTemplateRendererParameterEvent::class => 'on_DocumentTemplateRendererParameterEvent'
];
}
public function on_DocumentTemplateRendererParameterEvent(DocumentTemplateRendererParameterEvent $event)
{
$params = $event->getParameters();
$newParam = $params['order'];
$lineItems = $newParam->getLineItems();
$newLineItems = [];
foreach ($lineItems as $lineItem) {
$mediaId = $lineItem->getCoverId();
$criteria = new Criteria();
$criteria->addFilter(new EqualsFilter('id', $mediaId));
/** @var MediaCollection<MediaEntity> $images */
$images = $this->mediaRepository->search($criteria, Context::createDefaultContext())->getEntities();
$mediaArray = [];
/** @var MediaEntity $media */
foreach ($images as $media) {
$mediaArray[] = $media;
}
if ($mediaArray && $mediaArray[0]) {
$lineItem->setCoverId($mediaArray[0]->getUrl());
}
$newLineItems[] = $lineItem;
}
usort($newLineItems, array($this, "sort_objects_by_position"));
$newOrder = new OrderLineItemCollection();
foreach ($newLineItems as $newLineItem) {
$newOrder->add($newLineItem);
}
$newParam->setLineItems($newOrder);
$params['order'] = $newParam;
return $this->twig->render('@Framework/documents/invoice.html.twig', $params);
}
private function sort_objects_by_position($a, $b)
{
if ($a->getPosition() == $b->getPosition()) {
return 0;
}
return ($a->getPosition() < $b->getPosition()) ? -1 : 1;
}
}