app/Customize/Controller/CartController.php line 147

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  6.  *
  7.  * http://www.ec-cube.co.jp/
  8.  *
  9.  * For the full copyright and license information, please view the LICENSE
  10.  * file that was distributed with this source code.
  11.  */
  12. namespace Customize\Controller;
  13. use Eccube\Controller\AbstractController;
  14. use Eccube\Entity\BaseInfo;
  15. use Eccube\Entity\ProductClass;
  16. use Eccube\Event\EccubeEvents;
  17. use Eccube\Event\EventArgs;
  18. use Eccube\Repository\BaseInfoRepository;
  19. use Eccube\Repository\ProductClassRepository;
  20. use Eccube\Repository\ProductRepository;
  21. use Eccube\Service\CartService;
  22. use Eccube\Service\OrderHelper;
  23. use Eccube\Service\PurchaseFlow\PurchaseContext;
  24. use Eccube\Service\PurchaseFlow\PurchaseFlow;
  25. use Eccube\Service\PurchaseFlow\PurchaseFlowResult;
  26. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  27. use Symfony\Component\HttpFoundation\Request;
  28. use Symfony\Component\Routing\Annotation\Route;
  29. use Symfony\Component\HttpFoundation\JsonResponse;
  30. class CartController extends AbstractController
  31. {
  32.     /**
  33.      * @var ProductClassRepository
  34.      */
  35.     protected $productClassRepository;
  36.     protected $productRepository;
  37.     /**
  38.      * @var CartService
  39.      */
  40.     protected $cartService;
  41.     /**
  42.      * @var PurchaseFlow
  43.      */
  44.     protected $purchaseFlow;
  45.     /**
  46.      * @var BaseInfo
  47.      */
  48.     protected $baseInfo;
  49.     /**
  50.      * CartController constructor.
  51.      *
  52.      * @param ProductClassRepository $productClassRepository
  53.      * @param CartService $cartService
  54.      * @param PurchaseFlow $cartPurchaseFlow
  55.      * @param BaseInfoRepository $baseInfoRepository
  56.      */
  57.     public function __construct(
  58.         ProductClassRepository $productClassRepository,
  59.         ProductRepository $productRepository,
  60.         CartService $cartService,
  61.         PurchaseFlow $cartPurchaseFlow,
  62.         BaseInfoRepository $baseInfoRepository
  63.     ) {
  64.         $this->productClassRepository $productClassRepository;
  65.         $this->productRepository $productRepository;
  66.         $this->cartService $cartService;
  67.         $this->purchaseFlow $cartPurchaseFlow;
  68.         $this->baseInfo $baseInfoRepository->get();
  69.     }
  70.     /**
  71.      * カート画面.
  72.      *
  73.      * @Route("/cart", name="cart", methods={"GET"})
  74.      * @Template("Cart/index.twig")
  75.      */
  76.     public function index(Request $request)
  77.     {
  78.         // カートを取得して明細の正規化を実行
  79.         $Carts $this->cartService->getCarts();
  80.         $this->execPurchaseFlow($Carts);
  81.         // TODO itemHolderから取得できるように
  82.         $least = [];
  83.         $quantity = [];
  84.         $isDeliveryFree = [];
  85.         $totalPrice 0;
  86.         $totalQuantity 0;
  87.         $is_construction_only true;
  88.         $loanProducts = [];
  89.         foreach ($Carts as $Cart) {
  90.             $quantity[$Cart->getCartKey()] = 0;
  91.             $isDeliveryFree[$Cart->getCartKey()] = false;
  92.             if ($this->baseInfo->getDeliveryFreeQuantity()) {
  93.                 if ($this->baseInfo->getDeliveryFreeQuantity() > $Cart->getQuantity()) {
  94.                     $quantity[$Cart->getCartKey()] = $this->baseInfo->getDeliveryFreeQuantity() - $Cart->getQuantity();
  95.                 } else {
  96.                     $isDeliveryFree[$Cart->getCartKey()] = true;
  97.                 }
  98.             }
  99.             if ($this->baseInfo->getDeliveryFreeAmount()) {
  100.                 if (!$isDeliveryFree[$Cart->getCartKey()] && $this->baseInfo->getDeliveryFreeAmount() <= $Cart->getTotalPrice()) {
  101.                     $isDeliveryFree[$Cart->getCartKey()] = true;
  102.                 } else {
  103.                     $least[$Cart->getCartKey()] = $this->baseInfo->getDeliveryFreeAmount() - $Cart->getTotalPrice();
  104.                 }
  105.             }
  106.             $totalPrice += $Cart->getTotalPrice();
  107.             $totalQuantity += $Cart->getQuantity();
  108.             // 工事のみ判断
  109.             foreach ($Cart->getCartItems() as $CartItem) {
  110.                 if (($_SERVER['APP_ENV'] == 'prod' && $CartItem->getProductClass()->getProduct()->getId() != 1289
  111.                     || ($_SERVER['APP_ENV'] != 'prod' && $CartItem->getProductClass()->getProduct()->getId() != 1289)) {
  112.                     $is_construction_only false;
  113.                 }
  114.                 $product $CartItem->getProductClass()->getProduct();
  115.                 $categories $product->getProductCategories();
  116.                 $isLoan false
  117.                 foreach ($categories as $category) {
  118.                     if ($category->getCategory()->getId() == 118) {
  119.                         $isLoan true
  120.                         break;
  121.                     }
  122.                 }
  123.                 if ($isLoan) {
  124.                     $loanProducts[] = $product
  125.                 }
  126.             }
  127.         }
  128.         // カートが分割された時のセッション情報を削除
  129.         $request->getSession()->remove(OrderHelper::SESSION_CART_DIVIDE_FLAG);
  130.         return [
  131.             'totalPrice' => $totalPrice,
  132.             'totalQuantity' => $totalQuantity,
  133.             // 空のカートを削除し取得し直す
  134.             'Carts' => $this->cartService->getCarts(true),
  135.             'least' => $least,
  136.             'quantity' => $quantity,
  137.             'is_delivery_free' => $isDeliveryFree,
  138.             'is_construction_only' => $is_construction_only,
  139.             'loanProducts' => $loanProducts,
  140.         ];
  141.     }
  142.     /**
  143.      * @param $Carts
  144.      *
  145.      * @return \Symfony\Component\HttpFoundation\RedirectResponse|null
  146.      */
  147.     protected function execPurchaseFlow($Carts)
  148.     {
  149.         /** @var PurchaseFlowResult[] $flowResults */
  150.         $flowResults array_map(function ($Cart) {
  151.             $purchaseContext = new PurchaseContext($Cart$this->getUser());
  152.             return $this->purchaseFlow->validate($Cart$purchaseContext);
  153.         }, $Carts);
  154.         // 復旧不可のエラーが発生した場合はカートをクリアして再描画
  155.         $hasError false;
  156.         foreach ($flowResults as $result) {
  157.             if ($result->hasError()) {
  158.                 $hasError true;
  159.                 foreach ($result->getErrors() as $error) {
  160.                     $this->addRequestError($error->getMessage());
  161.                 }
  162.             }
  163.         }
  164.         if ($hasError) {
  165.             $this->cartService->clear();
  166.             return $this->redirectToRoute('cart');
  167.         }
  168.         $this->cartService->save();
  169.         foreach ($flowResults as $index => $result) {
  170.             foreach ($result->getWarning() as $warning) {
  171.                 if ($Carts[$index]->getItems()->count() > 0) {
  172.                     $cart_key $Carts[$index]->getCartKey();
  173.                     $this->addRequestError($warning->getMessage(), "front.cart.${cart_key}");
  174.                 } else {
  175.                     // キーが存在しない場合はグローバルにエラーを表示する
  176.                     $this->addRequestError($warning->getMessage());
  177.                 }
  178.             }
  179.         }
  180.         return null;
  181.     }
  182.     /**
  183.      * カート明細の加算/減算/削除を行う.
  184.      *
  185.      * - 加算
  186.      *      - 明細の個数を1増やす
  187.      * - 減算
  188.      *      - 明細の個数を1減らす
  189.      *      - 個数が0になる場合は、明細を削除する
  190.      * - 削除
  191.      *      - 明細を削除する
  192.      *
  193.      * @Route(
  194.      *     path="/cart/{operation}/{productClassId}",
  195.      *     name="cart_handle_item",
  196.      *     methods={"PUT"},
  197.      *     requirements={
  198.      *          "operation": "up|down|remove",
  199.      *          "productClassId": "\d+"
  200.      *     }
  201.      * )
  202.      */
  203.     public function handleCartItem($operation$productClassId)
  204.     {
  205.         // 工事費用データを削除
  206.         if ($_SERVER['APP_ENV'] == 'prod') {
  207.             $Product $this->productRepository->find(1289);
  208.         }
  209.         else {
  210.             $Product $this->productRepository->find(1289);
  211.         }
  212.         $Carts $this->cartService->getCarts();
  213.         foreach ($Carts as $Cart) {
  214.             foreach ($Cart->getCartItems() as $CartItem) {
  215.                 if ($CartItem->getProductClass()->getProduct() == $Product) {
  216.                     $this->cartService->removeProduct($CartItem->getProductClass());
  217.                 }
  218.             }
  219.         }
  220.         
  221.         log_info('カート明細操作開始', ['operation' => $operation'product_class_id' => $productClassId]);
  222.         $this->isTokenValid();
  223.         /** @var ProductClass $ProductClass */
  224.         $ProductClass $this->productClassRepository->find($productClassId);
  225.         if (is_null($ProductClass)) {
  226.             log_info('商品が存在しないため、カート画面へredirect', ['operation' => $operation'product_class_id' => $productClassId]);
  227.             return $this->redirectToRoute('cart');
  228.         }
  229.         // 明細の増減・削除
  230.         switch ($operation) {
  231.             case 'up':
  232.                 $this->cartService->addProduct($ProductClass1);
  233.                 break;
  234.             case 'down':
  235.                 $this->cartService->addProduct($ProductClass, -1);
  236.                 break;
  237.             case 'remove':
  238.                 $this->cartService->removeProduct($ProductClass);
  239.                 break;
  240.         }
  241.         // カートを取得して明細の正規化を実行
  242.         $Carts $this->cartService->getCarts();
  243.         $this->execPurchaseFlow($Carts);
  244.         log_info('カート演算処理終了', ['operation' => $operation'product_class_id' => $productClassId]);
  245.         return $this->redirectToRoute('cart');
  246.     }
  247.     /**
  248.      * カートをロック状態に設定し、購入確認画面へ遷移する.
  249.      *
  250.      * @Route("/cart/buystep/{cart_key}", name="cart_buystep", requirements={"cart_key" = "[a-zA-Z0-9]+[_][\x20-\x7E]+"}, methods={"GET"})
  251.      */
  252.     public function buystep(Request $request$cart_key)
  253.     {
  254.         $Carts $this->cartService->getCart();
  255.         if (!is_object($Carts)) {
  256.             return $this->redirectToRoute('cart');
  257.         }
  258.         // FRONT_CART_BUYSTEP_INITIALIZE
  259.         $event = new EventArgs(
  260.             [],
  261.             $request
  262.         );
  263.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_CART_BUYSTEP_INITIALIZE);
  264.         $this->cartService->setPrimary($cart_key);
  265.         $this->cartService->save();
  266.         // FRONT_CART_BUYSTEP_COMPLETE
  267.         $event = new EventArgs(
  268.             [],
  269.             $request
  270.         );
  271.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_CART_BUYSTEP_COMPLETE);
  272.         if ($event->hasResponse()) {
  273.             return $event->getResponse();
  274.         }
  275.         return $this->redirectToRoute('shopping');
  276.     }
  277.      /**
  278.      * カート明細の加算/減算/削除を行う.
  279.      *
  280.      * - 加算
  281.      *      - 明細の個数を1増やす
  282.      * - 減算
  283.      *      - 明細の個数を1減らす
  284.      *      - 個数が0になる場合は、明細を削除する
  285.      * - 削除
  286.      *      - 明細を削除する
  287.      *
  288.      * @Route(
  289.      *     path="/cart/{operation}/{productClassId}",
  290.      *     name="cart_handle_remove_item",
  291.      *     methods={"PUT"},
  292.      *     requirements={
  293.      *          "operation": "remove",
  294.      *          "productClassId": "\d+"
  295.      *     }
  296.      * )
  297.      */
  298.     public function handleRemove(Request $request$operation ,$productClassId) {
  299.         $result false;
  300.         if ($operation === 'remove') {
  301.             $result $this->cartService->removeProduct($productClassId);
  302.         }
  303.         if ($request->isXmlHttpRequest()) {
  304.             return new JsonResponse([
  305.                 'success' => $result,
  306.                 'message' => $result '商品が正常に削除されました。' '削除に失敗しました。',
  307.             ]);
  308.         }
  309.         return $this->redirectToRoute('cart');
  310.     }
  311. }