ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjLearningSequence.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  public const OBJ_TYPE = 'lso';
24 
25  public const E_CREATE = 'create';
26  public const E_UPDATE = 'update';
27  public const E_DELETE = 'delete';
28 
29  protected ?ilLSItemsDB $items_db = null;
34  protected ?ilLSStateDB $state_db = null;
39  protected ?ArrayAccess $di = null;
40  protected ?ArrayAccess $local_di = null;
42  protected ArrayAccess $dic;
43  protected ilCtrl $ctrl;
44  protected \ILIAS\News\Service $il_news;
46 
47 
48  public function __construct(int $id = 0, bool $call_by_reference = true)
49  {
50  global $DIC;
51  $this->dic = $DIC;
52 
53  $this->type = self::OBJ_TYPE;
54  $this->lng = $DIC['lng'];
55  $this->ctrl = $DIC['ilCtrl'];
56  $this->user = $DIC['ilUser'];
57  $this->tree = $DIC['tree'];
58  $this->log = $DIC["ilLoggerFactory"]->getRootLogger();
59  $this->app_event_handler = $DIC['ilAppEventHandler'];
60  $this->il_news = $DIC->news();
61  $this->il_condition_handler = new ilConditionHandler();
62 
64 
65  $this->lng->loadLanguageModule('rbac');
66  }
67 
68  public static function getInstanceByRefId(int $ref_id): ?\ilObject
69  {
70  return ilObjectFactory::getInstanceByRefId($ref_id, false);
71  }
72 
73  public function read(): void
74  {
75  parent::read();
76  $this->getLSSettings();
77  if ($this->getRefId()) {
78  $this->getLSActivation();
79  }
80  }
81 
82  public function create(): int
83  {
84  $id = parent::create();
85  if (!$id) {
86  return 0;
87  }
88  $this->raiseEvent(self::E_CREATE);
89 
90  return $this->getId();
91  }
92 
93  public function update(): bool
94  {
95  if (!parent::update()) {
96  return false;
97  }
98  $this->raiseEvent(self::E_UPDATE);
99 
100  return true;
101  }
102 
103  public function delete(): bool
104  {
105  if (!parent::delete()) {
106  return false;
107  }
108 
110  $this->getSettingsDB()->delete($this->getId());
111  $this->getStateDB()->deleteFor($this->getRefId());
112  $this->getActivationDB()->deleteForRefId($this->getRefId());
113 
114  $this->raiseEvent(self::E_DELETE);
115 
116  return true;
117  }
118 
119  protected function raiseEvent(string $event_type): void
120  {
121  $this->app_event_handler->raise(
122  'components/ILIAS/LearningSequence',
123  $event_type,
124  array(
125  'obj_id' => $this->getId(),
126  'appointments' => null
127  )
128  );
129  }
130 
131  public function cloneObject(int $target_id, int $copy_id = 0, bool $omit_tree = false): ?ilObject
132  {
134  $new_obj = parent::cloneObject($target_id, $copy_id, $omit_tree);
135 
136  $this->cloneAutoGeneratedRoles($new_obj);
137  $this->cloneMetaData($new_obj);
138  $this->cloneSettings($new_obj);
139  $this->cloneLPSettings($new_obj->getId());
140  $this->cloneActivation($new_obj, $copy_id);
141  $this->cloneIntroAndExtroContentPages($new_obj, [self::CP_INTRO, self::CP_EXTRO]);
142 
143  $roles = $new_obj->getLSRoles();
144  $roles->addLSMember(
145  $this->user->getId(),
146  $roles->getDefaultAdminRole()
147  );
148  return $new_obj;
149  }
150 
151  protected function cloneIntroAndExtroContentPages(ilObjLearningSequence $new_obj, array $cp_types): void
152  {
153  foreach ($cp_types as $type) {
154  $old_intro_page_id = $this->getContentPageId($type);
156  "cont",
157  $old_intro_page_id
158  )) {
159  $new_obj->createContentPage($type);
160  $new_copg_id = $new_obj->getContentPageId($type);
161  $original_page = new \ilContainerPage($old_intro_page_id);
162  $original_page->copy($new_copg_id, "cont", $new_copg_id);
163  }
164  }
165  }
166 
167  protected function cloneAutoGeneratedRoles(ilObjLearningSequence $new_obj): bool
168  {
169  $admin = $this->getDefaultAdminRole();
170  $new_admin = $new_obj->getDefaultAdminRole();
171 
172  if (!$admin || !$new_admin || !$this->getRefId() || !$new_obj->getRefId()) {
173  $this->log->write(__METHOD__ . ' : Error cloning auto generated role: il_lso_admin');
174  }
175 
176  $this->rbac_admin->copyRolePermissions($admin, $this->getRefId(), $new_obj->getRefId(), $new_admin, true);
177  $this->log->write(__METHOD__ . ' : Finished copying of role lso_admin.');
178 
179  $member = $this->getDefaultMemberRole();
180  $new_member = $new_obj->getDefaultMemberRole();
181 
182  if (!$member || !$new_member) {
183  $this->log->write(__METHOD__ . ' : Error cloning auto generated role: il_lso_member');
184  }
185 
186  $this->rbac_admin->copyRolePermissions($member, $this->getRefId(), $new_obj->getRefId(), $new_member, true);
187  $this->log->write(__METHOD__ . ' : Finished copying of role lso_member.');
188 
189  return true;
190  }
191 
192  protected function cloneSettings(ilObjLearningSequence $new_obj): void
193  {
194  $source = $this->getLSSettings();
195  $target = $new_obj->getLSSettings();
196 
197  foreach ($source->getUploads() as $key => $upload_info) {
198  $target = $target->withUpload($upload_info, $key);
199  }
200 
201  foreach ($source->getDeletions() as $deletion) {
202  $target = $target->withDeletion($deletion);
203  }
204 
205  $target = $target
206  ->withAbstract($source->getAbstract())
207  ->withExtro($source->getExtro())
208  ->withAbstractImage($source->getAbstractImage())
209  ->withExtroImage($source->getExtroImage())
210  ;
211 
212  $new_obj->updateSettings($target);
213  }
214 
215  protected function cloneLPSettings(int $obj_id): void
216  {
217  $lp_settings = new ilLPObjSettings($this->getId());
218  $lp_settings->cloneSettings($obj_id);
219  }
220 
221  protected function cloneActivation(ilObjLearningSequence $new_obj, int $a_copy_id): void
222  {
223  // #14596
224  $cwo = ilCopyWizardOptions::_getInstance($a_copy_id);
225  if ($cwo->isRootNode($this->getRefId())) {
226  $activation = $new_obj->getLSActivation()->withIsOnline(false);
227  } else {
228  $activation = $new_obj->getLSActivation()
229  ->withIsOnline($this->getLSActivation()->getIsOnline())
230  ->withActivationStart($this->getLSActivation()->getActivationStart())
231  ->withActivationEnd($this->getLSActivation()->getActivationEnd());
232  }
233 
234  $new_status = ($new_obj->getLSActivation()->getEffectiveOnlineStatus())
235  ? $new_obj->getObjectProperties()->getPropertyIsOnline()->withOnline()
236  : $new_obj->getObjectProperties()->getPropertyIsOnline()->withOffline();
237  $new_obj->getObjectProperties()->storePropertyIsOnline($new_status);
238 
239  $new_obj->getActivationDB()->store(
240  $activation
241  );
242  }
243 
244  protected function getDIC(): ArrayAccess
245  {
246  return $this->dic;
247  }
248 
249  public function getDI(): ArrayAccess
250  {
251  if (is_null($this->di)) {
252  $di = new ilLSDI();
253  $di->init($this->getDIC());
254  $this->di = $di;
255  }
256  return $this->di;
257  }
258 
259  public function getLocalDI(): ArrayAccess
260  {
261  if (is_null($this->local_di)) {
262  $di = new ilLSLocalDI();
263  $di->init(
264  $this->getDIC(),
265  $this->getDI(),
266  new \ILIAS\Data\Factory(),
267  $this
268  );
269  $this->local_di = $di;
270  }
271  return $this->local_di;
272  }
273 
275  {
276  if (!$this->settings_db) {
277  $this->settings_db = $this->getDI()['db.settings'];
278  }
279  return $this->settings_db;
280  }
281 
283  {
284  if (!$this->activation_db) {
285  $this->activation_db = $this->getDI()['db.activation'];
286  }
287  return $this->activation_db;
288  }
289 
291  {
292  if (!$this->ls_activation) {
293  $this->ls_activation = $this->getActivationDB()->getActivationForRefId($this->getRefId());
294  }
295 
296  return $this->ls_activation;
297  }
298 
299  public function updateActivation(ilLearningSequenceActivation $settings): void
300  {
301  $this->getActivationDB()->store($settings);
302  $this->ls_activation = $settings;
303  }
304 
306  {
307  if (!$this->ls_settings) {
308  $this->ls_settings = $this->getSettingsDB()->getSettingsFor($this->getId());
309  }
310 
311  return $this->ls_settings;
312  }
313 
314  public function updateSettings(ilLearningSequenceSettings $settings): void
315  {
316  $this->getSettingsDB()->store($settings);
317  $this->ls_settings = $settings;
318  }
319 
320  protected function getLSItemsDB(): ilLSItemsDB
321  {
322  if (!$this->items_db) {
323  $this->items_db = $this->getLocalDI()['db.lsitems'];
324  }
325  return $this->items_db;
326  }
327 
329  {
330  if (!$this->conditions_db) {
331  $this->conditions_db = $this->getDI()["db.postconditions"];
332  }
333  return $this->conditions_db;
334  }
335 
337  {
338  if (!$this->ls_participants) {
339  $this->ls_participants = $this->getLocalDI()['participants'];
340  }
341 
342  return $this->ls_participants;
343  }
344  public function getMembersObject(): \ilLearningSequenceParticipants //used by Services/Membership/classes/class.ilMembershipGUI.php
345  {
346  return $this->getLSParticipants();
347  }
348 
350  {
351  if (is_null($this->ls_access)) {
352  $this->ls_access = new ilObjLearningSequenceAccess();
353  }
354 
355  return $this->ls_access;
356  }
357 
361  public function getLSItems(): array
362  {
363  $db = $this->getLSItemsDB();
364  return $db->getLSItems($this->getRefId());
365  }
366 
371  public function storeLSItems(array $ls_items): void
372  {
373  $db = $this->getLSItemsDB();
374  $db->storeItems($ls_items);
375  }
376 
381  public function deletePostConditionsForSubObjects(array $ref_ids): void
382  {
383  $rep_utils = new ilRepUtil();
384  $rep_utils->deleteObjects($this->getRefId(), $ref_ids);
385  $db = $this->getPostConditionDB();
386  $db->delete($ref_ids);
387  }
388 
392  public function getPossiblePostConditionsForType(string $type): array
393  {
394  $condition_types = $this->il_condition_handler->getOperatorsByTriggerType($type);
395  $conditions = [
396  $this->getPostConditionDB()::STD_ALWAYS_OPERATOR => $this->lng->txt('condition_always')
397  ];
398  foreach ($condition_types as $cond_type) {
399  $conditions[$cond_type] = $this->lng->txt('condition_' . $cond_type);
400  }
401  return $conditions;
402  }
403 
405  {
406  if (!$this->learner_progress_db) {
407  $this->learner_progress_db = $this->getLocalDI()['db.progress'];
408  }
410  }
411 
412  public function getStateDB(): ilLSStateDB
413  {
414  if (!$this->state_db) {
415  $this->state_db = $this->getDI()['db.states'];
416  }
417  return $this->state_db;
418  }
419 
423  public function getLSLearnerItems(int $usr_id): array
424  {
425  $db = $this->getLearnerProgressDB();
426  return $db->getLearnerItems($usr_id, $this->getRefId());
427  }
428 
430  {
431  if (!$this->ls_roles) {
432  $this->ls_roles = $this->getLocalDI()['roles'];
433  }
434  return $this->ls_roles;
435  }
436 
440  public function getMailToMembersType(): int
441  {
442  return 0;
443  }
444 
448  public static function _goto(string $target, string $add = ""): void
449  {
450  global $DIC;
451  $main_tpl = $DIC->ui()->mainTemplate();
452 
453  $ilAccess = $DIC['ilAccess'];
454  $ilErr = $DIC['ilErr'];
455  $lng = $DIC['lng'];
456  $ilUser = $DIC['ilUser'];
457  $request_wrapper = $DIC->http()->wrapper()->query();
458  $refinery = $DIC->refinery();
459 
460  if (substr($add, 0, 5) == 'rcode') {
461  if ($ilUser->getId() == ANONYMOUS_USER_ID) {
462  $request_target = $request_wrapper->retrieve("target", $refinery->kindlyTo()->string());
463  // Redirect to login for anonymous
465  "login.php?target=" . $request_target . "&cmd=force_login&lang=" .
466  $ilUser->getCurrentLanguage()
467  );
468  }
469 
470  // Redirects to target location after assigning user to learning sequence
472  $target,
474  substr($add, 5)
475  );
476  }
477 
478  if ($add == "mem" && $ilAccess->checkAccess("manage_members", "", $target)) {
479  ilObjectGUI::_gotoRepositoryNode($target, "members");
480  }
481 
482  if ($ilAccess->checkAccess("read", "", $target)) {
484  } else {
485  // to do: force flat view
486  if ($ilAccess->checkAccess("visible", "", $target)) {
487  ilObjectGUI::_gotoRepositoryNode($target, "infoScreenGoto");
488  } else {
489  if ($ilAccess->checkAccess("read", "", ROOT_FOLDER_ID)) {
490  $main_tpl->setOnScreenMessage('failure', sprintf(
491  $lng->txt("msg_no_perm_read_item"),
493  ), true);
495  }
496  }
497  }
498 
499  $ilErr->raiseError($lng->txt("msg_no_perm_read"), $ilErr->FATAL);
500  }
501 
502  public function getShowMembers(): bool
503  {
504  return $this->getLSSettings()->getMembersGallery();
505  }
506 
507  public function announceLSOOnline(): void
508  {
509  $ns = $this->il_news;
510  $context = $ns->contextForRefId($this->getRefId());
511  $item = $ns->item($context);
512  $item->setContentIsLangVar(true);
513  $item->setContentTextIsLangVar(true);
514  $item->setTitle("lso_news_online_title");
515  $item->setContent("lso_news_online_txt");
516  $ns->data()->save($item);
517  }
518  public function announceLSOOffline(): void
519  {
520  //NYI
521  }
522 
523  public function setEffectiveOnlineStatus(bool $status): void
524  {
525  $act_db = $this->getActivationDB();
526  $act_db->setEffectiveOnlineStatus($this->getRefId(), $status);
527  }
528 
529  public function getCurrentUserCurriculum(): string
530  {
531  $dic = $this->getLocalDI();
532  $curriculum = $dic["player.curriculumbuilder"]->getLearnerCurriculum(false);
533  return $dic['ui.renderer']->render($curriculum);
534  }
535 
536  public function getCurrentUserLaunchButtons(): string
537  {
538  $dic = $this->getLocalDI();
539  $buttons = $dic["player.launchlinksbuilder"]->getLaunchbuttonsComponent();
540  return $dic['ui.renderer']->render($buttons);
541  }
542 
543 
544  /***************************************************************************
545  * Role Stuff
546  ***************************************************************************/
550  public function getLocalLearningSequenceRoles(bool $translate = false): array
551  {
552  return $this->getLSRoles()->getLocalLearningSequenceRoles($translate);
553  }
554 
555  public function getDefaultMemberRole(): int
556  {
557  return $this->getLSRoles()->getDefaultMemberRole();
558  }
559 
560  public function getDefaultAdminRole(): int
561  {
562  return $this->getLSRoles()->getDefaultAdminRole();
563  }
564 
568  public function getDefaultLearningSequenceRoles(string $a_grp_id = ""): array
569  {
570  return $this->getLSRoles()->getDefaultLearningSequenceRoles($a_grp_id);
571  }
572 
573  public function initDefaultRoles(): void
574  {
575  $this->getLSRoles()->initDefaultRoles();
576  }
577 
583  public function readMemberData(array $user_ids, ?array $columns = null): array
584  {
585  return $this->getLsRoles()->readMemberData($user_ids, $columns);
586  }
587 
588  public function getParentObjectInfo(int $ref_id, array $search_types): ?array
589  {
590  foreach ($this->tree->getPathFull($ref_id) as $hop) {
591  if (in_array($hop['type'], $search_types)) {
592  return $hop;
593  }
594  }
595  return null;
596  }
597 
601  public function getLPCompletionStates(): array
602  {
603  return [
605  ];
606  }
607 
608  public function getContentPageId(): int
609  {
610  return $this->getId();
611  }
612 
613  public function hasContentPage(LSOPageType $page_type): bool
614  {
615  return ilContainerPage::_exists($page_type->value, $this->getContentPageId());
616  }
617 
618  public function createContentPage(LSOPageType $page_type): void
619  {
620  if ($this->hasContentPage($page_type)) {
621  throw new \LogicException('will not create content page - it already exists.');
622  }
623  $new_page_object = $page_type === LSOPageType::INTRO ? new ilLSOIntroPage() : new ilLSOExtroPage();
624  $new_page_object->setId($this->getContentPageId());
625  $new_page_object->setParentId($this->getId());
626  $new_page_object->createFromXML();
627  }
628 
629  public function getContentPageHTML(LSOPageType $page_type): string
630  {
631  if (!$this->hasContentPage($page_type)) {
632  return '';
633  }
634 
635  $gui = $page_type === LSOPageType::INTRO ?
636  new ilObjLearningSequenceEditIntroGUI(LSOPageType::INTRO->value, $this->getContentPageId()) :
638 
639  $gui->setPresentationTitle("");
640  $gui->setTemplateOutput(false);
641  $gui->setHeader("");
642  $ret = $gui->showPage();
643  return $ret;
644  }
645 }
const LP_STATUS_COMPLETED_NUM
static handleCode(int $a_ref_id, string $a_type, string $a_code)
Storage for ilLSPostConditions.
string $type
ilLearningSequenceActivation $ls_activation
deletePostConditionsForSubObjects(array $ref_ids)
Delete post conditions for ref ids.
getMailToMembersType()
Get mail to members type.
updateSettings(ilLearningSequenceSettings $settings)
$context
Definition: webdav.php:31
const ANONYMOUS_USER_ID
Definition: constants.php:27
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilLearningSequenceSettings $ls_settings
cloneAutoGeneratedRoles(ilObjLearningSequence $new_obj)
getParentObjectInfo(int $ref_id, array $search_types)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
Class ilLSItemsDB.
Definition: ilLSItemsDB.php:24
cloneSettings(ilObjLearningSequence $new_obj)
const ROOT_FOLDER_ID
Definition: constants.php:32
Interface Observer Contains several chained tasks and infos about them.
getDefaultLearningSequenceRoles(string $a_grp_id="")
static _gotoRepositoryNode(int $ref_id, string $cmd="")
__construct(int $id=0, bool $call_by_reference=true)
Class ilObjLearningSequenceEditExtroGUI ilObjLearningSequenceEditExtroGUI: ilPageEditorGUI, ilEditClipboardGUI.
Class ilObjLearningSequenceEditIntroGUI ilObjLearningSequenceEditIntroGUI: ilPageEditorGUI, ilEditClipboardGUI.
ilLearningSequenceSettingsDB $settings_db
hasContentPage(LSOPageType $page_type)
createContentPage(LSOPageType $page_type)
$ilErr
Definition: raiseError.php:33
static _lookupObjId(int $ref_id)
getLocalLearningSequenceRoles(bool $translate=false)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
cloneMetaData(ilObject $target_obj)
Copy meta data.
ilLearningSequenceActivationDB $activation_db
static _lookupTitle(int $obj_id)
Settings for an LSO (like abstract, extro)
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
ilLanguage $lng
LSOPageType
Definition: LSOPageType.php:21
bool $call_by_reference
ilDBInterface $db
static getInstanceByRefId(int $ref_id)
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
global $DIC
Definition: shib_login.php:22
Persistence for View-States.
cloneIntroAndExtroContentPages(ilObjLearningSequence $new_obj, array $cp_types)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Persistence for Settings (like abstract, extro)
readMemberData(array $user_ids, ?array $columns=null)
cloneActivation(ilObjLearningSequence $new_obj, int $a_copy_id)
ilLearningSequenceRoles $ls_roles
static _deleteAllEntries(int $a_obj_id)
Delete all entries Normally called in case of object deletion.
getContentPageHTML(LSOPageType $page_type)
static redirect(string $a_script)
ilLearningSequenceParticipants $ls_participants
Get LearningProgress and availability of items in sequence.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__construct(Container $dic, ilPlugin $plugin)
ilConditionHandler $il_condition_handler
static _goto(string $target, string $add="")
Goto target learning sequence.
ilObjLearningSequenceAccess $ls_access
Persistence for online/activation period.
ilLearnerProgressDB $learner_progress_db
static _getInstance(int $a_copy_id)
static _lookupType(int $id, bool $reference=false)
updateActivation(ilLearningSequenceActivation $settings)
static _gotoRepositoryRoot(bool $raise_error=false)
Goto repository root.
storeLSItems(array $ls_items)
Update LSItems.