core/lib/Thelia/ImportExport/Import/AbstractImport.php line 56

  1. <?php
  2. /*
  3.  * This file is part of the Thelia package.
  4.  * http://www.thelia.net
  5.  *
  6.  * (c) OpenStudio <info@thelia.net>
  7.  *
  8.  * For the full copyright and license information, please view the LICENSE
  9.  * file that was distributed with this source code.
  10.  */
  11. namespace Thelia\ImportExport\Import;
  12. use Symfony\Component\HttpFoundation\File\File;
  13. use Thelia\Core\Translation\Translator;
  14. use Thelia\Model\Lang;
  15. /**
  16.  * Class AbstractImport.
  17.  *
  18.  * @author Jérôme Billiras <jbilliras@openstudio.fr>
  19.  */
  20. abstract class AbstractImport implements \Iterator
  21. {
  22.     /**
  23.      * @var array
  24.      */
  25.     private $data;
  26.     /**
  27.      * @var \Symfony\Component\HttpFoundation\File\File
  28.      */
  29.     protected $file;
  30.     /**
  31.      * @var \Thelia\Model\Lang A language model
  32.      */
  33.     protected $language;
  34.     /**
  35.      * @var array Mandatory columns
  36.      */
  37.     protected $mandatoryColumns = [];
  38.     /**
  39.      * @var int Imported row count
  40.      */
  41.     protected $importedRows 0;
  42.     public function current()
  43.     {
  44.         return current($this->data);
  45.     }
  46.     public function key()
  47.     {
  48.         return key($this->data);
  49.     }
  50.     public function next(): void
  51.     {
  52.         next($this->data);
  53.     }
  54.     public function rewind(): void
  55.     {
  56.         reset($this->data);
  57.     }
  58.     public function valid(): bool
  59.     {
  60.         return key($this->data) !== null;
  61.     }
  62.     /**
  63.      * Get data.
  64.      *
  65.      * @return array Parsed data
  66.      */
  67.     public function getData()
  68.     {
  69.         return $this->data;
  70.     }
  71.     /**
  72.      * Set data.
  73.      *
  74.      * @param array $data Parsed data
  75.      *
  76.      * @return $this Return $this, allow chaining
  77.      */
  78.     public function setData(array $data)
  79.     {
  80.         $this->data $data;
  81.         return $this;
  82.     }
  83.     /**
  84.      * Get file.
  85.      *
  86.      * @return \Symfony\Component\HttpFoundation\File\File
  87.      */
  88.     public function getFile()
  89.     {
  90.         return $this->file;
  91.     }
  92.     /**
  93.      * Set file.
  94.      *
  95.      * @return $this Return $this, allow chaining
  96.      */
  97.     public function setFile(File $file)
  98.     {
  99.         $this->file $file;
  100.         return $this;
  101.     }
  102.     /**
  103.      * Get language.
  104.      *
  105.      * @return \Thelia\Model\Lang A language model
  106.      */
  107.     public function getLang()
  108.     {
  109.         return $this->language;
  110.     }
  111.     /**
  112.      * Set language.
  113.      *
  114.      * @param \Thelia\Model\Lang|null $language A language model
  115.      *
  116.      * @return $this Return $this, allow chaining
  117.      */
  118.     public function setLang(Lang $language null)
  119.     {
  120.         $this->language $language;
  121.         return $this;
  122.     }
  123.     /**
  124.      * Check mandatory columns.
  125.      *
  126.      * @param array $data Data
  127.      *
  128.      * @return bool Data contains mandatory columns or not
  129.      */
  130.     public function checkMandatoryColumns(array $data): void
  131.     {
  132.         $diff array_diff($this->mandatoryColumnsarray_keys($data));
  133.         if (\count($diff) > 0) {
  134.             throw new \UnexpectedValueException(
  135.                 Translator::getInstance()->trans(
  136.                     'The following columns are missing: %columns',
  137.                     [
  138.                         '%columns' => implode(', '$diff),
  139.                     ]
  140.                 )
  141.             );
  142.         }
  143.     }
  144.     /**
  145.      * Get imported rows.
  146.      *
  147.      * @return int Imported rows count
  148.      */
  149.     public function getImportedRows()
  150.     {
  151.         return $this->importedRows;
  152.     }
  153.     /**
  154.      * Set imported rows.
  155.      *
  156.      * @param int $importedRows Imported rows count
  157.      *
  158.      * @return $this Return $this, allow chaining
  159.      */
  160.     public function setImportedRows($importedRows)
  161.     {
  162.         $this->importedRows $importedRows;
  163.         return $this;
  164.     }
  165.     /**
  166.      * Import data.
  167.      *
  168.      * @param array $data Data to import
  169.      *
  170.      * @return string|null String with error, null otherwise
  171.      */
  172.     abstract public function importData(array $data);
  173. }