vendor/pimcore/pimcore/bundles/EcommerceFrameworkBundle/CartManager/AbstractCartItem.php line 121

Open in your IDE?
  1. <?php
  2. /**
  3.  * Pimcore
  4.  *
  5.  * This source file is available under two different licenses:
  6.  * - GNU General Public License version 3 (GPLv3)
  7.  * - Pimcore Commercial License (PCL)
  8.  * Full copyright and license information is available in
  9.  * LICENSE.md which is distributed with this source code.
  10.  *
  11.  *  @copyright  Copyright (c) Pimcore GmbH (http://www.pimcore.org)
  12.  *  @license    http://www.pimcore.org/license     GPLv3 and PCL
  13.  */
  14. namespace Pimcore\Bundle\EcommerceFrameworkBundle\CartManager;
  15. use Pimcore\Bundle\EcommerceFrameworkBundle\AvailabilitySystem\AvailabilityInterface;
  16. use Pimcore\Bundle\EcommerceFrameworkBundle\Model\AbstractSetProduct;
  17. use Pimcore\Bundle\EcommerceFrameworkBundle\Model\AbstractSetProductEntry;
  18. use Pimcore\Bundle\EcommerceFrameworkBundle\Model\CheckoutableInterface;
  19. use Pimcore\Bundle\EcommerceFrameworkBundle\Model\MockProduct;
  20. use Pimcore\Bundle\EcommerceFrameworkBundle\PriceSystem\PriceInfoInterface;
  21. use Pimcore\Bundle\EcommerceFrameworkBundle\PriceSystem\PriceInterface;
  22. use Pimcore\Model\DataObject;
  23. abstract class AbstractCartItem extends \Pimcore\Model\AbstractModel implements CartItemInterface
  24. {
  25.     /**
  26.      * flag needed for preventing call modified on cart when loading cart from storage
  27.      *
  28.      * @var bool
  29.      */
  30.     protected $isLoading false;
  31.     /**
  32.      * @var CheckoutableInterface|null
  33.      */
  34.     protected $product;
  35.     /**
  36.      * @var int|null
  37.      */
  38.     protected $productId;
  39.     /**
  40.      * @var string
  41.      */
  42.     protected $itemKey;
  43.     protected $count;
  44.     protected $comment;
  45.     /**
  46.      * @var string
  47.      */
  48.     protected $parentItemKey '';
  49.     protected $subItems null;
  50.     /**
  51.      * @var CartInterface|null
  52.      */
  53.     protected $cart;
  54.     /**
  55.      * @var string|int|null
  56.      */
  57.     protected $cartId;
  58.     /**
  59.      * @var int|null unix timestamp
  60.      */
  61.     protected $addedDateTimestamp;
  62.     public function __construct()
  63.     {
  64.         $this->setAddedDate(new \DateTime());
  65.     }
  66.     public function setCount($countbool $fireModified true)
  67.     {
  68.         if ($count 0) {
  69.             $count 0;
  70.         }
  71.         if ($this->count !== $count && $this->getCart() && !$this->isLoading && $fireModified) {
  72.             $this->getCart()->modified();
  73.         }
  74.         $this->count $count;
  75.     }
  76.     public function getCount()
  77.     {
  78.         return $this->count;
  79.     }
  80.     /**
  81.      * @param CheckoutableInterface $product
  82.      * @param bool $fireModified
  83.      */
  84.     public function setProduct(CheckoutableInterface $productbool $fireModified true)
  85.     {
  86.         if ($this->productId !== $product->getId() && $this->getCart() && !$this->isLoading && $fireModified) {
  87.             $this->getCart()->modified();
  88.         }
  89.         $this->product $product;
  90.         $this->productId $product->getId();
  91.     }
  92.     /**
  93.      * @return CheckoutableInterface
  94.      */
  95.     public function getProduct()
  96.     {
  97.         if ($this->product) {
  98.             return $this->product;
  99.         }
  100.         $product DataObject::getById($this->productId);
  101.         if ($product instanceof CheckoutableInterface) {
  102.             $this->product $product;
  103.         } else {
  104.             // actual product is not available or not checkoutable (e.g. deleted in Admin)
  105.             $product = new MockProduct();
  106.             $product->setId($this->productId);
  107.             $this->product $product;
  108.         }
  109.         return $this->product;
  110.     }
  111.     /**
  112.      * @param CartInterface $cart
  113.      */
  114.     public function setCart(CartInterface $cart)
  115.     {
  116.         $this->cart $cart;
  117.         $this->cartId $cart->getId();
  118.     }
  119.     /**
  120.      * @return CartInterface|null
  121.      */
  122.     abstract public function getCart();
  123.     /**
  124.      * @return string|int|null
  125.      */
  126.     public function getCartId()
  127.     {
  128.         return $this->cartId;
  129.     }
  130.     /**
  131.      * @param string|int|null $cartId
  132.      */
  133.     public function setCartId($cartId)
  134.     {
  135.         $this->cartId $cartId;
  136.     }
  137.     /**
  138.      * @return int
  139.      */
  140.     public function getProductId()
  141.     {
  142.         if (!is_null($this->productId)) {
  143.             return $this->productId;
  144.         }
  145.         return $this->getProduct()->getId();
  146.     }
  147.     /**
  148.      * @param int $productId
  149.      */
  150.     public function setProductId($productId)
  151.     {
  152.         if ($this->productId !== $productId && $this->getCart() && !$this->isLoading) {
  153.             $this->getCart()->modified();
  154.         }
  155.         $this->productId $productId;
  156.         $this->product null;
  157.     }
  158.     /**
  159.      * @param string $parentItemKey
  160.      */
  161.     public function setParentItemKey($parentItemKey)
  162.     {
  163.         $this->parentItemKey $parentItemKey;
  164.     }
  165.     /**
  166.      * @return string
  167.      */
  168.     public function getParentItemKey()
  169.     {
  170.         return $this->parentItemKey;
  171.     }
  172.     /**
  173.      * @param string $itemKey
  174.      */
  175.     public function setItemKey($itemKey)
  176.     {
  177.         $this->itemKey $itemKey;
  178.     }
  179.     /**
  180.      * @return string
  181.      */
  182.     public function getItemKey()
  183.     {
  184.         return $this->itemKey;
  185.     }
  186.     /**
  187.      * @param  CartItemInterface[] $subItems
  188.      *
  189.      * @return void
  190.      */
  191.     public function setSubItems($subItems)
  192.     {
  193.         $cart $this->getCart();
  194.         if ($cart && !$this->isLoading) {
  195.             $cart->modified();
  196.         }
  197.         foreach ($subItems as $item) {
  198.             if ($item instanceof AbstractCartItem) {
  199.                 $item->setParentItemKey($this->getItemKey());
  200.             }
  201.         }
  202.         $this->subItems $subItems;
  203.     }
  204.     /**
  205.      * @return PriceInterface
  206.      */
  207.     public function getPrice(): PriceInterface
  208.     {
  209.         return $this->getPriceInfo()->getPrice();
  210.     }
  211.     /**
  212.      * @return PriceInfoInterface
  213.      */
  214.     public function getPriceInfo(): PriceInfoInterface
  215.     {
  216.         if ($this->getProduct() instanceof AbstractSetProduct) {
  217.             $priceInfo $this->getProduct()->getOSPriceInfo($this->getCount(), $this->getSetEntries());
  218.         } else {
  219.             $priceInfo $this->getProduct()->getOSPriceInfo($this->getCount());
  220.         }
  221.         if ($priceInfo instanceof \Pimcore\Bundle\EcommerceFrameworkBundle\PricingManager\PriceInfoInterface) {
  222.             $priceInfo->getEnvironment()->setCart($this->getCart());
  223.             $priceInfo->getEnvironment()->setCartItem($this);
  224.         }
  225.         return $priceInfo;
  226.     }
  227.     /**
  228.      * @return AvailabilityInterface
  229.      */
  230.     public function getAvailabilityInfo()
  231.     {
  232.         if ($this->getProduct() instanceof AbstractSetProduct) {
  233.             return $this->getProduct()->getOSAvailabilityInfo($this->getCount(), $this->getSetEntries());
  234.         } else {
  235.             return $this->getProduct()->getOSAvailabilityInfo($this->getCount());
  236.         }
  237.     }
  238.     /**
  239.      * @return \Pimcore\Bundle\EcommerceFrameworkBundle\Model\AbstractSetProductEntry[]
  240.      */
  241.     public function getSetEntries()
  242.     {
  243.         $products = [];
  244.         if ($this->getSubItems()) {
  245.             foreach ($this->getSubItems() as $item) {
  246.                 $products[] = new AbstractSetProductEntry($item->getProduct(), $item->getCount());
  247.             }
  248.         }
  249.         return $products;
  250.     }
  251.     /**
  252.      * @param string $comment
  253.      */
  254.     public function setComment($comment)
  255.     {
  256.         $this->comment $comment;
  257.     }
  258.     /**
  259.      * @return string
  260.      */
  261.     public function getComment()
  262.     {
  263.         return $this->comment;
  264.     }
  265.     /**
  266.      * @return PriceInterface
  267.      */
  268.     public function getTotalPrice(): PriceInterface
  269.     {
  270.         return $this->getPriceInfo()->getTotalPrice();
  271.     }
  272.     /**
  273.      * @param \DateTime|null $date
  274.      */
  275.     public function setAddedDate(\DateTime $date null)
  276.     {
  277.         if ($date) {
  278.             $this->addedDateTimestamp intval($date->format('Uu'));
  279.         } else {
  280.             $this->addedDateTimestamp null;
  281.         }
  282.     }
  283.     /**
  284.      * @return \DateTime|null
  285.      */
  286.     public function getAddedDate()
  287.     {
  288.         $datetime null;
  289.         if ($this->addedDateTimestamp) {
  290.             $datetime \DateTime::createFromFormat('U'intval($this->addedDateTimestamp 1000000));
  291.         }
  292.         return $datetime;
  293.     }
  294.     /**
  295.      * @return int
  296.      */
  297.     public function getAddedDateTimestamp()
  298.     {
  299.         return $this->addedDateTimestamp;
  300.     }
  301.     /**
  302.      * @param int $time
  303.      */
  304.     public function setAddedDateTimestamp($time)
  305.     {
  306.         $this->addedDateTimestamp $time;
  307.     }
  308.     /**
  309.      * get item name
  310.      *
  311.      * @return string
  312.      */
  313.     public function getName()
  314.     {
  315.         return $this->getProduct()->getOSName();
  316.     }
  317.     /**
  318.      * Flag needed for preventing call modified on cart when loading cart from storage
  319.      * only for internal usage
  320.      *
  321.      * @param bool $isLoading
  322.      *
  323.      * @internal
  324.      */
  325.     public function setIsLoading(bool $isLoading)
  326.     {
  327.         $this->isLoading $isLoading;
  328.     }
  329. }