app/Customize/Controller/ProductController.php line 121

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  6.  *
  7.  * http://www.ec-cube.co.jp/
  8.  *
  9.  * For the full copyright and license information, please view the LICENSE
  10.  * file that was distributed with this source code.
  11.  */
  12. namespace Customize\Controller;
  13. use Eccube\Controller\AbstractController;
  14. use Eccube\Entity\BaseInfo;
  15. use Eccube\Entity\Master\ProductStatus;
  16. use Eccube\Entity\Product;
  17. use Eccube\Event\EccubeEvents;
  18. use Eccube\Event\EventArgs;
  19. use Eccube\Form\Type\AddCartType;
  20. use Customize\Form\Type\SearchProductType;
  21. use Eccube\Repository\BaseInfoRepository;
  22. use Eccube\Repository\CustomerFavoriteProductRepository;
  23. use Eccube\Repository\Master\ProductListMaxRepository;
  24. use Eccube\Repository\ProductRepository;
  25. use Eccube\Repository\CategoryRepository;
  26. use Eccube\Service\CartService;
  27. use Eccube\Service\PurchaseFlow\PurchaseContext;
  28. use Eccube\Service\PurchaseFlow\PurchaseFlow;
  29. use Knp\Bundle\PaginatorBundle\Pagination\SlidingPagination;
  30. use Knp\Component\Pager\PaginatorInterface;
  31. use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
  32. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  33. use Symfony\Component\HttpFoundation\Request;
  34. use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
  35. use Symfony\Component\Routing\Annotation\Route;
  36. use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
  37. use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
  38. class ProductController extends AbstractController
  39. {
  40.     /**
  41.      * @var PurchaseFlow
  42.      */
  43.     protected $purchaseFlow;
  44.     /**
  45.      * @var CustomerFavoriteProductRepository
  46.      */
  47.     protected $customerFavoriteProductRepository;
  48.     /**
  49.      * @var CartService
  50.      */
  51.     protected $cartService;
  52.     /**
  53.      * @var ProductRepository
  54.      */
  55.     protected $productRepository;
  56.     protected $categoryRepository;
  57.     /**
  58.      * @var BaseInfo
  59.      */
  60.     protected $BaseInfo;
  61.     /**
  62.      * @var AuthenticationUtils
  63.      */
  64.     protected $helper;
  65.     /**
  66.      * @var ProductListMaxRepository
  67.      */
  68.     protected $productListMaxRepository;
  69.     private $title '';
  70.     /**
  71.      * ProductController constructor.
  72.      *
  73.      * @param PurchaseFlow $cartPurchaseFlow
  74.      * @param CustomerFavoriteProductRepository $customerFavoriteProductRepository
  75.      * @param CartService $cartService
  76.      * @param ProductRepository $productRepository
  77.      * @param ProductRepository $categoryRepository
  78.      * @param BaseInfoRepository $baseInfoRepository
  79.      * @param AuthenticationUtils $helper
  80.      * @param ProductListMaxRepository $productListMaxRepository
  81.      */
  82.     public function __construct(
  83.         PurchaseFlow $cartPurchaseFlow,
  84.         CustomerFavoriteProductRepository $customerFavoriteProductRepository,
  85.         CartService $cartService,
  86.         ProductRepository $productRepository,
  87.         CategoryRepository $categoryRepository,
  88.         BaseInfoRepository $baseInfoRepository,
  89.         AuthenticationUtils $helper,
  90.         ProductListMaxRepository $productListMaxRepository
  91.     ) {
  92.         $this->purchaseFlow $cartPurchaseFlow;
  93.         $this->customerFavoriteProductRepository $customerFavoriteProductRepository;
  94.         $this->cartService $cartService;
  95.         $this->productRepository $productRepository;
  96.         $this->categoryRepository $categoryRepository;
  97.         $this->BaseInfo $baseInfoRepository->get();
  98.         $this->helper $helper;
  99.         $this->productListMaxRepository $productListMaxRepository;
  100.     }
  101.     /**
  102.      * 商品一覧画面.
  103.      *
  104.      * @Route("/products/list", name="product_list", methods={"GET"})
  105.      * @Template("Product/list.twig")
  106.      */
  107.     public function index(Request $requestPaginatorInterface $paginator)
  108.     {
  109.         // Doctrine SQLFilter
  110.         if ($this->BaseInfo->isOptionNostockHidden()) {
  111.             $this->entityManager->getFilters()->enable('option_nostock_hidden');
  112.         }
  113.         // handleRequestは空のqueryの場合は無視するため
  114.         if ($request->getMethod() === 'GET') {
  115.             $request->query->set('pageno'$request->query->get('pageno'''));
  116.         }
  117.         // searchForm
  118.         /* @var $builder \Symfony\Component\Form\FormBuilderInterface */
  119.         $builder $this->formFactory->createNamedBuilder(''SearchProductType::class);
  120.         if ($request->getMethod() === 'GET') {
  121.             $builder->setMethod('GET');
  122.         }
  123.         $event = new EventArgs(
  124.             [
  125.                 'builder' => $builder,
  126.             ],
  127.             $request
  128.         );
  129.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_INDEX_INITIALIZE);
  130.         /* @var $searchForm \Symfony\Component\Form\FormInterface */
  131.         $searchForm $builder->getForm();
  132.         $searchForm->handleRequest($request);
  133.         // paginator
  134.         $searchData $searchForm->getData();        
  135.         $qb $this->productRepository->getQueryBuilderBySearchData($searchData);
  136.         $event = new EventArgs(
  137.             [
  138.                 'searchData' => $searchData,
  139.                 'qb' => $qb,
  140.             ],
  141.             $request
  142.         );
  143.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_INDEX_SEARCH);
  144.         $searchData $event->getArgument('searchData');
  145.         $query $qb->getQuery()
  146.             ->useResultCache(true$this->eccubeConfig['eccube_result_cache_lifetime_short']);
  147.         /** @var SlidingPagination $pagination */
  148.         $pagination $paginator->paginate(
  149.             $query,
  150.             !empty($searchData['pageno']) ? $searchData['pageno'] : 1,
  151.             !empty($searchData['disp_number']) ? $searchData['disp_number']->getId() : 20
  152.         );
  153.         $ids = [];
  154.         foreach ($pagination as $Product) {
  155.             $ids[] = $Product->getId();
  156.         }
  157.         $ProductsAndClassCategories $this->productRepository->findProductsWithSortedClassCategories($ids'p.id');
  158.         // addCart form
  159.         $forms = [];
  160.         foreach ($pagination as $Product) {
  161.             /* @var $builder \Symfony\Component\Form\FormBuilderInterface */
  162.             $builder $this->formFactory->createNamedBuilder(
  163.                 '',
  164.                 AddCartType::class,
  165.                 null,
  166.                 [
  167.                     'product' => $ProductsAndClassCategories[$Product->getId()],
  168.                     'allow_extra_fields' => true,
  169.                 ]
  170.             );
  171.             $addCartForm $builder->getForm();
  172.             $forms[$Product->getId()] = $addCartForm->createView();
  173.         }
  174.         $Category $searchForm->get('category_id')->getData();
  175.         //ルームエアコンと業務用エアコン商品一覧のタイトルカスタムするため
  176.         if ($Category->getId() === 7) {
  177.             return [
  178.                 'pagination' => $pagination,
  179.                 'search_form' => $searchForm->createView(),
  180.                 'forms' => $forms,
  181.                 'Category' => $Category,
  182.                 'Customer' => $this->isGranted('ROLE_USER') ? $this->getUser() : null,
  183.                 'subtitle' => 'エアココの取扱業務用エアコン商品一覧',
  184.                 'description' => 'エアココが取り扱っている商品から業種、形、馬力、価格から簡単に検索できます。',
  185.             ];
  186.         }
  187.         elseif ($Category->getId() === 8) {
  188.             return [
  189.                 'pagination' => $pagination,
  190.                 'search_form' => $searchForm->createView(),
  191.                 'forms' => $forms,
  192.                 'Category' => $Category,
  193.                 'Customer' => $this->isGranted('ROLE_USER') ? $this->getUser() : null,
  194.                 'subtitle' => 'エアココのルームエアコン取扱商品一覧',
  195.                 'description' => 'エアココが取り扱っている商品をメーカー名、機能、価格、お部屋の広さ、0円設置対象商品から簡単に検索できます。',
  196.             ];
  197.         }
  198.         return [
  199.             'subtitle' => $this->getPageTitle($searchData),
  200.             'pagination' => $pagination,
  201.             'search_form' => $searchForm->createView(),
  202.             'forms' => $forms,
  203.             'Category' => $Category,
  204.             'Customer' => $this->isGranted('ROLE_USER') ? $this->getUser() : null,
  205.         ];
  206.     }
  207.     /**
  208.      * おすすめ商品一覧画面.
  209.      *
  210.      * @Route("/recommend", name="product_recommend", methods={"GET"})
  211.      * @Template("Product/recommend.twig")
  212.      */
  213.     public function recommend(Request $requestPaginatorInterface $paginator) {
  214.         // Doctrine SQLFilter
  215.         if ($this->BaseInfo->isOptionNostockHidden()) {
  216.             $this->entityManager->getFilters()->enable('option_nostock_hidden');
  217.         }
  218.         // handleRequestは空のqueryの場合は無視するため
  219.         if ($request->getMethod() === 'GET') {
  220.             $request->query->set('pageno'$request->query->get('pageno'''));
  221.         }
  222.         // searchForm
  223.         /* @var $builder \Symfony\Component\Form\FormBuilderInterface */
  224.         $builder $this->formFactory->createNamedBuilder(''SearchProductType::class);
  225.         if ($request->getMethod() === 'GET') {
  226.             $builder->setMethod('GET');
  227.         }
  228.         $event = new EventArgs(
  229.             [
  230.                 'builder' => $builder,
  231.             ],
  232.             $request
  233.         );
  234.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_INDEX_INITIALIZE);
  235.         /* @var $searchForm \Symfony\Component\Form\FormInterface */
  236.         $searchForm $builder->getForm();
  237.         $searchForm->handleRequest($request);
  238.         // paginator
  239.         $searchData $searchForm->getData();
  240.         $searchData['category_id'] = $this->categoryRepository->find(34); //おすすめタグで検索
  241.         $qb $this->productRepository->getQueryBuilderBySearchData($searchData);
  242.         $event = new EventArgs(
  243.             [
  244.                 'searchData' => $searchData,
  245.                 'qb' => $qb,
  246.             ],
  247.             $request
  248.         );
  249.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_INDEX_SEARCH);
  250.         $searchData $event->getArgument('searchData');
  251.         $query $qb->getQuery()
  252.             ->useResultCache(true$this->eccubeConfig['eccube_result_cache_lifetime_short']);
  253.         /** @var SlidingPagination $pagination */
  254.         $pagination $paginator->paginate(
  255.             $query,
  256.             !empty($searchData['pageno']) ? $searchData['pageno'] : 1,
  257.             10000 //ページの処理が不要
  258.         );
  259.         $ids = [];
  260.         foreach ($pagination as $Product) {
  261.             $ids[] = $Product->getId();
  262.         }
  263.         $ProductsAndClassCategories $this->productRepository->findProductsWithSortedClassCategories($ids'p.id');
  264.         // addCart form
  265.         $forms = [];
  266.         foreach ($pagination as $Product) {
  267.             /* @var $builder \Symfony\Component\Form\FormBuilderInterface */
  268.             $builder $this->formFactory->createNamedBuilder(
  269.                 '',
  270.                 AddCartType::class,
  271.                 null,
  272.                 [
  273.                     'product' => $ProductsAndClassCategories[$Product->getId()],
  274.                     'allow_extra_fields' => true,
  275.                 ]
  276.             );
  277.             $addCartForm $builder->getForm();
  278.             $forms[$Product->getId()] = $addCartForm->createView();
  279.         }
  280.         $Category $searchForm->get('category_id')->getData();
  281.         //おすすめがあるメーカーカテゴリー
  282.         $recommendCats = array();
  283.         foreach ($pagination as $Product) {
  284.             foreach($Product->getProductCategories() as $ProductCategory) {
  285.                 if ($ProductCategory->getCategory()->getParent()) {
  286.                     if ($ProductCategory->getCategory()->getParent()->getId() == 20) {
  287.                         $recommendCats[$ProductCategory->getCategory()->getId()] = $ProductCategory->getCategory()->getId();
  288.                     }
  289.                 }
  290.             }
  291.         }
  292.         return [
  293.             'subtitle' => $this->getPageTitle($searchData),
  294.             'pagination' => $pagination,
  295.             'search_form' => $searchForm->createView(),
  296.             'forms' => $forms,
  297.             'Category' => $Category,
  298.             'Customer' => $this->isGranted('ROLE_USER') ? $this->getUser() : null,
  299.             'recommendCats' => $recommendCats,
  300.         ];
  301.     }
  302.     /**
  303.      * 電話完結型サービス対象商品
  304.      *
  305.      * @Route("/tel_service_product", name="tel_service_product", methods={"GET"})
  306.      * @Template("@user_data/tel_service_product.twig")
  307.      */
  308.     public function tel_service_product(Request $requestPaginatorInterface $paginator) {
  309.         // Doctrine SQLFilter
  310.         if ($this->BaseInfo->isOptionNostockHidden()) {
  311.             $this->entityManager->getFilters()->enable('option_nostock_hidden');
  312.         }
  313.         // handleRequestは空のqueryの場合は無視するため
  314.         if ($request->getMethod() === 'GET') {
  315.             $request->query->set('pageno'$request->query->get('pageno'''));
  316.         }
  317.         // searchForm
  318.         /* @var $builder \Symfony\Component\Form\FormBuilderInterface */
  319.         $builder $this->formFactory->createNamedBuilder(''SearchProductType::class);
  320.         if ($request->getMethod() === 'GET') {
  321.             $builder->setMethod('GET');
  322.         }
  323.         $event = new EventArgs(
  324.             [
  325.                 'builder' => $builder,
  326.             ],
  327.             $request
  328.         );
  329.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_INDEX_INITIALIZE);
  330.         /* @var $searchForm \Symfony\Component\Form\FormInterface */
  331.         $searchForm $builder->getForm();
  332.         $searchForm->handleRequest($request);
  333.         // paginator
  334.         $searchData $searchForm->getData();
  335.         $searchData['category_id'] = $this->categoryRepository->find(117); //電話完結型サービス対象商品
  336.         $qb $this->productRepository->getQueryBuilderBySearchData($searchData);
  337.         $event = new EventArgs(
  338.             [
  339.                 'searchData' => $searchData,
  340.                 'qb' => $qb,
  341.             ],
  342.             $request
  343.         );
  344.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_INDEX_SEARCH);
  345.         $searchData $event->getArgument('searchData');
  346.         $query $qb->getQuery()
  347.             ->useResultCache(true$this->eccubeConfig['eccube_result_cache_lifetime_short']);
  348.         /** @var SlidingPagination $pagination */
  349.         $pagination $paginator->paginate(
  350.             $query,
  351.             !empty($searchData['pageno']) ? $searchData['pageno'] : 1,
  352.             10000 //ページの処理が不要
  353.         );
  354.         $ids = [];
  355.         foreach ($pagination as $Product) {
  356.             $ids[] = $Product->getId();
  357.         }
  358.         $ProductsAndClassCategories $this->productRepository->findProductsWithSortedClassCategories($ids'p.id');
  359.         // addCart form
  360.         $forms = [];
  361.         foreach ($pagination as $Product) {
  362.             /* @var $builder \Symfony\Component\Form\FormBuilderInterface */
  363.             $builder $this->formFactory->createNamedBuilder(
  364.                 '',
  365.                 AddCartType::class,
  366.                 null,
  367.                 [
  368.                     'product' => $ProductsAndClassCategories[$Product->getId()],
  369.                     'allow_extra_fields' => true,
  370.                 ]
  371.             );
  372.             $addCartForm $builder->getForm();
  373.             $forms[$Product->getId()] = $addCartForm->createView();
  374.         }
  375.         $Category $searchForm->get('category_id')->getData();
  376.         //おすすめがあるメーカーカテゴリー
  377.         $recommendCats = array();
  378.         foreach ($pagination as $Product) {
  379.             foreach($Product->getProductCategories() as $ProductCategory) {
  380.                 if ($ProductCategory->getCategory()->getParent()) {
  381.                     if ($ProductCategory->getCategory()->getParent()->getId() == 20) {
  382.                         $recommendCats[$ProductCategory->getCategory()->getId()] = $ProductCategory->getCategory()->getId();
  383.                     }
  384.                 }
  385.             }
  386.         }
  387.         return [
  388.             'subtitle' => $this->getPageTitle($searchData),
  389.             'pagination' => $pagination,
  390.             'search_form' => $searchForm->createView(),
  391.             'forms' => $forms,
  392.             'Category' => $Category,
  393.             'Customer' => $this->isGranted('ROLE_USER') ? $this->getUser() : null,
  394.             'recommendCats' => $recommendCats,
  395.         ];
  396.     }
  397.     /**
  398.      * 商品詳細画面.
  399.      *
  400.      * @Route("/products/detail/{id}", name="product_detail", methods={"GET"}, requirements={"id" = "\d+"})
  401.      * @Template("Product/detail.twig")
  402.      * @ParamConverter("Product", options={"repository_method" = "findWithSortedClassCategories"})
  403.      *
  404.      * @param Request $request
  405.      * @param Product $Product
  406.      *
  407.      * @return array
  408.      */
  409.     public function detail(Request $requestProduct $ProductCategoryRepository $categoryRepository)
  410.     {
  411.         if (!$this->checkVisibility($Product)) {
  412.             throw new NotFoundHttpException();
  413.         }
  414.         $builder $this->formFactory->createNamedBuilder(
  415.             '',
  416.             AddCartType::class,
  417.             null,
  418.             [
  419.                 'product' => $Product,
  420.                 'id_add_product_id' => false,
  421.             ]
  422.         );
  423.         $event = new EventArgs(
  424.             [
  425.                 'builder' => $builder,
  426.                 'Product' => $Product,
  427.             ],
  428.             $request
  429.         );
  430.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_DETAIL_INITIALIZE);
  431.         $is_favorite false;
  432.         if ($this->isGranted('ROLE_USER')) {
  433.             $Customer $this->getUser();
  434.             $is_favorite $this->customerFavoriteProductRepository->isFavorite($Customer$Product);
  435.         }
  436.         
  437.         $categories $categoryRepository->findAll();
  438.         $tradeCatChild = array();
  439.         foreach($Product->getProductCategories() as $ProductCategory) {
  440.             if ($ProductCategory->getCategory()->getParent()) {
  441.                 if ($ProductCategory->getCategory()->getParent()->getId() == 20) {
  442.                     $tradeCatChild[$ProductCategory->getCategory()->getId()] = $ProductCategory->getCategory()->getId();
  443.                 }
  444.             }
  445.         }
  446.         $moderYearCatChild = array();
  447.         foreach($Product->getProductCategories() as $ProductCategory) {
  448.             if ($ProductCategory->getCategory()->getParent()) {
  449.                 if ($ProductCategory->getCategory()->getParent()->getId() == 111) {
  450.                     $moderYearCatChild[$ProductCategory->getCategory()->getId()] = $ProductCategory->getCategory()->getId();
  451.                 }
  452.             }
  453.         }
  454.         $recommendCatChild = array();
  455.         foreach($Product->getProductCategories() as $ProductCategory) {
  456.             if ($ProductCategory->getCategory()->getParent()) {
  457.                 if ($ProductCategory->getCategory()->getParent()->getId() == 21) {
  458.                     $recommendCatChild[$ProductCategory->getCategory()->getId()] = $ProductCategory->getCategory()->getId();
  459.                 }
  460.             }
  461.         }
  462.         return [
  463.             'title' => $this->title,
  464.             'subtitle' => $Product->getName(),
  465.             'form' => $builder->getForm()->createView(),
  466.             'Product' => $Product,
  467.             'is_favorite' => $is_favorite,
  468.             'tradeCatChild' => $tradeCatChild,
  469.             'moderYearCatChild' => $moderYearCatChild,
  470.             'recommendCatChild' => $recommendCatChild
  471.             'categories' => $categories,
  472.         ];
  473.     }
  474.     /**
  475.      * お気に入り追加.
  476.      *
  477.      * @Route("/products/add_favorite/{id}", name="product_add_favorite", requirements={"id" = "\d+"}, methods={"GET", "POST"})
  478.      */
  479.     public function addFavorite(Request $requestProduct $Product)
  480.     {
  481.         $this->checkVisibility($Product);
  482.         $event = new EventArgs(
  483.             [
  484.                 'Product' => $Product,
  485.             ],
  486.             $request
  487.         );
  488.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_FAVORITE_ADD_INITIALIZE);
  489.         if ($this->isGranted('ROLE_USER')) {
  490.             $Customer $this->getUser();
  491.             $this->customerFavoriteProductRepository->addFavorite($Customer$Product);
  492.             $this->session->getFlashBag()->set('product_detail.just_added_favorite'$Product->getId());
  493.             $event = new EventArgs(
  494.                 [
  495.                     'Product' => $Product,
  496.                 ],
  497.                 $request
  498.             );
  499.             $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_FAVORITE_ADD_COMPLETE);
  500.             return $this->redirectToRoute('product_detail', ['id' => $Product->getId()]);
  501.         } else {
  502.             // 非会員の場合、ログイン画面を表示
  503.             //  ログイン後の画面遷移先を設定
  504.             $this->setLoginTargetPath($this->generateUrl('product_add_favorite', ['id' => $Product->getId()], UrlGeneratorInterface::ABSOLUTE_URL));
  505.             $this->session->getFlashBag()->set('eccube.add.favorite'true);
  506.             $event = new EventArgs(
  507.                 [
  508.                     'Product' => $Product,
  509.                 ],
  510.                 $request
  511.             );
  512.             $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_FAVORITE_ADD_COMPLETE);
  513.             return $this->redirectToRoute('mypage_login');
  514.         }
  515.     }
  516.     /**
  517.      * カートに追加.
  518.      *
  519.      * @Route("/products/add_cart/{id}", name="product_add_cart", methods={"POST"}, requirements={"id" = "\d+"})
  520.      */
  521.     public function addCart(Request $requestProduct $Product)
  522.     {
  523.         // エラーメッセージの配列
  524.         $errorMessages = [];
  525.         if (!$this->checkVisibility($Product)) {
  526.             throw new NotFoundHttpException();
  527.         }
  528.         $builder $this->formFactory->createNamedBuilder(
  529.             '',
  530.             AddCartType::class,
  531.             null,
  532.             [
  533.                 'product' => $Product,
  534.                 'id_add_product_id' => false,
  535.             ]
  536.         );
  537.         $event = new EventArgs(
  538.             [
  539.                 'builder' => $builder,
  540.                 'Product' => $Product,
  541.             ],
  542.             $request
  543.         );
  544.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_CART_ADD_INITIALIZE);
  545.         /* @var $form \Symfony\Component\Form\FormInterface */
  546.         $form $builder->getForm();
  547.         $form->handleRequest($request);
  548.         // if (!$form->isValid()) {
  549.         //     throw new NotFoundHttpException();
  550.         // }
  551.         $addCartData $form->getData();
  552.         log_info(
  553.             'カート追加処理開始',
  554.             [
  555.                 'product_id' => $Product->getId(),
  556.                 'product_class_id' => $addCartData['product_class_id'],
  557.                 'quantity' => $addCartData['quantity'],
  558.             ]
  559.         );
  560.         // カートへ追加
  561.         // $this->cartService->addProduct($addCartData['product_class_id'], $addCartData['quantity']);
  562.         $this->cartService->addProduct($addCartData['product_class_id'], $addCartData['quantity'], $addCartData);
  563.         // 明細の正規化
  564.         $Carts $this->cartService->getCarts();
  565.         foreach ($Carts as $Cart) {
  566.             $result $this->purchaseFlow->validate($Cart, new PurchaseContext($Cart$this->getUser()));
  567.             // 復旧不可のエラーが発生した場合は追加した明細を削除.
  568.             if ($result->hasError()) {
  569.                 $this->cartService->removeProduct($addCartData['product_class_id']);
  570.                 foreach ($result->getErrors() as $error) {
  571.                     $errorMessages[] = $error->getMessage();
  572.                 }
  573.             }
  574.             foreach ($result->getWarning() as $warning) {
  575.                 $errorMessages[] = $warning->getMessage();
  576.             }
  577.         }
  578.         $this->cartService->save();
  579.         log_info(
  580.             'カート追加処理完了',
  581.             [
  582.                 'product_id' => $Product->getId(),
  583.                 'product_class_id' => $addCartData['product_class_id'],
  584.                 'quantity' => $addCartData['quantity'],
  585.             ]
  586.         );
  587.         $event = new EventArgs(
  588.             [
  589.                 'form' => $form,
  590.                 'Product' => $Product,
  591.             ],
  592.             $request
  593.         );
  594.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_CART_ADD_COMPLETE);
  595.         if ($event->getResponse() !== null) {
  596.             return $event->getResponse();
  597.         }
  598.         if ($request->isXmlHttpRequest()) {
  599.             // ajaxでのリクエストの場合は結果をjson形式で返す。
  600.             // 初期化
  601.             $messages = [];
  602.             if (empty($errorMessages)) {
  603.                 // エラーが発生していない場合
  604.                 $done true;
  605.                 array_push($messagestrans('front.product.add_cart_complete'));
  606.             } else {
  607.                 // エラーが発生している場合
  608.                 $done false;
  609.                 $messages $errorMessages;
  610.             }
  611.             return $this->json(['done' => $done'messages' => $messages]);
  612.         } else {
  613.             // ajax以外でのリクエストの場合はカート画面へリダイレクト
  614.             foreach ($errorMessages as $errorMessage) {
  615.                 $this->addRequestError($errorMessage);
  616.             }
  617.             return $this->redirectToRoute('cart');
  618.         }
  619.     }
  620.     /**
  621.      * ページタイトルの設定
  622.      *
  623.      * @param  array|null $searchData
  624.      *
  625.      * @return str
  626.      */
  627.     protected function getPageTitle($searchData)
  628.     {
  629.         if (isset($searchData['name']) && !empty($searchData['name'])) {
  630.             return trans('front.product.search_result');
  631.         } elseif (isset($searchData['category_id']) && $searchData['category_id']) {
  632.             return $searchData['category_id']->getName();
  633.         } else {
  634.             return trans('front.product.all_products');
  635.         }
  636.     }
  637.     /**
  638.      * 閲覧可能な商品かどうかを判定
  639.      *
  640.      * @param Product $Product
  641.      *
  642.      * @return boolean 閲覧可能な場合はtrue
  643.      */
  644.     protected function checkVisibility(Product $Product)
  645.     {
  646.         $is_admin $this->session->has('_security_admin');
  647.         // 管理ユーザの場合はステータスやオプションにかかわらず閲覧可能.
  648.         if (!$is_admin) {
  649.             // 在庫なし商品の非表示オプションが有効な場合.
  650.             // if ($this->BaseInfo->isOptionNostockHidden()) {
  651.             //     if (!$Product->getStockFind()) {
  652.             //         return false;
  653.             //     }
  654.             // }
  655.             // 公開ステータスでない商品は表示しない.
  656.             if ($Product->getStatus()->getId() !== ProductStatus::DISPLAY_SHOW) {
  657.                 return false;
  658.             }
  659.         }
  660.         return true;
  661.     }
  662. }