ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilObjectCorePropertiesCachedRepository Class Reference
+ Inheritance diagram for ilObjectCorePropertiesCachedRepository:
+ Collaboration diagram for ilObjectCorePropertiesCachedRepository:

Public Member Functions

 __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)
 
 preload (array $object_ids)
 
 resetPreloadedData ()
 
 getFor (?int $object_id, ?string $type=null)
 
 store (ilObjectCoreProperties $properties)
 
- Public Member Functions inherited from ilObjectCorePropertiesRepository
 getFor (int $object_id, ?string $type=null)
 

Protected Member Functions

 retrieveDataForObjectId (int $object_id)
 
 retrieveDataForObjectIds (array $object_ids)
 
 retrieveDataForWhereClause (string $where)
 
 storeLongDescription (string $long_description, array $where)
 

Private Member Functions

 deleteOldTileImage (ilObjectTileImage $tile_image)
 
 getDefaultCoreProperties (?string $type)
 

Private Attributes

const CORE_PROPERTIES_TABLE = 'object_data'
 
const DESCRIPTION_TABLE = 'object_description'
 
array $data_cache = []
 

Detailed Description

Author
Stephan Kergomard

Definition at line 33 of file ilObjectCorePropertiesCachedRepository.php.

Constructor & Destructor Documentation

◆ __construct()

ilObjectCorePropertiesCachedRepository::__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 
)

Definition at line 40 of file ilObjectCorePropertiesCachedRepository.php.

47  {
48  }

Member Function Documentation

◆ deleteOldTileImage()

ilObjectCorePropertiesCachedRepository::deleteOldTileImage ( ilObjectTileImage  $tile_image)
private

Definition at line 154 of file ilObjectCorePropertiesCachedRepository.php.

References ILIAS\Object\Properties\CoreProperties\TileImage\ilObjectTileImage\getRid(), and null.

Referenced by store().

154  : 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  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getDefaultCoreProperties()

ilObjectCorePropertiesCachedRepository::getDefaultCoreProperties ( ?string  $type)
private

◆ getFor()

ilObjectCorePropertiesCachedRepository::getFor ( ?int  $object_id,
?string  $type = null 
)

Definition at line 60 of file ilObjectCorePropertiesCachedRepository.php.

References $data, getDefaultCoreProperties(), null, and retrieveDataForObjectId().

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  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the call graph for this function:

◆ preload()

ilObjectCorePropertiesCachedRepository::preload ( array  $ids)
Parameters
array<int>$ids

Implements ilObjectCorePropertiesRepository.

Definition at line 50 of file ilObjectCorePropertiesCachedRepository.php.

References retrieveDataForObjectIds().

50  : void
51  {
52  $this->data_cache += $this->retrieveDataForObjectIds($object_ids);
53  }
+ Here is the call graph for this function:

◆ resetPreloadedData()

ilObjectCorePropertiesCachedRepository::resetPreloadedData ( )

Implements ilObjectCorePropertiesRepository.

Definition at line 55 of file ilObjectCorePropertiesCachedRepository.php.

55  : void
56  {
57  $this->data_cache = [];
58  }

◆ retrieveDataForObjectId()

ilObjectCorePropertiesCachedRepository::retrieveDataForObjectId ( int  $object_id)
protected
Returns
array<mixed>

Definition at line 183 of file ilObjectCorePropertiesCachedRepository.php.

References $data, and retrieveDataForWhereClause().

Referenced by getFor().

183  : 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  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ retrieveDataForObjectIds()

ilObjectCorePropertiesCachedRepository::retrieveDataForObjectIds ( array  $object_ids)
protected
Parameters
array<int>$object_ids

Definition at line 199 of file ilObjectCorePropertiesCachedRepository.php.

References retrieveDataForWhereClause(), and ilDBConstants\T_INTEGER.

Referenced by preload().

199  : array
200  {
201  $where = 'WHERE ' . $this->database->in('obj.obj_id', $object_ids, false, ilDBConstants::T_INTEGER);
202  return $this->retrieveDataForWhereClause($where);
203  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ retrieveDataForWhereClause()

ilObjectCorePropertiesCachedRepository::retrieveDataForWhereClause ( string  $where)
protected

Definition at line 205 of file ilObjectCorePropertiesCachedRepository.php.

References $data, and null.

Referenced by retrieveDataForObjectId(), and retrieveDataForObjectIds().

205  : 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  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the caller graph for this function:

◆ store()

ilObjectCorePropertiesCachedRepository::store ( ilObjectCoreProperties  $properties)

Remove with ILIAS10

Remove with ILIAS10

Implements ilObjectCorePropertiesRepository.

Definition at line 102 of file ilObjectCorePropertiesCachedRepository.php.

References deleteOldTileImage(), ilObjectCoreProperties\getCreateDate(), ilObjectCoreProperties\getImportId(), ilObjectCoreProperties\getObjectId(), ilObjectCoreProperties\getOwner(), ilObjectCoreProperties\getPropertyIsOnline(), ilObjectCoreProperties\getPropertyTileImage(), ilObjectCoreProperties\getPropertyTitleAndDescription(), ilObjectCoreProperties\getType(), ILIAS\Repository\int(), null, storeLongDescription(), ilDBConstants\T_DATETIME, ilDBConstants\T_INTEGER, ilDBConstants\T_TEXT, and ilObjectCoreProperties\withPropertyTileImage().

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  }
storeLongDescription(string $long_description, array $where)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
withPropertyTileImage(ilObjectPropertyTileImage $property_tile_image)
+ Here is the call graph for this function:

◆ storeLongDescription()

ilObjectCorePropertiesCachedRepository::storeLongDescription ( string  $long_description,
array  $where 
)
protected

Definition at line 242 of file ilObjectCorePropertiesCachedRepository.php.

References ilDBConstants\T_TEXT.

Referenced by store().

242  : void
243  {
244  $description_array = [
245  'description' => [ilDBConstants::T_TEXT, $long_description]
246  ];
247  $this->database->update(self::DESCRIPTION_TABLE, $description_array, $where);
248  }
+ Here is the caller graph for this function:

Field Documentation

◆ $data_cache

array ilObjectCorePropertiesCachedRepository::$data_cache = []
private

Definition at line 38 of file ilObjectCorePropertiesCachedRepository.php.

◆ CORE_PROPERTIES_TABLE

const ilObjectCorePropertiesCachedRepository::CORE_PROPERTIES_TABLE = 'object_data'
private

Definition at line 35 of file ilObjectCorePropertiesCachedRepository.php.

◆ DESCRIPTION_TABLE

const ilObjectCorePropertiesCachedRepository::DESCRIPTION_TABLE = 'object_description'
private

Definition at line 36 of file ilObjectCorePropertiesCachedRepository.php.


The documentation for this class was generated from the following file: