vendor/netzmacht/contao-toolkit/src/Data/Model/ContaoRepository.php line 81

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Netzmacht\Contao\Toolkit\Data\Model;
  4. use Contao\Model;
  5. use Netzmacht\Contao\Toolkit\Assertion\Assert;
  6. use function array_map;
  7. use function call_user_func_array;
  8. use function str_replace;
  9. /**
  10.  * @template T of Model
  11.  * @implements Repository<T>
  12.  *
  13.  * @SuppressWarnings(PHPMD.TooManyPublicMethods)
  14.  */
  15. class ContaoRepository implements Repository
  16. {
  17.     use QueryProxy;
  18.     /**
  19.      * The model class.
  20.      *
  21.      * @var class-string<T>
  22.      */
  23.     private $modelClass;
  24.     /**
  25.      * @param class-string<T> $modelClass Model class.
  26.      */
  27.     public function __construct(string $modelClass)
  28.     {
  29.         Assert::that($modelClass)
  30.             ->classExists()
  31.             ->subclassOf(Model::class);
  32.         $this->modelClass $modelClass;
  33.     }
  34.     public function getTableName(): string
  35.     {
  36.         return $this->call('getTable');
  37.     }
  38.     /** {@inheritDoc} */
  39.     public function getModelClass(): string
  40.     {
  41.         return $this->modelClass;
  42.     }
  43.     /**
  44.      * {@inheritDoc}
  45.      */
  46.     public function find(int $modelId)
  47.     {
  48.         return $this->call('findByPK', [$modelId]);
  49.     }
  50.     /**
  51.      * {@inheritDoc}
  52.      */
  53.     public function findBy(array $column, array $values, array $options = [])
  54.     {
  55.         $column  $this->addTablePrefix($column);
  56.         $options $this->addTablePrefixToOrder($options);
  57.         return $this->call('findBy', [$column$values$options]);
  58.     }
  59.     /**
  60.      * {@inheritDoc}
  61.      */
  62.     public function findOneBy(array $column, array $values, array $options = [])
  63.     {
  64.         $column  $this->addTablePrefix($column);
  65.         $options $this->addTablePrefixToOrder($options);
  66.         return $this->call('findOneBy', [$column$values$options]);
  67.     }
  68.     /**
  69.      * {@inheritDoc}
  70.      */
  71.     public function findBySpecification(Specification $specification, array $options = [])
  72.     {
  73.         $column  = [];
  74.         $values  = [];
  75.         $options $this->addTablePrefixToOrder($options);
  76.         $specification->buildQuery($column$values);
  77.         $column $this->addTablePrefix($column);
  78.         return $this->findBy($column$values$options);
  79.     }
  80.     /**
  81.      * {@inheritDoc}
  82.      */
  83.     public function findAll(array $options = [])
  84.     {
  85.         $options $this->addTablePrefixToOrder($options);
  86.         return $this->call('findAll', [$options]);
  87.     }
  88.     /**
  89.      * {@inheritDoc}
  90.      */
  91.     public function countBy(array $column, array $values): int
  92.     {
  93.         $column $this->addTablePrefix($column);
  94.         return $this->call('countBy', [$column$values]);
  95.     }
  96.     public function countBySpecification(Specification $specification): int
  97.     {
  98.         $column = [];
  99.         $values = [];
  100.         $specification->buildQuery($column$values);
  101.         return $this->countBy($column$values);
  102.     }
  103.     public function countAll(): int
  104.     {
  105.         return $this->call('countAll');
  106.     }
  107.     /**
  108.      * {@inheritDoc}
  109.      */
  110.     public function save(Model $model)
  111.     {
  112.         $model->save();
  113.     }
  114.     /**
  115.      * {@inheritDoc}
  116.      */
  117.     public function delete(Model $model)
  118.     {
  119.         $model->delete();
  120.     }
  121.     /**
  122.      * Make a call on the model.
  123.      *
  124.      * @param string      $method    Method name.
  125.      * @param list<mixed> $arguments Arguments.
  126.      *
  127.      * @return mixed
  128.      */
  129.     protected function call(string $method, array $arguments = [])
  130.     {
  131.         return call_user_func_array([$this->modelClass$method], $arguments);
  132.     }
  133.     /**
  134.      * Replace placeholder for the table prefix.
  135.      *
  136.      * @param list<string> $column List of columns.
  137.      *
  138.      * @return list<string>
  139.      */
  140.     protected function addTablePrefix(array $column): array
  141.     {
  142.         return array_map(
  143.             [$this'addTablePrefixToColumn'],
  144.             $column
  145.         );
  146.     }
  147.     /**
  148.      * Add table prefix to a column.
  149.      *
  150.      * @param string $column The column.
  151.      */
  152.     private function addTablePrefixToColumn(string $column): string
  153.     {
  154.         $tableName $this->getTableName();
  155.         $column    str_replace(
  156.             ['..'' .'',.''>.''<.''=.'],
  157.             [
  158.                 $tableName '.',
  159.                 ' ' $tableName '.',
  160.                 ',' $tableName '.',
  161.                 '>' $tableName '.',
  162.                 '<' $tableName '.',
  163.                 '=' $tableName '.',
  164.             ],
  165.             $column
  166.         );
  167.         if ($column[0] === '.') {
  168.             $column $tableName $column;
  169.         }
  170.         return $column;
  171.     }
  172.     /**
  173.      * Add table prefix to the order.
  174.      *
  175.      * @param array<string,mixed> $options Query options.
  176.      *
  177.      * @return array<string,mixed>
  178.      */
  179.     private function addTablePrefixToOrder(array $options): array
  180.     {
  181.         if (isset($options['order'])) {
  182.             $options['order'] = $this->addTablePrefixToColumn($options['order']);
  183.         }
  184.         return $options;
  185.     }
  186. }