app/Customize/Controller/CustomShoppingController.php line 452

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