custom/plugins/PickwareErpStarter/src/Supplier/ProductSupplierConfigurationInitializer.php line 41

Open in your IDE?
  1. <?php
  2. /*
  3.  * Copyright (c) Pickware GmbH. All rights reserved.
  4.  * This file is part of software that is released under a proprietary license.
  5.  * You must not copy, modify, distribute, make publicly available, or execute
  6.  * its contents or parts thereof without express permission by the copyright
  7.  * holder, unless otherwise permitted by law.
  8.  */
  9. declare(strict_types=1);
  10. namespace Pickware\PickwareErpStarter\Supplier;
  11. use Doctrine\DBAL\Connection;
  12. use Pickware\DalBundle\Sql\SqlUuid;
  13. use Shopware\Core\Content\Product\ProductEvents;
  14. use Shopware\Core\Defaults;
  15. use Shopware\Core\Framework\DataAbstractionLayer\EntityWriteResult;
  16. use Shopware\Core\Framework\DataAbstractionLayer\Event\EntityWrittenEvent;
  17. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  18. class ProductSupplierConfigurationInitializer implements EventSubscriberInterface
  19. {
  20.     /**
  21.      * @var Connection
  22.      */
  23.     private $db;
  24.     public function __construct(Connection $db)
  25.     {
  26.         $this->db $db;
  27.     }
  28.     public static function getSubscribedEvents(): array
  29.     {
  30.         return [
  31.             ProductEvents::PRODUCT_WRITTEN_EVENT => 'productWritten',
  32.         ];
  33.     }
  34.     public function productWritten(EntityWrittenEvent $entityWrittenEvent): void
  35.     {
  36.         if ($entityWrittenEvent->getContext()->getVersionId() !== Defaults::LIVE_VERSION) {
  37.             return;
  38.         }
  39.         $productIds = [];
  40.         foreach ($entityWrittenEvent->getWriteResults() as $writeResult) {
  41.             if ($writeResult->getOperation() === EntityWriteResult::OPERATION_INSERT) {
  42.                 $productIds[] = $writeResult->getPrimaryKey();
  43.             }
  44.         }
  45.         $this->ensureProductSupplierConfigurationExistsForProducts($productIds);
  46.     }
  47.     public function ensureProductSupplierConfigurationExistsForProducts(array $productIds): void
  48.     {
  49.         if (count($productIds) === 0) {
  50.             return;
  51.         }
  52.         $this->db->executeStatement(
  53.             'INSERT INTO `pickware_erp_product_supplier_configuration` (
  54.                 `id`,
  55.                 `product_id`,
  56.                 `product_version_id`,
  57.                 `created_at`
  58.             ) SELECT
  59.                 ' SqlUuid::UUID_V4_GENERATION ',
  60.                 `id`,
  61.                 `version_id`,
  62.                 NOW(3)
  63.             FROM `product`
  64.             WHERE `id` IN (:productIds) AND `version_id` = :liveVersionId
  65.             ON DUPLICATE KEY UPDATE `pickware_erp_product_supplier_configuration`.`id` = `pickware_erp_product_supplier_configuration`.`id`',
  66.             [
  67.                 'productIds' => array_map('hex2bin'$productIds),
  68.                 'liveVersionId' => hex2bin(Defaults::LIVE_VERSION),
  69.             ],
  70.             [
  71.                 'productIds' => Connection::PARAM_STR_ARRAY,
  72.             ],
  73.         );
  74.     }
  75. }