. */ /* */ /*************************************************************************************/ namespace Thelia\Action; use Propel\Runtime\Exception\PropelException; use Symfony\Component\Config\Definition\Exception\Exception; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\EventDispatcher\EventSubscriberInterface; use Thelia\Core\Event\CartEvent; use Thelia\Form\CartAdd; use Thelia\Model\ProductPrice; use Thelia\Model\ProductPriceQuery; use Thelia\Model\CartItem; use Thelia\Model\CartItemQuery; use Thelia\Model\ConfigQuery; /** * * Class Cart where all actions are manage like adding, modifying or delete items. * * Class Cart * @package Thelia\Action */ class Cart extends BaseAction implements EventSubscriberInterface { /** * * add an article in the current cart * @param \Thelia\Core\Event\CartEvent $event */ public function addItem(CartEvent $event) { $cart = $event->getCart(); $newness = $event->getNewness(); $append = $event->getAppend(); $quantity = $event->getQuantity(); $productSaleElementsId = $event->getProductSaleElementsId(); $productId = $event->getProduct(); $cartItem = $this->findItem($cart->getId(), $productId, $productSaleElementsId); if ($cartItem === null || $newness) { $productPrice = ProductPriceQuery::create() ->filterByProductSaleElementsId($productSaleElementsId) ->findOne(); $this->doAddItem($cart, $productId, $productSaleElementsId, $quantity, $productPrice); } if ($append && $cartItem !== null) { $this->updateQuantity($cartItem, $quantity); } } /** * * Delete specify article present into cart * * @param \Thelia\Core\Event\CartEvent $event */ public function deleteItem(CartEvent $event) { if (null !== $cartItemId = $event->getCartItem()) { $cart = $event->getCart(); $cartItem = CartItemQuery::create() ->filterByCartId($cart->getId()) ->filterById($cartItemId) ->delete(); } } /** * * Modify article's quantity * * don't use Form here just test the Request. * * @param \Thelia\Core\Event\CartEvent $event */ public function changeItem(CartEvent $event) { if ((null !== $cartItemId = $event->getCartItem()) && (null !== $quantity = $event->getQuantity())) { $cart = $event->getCart(); $cartItem = CartItemQuery::create() ->filterByCartId($cart->getId()) ->filterById($cartItemId) ->findOne(); if ($cartItem) { $this->updateQuantity($cartItem, $quantity); } } } /** * Returns an array of event names this subscriber wants to listen to. * * The array keys are event names and the value can be: * * * The method name to call (priority defaults to 0) * * An array composed of the method name to call and the priority * * An array of arrays composed of the method names to call and respective * priorities, or 0 if unset * * For instance: * * * array('eventName' => 'methodName') * * array('eventName' => array('methodName', $priority)) * * array('eventName' => array(array('methodName1', $priority), array('methodName2')) * * @return array The event names to listen to * * @api */ public static function getSubscribedEvents() { return array( "action.addArticle" => array("addItem", 128), "action.deleteArticle" => array("deleteItem", 128), "action.changeArticle" => array("changeItem", 128), ); } /** * increase the quantity for an existing cartItem * * @param CartItem $cartItem * @param float $quantity */ protected function updateQuantity(CartItem $cartItem, $quantity) { $cartItem->setDisptacher($this->getDispatcher()); $cartItem->updateQuantity($quantity) ->save(); } /** * try to attach a new item to an existing cart * * @param \Thelia\Model\Cart $cart * @param int $productId * @param int $productSaleElementsId * @param float $quantity * @param ProductPrice $productPrice */ protected function doAddItem(\Thelia\Model\Cart $cart, $productId, $productSaleElementsId, $quantity, ProductPrice $productPrice) { $cartItem = new CartItem(); $cartItem->setDisptacher($this->getDispatcher()); $cartItem ->setCart($cart) ->setProductId($productId) ->setProductSaleElementsId($productSaleElementsId) ->setQuantity($quantity) ->setPrice($productPrice->getPrice()) ->setPromoPrice($productPrice->getPromoPrice()) ->setPriceEndOfLife(time() + ConfigQuery::read("cart.priceEOF", 60*60*24*30)) ->save(); } /** * find a specific record in CartItem table using the Cart id, the product id * and the product_sale_elements id * * @param int $cartId * @param int $productId * @param int $productSaleElementsId * @return ChildCartItem */ protected function findItem($cartId, $productId, $productSaleElementsId) { return CartItemQuery::create() ->filterByCartId($cartId) ->filterByProductId($productId) ->filterByProductSaleElementsId($productSaleElementsId) ->findOne(); } }