refacto cart process
This commit is contained in:
@@ -98,15 +98,16 @@ class Cart implements EventSubscriberInterface
|
|||||||
|
|
||||||
public function getCart(Request $request)
|
public function getCart(Request $request)
|
||||||
{
|
{
|
||||||
if (null !== $cartId = $request->getSession()->getCart()){
|
|
||||||
$cart = CartQuery::create()->findPk($cartId);
|
if(null !== $cart = $request->getSession()->getCart()){
|
||||||
|
return $cart;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($request->cookies->has("thelia_cart")) {
|
if ($request->cookies->has("thelia_cart")) {
|
||||||
//le cookie de panier existe, on le récupère
|
//le cookie de panier existe, on le récupère
|
||||||
$cookie = $request->cookies->get("thelia_cart");
|
$token = $request->cookies->get("thelia_cart");
|
||||||
|
|
||||||
$cart = CartQuery::create()->findOneByToken($cookie);
|
$cart = CartQuery::create()->findOneByToken($token);
|
||||||
|
|
||||||
if ($cart) {
|
if ($cart) {
|
||||||
//le panier existe en base
|
//le panier existe en base
|
||||||
@@ -115,12 +116,12 @@ class Cart implements EventSubscriberInterface
|
|||||||
if ($customer) {
|
if ($customer) {
|
||||||
if($cart->getCustomerId() != $customer->getId()) {
|
if($cart->getCustomerId() != $customer->getId()) {
|
||||||
//le customer du panier n'est pas le mm que celui connecté, il faut cloner le panier sans le customer_id
|
//le customer du panier n'est pas le mm que celui connecté, il faut cloner le panier sans le customer_id
|
||||||
$cart = $cart->duplicate($customer);
|
$cart = $this->duplicateCart($cart, $request->getSession(), $customer);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if ($cart->getCustomerId() != null) {
|
if ($cart->getCustomerId() != null) {
|
||||||
//il faut dupliquer le panier sans le customer_id
|
//il faut dupliquer le panier sans le customer_id
|
||||||
$cart = $cart->duplicate();
|
$cart = $this->duplicateCart($cart, $request->getSession());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -135,7 +136,11 @@ class Cart implements EventSubscriberInterface
|
|||||||
return $cart;
|
return $cart;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function createCart(Session $session)
|
/**
|
||||||
|
* @param Session $session
|
||||||
|
* @return CartModel
|
||||||
|
*/
|
||||||
|
protected function createCart(Session $session)
|
||||||
{
|
{
|
||||||
$cart = new CartModel();
|
$cart = new CartModel();
|
||||||
$cart->setToken($this->generateCookie());
|
$cart->setToken($this->generateCookie());
|
||||||
@@ -152,17 +157,25 @@ class Cart implements EventSubscriberInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param CartModel $cart
|
||||||
|
* @param Session $session
|
||||||
|
* @param Customer $customer
|
||||||
|
* @return CartModel
|
||||||
|
*/
|
||||||
|
protected function duplicateCart(CartModel $cart, Session $session, Customer $customer = null)
|
||||||
|
{
|
||||||
|
$newCart = $cart->duplicate($this->generateCookie(), $customer);
|
||||||
|
$session->setCart($newCart->getId());
|
||||||
|
|
||||||
|
return $newCart;
|
||||||
|
}
|
||||||
|
|
||||||
public function generateCookie()
|
public function generateCookie()
|
||||||
{
|
{
|
||||||
$id = uniqid('', true);
|
$id = uniqid('', true);
|
||||||
|
setcookie("thelia_cart", $id, uniqid('', true));
|
||||||
setcookie("thelia_cart", $id, time());
|
|
||||||
|
|
||||||
return $id;
|
return $id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function addItem()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ namespace Thelia\Core\HttpFoundation\Session;
|
|||||||
use Symfony\Component\HttpFoundation\Session\Session as BaseSession;
|
use Symfony\Component\HttpFoundation\Session\Session as BaseSession;
|
||||||
use Thelia\Core\Security\User\UserInterface;
|
use Thelia\Core\Security\User\UserInterface;
|
||||||
use Thelia\Exception\InvalidCartException;
|
use Thelia\Exception\InvalidCartException;
|
||||||
use Thelia\Model\Base\CartQuery;
|
use Thelia\Model\CartQuery;
|
||||||
use Thelia\Model\Cart;
|
use Thelia\Model\Cart;
|
||||||
use Thelia\Tools\URL;
|
use Thelia\Tools\URL;
|
||||||
|
|
||||||
@@ -117,9 +117,9 @@ class Session extends BaseSession
|
|||||||
// -- Cart ------------------------------------------------------------------
|
// -- Cart ------------------------------------------------------------------
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* retrieve cart id in session
|
* return cart if exists and is valid (checking customer)
|
||||||
*
|
*
|
||||||
* @return int cart id
|
* @return \Thelia\Model\Cart|null
|
||||||
*/
|
*/
|
||||||
public function getCart()
|
public function getCart()
|
||||||
{
|
{
|
||||||
@@ -137,6 +137,12 @@ class Session extends BaseSession
|
|||||||
return $cart;
|
return $cart;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @param \Thelia\Model\Cart $cart
|
||||||
|
* @throws \Thelia\Exception\InvalidCartException
|
||||||
|
*/
|
||||||
protected function verifyValidCart(Cart $cart)
|
protected function verifyValidCart(Cart $cart)
|
||||||
{
|
{
|
||||||
$customer = $this->getCustomerUser();
|
$customer = $this->getCustomerUser();
|
||||||
|
|||||||
@@ -1,12 +1,25 @@
|
|||||||
<?php
|
<?php
|
||||||
/**
|
/*************************************************************************************/
|
||||||
* Created by JetBrains PhpStorm.
|
/* */
|
||||||
* User: manu
|
/* Thelia */
|
||||||
* Date: 11/07/13
|
/* */
|
||||||
* Time: 10:34
|
/* Copyright (c) OpenStudio */
|
||||||
* To change this template use File | Settings | File Templates.
|
/* email : info@thelia.net */
|
||||||
*/
|
/* web : http://www.thelia.net */
|
||||||
|
/* */
|
||||||
|
/* This program is free software; you can redistribute it and/or modify */
|
||||||
|
/* it under the terms of the GNU General Public License as published by */
|
||||||
|
/* the Free Software Foundation; either version 3 of the License */
|
||||||
|
/* */
|
||||||
|
/* This program is distributed in the hope that it will be useful, */
|
||||||
|
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
||||||
|
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
|
||||||
|
/* GNU General Public License for more details. */
|
||||||
|
/* */
|
||||||
|
/* You should have received a copy of the GNU General Public License */
|
||||||
|
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||||||
|
/* */
|
||||||
|
/*************************************************************************************/
|
||||||
namespace Thelia\Tests\Command;
|
namespace Thelia\Tests\Command;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user