ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ObjectReferencePropertiesCachedRepository.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
26 {
27  private const REFERENCE_PROPERTIES_TABLE = 'object_reference';
28 
29  private array $data_cache = [];
30 
31  public function __construct(
32  private readonly ObjectAvailabilityPeriodPropertiesCachedRepository $time_based_activation_properties_repository,
33  private readonly \ilDBInterface $database
34  ) {
35  }
36 
37  public function getFor(?int $object_reference_id): ObjectReferenceProperties
38  {
39  if ($object_reference_id === null
40  || $object_reference_id === 0) {
41  return new ObjectReferenceProperties();
42  }
43 
44  if (!isset($this->data_cache[$object_reference_id])) {
45  $this->data_cache[$object_reference_id] = $this->retrieveDataForObjectReferenceId($object_reference_id);
46  }
47 
48  $data = $this->data_cache[$object_reference_id];
49  return new ObjectReferenceProperties(
50  $object_reference_id,
51  $data['obj_id'],
52  $data['date_of_deletion'],
53  $data['deleted_by'],
54  $this->time_based_activation_properties_repository->getFor($object_reference_id)
55  );
56  }
57 
59  ObjectAvailabilityPeriodProperty $time_based_activation_property
60  ): void {
61  $this->time_based_activation_properties_repository->store(
62  $time_based_activation_property
63  );
64  }
65 
70  public function preload(array $object_reference_ids): void
71  {
72  $this->data_cache += $this->retrieveDataForObjectReferenceIds($object_reference_ids);
73  $this->time_based_activation_properties_repository->preload($object_reference_ids);
74  }
75 
76  public function resetPreloadedData(): void
77  {
78  $this->data_cache = [];
79  $this->reference_properties_repository->resetPreloadedData();
80  }
81 
85  protected function retrieveDataForObjectReferenceId(int $object_reference_id): array
86  {
87  $where = 'WHERE ref_id=' . $this->database->quote($object_reference_id, \ilDBConstants::T_INTEGER);
88  $data = $this->retrieveDataForWhereClause($where);
89 
90  if ($data === []) {
91  throw new \Exception('The object with the following reference_id does not exist: '
92  . (string) $object_reference_id);
93  }
94 
95  return $data[$object_reference_id];
96  }
97 
101  protected function retrieveDataForObjectReferenceIds(array $object_reference_ids): array
102  {
103  $where = 'WHERE ' . $this->database->in('ref_id', $object_reference_ids, false, \ilDBConstants::T_INTEGER);
104  return $this->retrieveDataForWhereClause($where);
105  }
106 
107  protected function retrieveDataForWhereClause(string $where): array
108  {
109  $query = 'SELECT '
110  . 'ref_id, obj_id, deleted, deleted_by' . PHP_EOL
111  . 'FROM ' . self::REFERENCE_PROPERTIES_TABLE . PHP_EOL
112  . $where;
113 
114  $statement = $this->database->query($query);
115  $num_rows = $this->database->numRows($statement);
116 
117  if ($num_rows === 0) {
118  return [];
119  }
120 
121  $data = [];
122  while ($row = $this->database->fetchAssoc($statement)) {
123  $data[$row['ref_id']] = [
124  'obj_id' => $row['obj_id'],
125  'date_of_deletion' => $row['deleted'] !== null
126  ? new \DateTimeImmutable($row['deleted'], new \DateTimeZone('UTC'))
127  : null,
128  'deleted_by' => $row['deleted_by']
129  ];
130  }
131 
132  return $data;
133  }
134 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(private readonly ObjectAvailabilityPeriodPropertiesCachedRepository $time_based_activation_properties_repository, private readonly \ilDBInterface $database)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...