app/Customize/Controller/EntryController.php line 85

Open in your IDE?
  1. <?php
  2. namespace Customize\Controller;
  3. use Eccube\Controller\EntryController as ControllerEntryController;
  4. use Eccube\Entity\Customer;
  5. use Eccube\Event\EccubeEvents;
  6. use Eccube\Event\EventArgs;
  7. use Eccube\Form\Type\Front\EntryType;
  8. use Eccube\Repository\BaseInfoRepository;
  9. use Eccube\Repository\CustomerRepository;
  10. use Eccube\Repository\Master\CustomerStatusRepository;
  11. use Eccube\Service\CartService;
  12. use Eccube\Service\MailService;
  13. use Symfony\Component\HttpFoundation\File\UploadedFile;
  14. use Symfony\Component\HttpFoundation\Request;
  15. use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
  16. use Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface;
  17. use Symfony\Component\Validator\Validator\ValidatorInterface;
  18. use Eccube\Repository\PageRepository;
  19. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  20. use Symfony\Component\DependencyInjection\ContainerInterface;
  21. use Symfony\Component\Routing\Annotation\Route;
  22. use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
  23. class EntryController extends ControllerEntryController{
  24.     
  25.     /** @var string */
  26.     protected $customerImageDir;
  27.     /** @var string */
  28.     protected $licenseImageDir;
  29.     /** @var string */
  30.     protected $tempDir;
  31.     /**
  32.      * EntryController constructor.
  33.      * @param CartService $cartService
  34.      * @param CustomerStatusRepository $customerStatusRepository
  35.      * @param MailService $mailService
  36.      * @param BaseInfoRepository $baseInfoRepository
  37.      * @param CustomerRepository $customerRepository
  38.      * @param EncoderFactoryInterface $encoderFactory
  39.      * @param ValidatorInterface $validatorInterface
  40.      * @param TokenStorageInterface $tokenStorage
  41.      */
  42.     public function __construct(
  43.         CartService $cartService,
  44.         CustomerStatusRepository $customerStatusRepository,
  45.         MailService $mailService,
  46.         BaseInfoRepository $baseInfoRepository,
  47.         CustomerRepository $customerRepository,
  48.         EncoderFactoryInterface $encoderFactory,
  49.         ValidatorInterface $validatorInterface,
  50.         TokenStorageInterface $tokenStorage,
  51.         PageRepository $pageRepository,
  52.         ContainerInterface $container
  53.     ) {
  54.         parent::__construct(
  55.             $cartService,
  56.             $customerStatusRepository,
  57.             $mailService,
  58.             $baseInfoRepository,
  59.             $customerRepository,
  60.             $encoderFactory,
  61.             $validatorInterface,
  62.             $tokenStorage,
  63.             $pageRepository
  64.         );
  65.         $projectDir $container->getParameter('kernel.project_dir');
  66.         $this->customerImageDir $projectDir '/html/upload/customer_image';
  67.         $this->licenseImageDir $projectDir '/html/upload/license_image';
  68.         $this->tempDir $projectDir '/html/upload/temp_image';
  69.     }
  70.     
  71.     /**
  72.      * 会員登録画面.
  73.      *
  74.      * @Route("/entry", name="entry", methods={"GET", "POST"})
  75.      * @Route("/entry", name="entry_confirm", methods={"GET", "POST"})
  76.      * @Template("Entry/index.twig")
  77.      */
  78.     public function index(Request $request)
  79.     {
  80.         if ($this->isGranted('ROLE_USER')) {
  81.             log_info('認証済のためログイン処理をスキップ');
  82.             return $this->redirectToRoute('mypage');
  83.         }
  84.         /** @var Customer $Customer */
  85.         $Customer $this->customerRepository->newCustomer();
  86.         $builder $this->formFactory->createBuilder(EntryType::class, $Customer);
  87.         $event = new EventArgs(
  88.             [
  89.                 'builder' => $builder,
  90.                 'Customer' => $Customer,
  91.             ],
  92.             $request
  93.         );
  94.         $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_ENTRY_INDEX_INITIALIZE);
  95.         $form $builder->getForm();
  96.         $form->handleRequest($request);
  97.         
  98.         /* if($form->isSubmitted()){
  99.             if ($form->isValid()) {
  100.                 // 有効な場合の処理
  101.             } else {
  102.                 // エラーのダンプ
  103.                 $errors = $form->getErrors(true, true); // すべてのエラーを取得
  104.                 dd($errors); // エラー内容を確認
  105.             }
  106.         } */
  107.         if ($form->isSubmitted() && $form->isValid()) {
  108.             switch ($request->get('mode')) {
  109.                 case 'confirm':
  110.                     log_info('会員登録確認開始');
  111.                     // 写真の一時保存処理
  112.                     if($customerImage $form['customer_image']->getData()){
  113.                         if ($customerImage instanceof UploadedFile) {
  114.                             $fileName md5(uniqid()).'.'.$customerImage->getClientOriginalExtension();
  115.                             $customerImage->move($this->tempDir$fileName);
  116.                             $Customer->setCustomerImage($fileName);
  117.                             $this->session->set('eccube.front.customer.customer_image'$fileName);
  118.                         }
  119.                     }
  120.                     if($licenseImage $form['license_image']->getData()){
  121.                         if ($licenseImage instanceof UploadedFile) {
  122.                             $fileName md5(uniqid()).'.'.$licenseImage->getClientOriginalExtension();
  123.                             $licenseImage->move($this->tempDir$fileName);
  124.                             $Customer->setLicenseImage($fileName);
  125.                             $this->session->set('eccube.front.customer.license_image'$fileName);
  126.                         }
  127.                     }
  128.                     log_info('会員登録確認完了');
  129.                     return $this->render(
  130.                         'Entry/confirm.twig',
  131.                         [
  132.                             'form' => $form->createView(),
  133.                             'Page' => $this->pageRepository->getPageByRoute('entry_confirm'),
  134.                         ]
  135.                     );
  136.                 case 'complete':
  137.                     log_info('会員登録開始');
  138.                     $encoder $this->encoderFactory->getEncoder($Customer);
  139.                     $salt $encoder->createSalt();
  140.                     $password $encoder->encodePassword($Customer->getPlainPassword(), $salt);
  141.                     $secretKey $this->customerRepository->getUniqueSecretKey();
  142.                     $Customer
  143.                         ->setSalt($salt)
  144.                         ->setPassword($password)
  145.                         ->setSecretKey($secretKey)
  146.                         ->setPoint(0);
  147.                     // 写真の本保存処理
  148.                     if($customerImageName $this->session->get('eccube.front.customer.customer_image')){
  149.                         if ($customerImageName && file_exists($this->tempDir.'/'.$customerImageName)) {
  150.                             rename(
  151.                                 $this->tempDir.'/'.$customerImageName,
  152.                                 $this->customerImageDir.'/'.$customerImageName
  153.                             );
  154.                             $Customer->setCustomerImage($customerImageName);
  155.                         }
  156.                     }
  157.                     if($licenseImageName $this->session->get('eccube.front.customer.license_image')){
  158.                         if ($licenseImageName && file_exists($this->tempDir.'/'.$licenseImageName)) {
  159.                             rename(
  160.                                 $this->tempDir.'/'.$licenseImageName,
  161.                                 $this->licenseImageDir.'/'.$licenseImageName
  162.                             );
  163.                             $Customer->setLicenseImage($licenseImageName);
  164.                         }
  165.                     }
  166.                     $this->entityManager->persist($Customer);
  167.                     $this->entityManager->flush();
  168.                     log_info('会員登録完了');
  169.                     $event = new EventArgs(
  170.                         [
  171.                             'form' => $form,
  172.                             'Customer' => $Customer,
  173.                         ],
  174.                         $request
  175.                     );
  176.                     $this->eventDispatcher->dispatch($eventEccubeEvents::FRONT_ENTRY_INDEX_COMPLETE);
  177.                     $activateFlg $this->BaseInfo->isOptionCustomerActivate();
  178.                     if ($activateFlg) {
  179.                         $activateUrl $this->generateUrl('entry_activate', ['secret_key' => $Customer->getSecretKey()], UrlGeneratorInterface::ABSOLUTE_URL);
  180.                         $this->mailService->sendCustomerConfirmMail($Customer$activateUrl);
  181.                         if ($event->hasResponse()) {
  182.                             return $event->getResponse();
  183.                         }
  184.                         log_info('仮会員登録完了画面へリダイレクト');
  185.                         return $this->redirectToRoute('entry_complete');
  186.                     } else {
  187.                         $qtyInCart $this->entryActivate($request$Customer->getSecretKey());
  188.                         return $this->redirectToRoute('entry_activate', [
  189.                             'secret_key' => $Customer->getSecretKey(),
  190.                             'qtyInCart' => $qtyInCart,
  191.                         ]);
  192.                     }
  193.             }
  194.         }
  195.         return [
  196.             'form' => $form->createView(),
  197.         ];
  198.     }
  199. }