src/EventSubscriber/Shop/CartValidation/CanSellProductValidationSubscriber.php line 41

Open in your IDE?
  1. <?php
  2. namespace App\EventSubscriber\Shop\CartValidation;
  3. use App\Event\Shop\AddProductToCartValidationEvent;
  4. use App\Exception\Shop\AddProductToCartValidationException;
  5. use App\Shop\ShopManager;
  6. use App\Shop\VirtualCart\VirtualCart;
  7. use App\Shop\VirtualCart\VirtualProduct;
  8. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  9. /**
  10.  * @author Przemysław Chrupek <przemyslaw.chrupek@avt.pl>
  11.  */
  12. class CanSellProductValidationSubscriber implements EventSubscriberInterface
  13. {
  14.     protected ShopManager $shopManager;
  15.     public function __construct(ShopManager $shopManager)
  16.     {
  17.         $this->shopManager $shopManager;
  18.     }
  19.     public static function getSubscribedEvents()
  20.     {
  21.         return [
  22.             AddProductToCartValidationEvent::NAME => [
  23.                 ['shopEnabled'1000],
  24.                 ['isSellable'999],
  25.                 ['isEnoughQuantity'998],
  26.             ]
  27.         ];
  28.     }
  29.     public function shopEnabled(AddProductToCartValidationEvent $event): void
  30.     {
  31.         if (!$this->shopManager->shopEnabled())
  32.             throw new AddProductToCartValidationException('Produkt nie może zostać dodany do koszyka');
  33.     }
  34.     public function isSellable(AddProductToCartValidationEvent $event): void
  35.     {
  36.         if (!$this->shopManager->isProduct($event->getProduct()->getContent()) &&
  37.             !$this->shopManager->isAddition($event->getProduct()->getContent())
  38.         )
  39.             throw new AddProductToCartValidationException('Produkt nie może zostać dodany do koszyka');
  40.     }
  41.     public function isEnoughQuantity(AddProductToCartValidationEvent $event): void
  42.     {
  43.         $product $event->getProduct();
  44.         $quantity $event->getQuantity();
  45.         $productExistInCart $event->getCart()->getProductFromCartByProductId($product->getId());
  46.         if ($product->getQuantity() !== null) { // Check if quantity for product is set
  47.             if ($product->getQuantity() < $quantity) {
  48.                 throw new AddProductToCartValidationException('Niewystarczająca ilość produktu w magazynie');
  49.             }
  50.             if ($productExistInCart instanceof VirtualProduct && 
  51.                 (($productExistInCart->getQuantity() + $quantity) > $product->getQuantity())
  52.             ) {
  53.                 throw new AddProductToCartValidationException('Niewystarczająca ilość produktu w magazynie');
  54.             }
  55.         }
  56.     }
  57. }