core/lib/Thelia/ImportExport/Export/AbstractExport.php line 109

  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\Export;
  12. use Propel\Runtime\ActiveQuery\ModelCriteria;
  13. use Propel\Runtime\Map\TableMap;
  14. use Thelia\Core\Translation\Translator;
  15. use Thelia\Model\Lang;
  16. /**
  17.  * Class AbstractExport.
  18.  *
  19.  * @deprecated since 2.4, please use a specific AbstractExport (like JsonFileAbstractExport).
  20.  *
  21.  * @author Jérôme Billiras <jbilliras@openstudio.fr>
  22.  */
  23. abstract class AbstractExport implements \Iterator
  24. {
  25.     /**
  26.      * @var string Default file name
  27.      */
  28.     public const FILE_NAME 'export';
  29.     /**
  30.      * @var bool Export images with data
  31.      */
  32.     public const EXPORT_IMAGE false;
  33.     /**
  34.      * @var bool Export documents with data
  35.      */
  36.     public const EXPORT_DOCUMENT false;
  37.     /**
  38.      * @var bool Use range date
  39.      */
  40.     public const USE_RANGE_DATE false;
  41.     /**
  42.      * @var \SplFileObject|\Propel\Runtime\Util\PropelModelPager Data to export
  43.      */
  44.     private $data;
  45.     /**
  46.      * @var bool True if data is array, false otherwise
  47.      */
  48.     private $dataIsArray;
  49.     /**
  50.      *  @var bool True if data is a path to a JSON file, false otherwise
  51.      */
  52.     private $dataIsJSONFile;
  53.     /**
  54.      * @var \Thelia\Model\Lang A language model
  55.      */
  56.     protected $language;
  57.     /**
  58.      * @var array|null List of fields in order in which they must be exported and there alias name
  59.      */
  60.     protected $orderAndAliases;
  61.     /**
  62.      * @var array|null Keep untranslated
  63.      */
  64.     private $originalOrderAndAliases;
  65.     /**
  66.      * @var bool Whether to export images or not
  67.      */
  68.     protected $exportImages false;
  69.     /**
  70.      * @var array Images paths list
  71.      */
  72.     protected $imagesPaths = [];
  73.     /**
  74.      * @var bool Whether to export documents or not
  75.      */
  76.     protected $exportDocuments false;
  77.     /**
  78.      * @var array Documents paths list
  79.      */
  80.     protected $documentsPaths = [];
  81.     /**
  82.      * @var array|null Export date range
  83.      */
  84.     protected $rangeDate;
  85.     /**
  86.      * @throws \Exception
  87.      *
  88.      * @return array|false|mixed|string
  89.      */
  90.     public function current()
  91.     {
  92.         if ($this->dataIsJSONFile) {
  93.             /** @var resource $file */
  94.             $result json_decode($this->data->current(), true);
  95.             if ($result !== null) {
  96.                 return $result;
  97.             }
  98.             return [];
  99.         }
  100.         if ($this->dataIsArray) {
  101.             return current($this->data);
  102.         }
  103.         $data $this->data->getIterator()->current()->toArray(TableMap::TYPE_COLNAMEtrue, [], true);
  104.         foreach ($this->data->getQuery()->getWith() as $withKey => $with) {
  105.             $data array_merge($data$data[$withKey]);
  106.             unset($data[$withKey]);
  107.         }
  108.         return $data;
  109.     }
  110.     /**
  111.      * @throws \Exception
  112.      *
  113.      * @return bool|float|int|string|null
  114.      */
  115.     public function key()
  116.     {
  117.         if ($this->dataIsJSONFile) {
  118.             return $this->data->key();
  119.         }
  120.         if ($this->dataIsArray) {
  121.             return key($this->data);
  122.         }
  123.         if ($this->data->getIterator()->key() !== null) {
  124.             return $this->data->getIterator()->key() + ($this->data->getPage() - 1) * 1000;
  125.         }
  126.         return null;
  127.     }
  128.     /**
  129.      * @throws \Exception
  130.      */
  131.     public function next(): void
  132.     {
  133.         if ($this->dataIsJSONFile) {
  134.             $this->data->next();
  135.         } elseif ($this->dataIsArray) {
  136.             next($this->data);
  137.         } else {
  138.             $this->data->getIterator()->next();
  139.             if (!$this->valid() && !$this->data->isLastPage()) {
  140.                 $this->data $this->data->getQuery()->paginate($this->data->getNextPage(), 1000);
  141.                 $this->data->getIterator()->rewind();
  142.             }
  143.         }
  144.     }
  145.     /**
  146.      * @throws \Exception
  147.      */
  148.     public function rewind(): void
  149.     {
  150.         // Since it's first method call on traversable, we get raw data here
  151.         // but we do not permit to go back
  152.         if ($this->data === null) {
  153.             $data $this->getData();
  154.             // Check if $data is a path to a json file
  155.             if (\is_string($data)
  156.                 && '.json' === substr($data, -5)
  157.                 && file_exists($data)
  158.             ) {
  159.                 $this->data = new \SplFileObject($data'r');
  160.                 $this->data->setFlags(\SplFileObject::READ_AHEAD);
  161.                 $this->dataIsJSONFile true;
  162.                 $this->data->rewind();
  163.                 return;
  164.             }
  165.             if (\is_array($data)) {
  166.                 $this->data $data;
  167.                 $this->dataIsArray true;
  168.                 reset($this->data);
  169.                 return;
  170.             }
  171.             if ($data instanceof ModelCriteria) {
  172.                 $this->data $data->setFormatter(ModelCriteria::FORMAT_ON_DEMAND)->keepQuery(false)->paginate(11000);
  173.                 $this->data->getIterator()->rewind();
  174.                 return;
  175.             }
  176.             throw new \DomainException(
  177.                 'Data must an array, an instance of \\Propel\\Runtime\\ActiveQuery\\ModelCriteria or a JSON file ending with.json'
  178.             );
  179.         }
  180.         throw new \LogicException('Export data can\'t be rewinded');
  181.     }
  182.     /**
  183.      * @throws \Exception
  184.      */
  185.     public function valid(): bool
  186.     {
  187.         if ($this->dataIsJSONFile) {
  188.             return $this->data->valid();
  189.         }
  190.         if ($this->dataIsArray) {
  191.             return key($this->data) !== null;
  192.         }
  193.         return $this->data->getIterator()->valid();
  194.     }
  195.     /**
  196.      * Get language.
  197.      *
  198.      * @return \Thelia\Model\Lang A language model
  199.      */
  200.     public function getLang()
  201.     {
  202.         return $this->language;
  203.     }
  204.     /**
  205.      * Set language.
  206.      *
  207.      * @param \Thelia\Model\Lang|null $language A language model
  208.      *
  209.      * @return $this Return $this, allow chaining
  210.      */
  211.     public function setLang(Lang $language null)
  212.     {
  213.         $this->language $language;
  214.         if ($this->originalOrderAndAliases === null) {
  215.             $this->originalOrderAndAliases $this->orderAndAliases;
  216.         }
  217.         if ($this->language !== null && $this->orderAndAliases !== null) {
  218.             $previousLocale Translator::getInstance()->getLocale();
  219.             Translator::getInstance()->setLocale($this->language->getLocale());
  220.             foreach ($this->orderAndAliases as &$alias) {
  221.                 $alias Translator::getInstance()->trans($alias);
  222.             }
  223.             Translator::getInstance()->setLocale($previousLocale);
  224.         }
  225.         return $this;
  226.     }
  227.     /**
  228.      * Check if export is empty.
  229.      *
  230.      * @return bool true if export is empty, else false
  231.      */
  232.     public function isEmpty()
  233.     {
  234.         return empty($this->data);
  235.     }
  236.     /**
  237.      * Whether images has to be exported as data.
  238.      *
  239.      * @return bool
  240.      */
  241.     public function hasImages()
  242.     {
  243.         return static::EXPORT_IMAGE;
  244.     }
  245.     /**
  246.      * Get export images.
  247.      *
  248.      * @return bool Whether to export images or not
  249.      */
  250.     public function isExportImages()
  251.     {
  252.         return $this->exportImages;
  253.     }
  254.     /**
  255.      * Set export images.
  256.      *
  257.      * @param bool $exportImages Whether to export images or not
  258.      *
  259.      * @return $this Return $this, allow chaining
  260.      */
  261.     public function setExportImages($exportImages)
  262.     {
  263.         $this->exportImages $exportImages;
  264.         return $this;
  265.     }
  266.     /**
  267.      * Get images paths.
  268.      *
  269.      * @return array|null Images paths list
  270.      */
  271.     public function getImagesPaths()
  272.     {
  273.         return $this->imagesPaths;
  274.     }
  275.     /**
  276.      * Set images paths.
  277.      *
  278.      * @param array $imagesPaths Images paths list
  279.      *
  280.      * @return $this Return $this, allow chaining
  281.      */
  282.     public function setImagesPaths(array $imagesPaths)
  283.     {
  284.         $this->imagesPaths $imagesPaths;
  285.         return $this;
  286.     }
  287.     /**
  288.      * Whether documents has to be exported as data.
  289.      *
  290.      * @return bool
  291.      */
  292.     public function hasDocuments()
  293.     {
  294.         return static::EXPORT_DOCUMENT;
  295.     }
  296.     /**
  297.      * Get export documents.
  298.      *
  299.      * @return bool Whether to export documents or not
  300.      */
  301.     public function isExportDocuments()
  302.     {
  303.         return $this->exportDocuments;
  304.     }
  305.     /**
  306.      * Set export documents.
  307.      *
  308.      * @param bool $exportDocuments Whether to export documents or not
  309.      *
  310.      * @return $this Return $this, allow chaining
  311.      */
  312.     public function setExportDocuments($exportDocuments)
  313.     {
  314.         $this->exportDocuments $exportDocuments;
  315.         return $this;
  316.     }
  317.     /**
  318.      * Get documents paths.
  319.      *
  320.      * @return array|null Documents paths list
  321.      */
  322.     public function getDocumentsPaths()
  323.     {
  324.         return $this->documentsPaths;
  325.     }
  326.     /**
  327.      * Set documents paths.
  328.      *
  329.      * @param array $documentsPaths Documents paths list
  330.      *
  331.      * @return $this Return $this, allow chaining
  332.      */
  333.     public function setDocumentsPaths(array $documentsPaths)
  334.     {
  335.         $this->documentsPaths $documentsPaths;
  336.         return $this;
  337.     }
  338.     /**
  339.      * Get range date.
  340.      *
  341.      * @return array|null Array with date range
  342.      */
  343.     public function getRangeDate()
  344.     {
  345.         return $this->rangeDate;
  346.     }
  347.     /**
  348.      * Set range date.
  349.      *
  350.      * @param array|null $rangeDate Array with date range
  351.      *
  352.      * @return $this Return $this, allow chaining
  353.      */
  354.     public function setRangeDate(array $rangeDate null)
  355.     {
  356.         $this->rangeDate $rangeDate;
  357.         return $this;
  358.     }
  359.     /**
  360.      * Whether export bounded with date.
  361.      *
  362.      * @return bool
  363.      */
  364.     public function useRangeDate()
  365.     {
  366.         return static::USE_RANGE_DATE;
  367.     }
  368.     /**
  369.      * Get file name.
  370.      *
  371.      * @return string Export file name
  372.      */
  373.     public function getFileName()
  374.     {
  375.         return static::FILE_NAME;
  376.     }
  377.     /**
  378.      * Apply order and aliases on data.
  379.      *
  380.      * @param array $data Raw data
  381.      *
  382.      * @return array Ordered and aliased data
  383.      */
  384.     public function applyOrderAndAliases(array $data)
  385.     {
  386.         if ($this->orderAndAliases === null) {
  387.             return $data;
  388.         }
  389.         $processedData = [];
  390.         foreach ($this->orderAndAliases as $key => $value) {
  391.             if (\is_int($key)) {
  392.                 $fieldName $value;
  393.                 $fieldAlias $value;
  394.             } else {
  395.                 $fieldName $key;
  396.                 $fieldAlias $value;
  397.             }
  398.             if ($this->dataIsJSONFile) {
  399.                 $fieldName substr($fieldNamestrripos($fieldName'.'));
  400.                 $fieldName str_replace('.'''$fieldName);
  401.                 $fieldName strtolower($fieldName);
  402.             }
  403.             $processedData[$fieldAlias] = null;
  404.             if (\array_key_exists($fieldName$data)) {
  405.                 $processedData[$fieldAlias] = $data[$fieldName];
  406.             }
  407.         }
  408.         return $processedData;
  409.     }
  410.     /**
  411.      * Process data before serialization.
  412.      *
  413.      * @param array $data Data before serialization
  414.      *
  415.      * @return array Processed data before serialization
  416.      */
  417.     public function beforeSerialize(array $data)
  418.     {
  419.         foreach ($data as $idx => &$value) {
  420.             if ($value instanceof \DateTime) {
  421.                 $value $value->format('Y-m-d H:i:s');
  422.             }
  423.         }
  424.         return $data;
  425.     }
  426.     /**
  427.      * Process data after serialization.
  428.      *
  429.      * @param string $data Data after serialization
  430.      *
  431.      * @return string Processed after before serialization
  432.      */
  433.     public function afterSerialize($data)
  434.     {
  435.         return $data;
  436.     }
  437.     /**
  438.      * Get data to export.
  439.      *
  440.      * @return string|array|\Propel\Runtime\ActiveQuery\ModelCriteria Data to export
  441.      */
  442.     abstract protected function getData();
  443. }