custom/plugins/ShopvotePlugin/src/ShopvotePlugin.php line 17

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopvote\ShopvotePlugin;
  3. use Doctrine\DBAL\Connection;
  4. use Shopvote\ShopvotePlugin\Components\CustomerDummyService;
  5. use Shopware\Core\Framework\Context;
  6. use Shopware\Core\Framework\DataAbstractionLayer\EntityRepositoryInterface;
  7. use Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria;
  8. use Shopware\Core\Framework\DataAbstractionLayer\Search\Filter\ContainsFilter;
  9. use Shopware\Core\Framework\DataAbstractionLayer\Search\Filter\EqualsFilter;
  10. use Shopware\Core\Framework\Plugin;
  11. use Shopware\Core\Framework\Plugin\Context\ActivateContext;
  12. use Shopware\Core\Framework\Plugin\Context\InstallContext;
  13. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  14. class ShopvotePlugin extends Plugin
  15. {
  16.     /** @var CustomerDummyService */
  17.     private $customerDummyService;
  18.     /**
  19.      * @param CustomerDummyService $customerDummyService
  20.      * @required
  21.      */
  22.     public function setCustomerDummyService(CustomerDummyService $customerDummyService): void
  23.     {
  24.         $this->customerDummyService $customerDummyService;
  25.     }
  26.     public function install(InstallContext $installContext): void
  27.     {
  28.         parent::install($installContext);
  29.     }
  30.     public function activate(ActivateContext $activateContext): void
  31.     {
  32.         parent::activate($activateContext);
  33.         if (!$this->checkForShopvoteUser()) {
  34.             $this->customerDummyService->addShopvoteCustomer();
  35.         }
  36.     }
  37.     public function uninstall(UninstallContext $uninstallContext): void
  38.     {
  39.         if ($uninstallContext->keepUserData()) {
  40.             return;
  41.         }
  42.         $this->removeConfiguration($uninstallContext->getContext());
  43.         $this->deleteShopvoteUser($uninstallContext->getContext());
  44.         $this->cleanUpDbUponUninstall($uninstallContext->getContext());
  45.     }
  46.     public function removeConfiguration($context): void
  47.     {
  48.         /** @var EntityRepositoryInterface $systemConfigRepository */
  49.         $systemConfigRepository $this->container->get('system_config.repository');
  50.         $criteria = (new Criteria())->addFilter(new ContainsFilter('configurationKey'$this->getName() . '.config.'));
  51.         $idSearchResult $systemConfigRepository->searchIds($criteria$context);
  52.         $ids array_map(static function ($id) {
  53.             return ['id' => $id];
  54.         }, $idSearchResult->getIds());
  55.         if ($ids === []) {
  56.             return;
  57.         }
  58.         $systemConfigRepository->delete($ids$context);
  59.     }
  60.     /**
  61.      * @param Context $context
  62.      */
  63.     public function deleteShopvoteUser($context): void
  64.     {
  65.         $criteria = new Criteria();
  66.         $criteria->addFilter(new EqualsFilter('firstName''SHOPVOTE'));
  67.         $criteria->setLimit(1);
  68.         $idSearchResult $this->getCustomerRepository()->searchIds($criteria$context);
  69.         $ids array_map(static function ($id) {
  70.             return ['id' => $id];
  71.         }, $idSearchResult->getIds());
  72.         if ($ids === []) {
  73.             return;
  74.         }
  75.         $this->getCustomerRepository()->delete($idsContext::createDefaultContext());
  76.     }
  77.     public function checkForShopvoteUser()
  78.     {
  79.         $entities $this->getCustomerRepository()->search(
  80.             (new Criteria())->addFilter(new EqualsFilter('firstName'"SHOPVOTE")),
  81.             Context::createDefaultContext()
  82.         );
  83.         if($entities->getTotal() > 0) {
  84.             return true;
  85.         } else {
  86.             return false;
  87.         }
  88.     }
  89.     private function getCustomerRepository()
  90.     {
  91.         return $this->container->get('customer.repository');
  92.     }
  93.     private function cleanUpDbUponUninstall($context)
  94.     {
  95.         $this->removeShopvoteReviews($context);
  96.         $this->deleteShopvoteReviewTable();
  97.     }
  98.     private function removeShopvoteReviews($context)
  99.     {
  100.         $connection $this->container->get(Connection::class);
  101.         $connection->executeUpdate('DELETE product_review FROM product_review JOIN shopvote_reviews ON product_review.id = shopvote_reviews.product_review_id');
  102.     }
  103.     private function deleteShopvoteReviewTable()
  104.     {
  105.         $connection $this->container->get(Connection::class);
  106.         $connection->executeUpdate('DROP TABLE IF EXISTS `shopvote_reviews`');
  107.     }
  108. }