app/Customize/Controller/LoanController.php line 219

Open in your IDE?
  1. <?php
  2. namespace Customize\Controller;
  3. use Eccube\Controller\AbstractController;
  4. use Eccube\Entity\Customer;
  5. use Eccube\Event\EccubeEvents;
  6. use Eccube\Event\EventArgs;
  7. use Customize\Form\Type\Front\LoanType;
  8. use Eccube\Repository\PageRepository;
  9. use Eccube\Service\MailService;
  10. use Eccube\Entity\BaseInfo;
  11. use Eccube\Entity\Master\ProductStatus;
  12. use Eccube\Entity\Product;
  13. use Eccube\Form\Type\AddCartType;
  14. use Customize\Form\Type\SearchProductType;
  15. use Eccube\Repository\BaseInfoRepository;
  16. use Eccube\Repository\CustomerFavoriteProductRepository;
  17. use Eccube\Repository\Master\ProductListMaxRepository;
  18. use Eccube\Repository\ProductRepository;
  19. use Eccube\Repository\CategoryRepository;
  20. use Eccube\Service\CartService;
  21. use Eccube\Service\PurchaseFlow\PurchaseContext;
  22. use Eccube\Service\PurchaseFlow\PurchaseFlow;
  23. use Knp\Bundle\PaginatorBundle\Pagination\SlidingPagination;
  24. use Knp\Component\Pager\PaginatorInterface;
  25. use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
  26. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  27. use Symfony\Component\HttpFoundation\Request;
  28. use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
  29. use Symfony\Component\Routing\Annotation\Route;
  30. use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
  31. use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
  32. class LoanController extends AbstractController
  33. {
  34.     /**
  35.      * @var PurchaseFlow
  36.      */
  37.     protected $purchaseFlow;
  38.     /**
  39.      * @var CustomerFavoriteProductRepository
  40.      */
  41.     protected $customerFavoriteProductRepository;
  42.     /**
  43.      * @var CartService
  44.      */
  45.     protected $cartService;
  46.     /**
  47.      * @var ProductRepository
  48.      */
  49.     protected $productRepository;
  50.     protected $categoryRepository;
  51.     /**
  52.      * @var BaseInfo
  53.      */
  54.     protected $BaseInfo;
  55.     /**
  56.      * @var AuthenticationUtils
  57.      */
  58.     protected $helper;
  59.     /**
  60.      * @var ProductListMaxRepository
  61.      */
  62.     protected $productListMaxRepository;
  63.     /**
  64.      * @var MailService
  65.      */
  66.     protected $mailService;
  67.     /**
  68.      * @var PageRepository
  69.      */
  70.     private $pageRepository;
  71.     /**
  72.      * LoanController constructor.
  73.      *
  74.      * @param MailService $mailService
  75.      * @param PageRepository $pageRepository
  76.      */
  77.     public function __construct(
  78.         PurchaseFlow $cartPurchaseFlow,
  79.         CustomerFavoriteProductRepository $customerFavoriteProductRepository,
  80.         CartService $cartService,
  81.         ProductRepository $productRepository,
  82.         CategoryRepository $categoryRepository,
  83.         BaseInfoRepository $baseInfoRepository,
  84.         AuthenticationUtils $helper,
  85.         ProductListMaxRepository $productListMaxRepository,
  86.         MailService $mailService,
  87.         PageRepository $pageRepository)
  88.     {
  89.         $this->purchaseFlow $cartPurchaseFlow;
  90.         $this->customerFavoriteProductRepository $customerFavoriteProductRepository;
  91.         $this->cartService $cartService;
  92.         $this->productRepository $productRepository;
  93.         $this->categoryRepository $categoryRepository;
  94.         $this->BaseInfo $baseInfoRepository->get();
  95.         $this->helper $helper;
  96.         $this->productListMaxRepository $productListMaxRepository;
  97.         $this->mailService $mailService;
  98.         $this->pageRepository $pageRepository;
  99.     }
  100.     /**
  101.      * エアココ自社ローンについて
  102.      *
  103.      * @Route("/loan", name="loan", methods={"GET"})
  104.      * @Template("@user_data/loan.twig")
  105.      */
  106.     public function index(Request $requestPaginatorInterface $paginator
  107.     {
  108.         // Doctrine SQLFilter
  109.         if ($this->BaseInfo->isOptionNostockHidden()) {
  110.             $this->entityManager->getFilters()->enable('option_nostock_hidden');
  111.         }
  112.         // handleRequestは空のqueryの場合は無視するため
  113.         if ($request->getMethod() === 'GET') {
  114.             $request->query->set('pageno'$request->query->get('pageno'''));
  115.         }
  116.         // searchForm
  117.         /* @var $builder \Symfony\Component\Form\FormBuilderInterface */
  118.         $builder $this->formFactory->createNamedBuilder(''SearchProductType::class);
  119.         if ($request->getMethod() === 'GET') {
  120.             $builder->setMethod('GET');
  121.         }
  122.         $event = new EventArgs(
  123.             [
  124.                 'builder' => $builder,
  125.             ],
  126.             $request
  127.         );
  128.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_PRODUCT_INDEX_INITIALIZE);
  129.         /* @var $searchForm \Symfony\Component\Form\FormInterface */
  130.         $searchForm $builder->getForm();
  131.         $searchForm->handleRequest($request);
  132.         // paginator
  133.         $searchData $searchForm->getData();
  134.         $searchData['category_id'] = $this->categoryRepository->find(118); //自社ローンの商品
  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.             10000 //ページの処理が不要
  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.         return [
  176.             'pagination' => $pagination,
  177.             'search_form' => $searchForm->createView(),
  178.             'forms' => $forms,
  179.             'Category' => $Category,
  180.             'Customer' => $this->isGranted('ROLE_USER') ? $this->getUser() : null,
  181.         ];
  182.     }
  183.     /**
  184.      * エアココ自社ローン審査フォーム 
  185.      *
  186.      * @Route("/loan_examination", name="loan_examination", methods={"GET", "POST"})
  187.      * @Route("/loan_examination", name="loan_examination_confirm", methods={"GET", "POST"})
  188.      * @Template("@user_data/loan_examination.twig")
  189.      */
  190.     public function loan_examination(Request $request)
  191.     {
  192.         $builder $this->formFactory->createBuilder(LoanType::class);
  193.         if ($this->isGranted('ROLE_USER')) {
  194.             /** @var Customer $user */
  195.             $user $this->getUser();
  196.             $builder->setData(
  197.                 [
  198.                     'name01' => $user->getName01(),
  199.                     'name02' => $user->getName02(),
  200.                     'kana01' => $user->getKana01(),
  201.                     'kana02' => $user->getKana02(),
  202.                     'postal_code' => $user->getPostalCode(),
  203.                     'pref' => $user->getPref(),
  204.                     'addr01' => $user->getAddr01(),
  205.                     'addr02' => $user->getAddr02(),
  206.                     'phone_number' => $user->getPhoneNumber(),
  207.                     // 'email' => $user->getEmail(),
  208.                 ]
  209.             );
  210.         }
  211.         $form $builder->getForm();
  212.         $form->handleRequest($request);
  213.         // if ($form->isSubmitted() && $form->isValid()) {
  214.         if ($form->isSubmitted()) {
  215.             switch ($request->get('mode')) {
  216.                 case 'confirm':
  217.                     return $this->render('@user_data/loan_examination_confirm.twig', [
  218.                         'form' => $form->createView(),
  219.                         'Page' => $this->pageRepository->getPageByRoute('loan_examination_confirm'),
  220.                     ]);
  221.                 case 'complete':
  222.                     $data $form->getData();
  223.                     // メール送信
  224.                     $this->mailService->sendLoanMail($data);
  225.                     return $this->redirect($this->generateUrl('loan_examination_complete'));
  226.             }
  227.         }
  228.         return [
  229.             'form' => $form->createView(),
  230.             'productTotalPrice' => 0,
  231.             'countProductBasic' => 0
  232.             'checkCategory' => 1,
  233.         ];
  234.     }
  235.     /**
  236.      * エアココ自社ローン審査フォーム完了
  237.      *
  238.      * @Route("/loan_examination_complete", name="loan_examination_complete", methods={"GET"})
  239.      * @Template("@user_data/loan_examination_complete.twig")
  240.      */
  241.     public function loan_examination_complete(Request $request
  242.     {
  243.         return [];
  244.     }
  245. }