app/Plugin/CMBlogPro42/Controller/Admin/BlogController.php line 451

Open in your IDE?
  1. <?php
  2. namespace Plugin\CMBlogPro42\Controller\Admin;
  3. use Doctrine\DBAL\Exception\ForeignKeyConstraintViolationException;
  4. use Eccube\Common\Constant;
  5. use Eccube\Controller\AbstractController;
  6. use Eccube\Form\Type\Admin\SearchProductType;
  7. use Plugin\CMBlogPro42\Entity\Blog;
  8. use Plugin\CMBlogPro42\Entity\BlogImage;
  9. use Plugin\CMBlogPro42\Entity\BlogCategory;
  10. use Plugin\CMBlogPro42\Entity\BlogShare;
  11. use Plugin\CMBlogPro42\Entity\BlogProduct;
  12. use Plugin\CMBlogPro42\Entity\BlogStatus;
  13. use Plugin\CMBlogPro42\Form\Type\Admin\BlogType;
  14. use Plugin\CMBlogPro42\Form\Type\Admin\SearchBlogType;
  15. use Plugin\CMBlogPro42\Repository\BlogRepository;
  16. use Plugin\CMBlogPro42\Repository\BlogStatusRepository;
  17. use Plugin\CMBlogPro42\Repository\BlogImageRepository;
  18. use Plugin\CMBlogPro42\Repository\CategoryRepository;
  19. use Plugin\CMBlogPro42\Repository\ShareRepository;
  20. use Plugin\CMBlogPro42\Repository\ConfigRepository;
  21. use Eccube\Repository\Master\PageMaxRepository;
  22. use Plugin\CMBlogPro42\Repository\ProductRepository;
  23. use Eccube\Util\CacheUtil;
  24. use Eccube\Util\FormUtil;
  25. use Knp\Component\Pager\PaginatorInterface;
  26. use Plugin\CMBlogPro42\Repository\BlogProductRepository;
  27. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  28. use Symfony\Component\Filesystem\Filesystem;
  29. use Symfony\Component\HttpFoundation\File\File;
  30. use Symfony\Component\HttpFoundation\Request;
  31. use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
  32. use Symfony\Component\Routing\Annotation\Route;
  33. use Symfony\Component\Routing\RouterInterface;
  34. use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
  35. use Symfony\Component\HttpKernel\Exception\UnsupportedMediaTypeHttpException;
  36. class BlogController extends AbstractController
  37. {
  38.     const USERDATAPATH 'html/user_data/';
  39.     /**
  40.      * @var BlogRepository
  41.      */
  42.     protected $blogRepository;
  43.     /**
  44.      * @var BlogStatusRepository
  45.      */
  46.     protected $blogStatusRepository;
  47.     /**
  48.      * @var BlogImageRepository
  49.      */
  50.     protected $blogImageRepository;
  51.     /**
  52.      * @var CategoryRepository
  53.      */
  54.     protected $categoryRepository;
  55.     /**
  56.      * @var ProductRepository
  57.      */
  58.     protected $productRepository;
  59.     /**
  60.      * @var PageMaxRepository
  61.      */
  62.     protected $pageMaxRepository;
  63.     /**
  64.      * @var ConfigRepository
  65.      */
  66.     protected $configRepository;
  67.     /**
  68.      * @var BlogProductRepository 
  69.      */
  70.     protected $blogProductRepository;
  71.     /**
  72.      * BlogController constructor.
  73.      *
  74.      * @param BlogRepository $blogRepository
  75.      * @param BlogStatusRepository $blogStatusRepository
  76.      * @param BlogImageRepository $blogImageRepository
  77.      * @param CategoryRepository $categoryRepository
  78.      * @param ShareRepository $shareRepository
  79.      * @param ProductRepository $productRepository
  80.      * @param PageMaxRepository $pageMaxRepository
  81.      * 
  82.      * @param ConfigRepository $configRepository
  83.      * @param BlogProductRepository $blogProductRepository
  84.      */
  85.     public function __construct(
  86.         BlogRepository $blogRepository,
  87.         BlogStatusRepository $blogStatusRepository,
  88.         BlogImageRepository $blogImageRepository,
  89.         CategoryRepository $categoryRepository,
  90.         ShareRepository $shareRepository,
  91.         ProductRepository $productRepository,
  92.         PageMaxRepository $pageMaxRepository,
  93.         ConfigRepository $configRepository,
  94.         BlogProductRepository $blogProductRepository
  95.     )
  96.     {
  97.         $this->blogRepository $blogRepository;
  98.         $this->blogStatusRepository $blogStatusRepository;
  99.         $this->blogImageRepository $blogImageRepository;
  100.         $this->categoryRepository $categoryRepository;
  101.         $this->shareRepository $shareRepository;
  102.         $this->productRepository $productRepository;
  103.         $this->pageMaxRepository $pageMaxRepository;
  104.         $this->configRepository $configRepository;
  105.         $this->blogProductRepository $blogProductRepository;
  106.     }
  107.     /**
  108.      * @Route("/%eccube_admin_route%/cm_blog/blog/image/add", name="cm_blog_admin_blog_image_add", methods={"POST"})
  109.      */
  110.     public function addImage(Request $request)
  111.     {
  112.  
  113.         if (!$request->isXmlHttpRequest()) {
  114.             throw new BadRequestHttpException();
  115.         }
  116.         $images $request->files->get('CMBlogPro_admin_blog');
  117.         $allowExtensions = ['gif''jpg''jpeg''png'];
  118.         $files = [];
  119.         if (count($images) > 0) {
  120.             foreach ($images as $img) {
  121.                 foreach ($img as $image) {
  122.                     //ファイルフォーマット検証
  123.                     $mimeType $image->getMimeType();
  124.                     if (!== strpos($mimeType'image')) {
  125.                         throw new UnsupportedMediaTypeHttpException();
  126.                     }
  127.                     // 拡張子
  128.                     $extension $image->getClientOriginalExtension();
  129.                     if (!in_array(strtolower($extension), $allowExtensions)) {
  130.                         throw new UnsupportedMediaTypeHttpException();
  131.                     }
  132.                     $filename date('mdHis').uniqid('_').'.'.$extension;
  133.                     //$fullNamePath =  $this->eccubeConfig['eccube_user_data_route'] .'/'. $filename;
  134.                     $image->move($this->eccubeConfig['eccube_temp_image_dir'], $filename);
  135.                     //$image->move($this->eccubeConfig['eccube_temp_image_dir'], $fullNamePath);
  136.                     $files[] = $filename;
  137.                 }
  138.             }
  139.         }
  140.         // $event = new EventArgs(
  141.         //     [
  142.         //         'images' => $images,
  143.         //         'files' => $files,
  144.         //     ],
  145.         //     $request
  146.         // );
  147.         // $this->eventDispatcher->dispatch(EccubeEvents::ADMIN_PRODUCT_ADD_IMAGE_COMPLETE, $event);
  148.         //$files = $event->getArgument('files');
  149.         return $this->json(['files' => $files], 200);
  150.     }
  151.     /**
  152.      * @Route("/%eccube_admin_route%/cm_blog/blog/upload", name="cm_blog_admin_blog_upload", methods={"POST"})
  153.      */
  154.     public function uploadBlogImage(Request $request)
  155.     {
  156.         try {
  157.             // File Route.
  158.             $fileRoute $this->eccubeConfig['eccube_save_image_dir'];
  159.             reset ($_FILES);
  160.             $temp current($_FILES);
  161.             if (is_uploaded_file($temp["tmp_name"])){
  162.                 if (preg_match("/([^wsd\-_~,;:[]().])|([.]{2,})/"$temp["name"])) {
  163.                     throw new UnsupportedMediaTypeHttpException();
  164.                 }
  165.                 $extension pathinfo($temp["name"], PATHINFO_EXTENSION);
  166.                 $fileName  date('mdHis').uniqid('_').'.'.$extension;
  167.                 $fullNamePath $fileRoute .'/'$fileName;
  168.                 
  169.                 if (!in_array(strtolower($extension), array('gif''jpg''jpeg''png'))) {
  170.                     throw new UnsupportedMediaTypeHttpException();
  171.                 }
  172.                 move_uploaded_file($temp["tmp_name"], $fullNamePath);
  173.                 
  174.                 return $this->json([
  175.                     'uploaded' => 1,
  176.                     'filename' => $fileName,
  177.                     'location' => $fileName,
  178.                 ]);
  179.             } else {
  180.                 throw new \Exception("ファイルアップロードに失敗しました");
  181.             }
  182.         } catch (\Exception $exception) {
  183.             return $this->json([
  184.                 'uploaded' => 0,
  185.                 'error' => array(
  186.                     'message' => $exception->getMessage(),
  187.                 )
  188.             ]);
  189.         }
  190.     }
  191.     /**
  192.      * BlogCategory作成
  193.      *
  194.      * @param \Plugin\CMBlogPro42\Entity\Blog $blog
  195.      * @param \Plugin\CMBlogPro42\Entity\Category $category
  196.      *
  197.      * @return \Plugin\CMBlogPro42\Entity\BlogCategory
  198.      */
  199.     private function createBlogCategory($blog$category)
  200.     {
  201.         $blogCategory = new BlogCategory();
  202.         $blogCategory->setBlog($blog);
  203.         $blogCategory->setBlogId($blog->getId());
  204.         $blogCategory->setCategory($category);
  205.         $blogCategory->setCategoryId($category->getId());
  206.         return $blogCategory;
  207.     }
  208.     /**
  209.      * BlogShare作成
  210.      *
  211.      * @param \Plugin\CMBlogPro42\Entity\Blog $blog
  212.      * @param \Plugin\CMBlogPro42\Entity\Share $share
  213.      *
  214.      * @return \Plugin\CMBlogPro42\Entity\BlogShare
  215.      */
  216.     private function createBlogShare($blog$Share)
  217.     {
  218.         $blogShare = new BlogShare();
  219.         $blogShare->setBlog($blog);
  220.         $blogShare->setBlogId($blog->getId());
  221.         $blogShare->setCategory($Share);
  222.         $blogShare->setCategoryId($Share->getId());
  223.         return $blogShare;
  224.     }
  225.     /**
  226.      * ブログ一覧
  227.      *
  228.      * @Route("/%eccube_admin_route%/cm_blog/blog", name="cm_blog_admin_blog")
  229.      * @Route("/%eccube_admin_route%/cm_blog/blog/{page_no}", requirements={"page_no" = "\d+"}, name="cm_blog_admin_blog_page", methods={"GET", "POST"})
  230.      * @Template("@CMBlogPro42/admin/blog/index.twig")
  231.      */
  232.     public function index(Request $requestPaginatorInterface $paginator$page_no null)
  233.     {
  234.         $builder $this->formFactory
  235.             ->createBuilder(SearchBlogType::class);
  236.         // $event = new EventArgs(
  237.         //     [
  238.         //         'builder' => $builder,
  239.         //     ],
  240.         //     $request
  241.         // );
  242.         // $this->eventDispatcher->dispatch(EccubeEvents::ADMIN_PRODUCT_INDEX_INITIALIZE, $event);
  243.         $searchForm $builder->getForm();
  244.           /**
  245.          * ページの表示件数は, 以下の順に優先される.
  246.          * - リクエストパラメータ
  247.          * - セッション
  248.          * - デフォルト値
  249.          * また, セッションに保存する際は mtb_page_maxと照合し, 一致した場合のみ保存する.
  250.          **/
  251.         $page_count $this->session->get('eccube.plg.admin.blog.search.page_count',
  252.             $this->eccubeConfig->get('eccube_default_page_count'));
  253.         $page_count_param = (int) $request->get('page_count');
  254.         $pageMaxis $this->pageMaxRepository->findAll();
  255.         if ($page_count_param) {
  256.             foreach ($pageMaxis as $pageMax) {
  257.                 if ($page_count_param == $pageMax->getName()) {
  258.                     $page_count $pageMax->getName();
  259.                     $this->session->set('eccube.plg.admin.blog.search.page_count'$page_count);
  260.                     break;
  261.                 }
  262.             }
  263.         }
  264.         if ('POST' === $request->getMethod()) {
  265.             $searchForm->handleRequest($request);
  266.             if ($searchForm->isSubmitted() && $searchForm->isValid()) {
  267.                 /**
  268.                  * 検索が実行された場合は, セッションに検索条件を保存する.
  269.                  * ページ番号は最初のページ番号に初期化する.
  270.                  */
  271.                 $page_no 1;
  272.                 $searchData $searchForm->getData();
  273.                 // 検索条件, ページ番号をセッションに保持.
  274.                 $this->session->set('eccube.plg.admin.blog.search'FormUtil::getViewData($searchForm));
  275.                 $this->session->set('eccube.plg.admin.blog.search.page_no'$page_no);
  276.             } else {
  277.                 // 検索エラーの際は, 詳細検索枠を開いてエラー表示する.
  278.                 return [
  279.                     'searchForm' => $searchForm->createView(),
  280.                     'pagination' => [],
  281.                     'pageMaxis' => $pageMaxis,
  282.                     'page_no' => $page_no,
  283.                     'page_count' => $page_count,
  284.                     'has_errors' => true,
  285.                 ];
  286.             }
  287.         } else {
  288.             if (null !== $page_no || $request->get('resume')) {
  289.                 /*
  290.                  * ページ送りの場合または、他画面から戻ってきた場合は, セッションから検索条件を復旧する.
  291.                  */
  292.                 if ($page_no) {
  293.                     // ページ送りで遷移した場合.
  294.                     $this->session->set('eccube.plg.admin.blog.search.page_no', (int) $page_no);
  295.                 } else {
  296.                     // 他画面から遷移した場合.
  297.                     $page_no $this->session->get('eccube.plg.admin.blog.search.page_no'1);
  298.                 }
  299.                 $viewData $this->session->get('eccube.plg.admin.blog.search', []);
  300.                 $searchData FormUtil::submitAndGetData($searchForm$viewData);
  301.             } else {
  302.                 /**
  303.                  * 初期表示の場合.
  304.                  */
  305.                 $page_no 1;
  306.                 // submit default value
  307.                 $viewData FormUtil::getViewData($searchForm);
  308.                 $searchData FormUtil::submitAndGetData($searchForm$viewData);
  309.                 // セッション中の検索条件, ページ番号を初期化.
  310.                 $this->session->set('eccube.plg.admin.blog.search'$viewData);
  311.                 $this->session->set('eccube.plg.admin.blog.search.page_no'$page_no);
  312.             }
  313.         }
  314.         // // Temporary settings
  315.         // $ChoicedCategoryIds = array();
  316.         // if (isset($search['search_blog'])) {
  317.         //     $searchData = $search['search_blog'];
  318.         // }
  319.         // if (isset($search['categories'])) {
  320.         //     $ChoicedCategoryIds = $searchData['categories'];
  321.         // }
  322.         $qb $this->blogRepository->getQueryBuilderBySearchDataAdmin($searchData);
  323.         // $event = new EventArgs(
  324.         //     [
  325.         //         'qb' => $qb,
  326.         //         'searchData' => $searchData,
  327.         //     ],
  328.         //     $request
  329.         // );
  330.         // $this->eventDispatcher->dispatch(EccubeEvents::ADMIN_PRODUCT_INDEX_SEARCH, $event);
  331.         $pagination $paginator->paginate(
  332.             $qb,
  333.             $page_no,
  334.             $page_count
  335.         );
  336.         return [
  337.             'searchForm' => $searchForm->createView(),
  338.             'pagination' => $pagination,
  339.             'pageMaxis' => $pageMaxis,
  340.             'page_no' => $page_no,
  341.             'page_count' => $page_count,
  342.             'has_errors' => false,
  343.             'Categories' => $this->categoryRepository->getList(array()),
  344.             'Shares' => $this->shareRepository->getList(array()),
  345.             //'ChoicedCategoryIds' => $ChoicedCategoryIds, // temporary
  346.         ];
  347.     }
  348.     /**
  349.      * BlogCategory作成
  350.      *
  351.      * @param \Plugin\CMBlogPro42\Entity\Blog $blog
  352.      *
  353.      * @return array
  354.      */
  355.     private function setChoicedCategoryIds($blog) {
  356.         $ChoicedCategoryIds = [];
  357.         $categories $blog->getBlogCategories();
  358.         if ($categories)
  359.             foreach ($blog->getBlogCategories() as $category)
  360.                 array_push($ChoicedCategoryIds$category->getCategoryId());
  361.         return $ChoicedCategoryIds;
  362.     }
  363.     /**
  364.      * ShareCategory作成
  365.      *
  366.      * @param \Plugin\CMBlogPro42\Entity\Blog $blog
  367.      *
  368.      * @return array
  369.      */
  370.     private function setChoicedShareIds($blog) {
  371.         $ChoicedShareIds = [];
  372.         $shares $blog->getBlogShares();
  373.         if ($shares)
  374.             foreach ($blog->getBlogShares() as $shares)
  375.                 array_push($ChoicedShareIds$shares->getCategoryId());
  376.         return $ChoicedShareIds;
  377.     }
  378.     /**
  379.      * ブログ編集 ymk changes
  380.      *
  381.      * @Route("/%eccube_admin_route%/cm_blog/blog/new", name="cm_blog_admin_blog_create")
  382.      * @Route("/%eccube_admin_route%/cm_blog/blog/{id}/edit", requirements={"id" = "\d+"}, name="cm_blog_admin_blog_edit")
  383.      * @Template("@CMBlogPro42/admin/blog/edit.twig")
  384.      */
  385.     public function edit(Request $requestRouterInterface $routerCacheUtil $cacheUtil$id null)
  386.     {
  387.         if (is_null($id)) {
  388.             $Blog = new Blog();
  389.             $BlogStatus $this->blogStatusRepository->find(BlogStatus::DISPLAY_HIDE);
  390.             $Blog->setStatus($BlogStatus);
  391.         } else {
  392.             $Blog $this->blogRepository->find($id);
  393.             if (!$Blog) {
  394.                 throw new NotFoundHttpException();
  395.             }
  396.         }
  397.         $builder $this->formFactory->createBuilder(BlogType::class, $Blog);
  398.         $form $builder->getForm();
  399.         // ファイルの登録
  400.         $images = [];
  401.         $BlogImages $Blog->getBlogImage();
  402.         foreach ($BlogImages as $BlogImage) {
  403.             $images[] = $BlogImage->getFileName();
  404.         }
  405.         $form['images']->setData($images);
  406.         $categories = [];
  407.         $BlogCategories $Blog->getBlogCategories();
  408.         foreach ($BlogCategories as $BlogCategory) {
  409.             /* @var $BlogCategory \Plugin\CMBlogPro42\Entity\BlogCategory */
  410.             $categories[] = $BlogCategory->getCategory();
  411.         }
  412.         $form['Category']->setData($categories);
  413.         $blogProducts = [];
  414.         $products $Blog->getBlogProduct();
  415.         foreach ($products as $bProduct) {
  416.             $blogProducts[] = clone $bProduct;
  417.         }
  418.         $form['BlogProduct']->setData($blogProducts);
  419.         if ('POST' === $request->getMethod()) {
  420.             $form->handleRequest($request);
  421.             if ($form->isSubmitted() && $form->isValid()) {
  422.                 log_info('ブログ記事登録開始', [$id]);
  423.                 /**  @var \Plugin\CMBlogPro42\Entity\Blog $Blog */
  424.                 $Blog $form->getData();
  425.                 // カテゴリの登録
  426.                 // 一度クリア
  427.                 foreach ($Blog->getBlogCategories() as $BlogCategory) {
  428.                     $Blog->removeBlogCategory($BlogCategory);
  429.                     $this->entityManager->remove($BlogCategory);
  430.                     $this->entityManager->flush($BlogCategory);
  431.                 }
  432.                 $this->entityManager->persist($Blog);
  433.                 $this->entityManager->flush();
  434.                 $count 1;
  435.                 $Categories $form->get('Category')->getData();
  436.                 $categoriesIdList = [];
  437.                 foreach ($Categories as $Category) {
  438.                     if (!isset($categoriesIdList[$Category->getId()])) {
  439.                         $BlogCategory $this->createBlogCategory($Blog$Category$count);
  440.                         $this->entityManager->persist($BlogCategory);
  441.                         $count++;
  442.                         /* @var $Blog \Plugin\CMBlogPro42\Entity\Blog */
  443.                         $Blog->addBlogCategory($BlogCategory);
  444.                         //$categoriesIdList[$ParentCategory->getId()] = true;
  445.                     }
  446.                 }
  447.                 $BlogProducts $this->blogProductRepository->findBy(['Blog' => $Blog]);
  448.                 foreach ($BlogProducts as $BlogProduct) {
  449.                     $Blog->removeBlogProduct($BlogProduct);
  450.                     $this->entityManager->remove($BlogProduct);
  451.                     $this->entityManager->flush($BlogProduct);
  452.                 }
  453.                 $BTs $form->get('BlogProduct')->getData();
  454.                 /** @var BlogProduct $BT */
  455.                 foreach ($BTs as $BT) {
  456.                     $BT->setBlog($Blog);
  457.                     $this->entityManager->persist($BT);
  458.                     $Blog->addBlogProduct($BT);
  459.                 }
  460.                 // シェアの登録
  461.                 // 一度クリア
  462.                 foreach ($Blog->getBlogShares() as $BlogShare) {
  463.                     $Blog->removeBlogShare($BlogShare);
  464.                     $this->entityManager->remove($BlogShare);
  465.                     $this->entityManager->flush($BlogShare);
  466.                 }
  467.                 $this->entityManager->persist($Blog);
  468.                 $this->entityManager->flush();
  469.                 $count 1;
  470.                 $Shares $form->get('Share')->getData();
  471.                 $shareIdList = [];
  472.                 foreach ($Shares as $Share) {
  473.                     if (!isset($shareIdList[$Share->getId()])) {
  474.                         $BlogShare $this->createBlogShare($Blog$Share$count);
  475.                         $this->entityManager->persist($BlogShare);
  476.                         $count++;
  477.                         /* @var $Blog \Plugin\CMBlogPro42\Entity\Blog */
  478.                         $Blog->addBlogShare($BlogShare);
  479.                         //$shareIdList[$ParentCategory->getId()] = true;
  480.                     }
  481.                 }
  482.                 $BlogProducts $this->blogProductRepository->findBy(['Blog' => $Blog]);
  483.                 foreach ($BlogProducts as $BlogProduct) {
  484.                     $Blog->removeBlogProduct($BlogProduct);
  485.                     $this->entityManager->remove($BlogProduct);
  486.                     $this->entityManager->flush($BlogProduct);
  487.                 }
  488.                 $BTs $form->get('BlogProduct')->getData();
  489.                 /** @var BlogProduct $BT */
  490.                 foreach ($BTs as $BT) {
  491.                     $BT->setBlog($Blog);
  492.                     $this->entityManager->persist($BT);
  493.                     $Blog->addBlogProduct($BT);
  494.                 }
  495.                 // 画像の登録
  496.                 $add_images $form->get('add_images')->getData();
  497.                 foreach ($add_images as $add_image) {
  498.                     $BlogImage = new \Plugin\CMBlogPro42\Entity\BlogImage();
  499.                     $BlogImage
  500.                         ->setFileName($add_image)
  501.                         ->setBlog($Blog)
  502.                         ->setSortNo(1);
  503.                     $Blog->addBlogImage($BlogImage);
  504.                     $this->entityManager->persist($BlogImage);
  505.                     // 移動
  506.                     $file = new File($this->eccubeConfig['eccube_temp_image_dir'].'/'$add_image);
  507.                     $file->move($this->eccubeConfig['eccube_save_image_dir']);
  508.                     //$file->move($this->eccubeConfig['eccube_user_data_route'].'/cm_blog/images/');
  509.                 }
  510.                 // 画像の削除
  511.                 $delete_images $form->get('delete_images')->getData();
  512.                 foreach ($delete_images as $delete_image) {
  513.                     $BlogImage $this->blogImageRepository
  514.                         ->findOneBy(['file_name' => $delete_image]);
  515.                     // 追加してすぐに削除した画像は、Entityに追加されない
  516.                     if ($BlogImage instanceof BlogImage) {
  517.                         $Blog->removeBlogImage($BlogImage);
  518.                         $this->entityManager->remove($BlogImage);
  519.                     }
  520.                     $this->entityManager->persist($Blog);
  521.                     // 削除
  522.                     $fs = new Filesystem();
  523.                     $fs->remove($this->eccubeConfig['eccube_save_image_dir'].'/'.$delete_image);
  524.                     //$fs->remove( $this->eccubeConfig['eccube_user_data_route'].'/cm_blog/images/'.$delete_image);
  525.                 }
  526.                 $this->entityManager->persist($Blog);
  527.                 $this->entityManager->flush();
  528.                 $sortNos $request->get('sort_no_images');
  529.                 if ($sortNos) {
  530.                     foreach ($sortNos as $sortNo) {
  531.                         list($filename$sortNo_val) = explode('//'$sortNo);
  532.                         $BlogImage $this->blogImageRepository
  533.                             ->findOneBy([
  534.                                 'file_name' => $filename,
  535.                                 'Blog' => $Blog,
  536.                             ]);
  537.                         $BlogImage->setSortNo($sortNo_val);
  538.                         $this->entityManager->persist($BlogImage);
  539.                     }
  540.                 }
  541.                 $this->entityManager->flush();
  542.                 $Blog->setUpdateDate(new \DateTime());
  543.                 $this->entityManager->flush();
  544.                 log_info('商品登録完了', [$id]);
  545.                 $this->addSuccess('admin.common.save_complete''admin');
  546.                 if ($returnLink $form->get('return_link')->getData()) {
  547.                     try {
  548.                         // $returnLinkはpathの形式で渡される. pathが存在するかをルータでチェックする.
  549.                         $pattern '/^'.preg_quote($request->getBasePath(), '/').'/';
  550.                         $returnLink preg_replace($pattern''$returnLink);
  551.                         $result $router->match($returnLink);
  552.                         // パラメータのみ抽出
  553.                         $params array_filter($result, function ($key) {
  554.                             return !== \strpos($key'_');
  555.                         }, ARRAY_FILTER_USE_KEY);
  556.                         // pathからurlを再構築してリダイレクト.
  557.                         return $this->redirectToRoute($result['_route'], $params);
  558.                     } catch (\Exception $e) {
  559.                         // マッチしない場合はログ出力してスキップ.
  560.                         log_warning('URLの形式が不正です。');
  561.                     }
  562.                 }
  563.                 $cacheUtil->clearDoctrineCache();
  564.                 return $this->redirectToRoute('cm_blog_admin_blog_edit', ['id' => $Blog->getId()]);
  565.             }
  566.         }
  567.         // ツリー表示のため、ルートからのカテゴリを取得
  568.         $TopCategories $this->categoryRepository->getList(null);
  569.         $TopShares $this->shareRepository->getList(null);
  570.         return $this->renderRegistView([
  571.             'Blog' => $Blog,
  572.             'form' => $form->createView(),
  573.             'id' => $id,
  574.             'TopCategories' => $TopCategories,
  575.             'TopShares' => $TopShares,
  576.             'ChoicedCategoryIds' => $this->setChoicedCategoryIds($Blog),
  577.             'ChoicedShareIds' => $this->setChoicedShareIds($Blog)
  578.         ]);
  579.     }
  580.     /**
  581.      * ブログ削除
  582.      *
  583.      * @Route("/%eccube_admin_route%/cm_blog/blog/{id}/delete", name="cm_blog_admin_blog_delete", methods={"DELETE"})
  584.      */
  585.     public function delete($id)
  586.     {
  587.         $blog $this->blogRepository->find($id);
  588.         if (!$blog) {
  589.             // 無い場合
  590.             $this->deleteMessage();
  591.             return $this->redirectToRoute('cm_blog_admin_blog');
  592.         }
  593.         // TODO:TRANSACTIONを追加する
  594.         try {
  595.             // イメージをパスを取得する
  596.             // データ削除
  597.             $this->entityManager->remove($blog);
  598.             $this->entityManager->flush($blog);
  599.             // イメージを削除する
  600.             $config $this->configRepository->get();
  601.             $this->addSuccess('ブログを削除しました''admin');
  602.         } catch (ForeignKeyConstraintViolationException $e) {
  603.             $error_msg 'カテゴリ削除失敗';
  604.             log_error($error_msg, [$e], 'plugin');
  605.             $this->addError($error_msg'admin');
  606.         }
  607.         return $this->redirectToRoute('cm_blog_admin_blog');
  608.     }
  609.     /**
  610.      * @Route("/%eccube_admin_route%/cm_blog/blog/{id}/copy", requirements={"id" = "\d+"}, name="cm_blog_admin_blog_copy", methods={"POST"})
  611.      */
  612.     public function copy(Request $request$id null)
  613.     {
  614.         $this->isTokenValid();
  615.         if (!is_null($id)) {
  616.             $Blog $this->blogRepository->find($id);
  617.             if ($Blog instanceof Blog) {
  618.                 // Only categories, no classes or tags for now. Need to fix the images
  619.                 $CopyBlog = clone $Blog;
  620.                 $CopyBlog->copy();
  621.                 $BlogStatus $this->blogStatusRepository->find(BlogStatus::DISPLAY_HIDE);
  622.                 $CopyBlog->setStatus($BlogStatus);
  623.                 $CopyBlog->setSlug(null);
  624.                 $CopyBlogCategories $CopyBlog->getBlogCategories();
  625.                 foreach ($CopyBlogCategories as $Category) {
  626.                     $this->entityManager->persist($Category);
  627.                 }
  628.                 $CopyBlogProduct $CopyBlog->getBlogProduct();
  629.                 foreach ($CopyBlogProduct as $Product) {
  630.                     $this->entityManager->persist($Product);
  631.                 }
  632.                 $Images $CopyBlog->getBlogImage();
  633.                 foreach ($Images as $Image) {
  634.                     // 画像ファイルを新規作成
  635.                     $extension pathinfo($Image->getFileName(), PATHINFO_EXTENSION);
  636.                     $filename date('mdHis').uniqid('_').'.'.$extension;
  637.                     try {
  638.                         $fs = new Filesystem();
  639.                         $fs->copy($this->eccubeConfig['eccube_save_image_dir'].'/'.$Image->getFileName(), $this->eccubeConfig['eccube_save_image_dir'].'/'.$filename);
  640.                     } catch (\Exception $e) {
  641.                         // エラーが発生しても無視する
  642.                     }
  643.                     $Image->setFileName($filename);
  644.                     $this->entityManager->persist($Image);
  645.                 }
  646.                
  647.                 $this->entityManager->persist($CopyBlog);
  648.                 $this->entityManager->flush();
  649.                 $this->addSuccess('plg.CMBlogPro.admin.blog.copy_complete''admin');
  650.                 return $this->redirectToRoute('cm_blog_admin_blog_edit', ['id' => $CopyBlog->getId()]);
  651.             } else {
  652.                 $this->addError('plg.CMBlogPro.admin.blog.copy_error''admin');
  653.             }
  654.         } else {
  655.             $this->addError('plg.CMBlogPro.admin.blog.copy_error''admin');
  656.         }
  657.         return $this->redirectToRoute('cm_blog_admin_blog');
  658.     }
  659.     /**
  660.      * Bulk public action
  661.      *
  662.      * @Route("/%eccube_admin_route%/cm_blog/blog/bulk/blog-status/{id}", requirements={"id" = "\d+"}, name="cm_blog_admin_bulk_blog_status", methods={"POST"})
  663.      *
  664.      * @param Request $request
  665.      * @param BlogStatus $BlogStatus
  666.      *
  667.      * @return RedirectResponse
  668.      */
  669.     public function bulkBlogStatus(Request $requestBlogStatus $BlogStatusCacheUtil $cacheUtil)
  670.     {
  671.         $this->isTokenValid();
  672.         /** @var Blog[] $Blogs */
  673.         $Blogs $this->blogRepository->findBy(['id' => $request->get('ids')]);
  674.         $count 0;
  675.         foreach ($Blogs as $Blog) {
  676.             try {
  677.                 $Blog->setStatus($BlogStatus);
  678.                 $this->blogRepository->save($Blog);
  679.                 $count++;
  680.             } catch (\Exception $e) {
  681.                 $this->addError($e->getMessage(), 'admin');
  682.             }
  683.         }
  684.         try {
  685.             if ($count) {
  686.                 $this->entityManager->flush();
  687.                 $msg $this->translator->trans('plg.CMBlogPro.admin.blog.bulk_change_status_complete', [
  688.                     '%count%' => $count,
  689.                     '%status%' => $BlogStatus->getName(),
  690.                 ]);
  691.                 $this->addSuccess($msg'admin');
  692.                 $cacheUtil->clearDoctrineCache();
  693.             }
  694.         } catch (\Exception $e) {
  695.             $this->addError($e->getMessage(), 'admin');
  696.         }
  697.         return $this->redirectToRoute('cm_blog_admin_blog', ['resume' => Constant::ENABLED]);
  698.     }
  699.     /**
  700.      * 編集画面用のrender. ymk
  701.      *
  702.      * @param array       $parameters
  703.      *
  704.      * @return Response
  705.      */
  706.     protected function renderRegistView($parameters = [])
  707.     {
  708.         // 商品検索フォーム
  709.         $searchProductModalForm $this->formFactory->createBuilder(SearchProductType::class)->getForm();
  710.         $viewParameters = [
  711.             'searchProductModalForm' => $searchProductModalForm->createView(),
  712.         ];
  713.         $viewParameters += $parameters;
  714.         return $this->render('@CMBlogPro42/admin/blog/edit.twig'$viewParameters);
  715.     }
  716. }