src/Eccube/Controller/Admin/AbstractCsvImportController.php line 51

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  6.  *
  7.  * http://www.ec-cube.co.jp/
  8.  *
  9.  * For the full copyright and license information, please view the LICENSE
  10.  * file that was distributed with this source code.
  11.  */
  12. namespace Eccube\Controller\Admin;
  13. use Eccube\Controller\AbstractController;
  14. use Eccube\Service\CsvImportService;
  15. use Eccube\Util\StringUtil;
  16. use Symfony\Component\Filesystem\Filesystem;
  17. use Symfony\Component\HttpFoundation\File\UploadedFile;
  18. use Symfony\Component\HttpFoundation\Request;
  19. use Symfony\Component\HttpFoundation\StreamedResponse;
  20. class AbstractCsvImportController extends AbstractController
  21. {
  22.     /**
  23.      * アップロードされたCSVファイル名
  24.      *
  25.      * @var string
  26.      */
  27.     protected $csvFileName;
  28.     /**
  29.      * アップロードされたCSVファイルの行ごとの処理
  30.      *
  31.      * @param UploadedFile $formFile
  32.      *
  33.      * @return CsvImportService|bool
  34.      */
  35.     protected function getImportData(UploadedFile $formFile)
  36.     {
  37.         // アップロードされたCSVファイルを一時ディレクトリに保存
  38.         $this->csvFileName 'upload_'.StringUtil::random().'.'.$formFile->getClientOriginalExtension();
  39.         $formFile->move($this->eccubeConfig['eccube_csv_temp_realdir'], $this->csvFileName);
  40.         $file = new \SplFileObject($this->eccubeConfig['eccube_csv_temp_realdir'].'/'.$this->csvFileName);
  41.         set_time_limit(0);
  42.         // アップロードされたCSVファイルを行ごとに取得
  43.         $data = new CsvImportService($file$this->eccubeConfig['eccube_csv_import_delimiter'], $this->eccubeConfig['eccube_csv_import_enclosure']);
  44.         return $data->setHeaderRowNumber(0) ? $data false;
  45.     }
  46.     protected function sendTemplateResponse(Request $request$columns$filename)
  47.     {
  48.         set_time_limit(0);
  49.         $response = new StreamedResponse();
  50.         $response->setCallback(function () use ($columns) {
  51.             // ヘッダ行の出力
  52.             $row = [];
  53.             foreach ($columns as $column) {
  54.                 $row[] = mb_convert_encoding($column$this->eccubeConfig['eccube_csv_export_encoding'], 'UTF-8');
  55.             }
  56.             $fp fopen('php://output''w');
  57.             fputcsv($fp$row$this->eccubeConfig['eccube_csv_export_separator']);
  58.             fclose($fp);
  59.         });
  60.         $response->headers->set('Content-Type''application/octet-stream');
  61.         $response->headers->set('Content-Disposition''attachment; filename='.$filename);
  62.         return $response;
  63.     }
  64.     /**
  65.      * アップロードされたCSVファイルの削除
  66.      */
  67.     protected function removeUploadedFile()
  68.     {
  69.         if (!empty($this->csvFileName)) {
  70.             try {
  71.                 $fs = new Filesystem();
  72.                 $fs->remove($this->eccubeConfig['eccube_csv_temp_realdir'].'/'.$this->csvFileName);
  73.             } catch (\Exception $e) {
  74.                 // エラーが発生しても無視する
  75.             }
  76.         }
  77.     }
  78. }