custom/plugins/ShopvotePlugin/src/Subscriber/ReviewSubscriber.php line 31

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopvote\ShopvotePlugin\Subscriber;
  3. use Shopware\Core\Content\Product\Aggregate\ProductReview\ProductReviewEntity;
  4. use Shopware\Core\Framework\Context;
  5. use Shopware\Core\Framework\DataAbstractionLayer\EntityRepositoryInterface;
  6. use Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria;
  7. use Shopware\Core\Framework\DataAbstractionLayer\Search\Filter\EqualsFilter;
  8. use Shopvote\ShopvotePlugin\Struct\ReviewStruct;
  9. use Shopware\Core\Framework\DataAbstractionLayer\Event\EntityLoadedEvent;
  10. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  11. use Shopware\Core\Content\Product\ProductEvents;
  12. class ReviewSubscriber implements EventSubscriberInterface
  13. {
  14.     private $shopvoteReviewsRepository;
  15.     public function __construct(EntityRepositoryInterface $shopvoteReviewsRepository)
  16.     {
  17.         $this->shopvoteReviewsRepository $shopvoteReviewsRepository;
  18.     }
  19.     public static function getSubscribedEvents(): array
  20.     {
  21.         return [
  22.             ProductEvents::PRODUCT_REVIEW_LOADED => 'onProductReviewLoaded'
  23.         ];
  24.     }
  25.     public function onProductReviewLoaded(EntityLoadedEvent $event): void
  26.     {
  27.         /** @var ProductReviewEntity $productReviewEntity */
  28.         foreach ($event->getEntities() as $productReviewEntity) {
  29.             $struct = new ReviewStruct();
  30.             $struct->setIsShopvoteReview($this->isReviewLinkedToShopvoteReview($productReviewEntity));
  31.             $struct->setReviewUrl($this->getUrlForReview($productReviewEntity));
  32.             $productReviewEntity->addExtension('shopvote_review_details'$struct);
  33.         }
  34.     }
  35.     private function isReviewLinkedToShopvoteReview(ProductReviewEntity $productReviewEntity)
  36.     {
  37.         $customIds $this->shopvoteReviewsRepository->searchIds((
  38.             new Criteria())->addFilter(new EqualsFilter('productReviewId'$productReviewEntity->getId())),
  39.             Context::createDefaultContext()
  40.         );
  41.         if ($customIds->getTotal() > 0) {
  42.             return true;
  43.         } else {
  44.             return false;
  45.         }
  46.     }
  47.     private function getUrlForReview(ProductReviewEntity $productReviewEntity)
  48.     {
  49.         $criteria = new Criteria();
  50.         $criteria->addFilter(new EqualsFilter('productReviewId'$productReviewEntity->getId()));
  51.         $criteria->setLimit(1);
  52.         $entity $this->shopvoteReviewsRepository->search($criteria,
  53.             Context::createDefaultContext())->getEntities()->first();
  54.         if ($entity) {
  55.             return $entity->get("review_url");
  56.         } else {
  57.             return false;
  58.         }
  59.     }
  60. }