src/Eccube/Controller/ProductController.php line 114

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\BaseInfo;
  14. use Eccube\Entity\Master\ProductStatus;
  15. use Eccube\Entity\Product;
  16. use Eccube\Event\EccubeEvents;
  17. use Eccube\Event\EventArgs;
  18. use Eccube\Form\Type\AddCartType;
  19. use Eccube\Form\Type\SearchProductType;
  20. use Eccube\Repository\BaseInfoRepository;
  21. use Eccube\Repository\CustomerFavoriteProductRepository;
  22. use Eccube\Repository\Master\ProductListMaxRepository;
  23. use Eccube\Repository\ProductRepository;
  24. use Eccube\Service\CartService;
  25. use Eccube\Service\PurchaseFlow\PurchaseContext;
  26. use Eccube\Service\PurchaseFlow\PurchaseFlow;
  27. use Knp\Bundle\PaginatorBundle\Pagination\SlidingPagination;
  28. use Knp\Component\Pager\PaginatorInterface;
  29. use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
  30. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  31. use Symfony\Component\HttpFoundation\Request;
  32. use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
  33. use Symfony\Component\Routing\Annotation\Route;
  34. use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
  35. use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
  36. class ProductController extends AbstractController
  37. {
  38.     /**
  39.      * @var PurchaseFlow
  40.      */
  41.     protected $purchaseFlow;
  42.     /**
  43.      * @var CustomerFavoriteProductRepository
  44.      */
  45.     protected $customerFavoriteProductRepository;
  46.     /**
  47.      * @var CartService
  48.      */
  49.     protected $cartService;
  50.     /**
  51.      * @var ProductRepository
  52.      */
  53.     protected $productRepository;
  54.     /**
  55.      * @var BaseInfo
  56.      */
  57.     protected $BaseInfo;
  58.     /**
  59.      * @var AuthenticationUtils
  60.      */
  61.     protected $helper;
  62.     /**
  63.      * @var ProductListMaxRepository
  64.      */
  65.     protected $productListMaxRepository;
  66.     private $title '';
  67.     /**
  68.      * ProductController constructor.
  69.      *
  70.      * @param PurchaseFlow $cartPurchaseFlow
  71.      * @param CustomerFavoriteProductRepository $customerFavoriteProductRepository
  72.      * @param CartService $cartService
  73.      * @param ProductRepository $productRepository
  74.      * @param BaseInfoRepository $baseInfoRepository
  75.      * @param AuthenticationUtils $helper
  76.      * @param ProductListMaxRepository $productListMaxRepository
  77.      */
  78.     public function __construct(
  79.         PurchaseFlow $cartPurchaseFlow,
  80.         CustomerFavoriteProductRepository $customerFavoriteProductRepository,
  81.         CartService $cartService,
  82.         ProductRepository $productRepository,
  83.         BaseInfoRepository $baseInfoRepository,
  84.         AuthenticationUtils $helper,
  85.         ProductListMaxRepository $productListMaxRepository
  86.     ) {
  87.         $this->purchaseFlow $cartPurchaseFlow;
  88.         $this->customerFavoriteProductRepository $customerFavoriteProductRepository;
  89.         $this->cartService $cartService;
  90.         $this->productRepository $productRepository;
  91.         $this->BaseInfo $baseInfoRepository->get();
  92.         $this->helper $helper;
  93.         $this->productListMaxRepository $productListMaxRepository;
  94.     }
  95.     /**
  96.      * 商品一覧画面.
  97.      *
  98.      * @Route("/products/list", name="product_list", methods={"GET"})
  99.      * @Template("Product/list.twig")
  100.      */
  101.     public function index(Request $requestPaginatorInterface $paginator)
  102.     {
  103.         // Doctrine SQLFilter
  104.         if ($this->BaseInfo->isOptionNostockHidden()) {
  105.             $this->entityManager->getFilters()->enable('option_nostock_hidden');
  106.         }
  107.         // handleRequestは空のqueryの場合は無視するため
  108.         if ($request->getMethod() === 'GET') {
  109.             $request->query->set('pageno'$request->query->get('pageno'''));
  110.         }
  111.         // searchForm
  112.         /* @var $builder \Symfony\Component\Form\FormBuilderInterface */
  113.         $builder $this->formFactory->createNamedBuilder(''SearchProductType::class);
  114.         if ($request->getMethod() === 'GET') {
  115.             $builder->setMethod('GET');
  116.         }
  117.         $event = new EventArgs(
  118.             [
  119.                 'builder' => $builder,
  120.             ],
  121.             $request
  122.         );
  123.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_INDEX_INITIALIZE);
  124.         /* @var $searchForm \Symfony\Component\Form\FormInterface */
  125.         $searchForm $builder->getForm();
  126.         $searchForm->handleRequest($request);
  127.         // paginator
  128.         $searchData $searchForm->getData();
  129.         $qb $this->productRepository->getQueryBuilderBySearchData($searchData);
  130.         $event = new EventArgs(
  131.             [
  132.                 'searchData' => $searchData,
  133.                 'qb' => $qb,
  134.             ],
  135.             $request
  136.         );
  137.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_INDEX_SEARCH);
  138.         $searchData $event->getArgument('searchData');
  139.         $query $qb->getQuery()
  140.             ->useResultCache(true$this->eccubeConfig['eccube_result_cache_lifetime_short']);
  141.         /** @var SlidingPagination $pagination */
  142.         $pagination $paginator->paginate(
  143.             $query,
  144.             !empty($searchData['pageno']) ? $searchData['pageno'] : 1,
  145.             !empty($searchData['disp_number']) ? $searchData['disp_number']->getId() : $this->productListMaxRepository->findOneBy([], ['sort_no' => 'ASC'])->getId()
  146.         );
  147.         $ids = [];
  148.         foreach ($pagination as $Product) {
  149.             $ids[] = $Product->getId();
  150.         }
  151.         $ProductsAndClassCategories $this->productRepository->findProductsWithSortedClassCategories($ids'p.id');
  152.         // addCart form
  153.         $forms = [];
  154.         foreach ($pagination as $Product) {
  155.             /* @var $builder \Symfony\Component\Form\FormBuilderInterface */
  156.             $builder $this->formFactory->createNamedBuilder(
  157.                 '',
  158.                 AddCartType::class,
  159.                 null,
  160.                 [
  161.                     'product' => $ProductsAndClassCategories[$Product->getId()],
  162.                     'allow_extra_fields' => true,
  163.                 ]
  164.             );
  165.             $addCartForm $builder->getForm();
  166.             $forms[$Product->getId()] = $addCartForm->createView();
  167.         }
  168.         $Category $searchForm->get('category_id')->getData();
  169.         $breadcrumbs = [
  170.             ['name' => 'ホーム''url' => $this->generateUrl('homepage')],
  171.             ['name' => '商品一覧''url' => ''],
  172.         ];
  173.         return [
  174.             'subtitle' => $this->getPageTitle($searchData),
  175.             'pagination' => $pagination,
  176.             'search_form' => $searchForm->createView(),
  177.             'forms' => $forms,
  178.             'Category' => $Category,
  179.             'breadcrumbs' => $breadcrumbs,
  180.         ];
  181.     }
  182.     /**
  183.      * 商品詳細画面.
  184.      *
  185.      * @Route("/products/detail/{id}", name="product_detail", methods={"GET"}, requirements={"id" = "\d+"})
  186.      * @Template("Product/detail.twig")
  187.      * @ParamConverter("Product", options={"repository_method" = "findWithSortedClassCategories"})
  188.      *
  189.      * @param Request $request
  190.      * @param Product $Product
  191.      *
  192.      * @return array
  193.      */
  194.     public function detail(Request $requestProduct $Product)
  195.     {
  196.         if (!$this->checkVisibility($Product)) {
  197.             throw new NotFoundHttpException();
  198.         }
  199.         $builder $this->formFactory->createNamedBuilder(
  200.             '',
  201.             AddCartType::class,
  202.             null,
  203.             [
  204.                 'product' => $Product,
  205.                 'id_add_product_id' => false,
  206.             ]
  207.         );
  208.         $event = new EventArgs(
  209.             [
  210.                 'builder' => $builder,
  211.                 'Product' => $Product,
  212.             ],
  213.             $request
  214.         );
  215.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_DETAIL_INITIALIZE);
  216.         $is_favorite false;
  217.         if ($this->isGranted('ROLE_USER')) {
  218.             $Customer $this->getUser();
  219.             $is_favorite $this->customerFavoriteProductRepository->isFavorite($Customer$Product);
  220.         }
  221.         $breadcrumbs = [
  222.             ['name' => 'ホーム''url' => $this->generateUrl('homepage')],
  223.             ['name' => '商品一覧''url' => $this->generateUrl('product_list')],
  224.             ['name' => $Product->getName(), 'url' => ''], 
  225.         ];
  226.         
  227.         return [
  228.             'title' => $this->title,
  229.             'subtitle' => $Product->getName(),
  230.             'form' => $builder->getForm()->createView(),
  231.             'Product' => $Product,
  232.             'is_favorite' => $is_favorite,
  233.             'breadcrumbs' => $breadcrumbs,
  234.         ];
  235.     }
  236.     /**
  237.      * お気に入り追加.
  238.      *
  239.      * @Route("/products/add_favorite/{id}", name="product_add_favorite", requirements={"id" = "\d+"}, methods={"GET", "POST"})
  240.      */
  241.     public function addFavorite(Request $requestProduct $Product)
  242.     {
  243.         $this->checkVisibility($Product);
  244.         $event = new EventArgs(
  245.             [
  246.                 'Product' => $Product,
  247.             ],
  248.             $request
  249.         );
  250.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_FAVORITE_ADD_INITIALIZE);
  251.         if ($this->isGranted('ROLE_USER')) {
  252.             $Customer $this->getUser();
  253.             $this->customerFavoriteProductRepository->addFavorite($Customer$Product);
  254.             $this->session->getFlashBag()->set('product_detail.just_added_favorite'$Product->getId());
  255.             $event = new EventArgs(
  256.                 [
  257.                     'Product' => $Product,
  258.                 ],
  259.                 $request
  260.             );
  261.             $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_FAVORITE_ADD_COMPLETE);
  262.             return $this->redirectToRoute('product_detail', ['id' => $Product->getId()]);
  263.         } else {
  264.             // 非会員の場合、ログイン画面を表示
  265.             //  ログイン後の画面遷移先を設定
  266.             $this->setLoginTargetPath($this->generateUrl('product_add_favorite', ['id' => $Product->getId()], UrlGeneratorInterface::ABSOLUTE_URL));
  267.             $this->session->getFlashBag()->set('eccube.add.favorite'true);
  268.             $event = new EventArgs(
  269.                 [
  270.                     'Product' => $Product,
  271.                 ],
  272.                 $request
  273.             );
  274.             $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_FAVORITE_ADD_COMPLETE);
  275.             return $this->redirectToRoute('mypage_login');
  276.         }
  277.     }
  278.     /**
  279.      * カートに追加.
  280.      *
  281.      * @Route("/products/add_cart/{id}", name="product_add_cart", methods={"POST"}, requirements={"id" = "\d+"})
  282.      */
  283.     public function addCart(Request $requestProduct $Product)
  284.     {
  285.         // エラーメッセージの配列
  286.         $errorMessages = [];
  287.         if (!$this->checkVisibility($Product)) {
  288.             throw new NotFoundHttpException();
  289.         }
  290.         $builder $this->formFactory->createNamedBuilder(
  291.             '',
  292.             AddCartType::class,
  293.             null,
  294.             [
  295.                 'product' => $Product,
  296.                 'id_add_product_id' => false,
  297.             ]
  298.         );
  299.         $event = new EventArgs(
  300.             [
  301.                 'builder' => $builder,
  302.                 'Product' => $Product,
  303.             ],
  304.             $request
  305.         );
  306.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_CART_ADD_INITIALIZE);
  307.         /* @var $form \Symfony\Component\Form\FormInterface */
  308.         $form $builder->getForm();
  309.         $form->handleRequest($request);
  310.         if (!$form->isValid()) {
  311.             throw new NotFoundHttpException();
  312.         }
  313.         $addCartData $form->getData();
  314.         log_info(
  315.             'カート追加処理開始',
  316.             [
  317.                 'product_id' => $Product->getId(),
  318.                 'product_class_id' => $addCartData['product_class_id'],
  319.                 'quantity' => $addCartData['quantity'],
  320.             ]
  321.         );
  322.         // カートへ追加
  323.         $this->cartService->addProduct($addCartData['product_class_id'], $addCartData['quantity']);
  324.         // 明細の正規化
  325.         $Carts $this->cartService->getCarts();
  326.         foreach ($Carts as $Cart) {
  327.             $result $this->purchaseFlow->validate($Cart, new PurchaseContext($Cart$this->getUser()));
  328.             // 復旧不可のエラーが発生した場合は追加した明細を削除.
  329.             if ($result->hasError()) {
  330.                 $this->cartService->removeProduct($addCartData['product_class_id']);
  331.                 foreach ($result->getErrors() as $error) {
  332.                     $errorMessages[] = $error->getMessage();
  333.                 }
  334.             }
  335.             foreach ($result->getWarning() as $warning) {
  336.                 $errorMessages[] = $warning->getMessage();
  337.             }
  338.         }
  339.         $this->cartService->save();
  340.         log_info(
  341.             'カート追加処理完了',
  342.             [
  343.                 'product_id' => $Product->getId(),
  344.                 'product_class_id' => $addCartData['product_class_id'],
  345.                 'quantity' => $addCartData['quantity'],
  346.             ]
  347.         );
  348.         $event = new EventArgs(
  349.             [
  350.                 'form' => $form,
  351.                 'Product' => $Product,
  352.             ],
  353.             $request
  354.         );
  355.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_CART_ADD_COMPLETE);
  356.         if ($event->getResponse() !== null) {
  357.             return $event->getResponse();
  358.         }
  359.         if ($request->isXmlHttpRequest()) {
  360.             // ajaxでのリクエストの場合は結果をjson形式で返す。
  361.             // 初期化
  362.             $messages = [];
  363.             if (empty($errorMessages)) {
  364.                 // エラーが発生していない場合
  365.                 $done true;
  366.                 array_push($messagestrans('front.product.add_cart_complete'));
  367.             } else {
  368.                 // エラーが発生している場合
  369.                 $done false;
  370.                 $messages $errorMessages;
  371.             }
  372.             return $this->json(['done' => $done'messages' => $messages]);
  373.         } else {
  374.             // ajax以外でのリクエストの場合はカート画面へリダイレクト
  375.             foreach ($errorMessages as $errorMessage) {
  376.                 $this->addRequestError($errorMessage);
  377.             }
  378.             return $this->redirectToRoute('cart');
  379.         }
  380.     }
  381.     /**
  382.      * ページタイトルの設定
  383.      *
  384.      * @param  array|null $searchData
  385.      *
  386.      * @return str
  387.      */
  388.     protected function getPageTitle($searchData)
  389.     {
  390.         if (isset($searchData['name']) && !empty($searchData['name'])) {
  391.             return trans('front.product.search_result');
  392.         } elseif (isset($searchData['category_id']) && $searchData['category_id']) {
  393.             return $searchData['category_id']->getName();
  394.         } else {
  395.             return trans('front.product.all_products');
  396.         }
  397.     }
  398.     /**
  399.      * 閲覧可能な商品かどうかを判定
  400.      *
  401.      * @param Product $Product
  402.      *
  403.      * @return boolean 閲覧可能な場合はtrue
  404.      */
  405.     protected function checkVisibility(Product $Product)
  406.     {
  407.         $is_admin $this->session->has('_security_admin');
  408.         // 管理ユーザの場合はステータスやオプションにかかわらず閲覧可能.
  409.         if (!$is_admin) {
  410.             // 在庫なし商品の非表示オプションが有効な場合.
  411.             // if ($this->BaseInfo->isOptionNostockHidden()) {
  412.             //     if (!$Product->getStockFind()) {
  413.             //         return false;
  414.             //     }
  415.             // }
  416.             // 公開ステータスでない商品は表示しない.
  417.             if ($Product->getStatus()->getId() !== ProductStatus::DISPLAY_SHOW) {
  418.                 return false;
  419.             }
  420.         }
  421.         return true;
  422.     }
  423. }