src/Eccube/Controller/ShoppingController.php line 527

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