ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMMItemRepository.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
35 
40 class ilMMItemRepository implements Request
41 {
42  private ilDBInterface $db;
43 
45 
47 
48  private Container $cache;
49 
54  public function __construct()
55  {
56  global $DIC;
57  $this->cache = $DIC->globalCache()->get($this);
58  $this->db = $DIC->database();
59  $this->main_collector = $DIC->globalScreen()->collector()->mainmenu();
60  $this->main_collector->collectOnce();
61  $this->services = $DIC->globalScreen();
62 
63  foreach ($this->main_collector->getRawUnfilteredItems() as $top_item) {
64  ilMMItemStorage::register($top_item);
65  }
66  }
67 
68  public function getContainerKey(): string
69  {
70  return 'mm_items';
71  }
72 
73 
74  public function isForced(): bool
75  {
76  return false;
77  }
78 
79  public function clearCache(): void
80  {
81  $this->cache->flush();
82  }
83 
88  public function getSingleItem(IdentificationInterface $identification): isItem
89  {
90  return $this->main_collector->getSingleItemFromRaw($identification);
91  }
92 
93  public function getSingleItemFromFilter(IdentificationInterface $identification): isItem
94  {
95  return $this->main_collector->getSingleItemFromFilter($identification);
96  }
97 
98  public function resolveIdentificationFromString(string $identification_string): IdentificationInterface
99  {
100  return $this->services->identification()->fromSerializedIdentification($identification_string);
101  }
102 
106  public function repository(): ilMMItemRepository
107  {
108  return $this;
109  }
110 
115  public function getTopItems(): array
116  {
117  return ilMMItemStorage::where(" parent_identification = '' OR parent_identification IS NULL ")->orderBy('position')->getArray();
118  }
119 
123  public function getSubItemsForTable(): array
124  {
125  $r = $this->db->query(
126  "SELECT sub_items.*, top_items.position AS parent_position
127 FROM il_mm_items AS sub_items
128 LEFT JOIN il_mm_items AS top_items ON top_items.identification = sub_items.parent_identification
129 WHERE sub_items.parent_identification != '' ORDER BY top_items.position, parent_identification, sub_items.position ASC"
130  );
131  $return = [];
132  while ($data = $this->db->fetchAssoc($r)) {
133  $return[] = $data;
134  }
135 
136  return $return;
137  }
138 
139  public function flushLostItems(): void
140  {
141  foreach ($this->getTopItems() as $item) {
142  $item_facade = $this->getItemFacade($this->services->identification()->fromSerializedIdentification($item['identification']));
143  if (Lost::class === $item_facade->getType()) {
144  $item_facade->delete();
145  }
146  }
147 
148  foreach ($this->getSubItemsForTable() as $item) {
149  $item_facade = $this->getItemFacade($this->services->identification()->fromSerializedIdentification($item['identification']));
150  if (Lost::class === $item_facade->getType()) {
151  $item_facade->delete();
152  }
153  }
154  }
155 
156  public function hasLostItems(): bool
157  {
158  foreach ($this->getTopItems() as $item) {
159  $item_facade = $this->getItemFacade($this->services->identification()->fromSerializedIdentification($item['identification']));
160  if (Lost::class === $item_facade->getType()) {
161  return true;
162  }
163  }
164 
165  foreach ($this->getSubItemsForTable() as $item) {
166  $item_facade = $this->getItemFacade($this->services->identification()->fromSerializedIdentification($item['identification']));
167  if (Lost::class === $item_facade->getType()) {
168  return true;
169  }
170  }
171  return false;
172  }
173 
180  {
181  if ($identification === null || $identification instanceof NullIdentification || $identification instanceof NullPluginIdentification) {
182  return new ilMMNullItemFacade($identification ?: new NullIdentification(), $this->main_collector);
183  }
184  if ($identification->getClassName() === CustomMainBarProvider::class) {
185  return new ilMMCustomItemFacade($identification, $this->main_collector);
186  }
187 
188  return new ilMMItemFacade($identification, $this->main_collector);
189  }
190 
196  public function getItemFacadeForIdentificationString(string $identification): ilMMItemFacadeInterface
197  {
198  $id = $this->services->identification()->fromSerializedIdentification($identification);
199 
200  return $this->getItemFacade($id);
201  }
202 
203  public function getPossibleParentsForFormAndTable(): array
204  {
205  static $parents;
206  if ($parents === null) {
207  $parents = [];
208  foreach (array_keys($this->getTopItems()) as $top_item_identification) {
209  $identification = $this->services->identification()->fromSerializedIdentification($top_item_identification);
210  $item = $this->getSingleItem($identification);
211  if ($item instanceof TopParentItem) {
212  $parents[$top_item_identification] = $this->getItemFacade($identification)
213  ->getDefaultTitle();
214  }
215  }
216  }
217 
218  return $parents;
219  }
220 
224  public function getPossibleSubItemTypesWithInformation(): array
225  {
226  $types = [];
227  foreach ($this->main_collector->getTypeInformationCollection()->getAll() as $information) {
228  if ($information->isCreationPrevented()) {
229  continue;
230  }
231  if ($information->isChild()) {
232  if ($information->getType() === TopLinkItem::class) { // since these two types are identical (more or less), we truncate one
233  continue;
234  }
235  $types[$information->getType()] = $information;
236  }
237  }
238 
239  return $types;
240  }
241 
245  public function getPossibleTopItemTypesWithInformation(bool $new): array
246  {
247  $types = [];
248  foreach ($this->main_collector->getTypeInformationCollection()->getAll() as $information) {
249  if (!$new || $information->isTop()) {
250  $types[$information->getType()] = $information;
251  }
252  }
253 
254  return $types;
255  }
256 
262  public function getTypeHandlerForType(string $type): TypeHandler
263  {
264  $item = $this->services->mainBar()->custom($type, new NullIdentification());
265 
266  return $this->main_collector->getTypeHandlerForItem($item);
267  }
268 
272  public function updateItem(ilMMItemFacadeInterface $item_facade): void
273  {
274  if ($item_facade->isEditable()) {
275  $item_facade->update();
276  $this->clearCache();
277  }
278  }
279 
283  public function createItem(ilMMItemFacadeInterface $item_facade): void
284  {
285  $item_facade->create();
286  $this->clearCache();
287  }
288 
292  public function deleteItem(ilMMItemFacadeInterface $item_facade): void
293  {
294  if ($item_facade->isDeletable()) {
295  $item_facade->delete();
296  $this->clearCache();
297  }
298  }
299 }
resolveIdentificationFromString(string $identification_string)
getItemFacadeForIdentificationString(string $identification)
Class MainMenuMainCollector This Collector will collect and then provide all available slates from th...
getPossibleTopItemTypesWithInformation(bool $new)
deleteItem(ilMMItemFacadeInterface $item_facade)
Class ilMMNullItemFacade.
static where($where, $operator=null)
Class ilMMItemRepository.
Class ilMMItemFacade.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
updateItem(ilMMItemFacadeInterface $item_facade)
static register(isItem $item)
global $DIC
Definition: shib_login.php:22
__construct()
ilMMItemRepository constructor.
getSingleItemFromFilter(IdentificationInterface $identification)
Class ilMMCustomItemFacade.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
createItem(ilMMItemFacadeInterface $item_facade)
getItemFacade(?IdentificationInterface $identification=null)
Interface ilMMItemFacadeInterface.
MainMenuMainCollector $main_collector
getSingleItem(IdentificationInterface $identification)
$r