ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilObjectCorePropertiesCachedRepository.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 use ILIAS\Object\Properties\ObjectTypeSpecificProperties\Factory as ObjectTypeSpecificPropertiesFactory;
28 
34 {
35  private const CORE_PROPERTIES_TABLE = 'object_data';
36  private const DESCRIPTION_TABLE = 'object_description';
37 
38  private array $data_cache = [];
39 
40  public function __construct(
41  private readonly ilDBInterface $database,
42  private readonly ilObjectDefinition $obj_definition,
43  private readonly ResourceStorageService $storage_services,
44  private readonly ilObjectTileImageStakeholder $storage_stakeholder,
45  private readonly ilObjectTileImageFlavourDefinition $flavour_definition,
46  private readonly ObjectTypeSpecificPropertiesFactory $object_type_specific_properties_factory
47  ) {
48  }
49 
50  public function preload(array $object_ids): void
51  {
52  $this->data_cache += $this->retrieveDataForObjectIds($object_ids);
53  }
54 
55  public function resetPreloadedData(): void
56  {
57  $this->data_cache = [];
58  }
59 
60  public function getFor(?int $object_id, ?string $type = null): ilObjectCoreProperties
61  {
62  if ($object_id === null
63  || $object_id === 0) {
64  return $this->getDefaultCoreProperties($type);
65  }
66 
67  if (!isset($this->data_cache[$object_id])) {
68  $this->data_cache[$object_id] = $this->retrieveDataForObjectId($object_id);
69  }
70 
71  $data = $this->data_cache[$object_id];
72 
73  $object_type_specific_properties = $this->object_type_specific_properties_factory->getForObjectTypeString($data['type']);
74  $providers = null;
75  $modifications = null;
76  if ($object_type_specific_properties !== null) {
77  $providers = $object_type_specific_properties->getProviders();
78  $modifications = $object_type_specific_properties->getModifications();
79  }
80  return new ilObjectCoreProperties(
82  array_shift($data),
83  array_shift($data),
84  $modifications
85  ),
86  new ilObjectPropertyIsOnline(array_shift($data)),
89  $object_id,
90  $data['type'],
91  array_shift($data),
92  $this->storage_services,
93  $this->storage_stakeholder,
94  $this->flavour_definition,
95  $providers
96  )
97  ),
98  $data
99  );
100  }
101 
103  {
104  if ($properties->getObjectId() === null || $properties->getOwner() === null) {
105  throw new \Exception('The current configuration cannot be saved.');
106  }
107 
108  if ($properties->getPropertyTileImage()->getDeletedFlag()) {
109  $this->deleteOldTileImage($properties->getPropertyTileImage()->getTileImage());
110  $properties = $properties->withPropertyTileImage(
111  $properties->getPropertyTileImage()->withTileImage(
112  $properties->getPropertyTileImage()->getTileImage()->withRid(null)
113  )
114  );
118  $properties->getPropertyTileImage()->getTileImage()->deleteLegacyTileImage();
119  }
120 
124  if ($properties->getPropertyTileImage()->getTileImage()->getRid() !== null) {
125  $properties->getPropertyTileImage()->getTileImage()->deleteLegacyTileImage();
126  }
127 
128  $where = [
129  'obj_id' => [ilDBConstants::T_INTEGER, $properties->getObjectId()]
130  ];
131 
132  $storage_array = [
133  'type' => [ilDBConstants::T_TEXT, $properties->getType()],
134  'title' => [ilDBConstants::T_TEXT, $properties->getPropertyTitleAndDescription()->getTitle()],
135  'description' => [ilDBConstants::T_TEXT, $properties->getPropertyTitleAndDescription()->getDescription()],
136  'owner' => [ilDBConstants::T_INTEGER, $properties->getOwner()],
137  'create_date' => [ilDBConstants::T_DATETIME, $properties->getCreateDate()?->format('Y-m-d H:i:s')],
138  'last_update' => [ilDBConstants::T_DATETIME, (new DateTimeImmutable('now', new DateTimeZone('UTC')))->format('Y-m-d H:i:s')],
139  'import_id' => [ilDBConstants::T_TEXT, $properties->getImportId()],
140  'offline' => [ilDBConstants::T_INTEGER, (int) !$properties->getPropertyIsOnline()->getIsOnline()],
141  'tile_image_rid' => [ilDBConstants::T_TEXT, $properties->getPropertyTileImage()->getTileImage()->getRid()]
142  ];
143  $this->database->update(self::CORE_PROPERTIES_TABLE, $storage_array, $where);
144 
145  if ($this->obj_definition->isRBACObject($properties->getType())) {
146  $this->storeLongDescription($properties->getPropertyTitleAndDescription()->getLongDescription(), $where);
147  }
148 
149  unset($this->data_cache[$properties->getObjectId()]);
150 
151  return $properties;
152  }
153 
154  private function deleteOldTileImage(ilObjectTileImage $tile_image): void
155  {
156  if ($tile_image->getRid() === null) {
157  return;
158  }
159 
160  $i = $this->storage_services->manage()->find($tile_image->getRid());
161  if ($i === null) {
162  return;
163  }
164 
165  $this->storage_services->manage()->remove(
166  $i,
167  $this->storage_stakeholder
168  );
169  }
170 
171  private function getDefaultCoreProperties(?string $type): ilObjectCoreProperties
172  {
173  return (new ilObjectCoreProperties(
177  ))->withType($type);
178  }
179 
183  protected function retrieveDataForObjectId(int $object_id): array
184  {
185  $where = 'WHERE obj.obj_id=' . $this->database->quote($object_id, 'integer');
186  $data = $this->retrieveDataForWhereClause($where);
187 
188  if ($data === []) {
189  throw new \Exception('The object with the following id does not exist: '
190  . (string) $object_id);
191  }
192 
193  return $data[$object_id];
194  }
195 
199  protected function retrieveDataForObjectIds(array $object_ids): array
200  {
201  $where = 'WHERE ' . $this->database->in('obj.obj_id', $object_ids, false, ilDBConstants::T_INTEGER);
202  return $this->retrieveDataForWhereClause($where);
203  }
204 
205  protected function retrieveDataForWhereClause(string $where): array
206  {
207  $query = 'SELECT '
208  . 'obj.obj_id, obj.type, obj.title, obj.description, obj.owner,' . PHP_EOL
209  . 'obj.create_date, obj.last_update, obj.import_id, obj.offline,' . PHP_EOL
210  . 'obj.tile_image_rid, descr.description' . PHP_EOL
211  . 'FROM ' . self::CORE_PROPERTIES_TABLE . ' AS obj' . PHP_EOL
212  . 'LEFT JOIN ' . self::DESCRIPTION_TABLE . ' AS descr' . PHP_EOL
213  . 'ON obj.obj_id = descr.obj_id' . PHP_EOL
214  . $where;
215 
216  $statement = $this->database->query($query);
217  $num_rows = $this->database->numRows($statement);
218 
219  if ($num_rows === 0) {
220  return [];
221  }
222 
223  $data = [];
224  while ($row = $this->database->fetchAssoc($statement)) {
225  $data[$row['obj_id']] = [
226  'title' => $row['title'],
227  'long_description' => $row['description'] ?? '',
228  'is_online' => !((bool) $row['offline']),
229  'tile_image_rid' => $row['tile_image_rid'],
230  'object_id' => $row['obj_id'],
231  'type' => $row['type'],
232  'owner' => $row['owner'],
233  'import_id' => $row['import_id'],
234  'create_date' => $row['create_date'] !== null ? new DateTimeImmutable($row['create_date']) : null,
235  'update_date' => $row['last_update'] !== null ? new DateTimeImmutable($row['last_update']) : null
236  ];
237  }
238 
239  return $data;
240  }
241 
242  protected function storeLongDescription(string $long_description, array $where): void
243  {
244  $description_array = [
245  'description' => [ilDBConstants::T_TEXT, $long_description]
246  ];
247  $this->database->update(self::DESCRIPTION_TABLE, $description_array, $where);
248  }
249 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
storeLongDescription(string $long_description, array $where)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Builds data types.
Definition: Factory.php:35
withPropertyTileImage(ilObjectPropertyTileImage $property_tile_image)
__construct(private readonly ilDBInterface $database, private readonly ilObjectDefinition $obj_definition, private readonly ResourceStorageService $storage_services, private readonly ilObjectTileImageStakeholder $storage_stakeholder, private readonly ilObjectTileImageFlavourDefinition $flavour_definition, private readonly ObjectTypeSpecificPropertiesFactory $object_type_specific_properties_factory)