src/Eccube/Controller/ShoppingController.php line 788

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 Eccube\Controller;
  13. use Eccube\Entity\Customer;
  14. use Eccube\Entity\CustomerAddress;
  15. use Eccube\Entity\Order;
  16. use Eccube\Entity\Shipping;
  17. use Eccube\Event\EccubeEvents;
  18. use Eccube\Event\EventArgs;
  19. use Eccube\Exception\ShoppingException;
  20. use Eccube\Form\Type\Front\CustomerLoginType;
  21. use Eccube\Form\Type\Front\ShoppingShippingType;
  22. use Eccube\Form\Type\Shopping\CustomerAddressType;
  23. use Eccube\Form\Type\Shopping\OrderType;
  24. use Eccube\Repository\BaseInfoRepository;
  25. use Eccube\Repository\OrderRepository;
  26. use Eccube\Repository\TradeLawRepository;
  27. use Eccube\Service\CartService;
  28. use Eccube\Service\MailService;
  29. use Eccube\Service\OrderHelper;
  30. use Eccube\Service\Payment\PaymentDispatcher;
  31. use Eccube\Service\Payment\PaymentMethodInterface;
  32. use Eccube\Service\PurchaseFlow\PurchaseContext;
  33. use Eccube\Service\PurchaseFlow\PurchaseFlow;
  34. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  35. use Symfony\Component\DependencyInjection\ContainerInterface;
  36. use Symfony\Component\Form\FormInterface;
  37. use Symfony\Component\HttpFoundation\Request;
  38. use Symfony\Component\HttpFoundation\Response;
  39. use Symfony\Component\HttpKernel\Exception\TooManyRequestsHttpException;
  40. use Symfony\Component\RateLimiter\RateLimiterFactory;
  41. use Symfony\Component\Routing\Annotation\Route;
  42. use Symfony\Component\Routing\RouterInterface;
  43. use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
  44. class ShoppingController extends AbstractShoppingController
  45. {
  46.     /**
  47.      * @var CartService
  48.      */
  49.     protected $cartService;
  50.     /**
  51.      * @var MailService
  52.      */
  53.     protected $mailService;
  54.     /**
  55.      * @var OrderHelper
  56.      */
  57.     protected $orderHelper;
  58.     /**
  59.      * @var OrderRepository
  60.      */
  61.     protected $orderRepository;
  62.     /**
  63.      * @var ContainerInterface
  64.      */
  65.     protected $serviceContainer;
  66.     /**
  67.      * @var baseInfoRepository
  68.      */
  69.     protected $baseInfoRepository;
  70.     /**
  71.      * @var TradeLawRepository
  72.      */
  73.     protected TradeLawRepository $tradeLawRepository;
  74.     protected RateLimiterFactory $shoppingConfirmIpLimiter;
  75.     protected RateLimiterFactory $shoppingConfirmCustomerLimiter;
  76.     protected RateLimiterFactory $shoppingCheckoutIpLimiter;
  77.     protected RateLimiterFactory $shoppingCheckoutCustomerLimiter;
  78.     public function __construct(
  79.         CartService $cartService,
  80.         MailService $mailService,
  81.         OrderRepository $orderRepository,
  82.         OrderHelper $orderHelper,
  83.         ContainerInterface $serviceContainer,
  84.         TradeLawRepository $tradeLawRepository,
  85.         RateLimiterFactory $shoppingConfirmIpLimiter,
  86.         RateLimiterFactory $shoppingConfirmCustomerLimiter,
  87.         RateLimiterFactory $shoppingCheckoutIpLimiter,
  88.         RateLimiterFactory $shoppingCheckoutCustomerLimiter,
  89.         BaseInfoRepository $baseInfoRepository
  90.     ) {
  91.         $this->cartService $cartService;
  92.         $this->mailService $mailService;
  93.         $this->orderRepository $orderRepository;
  94.         $this->orderHelper $orderHelper;
  95.         $this->serviceContainer $serviceContainer;
  96.         $this->tradeLawRepository $tradeLawRepository;
  97.         $this->shoppingConfirmIpLimiter $shoppingConfirmIpLimiter;
  98.         $this->shoppingConfirmCustomerLimiter $shoppingConfirmCustomerLimiter;
  99.         $this->shoppingCheckoutIpLimiter $shoppingCheckoutIpLimiter;
  100.         $this->shoppingCheckoutCustomerLimiter $shoppingCheckoutCustomerLimiter;
  101.         $this->baseInfoRepository $baseInfoRepository;
  102.     }
  103.     /**
  104.      * 注文手続き画面を表示する
  105.      *
  106.      * 未ログインまたはRememberMeログインの場合はログイン画面に遷移させる.
  107.      * ただし、非会員でお客様情報を入力済の場合は遷移させない.
  108.      *
  109.      * カート情報から受注データを生成し, `pre_order_id`でカートと受注の紐付けを行う.
  110.      * 既に受注が生成されている場合(pre_order_idで取得できる場合)は, 受注の生成を行わずに画面を表示する.
  111.      *
  112.      * purchaseFlowの集計処理実行後, warningがある場合はカートど同期をとるため, カートのPurchaseFlowを実行する.
  113.      *
  114.      * @Route("/shopping", name="shopping", methods={"GET"})
  115.      * @Template("Shopping/index.twig")
  116.      */
  117.     public function index(PurchaseFlow $cartPurchaseFlow)
  118.     {
  119.         // ログイン状態のチェック.
  120.         if ($this->orderHelper->isLoginRequired()) {
  121.             log_info('[注文手続] 未ログインもしくはRememberMeログインのため, ログイン画面に遷移します.');
  122.             return $this->redirectToRoute('shopping_login');
  123.         }
  124.         dump('index');
  125.         // カートチェック.
  126.         $Cart $this->cartService->getCart();
  127.         dump($Cart);
  128.         if (!($Cart && $this->orderHelper->verifyCart($Cart))) {
  129.             log_info('[注文手続] カートが購入フローへ遷移できない状態のため, カート画面に遷移します.');
  130.             return $this->redirectToRoute('cart');
  131.         }
  132.         // 受注の初期化.
  133.         log_info('[注文手続] 受注の初期化処理を開始します.');
  134.         $Customer $this->getUser() ? $this->getUser() : $this->orderHelper->getNonMember();
  135.         $Order $this->orderHelper->initializeOrder($Cart$Customer);
  136. dump($Order);
  137.         // 集計処理.
  138.         log_info('[注文手続] 集計処理を開始します.', [$Order->getId()]);
  139.         $flowResult $this->executePurchaseFlow($Orderfalse);
  140.         $this->entityManager->flush();
  141.         if ($flowResult->hasError()) {
  142.             log_info('[注文手続] Errorが発生したため購入エラー画面へ遷移します.', [$flowResult->getErrors()]);
  143.             return $this->redirectToRoute('shopping_error');
  144.         }
  145.         if ($flowResult->hasWarning()) {
  146.             log_info('[注文手続] Warningが発生しました.', [$flowResult->getWarning()]);
  147.             // 受注明細と同期をとるため, CartPurchaseFlowを実行する
  148.             $cartPurchaseFlow->validate($Cart, new PurchaseContext($Cart$this->getUser()));
  149.             // 注文フローで取得されるカートの入れ替わりを防止する
  150.             // @see https://github.com/EC-CUBE/ec-cube/issues/4293
  151.             $this->cartService->setPrimary($Cart->getCartKey());
  152.         }
  153.         // マイページで会員情報が更新されていれば, Orderの注文者情報も更新する.
  154.         if ($Customer->getId()) {
  155.             $this->orderHelper->updateCustomerInfo($Order$Customer);
  156.             $this->entityManager->flush();
  157.         }
  158.         $activeTradeLaws $this->tradeLawRepository->findBy(['displayOrderScreen' => true], ['sortNo' => 'ASC']);
  159.         $form $this->createForm(OrderType::class, $Order);
  160. dump($Order);
  161. /*
  162. foreach($Order->getOrderItems() as $OrderItem){
  163.     dump($OrderItem);
  164.     foreach($OrderItem->getOrderItemOptions() as $OrderItemOption){
  165.         dump($OrderItemOption);
  166.         foreach($OrderItemOption->getOrderItemOptionCategories() as $OrderItemOptionCategorie){
  167.             dump($OrderItemOptionCategorie);
  168.         }
  169.     }
  170. }
  171. */
  172.         return [
  173.             'form' => $form->createView(),
  174.             'Order' => $Order,
  175.             'activeTradeLaws' => $activeTradeLaws,
  176.         ];
  177.     }
  178.     /**
  179.      * 他画面への遷移を行う.
  180.      *
  181.      * お届け先編集画面など, 他画面へ遷移する際に, フォームの値をDBに保存してからリダイレクトさせる.
  182.      * フォームの`redirect_to`パラメータの値にリダイレクトを行う.
  183.      * `redirect_to`パラメータはpath('遷移先のルーティング')が渡される必要がある.
  184.      *
  185.      * 外部のURLやPathを渡された場合($router->matchで展開出来ない場合)は, 購入エラーとする.
  186.      *
  187.      * プラグインやカスタマイズでこの機能を使う場合は, twig側で以下のように記述してください.
  188.      *
  189.      * <button data-trigger="click" data-path="path('ルーティング')">更新する</button>
  190.      *
  191.      * data-triggerは, click/change/blur等のイベント名を指定してください。
  192.      * data-pathは任意のパラメータです. 指定しない場合, 注文手続き画面へリダイレクトします.
  193.      *
  194.      * @Route("/shopping/redirect_to", name="shopping_redirect_to", methods={"POST"})
  195.      * @Template("Shopping/index.twig")
  196.      */
  197.     public function redirectTo(Request $requestRouterInterface $router)
  198.     {
  199.         // ログイン状態のチェック.
  200.         if ($this->orderHelper->isLoginRequired()) {
  201.             log_info('[リダイレクト] 未ログインもしくはRememberMeログインのため, ログイン画面に遷移します.');
  202.             return $this->redirectToRoute('shopping_login');
  203.         }
  204.         // 受注の存在チェック.
  205.         $preOrderId $this->cartService->getPreOrderId();
  206.         $Order $this->orderHelper->getPurchaseProcessingOrder($preOrderId);
  207.         if (!$Order) {
  208.             log_info('[リダイレクト] 購入処理中の受注が存在しません.');
  209.             return $this->redirectToRoute('shopping_error');
  210.         }
  211.         $form $this->createForm(OrderType::class, $Order);
  212.         $form->handleRequest($request);
  213.         if ($form->isSubmitted() && $form->isValid()) {
  214.             log_info('[リダイレクト] 集計処理を開始します.', [$Order->getId()]);
  215.             $response $this->executePurchaseFlow($Order);
  216.             $this->entityManager->flush();
  217.             if ($response) {
  218.                 return $response;
  219.             }
  220.             $redirectTo $form['redirect_to']->getData();
  221.             if (empty($redirectTo)) {
  222.                 log_info('[リダイレクト] リダイレクト先未指定のため注文手続き画面へ遷移します.');
  223.                 return $this->redirectToRoute('shopping');
  224.             }
  225.             try {
  226.                 // リダイレクト先のチェック.
  227.                 $pattern '/^'.preg_quote($request->getBasePath(), '/').'/';
  228.                 $redirectTo preg_replace($pattern''$redirectTo);
  229.                 $result $router->match($redirectTo);
  230.                 // パラメータのみ抽出
  231.                 $params array_filter($result, function ($key) {
  232.                     return !== \strpos($key'_');
  233.                 }, ARRAY_FILTER_USE_KEY);
  234.                 log_info('[リダイレクト] リダイレクトを実行します.', [$result['_route'], $params]);
  235.                 // pathからurlを再構築してリダイレクト.
  236.                 return $this->redirectToRoute($result['_route'], $params);
  237.             } catch (\Exception $e) {
  238.                 log_info('[リダイレクト] URLの形式が不正です', [$redirectTo$e->getMessage()]);
  239.                 return $this->redirectToRoute('shopping_error');
  240.             }
  241.         }
  242.         $activeTradeLaws $this->tradeLawRepository->findBy(['displayOrderScreen' => true], ['sortNo' => 'ASC']);
  243.         log_info('[リダイレクト] フォームエラーのため, 注文手続き画面を表示します.', [$Order->getId()]);
  244.         return [
  245.             'form' => $form->createView(),
  246.             'Order' => $Order,
  247.             'activeTradeLaws' => $activeTradeLaws,
  248.         ];
  249.     }
  250.     /**
  251.      * 注文確認画面を表示する.
  252.      *
  253.      * ここではPaymentMethod::verifyがコールされます.
  254.      * PaymentMethod::verifyではクレジットカードの有効性チェック等, 注文手続きを進められるかどうかのチェック処理を行う事を想定しています.
  255.      * PaymentMethod::verifyでエラーが発生した場合は, 注文手続き画面へリダイレクトします.
  256.      *
  257.      * @Route("/shopping/confirm", name="shopping_confirm", methods={"POST"})
  258.      * @Template("Shopping/confirm.twig")
  259.      */
  260.     public function confirm(Request $request)
  261.     {
  262.         // ログイン状態のチェック.
  263.         if ($this->orderHelper->isLoginRequired()) {
  264.             log_info('[注文確認] 未ログインもしくはRememberMeログインのため, ログイン画面に遷移します.');
  265.             return $this->redirectToRoute('shopping_login');
  266.         }
  267.         // 受注の存在チェック
  268.         $preOrderId $this->cartService->getPreOrderId();
  269.         $Order $this->orderHelper->getPurchaseProcessingOrder($preOrderId);
  270.         if (!$Order) {
  271.             log_info('[注文確認] 購入処理中の受注が存在しません.', [$preOrderId]);
  272.             return $this->redirectToRoute('shopping_error');
  273.         }
  274.         $activeTradeLaws $this->tradeLawRepository->findBy(['displayOrderScreen' => true], ['sortNo' => 'ASC']);
  275.         $form $this->createForm(OrderType::class, $Order);
  276.         $form->handleRequest($request);
  277.         if ($form->isSubmitted() && $form->isValid()) {
  278.             log_info('[注文確認] 集計処理を開始します.', [$Order->getId()]);
  279.             $response $this->executePurchaseFlow($Order);
  280.             $this->entityManager->flush();
  281.             if ($response) {
  282.                 return $response;
  283.             }
  284.             log_info('[注文確認] IPベースのスロットリングを実行します.');
  285.             $ipLimiter $this->shoppingConfirmIpLimiter->create($request->getClientIp());
  286.             if (!$ipLimiter->consume()->isAccepted()) {
  287.                 log_info('[注文確認] 試行回数制限を超過しました(IPベース)');
  288.                 throw new TooManyRequestsHttpException();
  289.             }
  290.             $Customer $this->getUser();
  291.             if ($Customer instanceof Customer) {
  292.                 log_info('[注文確認] 会員ベースのスロットリングを実行します.');
  293.                 $customerLimiter $this->shoppingConfirmCustomerLimiter->create($Customer->getId());
  294.                 if (!$customerLimiter->consume()->isAccepted()) {
  295.                     log_info('[注文確認] 試行回数制限を超過しました(会員ベース)');
  296.                     throw new TooManyRequestsHttpException();
  297.                 }
  298.             }
  299.             log_info('[注文確認] PaymentMethod::verifyを実行します.', [$Order->getPayment()->getMethodClass()]);
  300.             $paymentMethod $this->createPaymentMethod($Order$form);
  301.             $PaymentResult $paymentMethod->verify();
  302.             if ($PaymentResult) {
  303.                 if (!$PaymentResult->isSuccess()) {
  304.                     $this->entityManager->rollback();
  305.                     foreach ($PaymentResult->getErrors() as $error) {
  306.                         $this->addError($error);
  307.                     }
  308.                     log_info('[注文確認] PaymentMethod::verifyのエラーのため, 注文手続き画面へ遷移します.', [$PaymentResult->getErrors()]);
  309.                     return $this->redirectToRoute('shopping');
  310.                 }
  311.                 $response $PaymentResult->getResponse();
  312.                 if ($response instanceof Response && ($response->isRedirection() || $response->isSuccessful())) {
  313.                     $this->entityManager->flush();
  314.                     log_info('[注文確認] PaymentMethod::verifyが指定したレスポンスを表示します.');
  315.                     return $response;
  316.                 }
  317.             }
  318.             $this->entityManager->flush();
  319.             log_info('[注文確認] 注文確認画面を表示します.');
  320.             return [
  321.                 'form' => $form->createView(),
  322.                 'Order' => $Order,
  323.                 'activeTradeLaws' => $activeTradeLaws,
  324.             ];
  325.         }
  326.         log_info('[注文確認] フォームエラーのため, 注文手続画面を表示します.', [$Order->getId()]);
  327.         $template = new Template([
  328.             'owner' => [$this'confirm'],
  329.             'template' => 'Shopping/index.twig',
  330.         ]);
  331.         $request->attributes->set('_template'$template);
  332.         return [
  333.             'form' => $form->createView(),
  334.             'Order' => $Order,
  335.             'activeTradeLaws' => $activeTradeLaws,
  336.         ];
  337.     }
  338.     /**
  339.      * 注文処理を行う.
  340.      *
  341.      * 決済プラグインによる決済処理および注文の確定処理を行います.
  342.      *
  343.      * @Route("/shopping/checkout", name="shopping_checkout", methods={"POST"})
  344.      * @Template("Shopping/confirm.twig")
  345.      */
  346.     public function checkout(Request $request)
  347.     {
  348.         // ログイン状態のチェック.
  349.         if ($this->orderHelper->isLoginRequired()) {
  350.             log_info('[注文処理] 未ログインもしくはRememberMeログインのため, ログイン画面に遷移します.');
  351.             return $this->redirectToRoute('shopping_login');
  352.         }
  353.         // 受注の存在チェック
  354.         $preOrderId $this->cartService->getPreOrderId();
  355.         $Order $this->orderHelper->getPurchaseProcessingOrder($preOrderId);
  356.         if (!$Order) {
  357.             log_info('[注文処理] 購入処理中の受注が存在しません.', [$preOrderId]);
  358.             return $this->redirectToRoute('shopping_error');
  359.         }
  360.         // フォームの生成.
  361.         $form $this->createForm(OrderType::class, $Order, [
  362.             // 確認画面から注文処理へ遷移する場合は, Orderエンティティで値を引き回すためフォーム項目の定義をスキップする.
  363.             'skip_add_form' => true,
  364.         ]);
  365.         $form->handleRequest($request);
  366.         if ($form->isSubmitted() && $form->isValid()) {
  367.             log_info('[注文処理] 注文処理を開始します.', [$Order->getId()]);
  368.             try {
  369.                 /*
  370.                  * 集計処理
  371.                  */
  372.                 log_info('[注文処理] 集計処理を開始します.', [$Order->getId()]);
  373.                 $response $this->executePurchaseFlow($Order);
  374.                 $this->entityManager->flush();
  375.                 if ($response) {
  376.                     return $response;
  377.                 }
  378.                 log_info('[注文完了] IPベースのスロットリングを実行します.');
  379.                 $ipLimiter $this->shoppingCheckoutIpLimiter->create($request->getClientIp());
  380.                 if (!$ipLimiter->consume()->isAccepted()) {
  381.                     log_info('[注文完了] 試行回数制限を超過しました(IPベース)');
  382.                     throw new TooManyRequestsHttpException();
  383.                 }
  384.                 $Customer $this->getUser();
  385.                 if ($Customer instanceof Customer) {
  386.                     log_info('[注文完了] 会員ベースのスロットリングを実行します.');
  387.                     $customerLimiter $this->shoppingCheckoutCustomerLimiter->create($Customer->getId());
  388.                     if (!$customerLimiter->consume()->isAccepted()) {
  389.                         log_info('[注文完了] 試行回数制限を超過しました(会員ベース)');
  390.                         throw new TooManyRequestsHttpException();
  391.                     }
  392.                 }
  393.                 log_info('[注文処理] PaymentMethodを取得します.', [$Order->getPayment()->getMethodClass()]);
  394.                 $paymentMethod $this->createPaymentMethod($Order$form);
  395.                 /*
  396.                  * 決済実行(前処理)
  397.                  */
  398.                 log_info('[注文処理] PaymentMethod::applyを実行します.');
  399.                 if ($response $this->executeApply($paymentMethod)) {
  400.                     return $response;
  401.                 }
  402.                 /*
  403.                  * 決済実行
  404.                  *
  405.                  * PaymentMethod::checkoutでは決済処理が行われ, 正常に処理出来た場合はPurchaseFlow::commitがコールされます.
  406.                  */
  407.                 log_info('[注文処理] PaymentMethod::checkoutを実行します.');
  408.                 if ($response $this->executeCheckout($paymentMethod)) {
  409.                     return $response;
  410.                 }
  411.                 $this->entityManager->flush();
  412.                 log_info('[注文処理] 注文処理が完了しました.', [$Order->getId()]);
  413.             } catch (ShoppingException $e) {
  414.                 log_error('[注文処理] 購入エラーが発生しました.', [$e->getMessage()]);
  415.                 $this->entityManager->rollback();
  416.                 $this->addError($e->getMessage());
  417.                 return $this->redirectToRoute('shopping_error');
  418.             } catch (\Exception $e) {
  419.                 log_error('[注文処理] 予期しないエラーが発生しました.', [$e->getMessage()]);
  420.                 // $this->entityManager->rollback(); FIXME ユニットテストで There is no active transaction エラーになってしまう
  421.                 $this->addError('front.shopping.system_error');
  422.                 return $this->redirectToRoute('shopping_error');
  423.             }
  424.             // カート削除
  425.             log_info('[注文処理] カートをクリアします.', [$Order->getId()]);
  426.             $this->cartService->clear();
  427.             // 受注IDをセッションにセット
  428.             $this->session->set(OrderHelper::SESSION_ORDER_ID$Order->getId());
  429.             // メール送信
  430.             log_info('[注文処理] 注文メールの送信を行います.', [$Order->getId()]);
  431.             $this->mailService->sendOrderMail($Order);
  432.             $this->entityManager->flush();
  433.             log_info('[注文処理] 注文処理が完了しました. 購入完了画面へ遷移します.', [$Order->getId()]);
  434.             return $this->redirectToRoute('shopping_complete');
  435.         }
  436.         log_info('[注文処理] フォームエラーのため, 購入エラー画面へ遷移します.', [$Order->getId()]);
  437.         return $this->redirectToRoute('shopping_error');
  438.     }
  439.     /**
  440.      * 購入完了画面を表示する.
  441.      *
  442.      * @Route("/shopping/complete", name="shopping_complete", methods={"GET"})
  443.      * @Template("Shopping/complete.twig")
  444.      */
  445.     public function complete(Request $request)
  446.     {
  447.         log_info('[注文完了] 注文完了画面を表示します.');
  448.         // 受注IDを取得
  449.         $orderId $this->session->get(OrderHelper::SESSION_ORDER_ID);
  450.         if (empty($orderId)) {
  451.             log_info('[注文完了] 受注IDを取得できないため, トップページへ遷移します.');
  452.             return $this->redirectToRoute('homepage');
  453.         }
  454.         $Order $this->orderRepository->find($orderId);
  455.         $event = new EventArgs(
  456.             [
  457.                 'Order' => $Order,
  458.             ],
  459.             $request
  460.         );
  461.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_SHOPPING_COMPLETE_INITIALIZE);
  462.         if ($event->getResponse() !== null) {
  463.             return $event->getResponse();
  464.         }
  465.         log_info('[注文完了] 購入フローのセッションをクリアします. ');
  466.         $this->orderHelper->removeSession();
  467.         $hasNextCart = !empty($this->cartService->getCarts());
  468.         log_info('[注文完了] 注文完了画面を表示しました. ', [$hasNextCart]);
  469.         return [
  470.             'Order' => $Order,
  471.             'hasNextCart' => $hasNextCart,
  472.         ];
  473.     }
  474.     /**
  475.      * お届け先選択画面.
  476.      *
  477.      * 会員ログイン時, お届け先を選択する画面を表示する
  478.      * 非会員の場合はこの画面は使用しない。
  479.      *
  480.      * @Route("/shopping/shipping/{id}", name="shopping_shipping", requirements={"id" = "\d+"}, methods={"GET", "POST"})
  481.      * @Template("Shopping/shipping.twig")
  482.      */
  483.     public function shipping(Request $requestShipping $Shipping)
  484.     {
  485.         // ログイン状態のチェック.
  486.         if ($this->orderHelper->isLoginRequired()) {
  487.             return $this->redirectToRoute('shopping_login');
  488.         }
  489.         // 受注の存在チェック
  490.         $preOrderId $this->cartService->getPreOrderId();
  491.         $Order $this->orderHelper->getPurchaseProcessingOrder($preOrderId);
  492.         if (!$Order) {
  493.             return $this->redirectToRoute('shopping_error');
  494.         }
  495.         // 受注に紐づくShippingかどうかのチェック.
  496.         if (!$Order->findShipping($Shipping->getId())) {
  497.             return $this->redirectToRoute('shopping_error');
  498.         }
  499.         $builder $this->formFactory->createBuilder(CustomerAddressType::class, null, [
  500.             'customer' => $this->getUser(),
  501.             'shipping' => $Shipping,
  502.         ]);
  503.         $form $builder->getForm();
  504.         $form->handleRequest($request);
  505.         if ($form->isSubmitted() && $form->isValid()) {
  506.             log_info('お届先情報更新開始', [$Shipping->getId()]);
  507.             /** @var CustomerAddress $CustomerAddress */
  508.             $CustomerAddress $form['addresses']->getData();
  509.             // お届け先情報を更新
  510.             $Shipping->setFromCustomerAddress($CustomerAddress);
  511.             // 合計金額の再計算
  512.             $response $this->executePurchaseFlow($Order);
  513.             $this->entityManager->flush();
  514.             if ($response) {
  515.                 return $response;
  516.             }
  517.             $event = new EventArgs(
  518.                 [
  519.                     'Order' => $Order,
  520.                     'Shipping' => $Shipping,
  521.                 ],
  522.                 $request
  523.             );
  524.             $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_SHOPPING_SHIPPING_COMPLETE);
  525.             log_info('お届先情報更新完了', [$Shipping->getId()]);
  526.             return $this->redirectToRoute('shopping');
  527.         }
  528.         return [
  529.             'form' => $form->createView(),
  530.             'Customer' => $this->getUser(),
  531.             'shippingId' => $Shipping->getId(),
  532.         ];
  533.     }
  534.     /**
  535.      * お届け先の新規作成または編集画面.
  536.      *
  537.      * 会員時は新しいお届け先を作成し, 作成したお届け先を選択状態にして注文手続き画面へ遷移する.
  538.      * 非会員時は選択されたお届け先の編集を行う.
  539.      *
  540.      * @Route("/shopping/shipping_edit/{id}", name="shopping_shipping_edit", requirements={"id" = "\d+"}, methods={"GET", "POST"})
  541.      * @Template("Shopping/shipping_edit.twig")
  542.      */
  543.     public function shippingEdit(Request $requestShipping $Shipping)
  544.     {
  545.         // ログイン状態のチェック.
  546.         if ($this->orderHelper->isLoginRequired()) {
  547.             return $this->redirectToRoute('shopping_login');
  548.         }
  549.         // 受注の存在チェック
  550.         $preOrderId $this->cartService->getPreOrderId();
  551.         $Order $this->orderHelper->getPurchaseProcessingOrder($preOrderId);
  552.         if (!$Order) {
  553.             return $this->redirectToRoute('shopping_error');
  554.         }
  555.         // 受注に紐づくShippingかどうかのチェック.
  556.         if (!$Order->findShipping($Shipping->getId())) {
  557.             return $this->redirectToRoute('shopping_error');
  558.         }
  559.         $CustomerAddress = new CustomerAddress();
  560.         if ($this->isGranted('IS_AUTHENTICATED_FULLY')) {
  561.             // ログイン時は会員と紐付け
  562.             $CustomerAddress->setCustomer($this->getUser());
  563.         } else {
  564.             // 非会員時はお届け先をセット
  565.             $CustomerAddress->setFromShipping($Shipping);
  566.         }
  567.         $builder $this->formFactory->createBuilder(ShoppingShippingType::class, $CustomerAddress);
  568.         $event = new EventArgs(
  569.             [
  570.                 'builder' => $builder,
  571.                 'Order' => $Order,
  572.                 'Shipping' => $Shipping,
  573.                 'CustomerAddress' => $CustomerAddress,
  574.             ],
  575.             $request
  576.         );
  577.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_SHOPPING_SHIPPING_EDIT_INITIALIZE);
  578.         $form $builder->getForm();
  579.         $form->handleRequest($request);
  580.         if ($form->isSubmitted() && $form->isValid()) {
  581.             log_info('お届け先追加処理開始', ['order_id' => $Order->getId(), 'shipping_id' => $Shipping->getId()]);
  582.             $Shipping->setFromCustomerAddress($CustomerAddress);
  583.             if ($this->isGranted('IS_AUTHENTICATED_FULLY')) {
  584.                 $this->entityManager->persist($CustomerAddress);
  585.                 // 会員情報変更時にメールを送信
  586.                 if ($this->baseInfoRepository->get()->isOptionMailNotifier()) {
  587.                     $Customer $this->getUser();
  588.                     // 情報のセット
  589.                     $userData['userAgent'] = $request->headers->get('User-Agent');
  590.                     $userData['ipAddress'] = $request->getClientIp();
  591.                     $this->mailService->sendCustomerChangeNotifyMail($Customer$userDatatrans('front.mypage.delivery.notify_title'));
  592.                 }
  593.             }
  594.             // 合計金額の再計算
  595.             $response $this->executePurchaseFlow($Order);
  596.             $this->entityManager->flush();
  597.             if ($response) {
  598.                 return $response;
  599.             }
  600.             $event = new EventArgs(
  601.                 [
  602.                     'form' => $form,
  603.                     'Shipping' => $Shipping,
  604.                     'CustomerAddress' => $CustomerAddress,
  605.                 ],
  606.                 $request
  607.             );
  608.             $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_SHOPPING_SHIPPING_EDIT_COMPLETE);
  609.             log_info('お届け先追加処理完了', ['order_id' => $Order->getId(), 'shipping_id' => $Shipping->getId()]);
  610.             return $this->redirectToRoute('shopping');
  611.         }
  612.         return [
  613.             'form' => $form->createView(),
  614.             'shippingId' => $Shipping->getId(),
  615.         ];
  616.     }
  617.     /**
  618.      * ログイン画面.
  619.      *
  620.      * @Route("/shopping/login", name="shopping_login", methods={"GET"})
  621.      * @Template("Shopping/login.twig")
  622.      */
  623.     public function login(Request $requestAuthenticationUtils $authenticationUtils)
  624.     {
  625.         if ($this->isGranted('IS_AUTHENTICATED_FULLY')) {
  626.             return $this->redirectToRoute('shopping');
  627.         }
  628.         /* @var $form \Symfony\Component\Form\FormInterface */
  629.         $builder $this->formFactory->createNamedBuilder(''CustomerLoginType::class);
  630.         if ($this->isGranted('IS_AUTHENTICATED_REMEMBERED')) {
  631.             $Customer $this->getUser();
  632.             if ($Customer) {
  633.                 $builder->get('login_email')->setData($Customer->getEmail());
  634.             }
  635.         }
  636.         $event = new EventArgs(
  637.             [
  638.                 'builder' => $builder,
  639.             ],
  640.             $request
  641.         );
  642.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_SHOPPING_LOGIN_INITIALIZE);
  643.         $form $builder->getForm();
  644.         return [
  645.             'error' => $authenticationUtils->getLastAuthenticationError(),
  646.             'form' => $form->createView(),
  647.         ];
  648.     }
  649.     /**
  650.      * 購入エラー画面.
  651.      *
  652.      * @Route("/shopping/error", name="shopping_error", methods={"GET"})
  653.      * @Template("Shopping/shopping_error.twig")
  654.      */
  655.     public function error(Request $requestPurchaseFlow $cartPurchaseFlow)
  656.     {
  657.         // 受注とカートのずれを合わせるため, カートのPurchaseFlowをコールする.
  658.         $Cart $this->cartService->getCart();
  659.         if (null !== $Cart) {
  660.             $cartPurchaseFlow->validate($Cart, new PurchaseContext($Cart$this->getUser()));
  661.             $this->cartService->setPreOrderId(null);
  662.             $this->cartService->save();
  663.         }
  664.         // 購入エラー画面についてはwarninメッセージを出力しない為、warningレベルのメッセージが存在する場合、削除する.
  665.         // (warningが残っている場合、購入エラー画面以降のタイミングで誤って表示されてしまう為.)
  666.         if ($this->session->getFlashBag()->has('eccube.front.warning')) {
  667.             $this->session->getFlashBag()->get('eccube.front.warning');
  668.         }
  669.         $event = new EventArgs(
  670.             [],
  671.             $request
  672.         );
  673.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_SHOPPING_SHIPPING_ERROR_COMPLETE);
  674.         if ($event->getResponse() !== null) {
  675.             return $event->getResponse();
  676.         }
  677.         return [];
  678.     }
  679.     /**
  680.      * PaymentMethodをコンテナから取得する.
  681.      *
  682.      * @param Order $Order
  683.      * @param FormInterface $form
  684.      *
  685.      * @return PaymentMethodInterface
  686.      */
  687.     private function createPaymentMethod(Order $OrderFormInterface $form)
  688.     {
  689.         $PaymentMethod $this->serviceContainer->get($Order->getPayment()->getMethodClass());
  690.         $PaymentMethod->setOrder($Order);
  691.         $PaymentMethod->setFormType($form);
  692.         return $PaymentMethod;
  693.     }
  694.     /**
  695.      * PaymentMethod::applyを実行する.
  696.      *
  697.      * @param PaymentMethodInterface $paymentMethod
  698.      *
  699.      * @return \Symfony\Component\HttpFoundation\RedirectResponse|\Symfony\Component\HttpFoundation\Response
  700.      */
  701.     protected function executeApply(PaymentMethodInterface $paymentMethod)
  702.     {
  703.         $dispatcher $paymentMethod->apply(); // 決済処理中.
  704.         // リンク式決済のように他のサイトへ遷移する場合などは, dispatcherに処理を移譲する.
  705.         if ($dispatcher instanceof PaymentDispatcher) {
  706.             $response $dispatcher->getResponse();
  707.             $this->entityManager->flush();
  708.             // dispatcherがresponseを保持している場合はresponseを返す
  709.             if ($response instanceof Response && ($response->isRedirection() || $response->isSuccessful())) {
  710.                 log_info('[注文処理] PaymentMethod::applyが指定したレスポンスを表示します.');
  711.                 return $response;
  712.             }
  713.             // forwardすることも可能.
  714.             if ($dispatcher->isForward()) {
  715.                 log_info('[注文処理] PaymentMethod::applyによりForwardします.',
  716.                     [$dispatcher->getRoute(), $dispatcher->getPathParameters(), $dispatcher->getQueryParameters()]);
  717.                 return $this->forwardToRoute($dispatcher->getRoute(), $dispatcher->getPathParameters(),
  718.                     $dispatcher->getQueryParameters());
  719.             } else {
  720.                 log_info('[注文処理] PaymentMethod::applyによりリダイレクトします.',
  721.                     [$dispatcher->getRoute(), $dispatcher->getPathParameters(), $dispatcher->getQueryParameters()]);
  722.                 return $this->redirectToRoute($dispatcher->getRoute(),
  723.                     array_merge($dispatcher->getPathParameters(), $dispatcher->getQueryParameters()));
  724.             }
  725.         }
  726.     }
  727.     /**
  728.      * PaymentMethod::checkoutを実行する.
  729.      *
  730.      * @param PaymentMethodInterface $paymentMethod
  731.      *
  732.      * @return \Symfony\Component\HttpFoundation\RedirectResponse|\Symfony\Component\HttpFoundation\Response|null
  733.      */
  734.     protected function executeCheckout(PaymentMethodInterface $paymentMethod)
  735.     {
  736.         $PaymentResult $paymentMethod->checkout();
  737.         $response $PaymentResult->getResponse();
  738.         // PaymentResultがresponseを保持している場合はresponseを返す
  739.         if ($response instanceof Response && ($response->isRedirection() || $response->isSuccessful())) {
  740.             $this->entityManager->flush();
  741.             log_info('[注文処理] PaymentMethod::checkoutが指定したレスポンスを表示します.');
  742.             return $response;
  743.         }
  744.         // エラー時はロールバックして購入エラーとする.
  745.         if (!$PaymentResult->isSuccess()) {
  746.             $this->entityManager->rollback();
  747.             foreach ($PaymentResult->getErrors() as $error) {
  748.                 $this->addError($error);
  749.             }
  750.             log_info('[注文処理] PaymentMethod::checkoutのエラーのため, 購入エラー画面へ遷移します.', [$PaymentResult->getErrors()]);
  751.             return $this->redirectToRoute('shopping_error');
  752.         }
  753.         return null;
  754.     }
  755. }