<?php
namespace Customize\Controller;
use Doctrine\ORM\EntityManagerInterface;
use Customize\Repository\BlogRepository;
use Eccube\Repository\PageRepository;
use Symfony\Component\HttpFoundation\Response;
use Eccube\Controller\AbstractController;
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 Customize\Form\Type\SearchProductType;
use Eccube\Repository\BaseInfoRepository;
use Eccube\Repository\CustomerFavoriteProductRepository;
use Eccube\Repository\Master\ProductListMaxRepository;
use Eccube\Repository\ProductRepository;
use Eccube\Repository\CategoryRepository;
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;
class ConstructionController extends AbstractController
{
/**
* @var PurchaseFlow
*/
protected $purchaseFlow;
/**
* @var CustomerFavoriteProductRepository
*/
protected $customerFavoriteProductRepository;
/**
* @var CartService
*/
protected $cartService;
/**
* @var ProductRepository
*/
protected $productRepository;
protected $categoryRepository;
/**
* @var BaseInfo
*/
protected $BaseInfo;
/**
* @var AuthenticationUtils
*/
protected $helper;
/**
* @var ProductListMaxRepository
*/
protected $productListMaxRepository;
private $title = '';
/**
* ProductController constructor.
*
* @param PurchaseFlow $cartPurchaseFlow
* @param CustomerFavoriteProductRepository $customerFavoriteProductRepository
* @param CartService $cartService
* @param ProductRepository $productRepository
* @param ProductRepository $categoryRepository
* @param BaseInfoRepository $baseInfoRepository
* @param AuthenticationUtils $helper
* @param ProductListMaxRepository $productListMaxRepository
*/
public function __construct(
PurchaseFlow $cartPurchaseFlow,
CustomerFavoriteProductRepository $customerFavoriteProductRepository,
CartService $cartService,
ProductRepository $productRepository,
CategoryRepository $categoryRepository,
BaseInfoRepository $baseInfoRepository,
AuthenticationUtils $helper,
ProductListMaxRepository $productListMaxRepository
) {
$this->purchaseFlow = $cartPurchaseFlow;
$this->customerFavoriteProductRepository = $customerFavoriteProductRepository;
$this->cartService = $cartService;
$this->productRepository = $productRepository;
$this->categoryRepository = $categoryRepository;
$this->BaseInfo = $baseInfoRepository->get();
$this->helper = $helper;
$this->productListMaxRepository = $productListMaxRepository;
}
/**
* カートから工事入力
*
* @Route("/construction/", name="construction")
* @Template("@user_data/construction.twig")
*
* @param Request $request
*
* @return array
*/
public function construction(Request $request)
{
return $this->getData();
}
/**
* 工事のみ
*
* @Route("/construction_only/", name="construction_only")
* @Template("@user_data/construction_only.twig")
*
* @param Request $request
*
* @return array
*/
public function construction_only(Request $request)
{
return $this->getData();
}
/**
* getData
*/
private function getData() {
// 工事費用の商品
if ($_SERVER['APP_ENV'] == 'prod') {
$Product = $this->productRepository->find(1289);
}
else {
$Product = $this->productRepository->find(1289);
}
// カートデータ取得
$constructionItem = null;
$productTotalPrice = 0;
$productLoanPrice = 0;
$listCatProduct = [];
$checkCategory = 0;
$tatamis = array();
$Carts = $this->cartService->getCarts();
foreach ($Carts as $Cart) {
foreach ($Cart->getCartItems() as $CartItem) {
$product = $CartItem->getProductClass()->getProduct();
$categories = $product->getProductCategories();
foreach ($categories as $category) {
$listCatProduct[$product->getId()] = $category->getCategory()->getId();
if( $category->getCategory()->getId() == 118) {
$checkCategory = 1;
$productLoanPrice += ($CartItem->getPrice() * $CartItem->getQuantity());
}
}
if ($CartItem->getProductClass()->getProduct()->getId() == $Product->getId()) {
$constructionItem = $CartItem;
}
else {
$productTotalPrice += ($CartItem->getPrice() * $CartItem->getQuantity());
}
}
}
$builder = $this->formFactory->createNamedBuilder(
'',
AddCartType::class,
$constructionItem,
[
'product' => $Product,
'id_add_product_id' => false,
]
);
return [
'title' => $this->title,
'subtitle' => $Product->getName(),
'form' => $builder->getForm()->createView(),
'Product' => $Product,
'Carts' => $Carts,
'productTotalPrice' => $productTotalPrice,
'productLoanPrice' => $productLoanPrice,
'checkCategory' => $checkCategory,
'listCatProduct' => $listCatProduct,
];
}
}