core/lib/Thelia/Core/Template/Element/LoopResult.php line 164

  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\Core\Template\Element;
  12. use Propel\Runtime\Collection\ObjectCollection;
  13. use Propel\Runtime\Util\PropelModelPager;
  14. class LoopResult implements \Iterator\JsonSerializable
  15. {
  16.     private $position;
  17.     protected $collection = [];
  18.     public $resultsCollection;
  19.     protected $versioned false;
  20.     protected $timestamped false;
  21.     protected $countable false;
  22.     public function __construct($resultsCollection)
  23.     {
  24.         $this->position 0;
  25.         $this->resultsCollection $resultsCollection;
  26.     }
  27.     /**
  28.      * @param bool $countable
  29.      */
  30.     public function setCountable($countable true): void
  31.     {
  32.         $this->countable true === $countable;
  33.     }
  34.     /**
  35.      * @param bool $timestamped
  36.      */
  37.     public function setTimestamped($timestamped true): void
  38.     {
  39.         $this->timestamped true === $timestamped;
  40.     }
  41.     /**
  42.      * @param bool $versioned
  43.      */
  44.     public function setVersioned($versioned true): void
  45.     {
  46.         $this->versioned true === $versioned;
  47.     }
  48.     public function isEmpty()
  49.     {
  50.         return \count($this->collection) == 0;
  51.     }
  52.     public function addRow(LoopResultRow $row): void
  53.     {
  54.         if (true === $this->versioned) {
  55.             foreach ($this->getVersionOutputs() as $output) {
  56.                 $row->set($output[0], $row->model->{$output[1]}());
  57.             }
  58.         }
  59.         if (true === $this->timestamped) {
  60.             foreach ($this->getTimestampOutputs() as $output) {
  61.                 $row->set($output[0], $row->model->{$output[1]}());
  62.             }
  63.         }
  64.         if (true === $this->countable) {
  65.             $row->set('LOOP_COUNT'$this->getCount());
  66.             $row->set('LOOP_TOTAL'$this->getResultDataCollectionCount());
  67.         }
  68.         $this->collection[] = $row;
  69.     }
  70.     /**
  71.      * @param int $key
  72.      */
  73.     public function remove($key): void
  74.     {
  75.         if (isset($this->collection[$key])) {
  76.             unset($this->collection[$key]);
  77.         }
  78.     }
  79.     /**
  80.      * Adjust the collection once all results have been added.
  81.      */
  82.     public function finalizeRows(): void
  83.     {
  84.         // Fix rows LOOP_TOTAL if parseResults() did not added all resultsCollection items to the collection array
  85.         // see https://github.com/thelia/thelia/issues/2337
  86.         if (true === $this->countable && $this->getResultDataCollectionCount() !== $realCount $this->getCount()) {
  87.             foreach ($this->collection as &$item) {
  88.                 $item->set('LOOP_TOTAL'$realCount);
  89.             }
  90.         }
  91.     }
  92.     public function getCount()
  93.     {
  94.         return \count($this->collection);
  95.     }
  96.     public function getResultDataCollectionCount()
  97.     {
  98.         if ($this->resultsCollection instanceof ObjectCollection || $this->resultsCollection instanceof PropelModelPager) {
  99.             return $this->resultsCollection->count();
  100.         }
  101.         if (\is_array($this->resultsCollection)) {
  102.             return \count($this->resultsCollection);
  103.         }
  104.         return 0;
  105.     }
  106.     public function getResultDataCollection()
  107.     {
  108.         return $this->resultsCollection;
  109.     }
  110.     /**
  111.      * (PHP 5 &gt;= 5.0.0)<br/>
  112.      * Return the current element.
  113.      *
  114.      * @see http://php.net/manual/en/iterator.current.php
  115.      *
  116.      * @return \Thelia\Core\Template\Element\LoopResultRow
  117.      */
  118.     public function current()
  119.     {
  120.         return $this->collection[$this->position];
  121.     }
  122.     /**
  123.      * (PHP 5 &gt;= 5.0.0)<br/>
  124.      * Move forward to next element.
  125.      *
  126.      * @see http://php.net/manual/en/iterator.next.php
  127.      *
  128.      * @return void any returned value is ignored
  129.      */
  130.     public function next(): void
  131.     {
  132.         ++$this->position;
  133.     }
  134.     /**
  135.      * (PHP 5 &gt;= 5.0.0)<br/>
  136.      * Return the key of the current element.
  137.      *
  138.      * @see http://php.net/manual/en/iterator.key.php
  139.      *
  140.      * @return mixed scalar on success, or null on failure
  141.      */
  142.     public function key()
  143.     {
  144.         return $this->position;
  145.     }
  146.     /**
  147.      * (PHP 5 &gt;= 5.0.0)<br/>
  148.      * Checks if current position is valid.
  149.      *
  150.      * @see http://php.net/manual/en/iterator.valid.php
  151.      *
  152.      * @return bool The return value will be casted to boolean and then evaluated.
  153.      *              Returns true on success or false on failure.
  154.      */
  155.     public function valid(): bool
  156.     {
  157.         return isset($this->collection[$this->position]);
  158.     }
  159.     /**
  160.      * (PHP 5 &gt;= 5.0.0)<br/>
  161.      * Rewind the Iterator to the first element.
  162.      *
  163.      * @see http://php.net/manual/en/iterator.rewind.php
  164.      *
  165.      * @return void any returned value is ignored
  166.      */
  167.     public function rewind(): void
  168.     {
  169.         $this->position 0;
  170.     }
  171.     protected function getTimestampOutputs()
  172.     {
  173.         return [
  174.             ['CREATE_DATE''getCreatedAt'],
  175.             ['UPDATE_DATE''getUpdatedAt'],
  176.         ];
  177.     }
  178.     protected function getVersionOutputs()
  179.     {
  180.         return [
  181.             ['VERSION''getVersion'],
  182.             ['VERSION_DATE''getVersionCreatedAt'],
  183.             ['VERSION_AUTHOR''getVersionCreatedBy'],
  184.         ];
  185.     }
  186.     /**
  187.      * {@inheritdoc}
  188.      */
  189.     public function jsonSerialize()
  190.     {
  191.         $return = [];
  192.         foreach ($this->collection as $collection) {
  193.             $return[] = $collection->getVarVal();
  194.         }
  195.         return $return;
  196.     }
  197. }