<?php
/*
* This file is part of EC-CUBE
*
* Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
*
* http://www.ec-cube.co.jp/
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Customize\Controller;
use Eccube\Entity\BaseInfo;
use Eccube\Entity\Master\ProductStatus;
use Eccube\Entity\Product;
use Eccube\Event\EccubeEvents;
use Eccube\Event\EventArgs;
use Eccube\Form\Type\AddCartType;
use Eccube\Form\Type\SearchProductType;
use Eccube\Repository\BaseInfoRepository;
use Eccube\Repository\CustomerFavoriteProductRepository;
use Eccube\Repository\Master\ProductListMaxRepository;
use Eccube\Repository\ProductRepository;
use Eccube\Service\CartService;
use Eccube\Service\PurchaseFlow\PurchaseContext;
use Eccube\Service\PurchaseFlow\PurchaseFlow;
use Knp\Bundle\PaginatorBundle\Pagination\SlidingPagination;
use Knp\Component\Pager\PaginatorInterface;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
use Symfony\Component\HttpFoundation\Response;
use Eccube\Controller\AbstractController;
use Symfony\Component\Form\Extension\Core\Type\CollectionType;
use Customize\Repository\CustomProductClassRepository;
use Customize\Repository\CustomProductRepository;
class CustomProductController extends AbstractController
{
/**
* @var PurchaseFlow
*/
protected $purchaseFlow;
/**
* @var CustomerFavoriteProductRepository
*/
protected $customerFavoriteProductRepository;
/**
* @var CartService
*/
protected $cartService;
/**
* @var ProductRepository
*/
protected $productRepository;
/**
* @var BaseInfo
*/
protected $BaseInfo;
/**
* @var AuthenticationUtils
*/
protected $helper;
/**
* @var ProductListMaxRepository
*/
protected $productListMaxRepository;
/**
* @var ProductClassRepository
*/
protected $customProductClassRepository;
/**
* @var CustomProductRepository
*/
protected $customProductRepository;
private $title = '';
/**
* ProductController constructor.
*
* @param PurchaseFlow $cartPurchaseFlow
* @param CustomerFavoriteProductRepository $customerFavoriteProductRepository
* @param CartService $cartService
* @param ProductRepository $productRepository
* @param BaseInfoRepository $baseInfoRepository
* @param AuthenticationUtils $helper
* @param ProductListMaxRepository $productListMaxRepository
* @param CustomProductClassRepository $customProductClassRepository
* @param CustomProductRepository $customProductRepository
*/
public function __construct(
PurchaseFlow $cartPurchaseFlow,
CustomerFavoriteProductRepository $customerFavoriteProductRepository,
CartService $cartService,
ProductRepository $productRepository,
BaseInfoRepository $baseInfoRepository,
AuthenticationUtils $helper,
ProductListMaxRepository $productListMaxRepository,
CustomProductClassRepository $customProductClassRepository,
CustomProductRepository $customProductRepository
) {
$this->purchaseFlow = $cartPurchaseFlow;
$this->customerFavoriteProductRepository = $customerFavoriteProductRepository;
$this->cartService = $cartService;
$this->productRepository = $productRepository;
$this->BaseInfo = $baseInfoRepository->get();
$this->helper = $helper;
$this->productListMaxRepository = $productListMaxRepository;
$this->customProductClassRepository = $customProductClassRepository;
$this->customProductRepository = $customProductRepository;
}
/**
* 商品一覧画面.
*
* @Route("/products/list", name="product_list", methods={"GET"})
* @Template("Product/list.twig")
*/
public function index(Request $request, PaginatorInterface $paginator)
{
// Doctrine SQLFilter
if ($this->BaseInfo->isOptionNostockHidden()) {
$this->entityManager->getFilters()->enable('option_nostock_hidden');
}
// handleRequestは空のqueryの場合は無視するため
if ($request->getMethod() === 'GET') {
$request->query->set('pageno', $request->query->get('pageno', ''));
}
// searchForm
/* @var $builder \Symfony\Component\Form\FormBuilderInterface */
$builder = $this->formFactory->createNamedBuilder('', SearchProductType::class);
if ($request->getMethod() === 'GET') {
$builder->setMethod('GET');
}
$event = new EventArgs(
[
'builder' => $builder,
],
$request
);
$this->eventDispatcher->dispatch($event, EccubeEvents::FRONT_PRODUCT_INDEX_INITIALIZE);
/* @var $searchForm \Symfony\Component\Form\FormInterface */
$searchForm = $builder->getForm();
$searchForm->handleRequest($request);
// paginator
$searchData = $searchForm->getData();
// customGetQueryBuilderBySearchData を使う
$qb = $this->customProductRepository->customGetQueryBuilderBySearchData($searchData);;
$event = new EventArgs(
[
'searchData' => $searchData,
'qb' => $qb,
],
$request
);
$this->eventDispatcher->dispatch($event, EccubeEvents::FRONT_PRODUCT_INDEX_SEARCH);
$searchData = $event->getArgument('searchData');
$query = $qb->getQuery()
->useResultCache(true, $this->eccubeConfig['eccube_result_cache_lifetime_short']);
/** @var SlidingPagination $pagination */
$pagination = $paginator->paginate(
$query,
!empty($searchData['pageno']) ? $searchData['pageno'] : 1,
!empty($searchData['disp_number']) ? $searchData['disp_number']->getId() : $this->productListMaxRepository->findOneBy([], ['sort_no' => 'ASC'])->getId()
);
$ids = [];
foreach ($pagination as $Product) {
$ids[] = $Product->getId();
}
$ProductsAndClassCategories = $this->productRepository->findProductsWithSortedClassCategories($ids, 'p.id');
// addCart form
$forms = [];
foreach ($pagination as $Product) {
/* @var $builder \Symfony\Component\Form\FormBuilderInterface */
$builder = $this->formFactory->createNamedBuilder(
'',
AddCartType::class,
null,
[
'product' => $ProductsAndClassCategories[$Product->getId()],
'allow_extra_fields' => true,
]
);
$addCartForm = $builder->getForm();
$forms[$Product->getId()] = $addCartForm->createView();
}
$Category = $searchForm->get('category_id')->getData();
return [
'subtitle' => $this->getPageTitle($searchData),
'pagination' => $pagination,
'search_form' => $searchForm->createView(),
'forms' => $forms,
'Category' => $Category,
];
}
/**
* 商品詳細画面.
*
* @Route("/products/detail/{id}", name="product_detail", methods={"GET"}, requirements={"id" = "\d+"})
* @Template("Product/detail.twig")
* @ParamConverter("Product", options={"repository_method" = "findWithSortedClassCategories"})
*
* @param Request $request
* @param Product $Product
*
* @return array
*/
public function detail(Request $request, Product $Product)
{
if (!$this->checkVisibility($Product)) {
throw new NotFoundHttpException();
}
/*
$builder = $this->formFactory->createNamedBuilder(
'',
AddCartType::class,
null,
[
'product' => $Product,
'id_add_product_id' => false,
]
);
*/
$builder = $this->formFactory->createBuilder( );
$builder
->add(
'data',
CollectionType::class,
[
'entry_type' => AddCartType::class,
'entry_options' => [
'product' => $Product,
'id_add_product_id' => false,
'attr' => ['class' => 'oneclass'],
],
'allow_add' => true,
'allow_delete' => true,
'label' => '',
]
);
$event = new EventArgs(
[
'builder' => $builder,
'Product' => $Product,
],
$request
);
$this->eventDispatcher->dispatch($event, EccubeEvents::FRONT_PRODUCT_DETAIL_INITIALIZE);
$is_favorite = false;
if ($this->isGranted('ROLE_USER')) {
$Customer = $this->getUser();
$is_favorite = $this->customerFavoriteProductRepository->isFavorite($Customer, $Product);
}
return [
'title' => $this->title,
'subtitle' => $Product->getName(),
'form' => $builder->getForm()->createView(),
'Product' => $Product,
'is_favorite' => $is_favorite,
];
}
/**
* カートに追加.(複数の場合あり)
*
* @Route("/products/addmulti_cart/{id}", name="product_addmulti_cart", methods={"POST"}, requirements={"id" = "\d+"})
*/
public function addmultiCart(Request $request, Product $Product)
{
// エラーメッセージの配列
$errorMessages = [];
if (!$this->checkVisibility($Product)) {
throw new NotFoundHttpException();
}
/*
$builder = $this->formFactory->createNamedBuilder(
'',
AddCartType::class,
null,
[
'product' => $Product,
'id_add_product_id' => false,
]
);
*/
$builder = $this->formFactory->createBuilder( );
$builder
->add(
'data',
CollectionType::class,
[
'entry_type' => AddCartType::class,
'entry_options' => [
'product' => $Product,
'id_add_product_id' => false,
'attr' => ['class' => 'oneclass'],
],
'allow_add' => true,
'allow_delete' => true,
'label' => '',
]
);
$event = new EventArgs(
[
'builder' => $builder,
'Product' => $Product,
],
$request
);
$this->eventDispatcher->dispatch($event, EccubeEvents::FRONT_PRODUCT_CART_ADD_INITIALIZE);
/* @var $form \Symfony\Component\Form\FormInterface */
$form = $builder->getForm();
$form->handleRequest($request);
$addCartData = $request->get('form');
//$addCartData = $form->getData();
$type = $request->query->get('type');
if($addCartData) {
$added_product_class_id = array(); // 元に戻すときのためにカートに追加した商品を覚えておく
foreach ( $addCartData['data'] as $index => $oneItem ) {
switch ($index) {
case 0:
if($type == "left" || $type == "set") {
// 結婚指輪の場合
$classcategory2 = NULL;
if (array_key_exists('classcategory_id2', $oneItem)) {
$classcategory2 = (int)$oneItem['classcategory_id2'];
}
$ProductClasses = $this->customProductClassRepository->findByCategoryIds($Product, (int)$oneItem['classcategory_id1'], $classcategory2);
foreach ($ProductClasses as $ProductClass) {
$oneItem['product_class_id'] = $ProductClass->getId();
$product_class = $ProductClass;
}
// サイズによる割増料金の追加
$size_price = $this->calcSizePriceMarriageRing($oneItem['size']);
log_info(
'カート追加処理開始',
[
'product_id' => $Product->getId(),
'product_class_id' => $oneItem['product_class_id'],
'quantity' => $oneItem['quantity'],
]
);
//$this->cartService->addProduct($oneItem['product_class_id'], $oneItem['quantity']);
$this->cartService->addCartItem($product_class, $oneItem['quantity'], [
'size' => $oneItem['size'],
'size_price' => $size_price,
]);
$added_product_class_id[] = $oneItem['product_class_id'];
} elseif($type == "no_type") {
// 婚約指輪の場合
$classcategory1 = NULL;
$classcategory2 = NULL;
if (array_key_exists('classcategory_id1', $oneItem)) {
$classcategory1 = (int)$oneItem['classcategory_id1'];
}
if (array_key_exists('classcategory_id2', $oneItem)) {
$classcategory2 = (int)$oneItem['classcategory_id2'];
}
$ProductClasses = $this->customProductClassRepository->findByCategoryIds($Product, $classcategory1, $classcategory2);
foreach ($ProductClasses as $ProductClass) {
$oneItem['product_class_id'] = $ProductClass->getId();
$product_class = $ProductClass;
}
// サイズによる割増料金の追加
$size_price = 0;
if ($oneItem['product_id'] == 110 || $oneItem['product_id'] == 112) {
$size_price = $this->calcSizePriceEngagementRing($oneItem['size']);
}
log_info(
'カート追加処理開始',
[
'product_id' => $Product->getId(),
'product_class_id' => $oneItem['product_class_id'],
'quantity' => $oneItem['quantity'],
]
);
//$this->cartService->addProduct($oneItem['product_class_id'], $oneItem['quantity']);
$this->cartService->addCartItem($product_class, $oneItem['quantity'], [
'size' => $oneItem['size'],
'size_price' => $size_price,
]);
$added_product_class_id[] = $oneItem['product_class_id'];
}
break;
case 1:
if($type == "right" || $type == "set") {
$classcategory2 = NULL;
if (array_key_exists('classcategory_id2', $oneItem)) {
$classcategory2 = (int)$oneItem['classcategory_id2'];
}
$ProductClasses = $this->customProductClassRepository->findByCategoryIds($Product, (int)$oneItem['classcategory_id1'], $classcategory2);
foreach ($ProductClasses as $ProductClass) {
$oneItem['product_class_id'] = $ProductClass->getId();
$product_class = $ProductClass;
}
// サイズによる割増料金の追加
$size_price = $this->calcSizePriceMarriageRing($oneItem['size']);
log_info(
'カート追加処理開始',
[
'product_id' => $Product->getId(),
'product_class_id' => $oneItem['product_class_id'],
'quantity' => $oneItem['quantity'],
]
);
//$this->cartService->addProduct($oneItem['product_class_id'], $oneItem['quantity']);
$this->cartService->addCartItem($product_class, $oneItem['quantity'], [
'size' => $oneItem['size'],
'size_price' => $size_price,
]);
$added_product_class_id[] = $oneItem['product_class_id'];
}
break;
default:
}
}
}
// 明細の正規化
$Carts = $this->cartService->getCarts();
foreach ($Carts as $Cart) {
$result = $this->purchaseFlow->validate($Cart, new PurchaseContext($Cart, $this->getUser()));
// 復旧不可のエラーが発生した場合は追加した明細を削除.
if ($result->hasError()) {
foreach ($added_product_class_id as $added_pcid) {
$this->cartService->removeProduct($added_pcid);
}
//$this->cartService->removeProduct($addCartData['product_class_id']);
foreach ($result->getErrors() as $error) {
$errorMessages[] = $error->getMessage();
}
}
foreach ($result->getWarning() as $warning) {
$errorMessages[] = $warning->getMessage();
}
}
$this->cartService->save();
log_info(
'カート追加処理完了',
[
'product_id' => $Product->getId(),
]
);
$event = new EventArgs(
[
'form' => $form,
'Product' => $Product,
],
$request
);
$this->eventDispatcher->dispatch($event, EccubeEvents::FRONT_PRODUCT_CART_ADD_COMPLETE);
if ($event->getResponse() !== null) {
return $event->getResponse();
}
if ($request->isXmlHttpRequest()) {
// ajaxでのリクエストの場合は結果をjson形式で返す。
// 初期化
$messages = [];
if (empty($errorMessages)) {
// エラーが発生していない場合
$done = true;
array_push($messages, trans('front.product.add_cart_complete'));
} else {
// エラーが発生している場合
$done = false;
$messages = $errorMessages;
}
return $this->json(['done' => $done, 'messages' => $messages]);
} else {
// ajax以外でのリクエストの場合はカート画面へリダイレクト
foreach ($errorMessages as $errorMessage) {
$this->addRequestError($errorMessage);
}
return $this->redirectToRoute('cart');
}
}
/**
* 結婚指輪のサイズによる割増料金(税込)を算出する
*
* @param float $size
*
* @return int
*/
protected function calcSizePriceMarriageRing(float $size)
{
$add_price = 0;
if ($size) {
if ($size >= 16.5) {
// 割り増し料金
$add_price = 22000;
} elseif ($size >= 12.5) {
// 割り増し料金
$add_price = 11000;
}
}
return($add_price);
}
/**
* 婚約指輪のサイズによる割増料金(税込)を算出する
* 商品ID 110,112 の商品のみ
*
* @param int $size
*
* @return int
*/
protected function calcSizePriceEngagementRing(float $size)
{
$add_price = 0;
if ($size) {
if ($size >= 16) {
// 割り増し料金 2025.06 価格改定16500→22000
$add_price = 22000;
}
}
return($add_price);
}
/**
* 閲覧可能な商品かどうかを判定
*
* @param Product $Product
*
* @return boolean 閲覧可能な場合はtrue
*/
protected function checkVisibility(Product $Product)
{
$is_admin = $this->session->has('_security_admin');
// 管理ユーザの場合はステータスやオプションにかかわらず閲覧可能.
if (!$is_admin) {
// 在庫なし商品の非表示オプションが有効な場合.
// if ($this->BaseInfo->isOptionNostockHidden()) {
// if (!$Product->getStockFind()) {
// return false;
// }
// }
// 公開ステータスでない商品は表示しない.
if ($Product->getStatus()->getId() !== ProductStatus::DISPLAY_SHOW) {
return false;
}
}
return true;
}
/**
* ページタイトルの設定
*
* @param array|null $searchData
*
* @return str
*/
protected function getPageTitle($searchData)
{
if (isset($searchData['name']) && !empty($searchData['name'])) {
return trans('front.product.search_result');
} elseif (isset($searchData['category_id']) && $searchData['category_id']) {
return $searchData['category_id']->getName();
} else {
return trans('front.product.all_products');
}
}
}