ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ActiveRecordList.php
Go to the documentation of this file.
1 <?php
30 {
31  protected \arWhereCollection $arWhereCollection;
32  protected \arJoinCollection $arJoinCollection;
33  protected \arOrderCollection $arOrderCollection;
34  protected \arLimitCollection $arLimitCollection;
35  protected \arConcatCollection $arConcatCollection;
36  protected \arSelectCollection $arSelectCollection;
37  protected \arHavingCollection $arHavingCollection;
38  protected bool $loaded = false;
39  protected string $class = '';
43  protected array $result = [];
44  protected array $result_array = [];
45  protected bool $debug = false;
46  protected ?string $date_format = null;
47  protected array $addidtional_parameters = [];
48  protected static ?string $last_query = null;
50  protected ?\ActiveRecord $ar = null;
51  protected bool $raw = false;
52 
56  public function __construct(ActiveRecord $activeRecord)
57  {
58  $this->class = $activeRecord::class;
59  $this->setAR($activeRecord);
60  $this->arWhereCollection = arWhereCollection::getInstance($this->getAR());
61  $this->arJoinCollection = arJoinCollection::getInstance($this->getAR());
62  $this->arLimitCollection = arLimitCollection::getInstance($this->getAR());
63  $this->arOrderCollection = arOrderCollection::getInstance($this->getAR());
64  $this->arConcatCollection = arConcatCollection::getInstance($this->getAR());
65  $this->arSelectCollection = arSelectCollection::getInstance($this->getAR());
66  $this->arHavingCollection = arHavingCollection::getInstance($this->getAR());
67 
68  $arSelect = new arSelect();
69  $arSelect->setTableName($activeRecord->getConnectorContainerName());
70  $arSelect->setFieldName('*');
71  $this->getArSelectCollection()->add($arSelect);
72  }
73 
74  protected function getArConnector(): \arConnector
75  {
76  return arConnectorMap::get($this->getAR());
77  }
78 
79  public function additionalParams(array $additional_params): self
80  {
81  $this->setAddidtionalParameters($additional_params);
82 
83  return $this;
84  }
85 
86 
87  //
88  // Statements
89  //
96  public function where($where, $operator = null): self
97  {
98  $this->loaded = false;
99  if (is_string($where)) {
100  $arWhere = new arWhere();
101  $arWhere->setType(arWhere::TYPE_STRING);
102  $arWhere->setStatement($where);
103  $this->getArWhereCollection()->add($arWhere);
104 
105  return $this;
106  }
107 
108  if (is_array($where)) {
109  foreach ($where as $field_name => $value) {
110  $arWhere = new arWhere();
111  $arWhere->setFieldname($field_name);
112  $arWhere->setValue($value);
113  if ($operator) {
114  if (is_array($operator)) {
115  $arWhere->setOperator($operator[$field_name]);
116  } else {
117  $arWhere->setOperator($operator);
118  }
119  }
120  $this->getArWhereCollection()->add($arWhere);
121  }
122 
123  return $this;
124  }
125 
126  throw new Exception('Wrong where Statement, use strings or arrays');
127  }
128 
133  public function orderBy(string $order_by, string $order_direction = 'ASC'): self
134  {
135  $arOrder = new arOrder();
136  $arOrder->setFieldname($order_by);
137  $arOrder->setDirection($order_direction);
138  $this->getArOrderCollection()->add($arOrder);
139 
140  return $this;
141  }
142 
148  public function limit(int $start, int $end): self
149  {
150  $arLimit = new arLimit();
151  $arLimit->setStart($start);
152  $arLimit->setEnd($end);
153 
154  $this->getArLimitCollection()->add($arLimit);
155 
156  return $this;
157  }
158 
163  public function innerjoinAR(
164  ActiveRecord $activeRecord,
165  $on_this,
166  string $on_external,
167  array $fields = ['*'],
168  string $operator = '=',
169  bool $both_external = false
170  ): self {
171  return $this->innerjoin(
172  $activeRecord->getConnectorContainerName(),
173  $on_this,
174  $on_external,
175  $fields,
176  $operator,
177  $both_external
178  );
179  }
180 
187  protected function join(
188  string $type,
189  string $tablename,
190  $on_this,
191  string $on_external,
192  array $fields = ['*'],
193  string $operator = '=',
194  bool $both_external = false
195  ): self {
196  if (!$both_external && !$this->getAR()->getArFieldList()->isField($on_this)) {
198  }
199  $full_names = false;
200  foreach ($fields as $field_name) {
201  if ($this->getAR()->getArFieldList()->isField($field_name)) {
202  $full_names = true;
203  break;
204  }
205  }
206 
207  $arJoin = new arJoin();
208  $arJoin->setType($type);
209  $arJoin->setFullNames($full_names);
210  $arJoin->setTableName($tablename);
211  $arJoin->setOnFirstField($on_this);
212  $arJoin->setOnSecondField($on_external);
213  $arJoin->setOperator($operator);
214  $arJoin->setFields($fields);
215  $arJoin->setBothExternal($both_external);
216  $this->getArJoinCollection()->add($arJoin);
217 
218  foreach ($fields as $field) {
219  $arSelect = new arSelect();
220  $arSelect->setTableName($arJoin->getTableNameAs());
221  $arSelect->setFieldName($field);
222  $arSelect->setAs($arJoin->getTableNameAs() . '_' . $field);
223  $this->getArSelectCollection()->add($arSelect);
224  }
225 
226  return $this;
227  }
228 
234  public function leftjoin(
235  string $tablename,
236  $on_this,
237  string $on_external,
238  array $fields = ['*'],
239  string $operator = '=',
240  bool $both_external = false
241  ): self {
242  return $this->join(arJoin::TYPE_LEFT, $tablename, $on_this, $on_external, $fields, $operator, $both_external);
243  }
244 
250  public function innerjoin(
251  string $tablename,
252  $on_this,
253  string $on_external,
254  array $fields = ['*'],
255  string $operator = '=',
256  bool $both_external = false
257  ): self {
258  return $this->join(arJoin::TYPE_INNER, $tablename, $on_this, $on_external, $fields, $operator, $both_external);
259  }
260 
264  public function concat(array $fields, string $as): self
265  {
266  $arConcat = new arConcat();
267  $arConcat->setAs($as);
268  $arConcat->setFields($fields);
269  $this->getArConcatCollection()->add($arConcat);
270 
271  return $this;
272  }
273 
275  {
277  }
278 
280  {
282  }
283 
285  {
287  }
288 
290  {
292  }
293 
295  {
297  }
298 
300  {
302  }
303 
305  {
307  }
308 
309  public function setArHavingCollection(\arHavingCollection $arHavingCollection): void
310  {
312  }
313 
314  public function dateFormat(string $date_format = 'd.m.Y - H:i:s'): self
315  {
316  $this->loaded = false;
317  $this->setDateFormat($date_format);
318 
319  return $this;
320  }
321 
322  public function debug(): self
323  {
324  $this->loaded = false;
325  $this->debug = true;
326 
327  return $this;
328  }
329 
330  public function connector(arConnector $arConnector): self
331  {
332  $this->connector = $arConnector;
333 
334  return $this;
335  }
336 
337  public function raw(bool $set_raw = true): self
338  {
339  $this->setRaw($set_raw);
340 
341  return $this;
342  }
343 
344  public function hasSets(): bool
345  {
346  return $this->affectedRows() > 0;
347  }
348 
349  public function affectedRows(): int
350  {
351  return $this->getArConnector()->affectedRows($this);
352  }
353 
354  public function count(): int
355  {
356  return $this->affectedRows();
357  }
358 
359  public function getCollection(): self
360  {
361  return $this;
362  }
363 
364  public function setClass(string $class): void
365  {
366  $this->class = $class;
367  }
368 
369  public function getClass(): string
370  {
371  return $this->class;
372  }
373 
377  public function get(): array
378  {
379  $this->load();
380 
381  return $this->result;
382  }
383 
387  public function getFirstFromLastQuery(): ?\ActiveRecord
388  {
389  $this->loadLastQuery();
390 
391  $result = array_values($this->result);
392 
393  return array_shift($result);
394  }
395 
396  public function first(): ?\ActiveRecord
397  {
398  $this->load();
399 
400  $result = array_values($this->result);
401 
402  return array_shift($result);
403  }
404 
405  public function last(): ?\ActiveRecord
406  {
407  $this->load();
408 
409  $result = array_values($this->result);
410 
411  return array_pop($result);
412  }
413 
419  public function getArray(?string $key = null, string|array|null $values = null): array
420  {
421  $this->load();
422 
423  return $this->buildArray($key, $values);
424  }
425 
431  protected function buildArray(?string $key, $values): array
432  {
433  if ($key === null && $values === null) {
434  return $this->result_array;
435  }
436  $array = [];
437  foreach ($this->result_array as $row) {
438  if ($key) {
439  if (!array_key_exists($key, $row)) {
440  throw new Exception("The attribute $key does not exist on this model.");
441  }
442  $array[$row[$key]] = $this->buildRow($row, $values);
443  } else {
444  $array[] = $this->buildRow($row, $values);
445  }
446  }
447 
448  return $array;
449  }
450 
455  protected function buildRow(?array $row, $values)
456  {
457  if ($values === null) {
458  return $row;
459  }
460 
461  if (!is_array($values)) {
462  return $row[$values];
463  }
464 
465  $array = [];
466  foreach ($row as $key => $value) {
467  if (in_array($key, $values)) {
468  $array[$key] = $value;
469  }
470  }
471 
472  return $array;
473  }
474 
475  protected function load(): void
476  {
477  if ($this->loaded) {
478  return;
479  }
480 
481  $records = $this->getArConnector()->readSet($this);
485  $primaryFieldName = $this->getAR()->getArFieldList()->getPrimaryFieldName();
487  $class_name = $this->getAR()::class;
488  foreach ($records as $record) {
489  $primary_field_value = $record[$primaryFieldName];
490  if (!$this->getRaw()) {
491  $obj = new $class_name(0, $this->getArConnector(), $this->getAddidtionalParameters());
492  $this->result[$primary_field_value] = $obj->buildFromArray($record);
493  }
494  $res_awake = [];
495  if (!$this->getRaw()) {
496  foreach ($record as $key => $value) {
497  $arField = $obj->getArFieldList()->getFieldByName($key);
498  if ($arField !== null && ($arField->isDateField() && $this->getDateFormat())) {
499  $res_awake[$key . '_unformatted'] = $value;
500  $res_awake[$key . '_unix'] = strtotime((string) $value);
501  $value = date($this->getDateFormat(), strtotime((string) $value));
502  }
503  $waked = $this->getAR()->wakeUp($key, $value);
504  $res_awake[$key] = $waked ?? $value;
505  }
506  $this->result_array[$res_awake[$primaryFieldName]] = $res_awake;
507  } else {
508  $this->result_array[$primary_field_value] = $record;
509  }
510  }
511  $this->loaded = true;
512  }
513 
517  protected function loadLastQuery(): void
518  {
519  // $this->readFromDb(self::$last_query);
520  }
521 
522  public function setAR(\ActiveRecord $activeRecord): void
523  {
524  $this->ar = $activeRecord;
525  }
526 
527  public function getAR(): ?\ActiveRecord
528  {
529  return $this->ar;
530  }
531 
532  public function getDebug(): bool
533  {
534  return $this->debug;
535  }
536 
537  public function setDateFormat(string $date_format): void
538  {
539  $this->date_format = $date_format;
540  }
541 
542  public function getDateFormat(): string
543  {
544  return $this->date_format ?? '';
545  }
546 
547  public static function setLastQuery(string $last_query): void
548  {
549  self::$last_query = $last_query;
550  }
551 
552  public static function getLastQuery(): ?string
553  {
554  return self::$last_query;
555  }
556 
560  public function setAddidtionalParameters(array $addidtional_parameters): void
561  {
562  $this->addidtional_parameters = $addidtional_parameters;
563  }
564 
568  public function getAddidtionalParameters(): array
569  {
571  }
572 
573  public function setRaw(bool $raw): void
574  {
575  $this->raw = $raw;
576  }
577 
578  public function getRaw(): bool
579  {
580  return $this->raw;
581  }
582 }
arSelectCollection $arSelectCollection
where($where, $operator=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
join(string $type, string $tablename, $on_this, string $on_external, array $fields=[' *'], string $operator='=', bool $both_external=false)
raw(bool $set_raw=true)
const TYPE_LEFT
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ActiveRecord $activeRecord)
PhpFieldAssignmentTypeMismatchInspection
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
arJoinCollection $arJoinCollection
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const TYPE_INNER
arConcatCollection $arConcatCollection
static setLastQuery(string $last_query)
orderBy(string $order_by, string $order_direction='ASC')
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
arHavingCollection $arHavingCollection
getArray(?string $key=null, string|array|null $values=null)
arWhereCollection $arWhereCollection
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
limit(int $start, int $end)
arOrderCollection $arOrderCollection
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
additionalParams(array $additional_params)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
buildArray(?string $key, $values)
getConnectorContainerName()
Return the Name of your Connector Table
concat(array $fields, string $as)
connector(arConnector $arConnector)
setDateFormat(string $date_format)
arLimitCollection $arLimitCollection
dateFormat(string $date_format='d.m.Y - H:i:s')
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
innerjoinAR(ActiveRecord $activeRecord, $on_this, string $on_external, array $fields=[' *'], string $operator='=', bool $both_external=false)
innerjoin(string $tablename, $on_this, string $on_external, array $fields=[' *'], string $operator='=', bool $both_external=false)
setAddidtionalParameters(array $addidtional_parameters)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setAR(\ActiveRecord $activeRecord)
buildRow(?array $row, $values)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setArHavingCollection(\arHavingCollection $arHavingCollection)
leftjoin(string $tablename, $on_this, string $on_external, array $fields=[' *'], string $operator='=', bool $both_external=false)
const TYPE_STRING
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const LIST_JOIN_ON_WRONG_FIELD
static get(ActiveRecord $activeRecord)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...