56 public function __construct($a_id = 0, $a_id_type = self::REPOSITORY_NODE_ID, $a_parent_node_id = 0)
66 $DIC->language()->loadLanguageModule(
"cmix");
78 $ilHelp = $DIC->help();
79 $ilHelp->setScreenIdComponent(
"cmix");
80 $ilHelp->setScreenId(
"create_object");
82 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
84 $form->setTarget(
"_top");
85 $form->setFormAction($this->ctrl->getFormAction($this,
"save"));
86 $form->setTitle($this->lng->txt($a_new_type .
"_new"));
91 $title->setValue(self::NEW_OBJ_TITLE);
92 $form->addItem($title);
95 $type->setRequired(
true);
98 $typeLearningModule->
setInfo($this->lng->txt(
'cmix_add_cmi5_lm_info'));
99 $type->addOption($typeLearningModule);
102 $typeGenericModule->
setInfo($this->lng->txt(
'cmix_add_xapi_standard_object_info'));
103 $type->addOption($typeGenericModule);
105 $form->addItem(
$type);
110 foreach ($types as
$type) {
111 $option =
new ilRadioOption($type[
'title'], $type[
'type_id'], $type[
'description']);
112 $item->addOption($option);
114 #$item->setValue($this->object->typedef->getTypeId()); 115 $form->addItem($item);
120 $srcRemoteContent =
new ilRadioOption($this->lng->txt(
'cmix_add_source_url'),
'resource');
121 $srcRemoteContent->
setInfo($this->lng->txt(
'cmix_add_source_url_info'));
122 $source->addOption($srcRemoteContent);
124 $srcUploadContent =
new ilRadioOption($this->lng->txt(
'cmix_add_source_local_dir'),
'upload');
125 $srcUploadContent->
setInfo($this->lng->txt(
'cmix_add_source_local_dir_info'));
126 $source->addOption($srcUploadContent);
128 $srcUpload =
new ilFileInputGUI($this->lng->txt(
"select_file"),
"uploadfile");
129 $srcUpload->setAllowDeletion(
false);
131 $srcUpload->setRequired(
true);
132 $srcUploadContent->addSubItem($srcUpload);
135 $srcServerContent =
new ilRadioOption($this->lng->txt(
'cmix_add_source_upload_dir'),
'server');
136 $srcServerContent->
setInfo($this->lng->txt(
'cmix_add_source_upload_dir_info'));
137 $source->addOption($srcServerContent);
139 $options = [
'' => $this->lng->txt(
'cmix_add_source_upload_select')];
142 $options[$file] = $file;
145 $srcSelect =
new ilSelectInputGUI($this->lng->txt(
"select_file"),
"serverfile");
146 $srcSelect->setOptions($options);
147 $srcServerContent->addSubItem($srcSelect);
150 $srcExternalApp =
new ilRadioOption($this->lng->txt(
'cmix_add_source_external_app'),
'external');
151 $srcExternalApp->
setInfo($this->lng->txt(
'cmix_add_source_external_app_info'));
152 $source->addOption($srcExternalApp);
156 $form->addCommandButton(
"save", $this->lng->txt($a_new_type .
"_add"));
157 $form->addCommandButton(
"cancel", $this->lng->txt(
"cancel"));
169 if ($form->checkInput()) {
170 $newObject->setContentType($form->getInput(
'content_type'));
172 $newObject->setLrsTypeId($form->getInput(
'lrs_type_id'));
173 $newObject->initLrsType();
175 $newObject->setPrivacyIdent($newObject->getLrsType()->getPrivacyIdent());
176 $newObject->setPrivacyName($newObject->getLrsType()->getPrivacyName());
178 switch ($form->getInput(
'source_type')) {
181 $newObject->
setTitle($form->getInput(
'title'));
189 $uploadImporter->importFormUpload($form->getItemByPostVar(
'uploadfile'));
193 $form->getItemByPostVar(
'uploadfile')->setAlert($e->getMessage());
195 $DIC->ctrl()->redirectByClass(self::class,
'create');
206 $serverFile = $form->getInput(
'serverfile');
214 $uploadImporter->importServerFile(implode(DIRECTORY_SEPARATOR, [
225 $newObject->setBypassProxyEnabled(
true);
233 $DIC->ctrl()->redirectByClass(ilCmiXapiSettingsGUI::class);
245 if (!$generalMetadata) {
249 $generalMetadata->setTitle($object->
getTitle());
250 $generalMetadata->
save();
252 $id = $generalMetadata->addIdentifier();
253 $id->setCatalog(
'ILIAS');
254 $id->setEntry(
'il__' . $object->
getType() .
'_' . $object->
getId());
262 $return = parent::initHeaderAction($a_sub_type, $a_sub_id);
264 if ($this->creation_mode) {
269 if ($validator->isCertificateDownloadable((
int) $DIC->user()->getId(), (int) $this->object->getId())) {
270 $certLink = $DIC->ctrl()->getLinkTargetByClass(
271 [ilObjCmiXapiGUI::class, ilCmiXapiSettingsGUI::class],
275 $DIC->language()->loadLanguageModule(
'certificate');
277 $return->addCustomCommand($certLink,
'download_certificate');
279 $return->addHeaderIcon(
282 $DIC->language()->txt(
'download_certificate'),
292 public static function _goto($a_target)
295 $err = $DIC[
'ilErr'];
296 $ctrl = $DIC->ctrl();
299 $lng = $DIC->language();
301 $targetParameters = explode(
'_', $a_target);
302 $id = (int) $targetParameters[0];
305 $err->raiseError(
$lng->txt(
'msg_no_perm_read'), $err->FATAL);
308 if (
$access->checkAccess(
'read',
'', $id)) {
309 $ctrl->setTargetScript(
'ilias.php');
310 $ctrl->initBaseClass(ilRepositoryGUI::class);
311 $ctrl->setParameterByClass(ilObjCmiXapiGUI::class,
'ref_id', $id);
312 if (isset(
$request->getQueryParams()[
'gotolp'])) {
313 $ctrl->setParameterByClass(ilObjCmiXapiGUI::class,
'gotolp', 1);
315 $ctrl->redirectByClass([ilRepositoryGUI::class, ilObjCmiXapiGUI::class]);
316 } elseif (
$access->checkAccess(
'visible',
'', $id)) {
321 $DIC->language()->txt(
'msg_no_perm_read_item'),
330 $err->raiseError($DIC->language()->txt(
"msg_no_perm_read_lm"), $err->FATAL);
339 if (!$this->creation_mode) {
340 $link =
ilLink::_getLink($this->object->getRefId(), $this->
object->getType());
341 $navigationHistory = $DIC[
'ilNavigationHistory'];
342 $navigationHistory->addItem($this->object->getRefId(), $link, $this->
object->getType());
350 switch ($DIC->ctrl()->getNextClass()) {
351 case strtolower(ilObjectCopyGUI::class):
354 $gui->setType($this->
getType());
355 $DIC->ctrl()->forwardCommand($gui);
359 case strtolower(ilCommonActionDispatcherGUI::class):
362 $this->ctrl->forwardCommand($gui);
366 case strtolower(ilLearningProgressGUI::class):
368 $DIC->tabs()->activateTab(self::TAB_ID_LEARNING_PROGRESS);
372 $this->object->getRefId()
375 $DIC->ctrl()->forwardCommand($gui);
379 case strtolower(ilObjectMetaDataGUI::class):
381 $DIC->tabs()->activateTab(self::TAB_ID_METADATA);
384 $DIC->ctrl()->forwardCommand($gui);
387 case strtolower(ilPermissionGUI::class):
389 $DIC->tabs()->activateTab(self::TAB_ID_PERMISSIONS);
392 $DIC->ctrl()->forwardCommand($gui);
396 case strtolower(ilCmiXapiSettingsGUI::class):
398 $DIC->tabs()->activateTab(self::TAB_ID_SETTINGS);
401 $DIC->ctrl()->forwardCommand($gui);
405 case strtolower(ilCmiXapiStatementsGUI::class):
407 $DIC->tabs()->activateTab(self::TAB_ID_STATEMENTS);
410 $DIC->ctrl()->forwardCommand($gui);
414 case strtolower(ilCmiXapiScoringGUI::class):
416 $DIC->tabs()->activateTab(self::TAB_ID_SCORING);
419 $DIC->ctrl()->forwardCommand($gui);
423 case strtolower(ilCmiXapiExportGUI::class):
425 $DIC->tabs()->activateTab(self::TAB_ID_EXPORT);
428 $DIC->ctrl()->forwardCommand($gui);
432 case strtolower(ilCmiXapiRegistrationGUI::class):
434 $DIC->tabs()->activateTab(self::TAB_ID_INFO);
437 $DIC->ctrl()->forwardCommand($gui);
441 case strtolower(ilCmiXapiLaunchGUI::class):
444 $DIC->ctrl()->forwardCommand($gui);
450 $command = $DIC->ctrl()->getCmd(self::DEFAULT_CMD);
459 $DIC->help()->setScreenIdComponent(
"cmix");
461 $DIC->tabs()->addTab(
463 $DIC->language()->txt(self::TAB_ID_INFO),
464 $DIC->ctrl()->getLinkTargetByClass(self::class)
467 if ($this->cmixAccess->hasWriteAccess()) {
468 $DIC->tabs()->addTab(
469 self::TAB_ID_SETTINGS,
470 $DIC->language()->txt(self::TAB_ID_SETTINGS),
471 $DIC->ctrl()->getLinkTargetByClass(ilCmiXapiSettingsGUI::class)
475 if ($this->cmixAccess->hasStatementsAccess()) {
476 $DIC->tabs()->addTab(
477 self::TAB_ID_STATEMENTS,
478 $DIC->language()->txt(self::TAB_ID_STATEMENTS),
479 $DIC->ctrl()->getLinkTargetByClass(ilCmiXapiStatementsGUI::class)
483 if ($this->cmixAccess->hasHighscoreAccess()) {
484 $DIC->tabs()->addTab(
485 self::TAB_ID_SCORING,
486 $DIC->language()->txt(self::TAB_ID_SCORING),
487 $DIC->ctrl()->getLinkTargetByClass(ilCmiXapiScoringGUI::class)
491 if ($this->cmixAccess->hasLearningProgressAccess()) {
492 $DIC->tabs()->addTab(
493 self::TAB_ID_LEARNING_PROGRESS,
494 $DIC->language()->txt(self::TAB_ID_LEARNING_PROGRESS),
495 $DIC->ctrl()->getLinkTargetByClass(ilLearningProgressGUI::class)
499 if ($this->cmixAccess->hasWriteAccess()) {
501 $link = $gui->getTab();
504 $DIC->tabs()->addTab(
505 self::TAB_ID_METADATA,
506 $DIC->language()->txt(
'meta_data'),
512 if ($this->cmixAccess->hasWriteAccess()) {
513 $DIC->tabs()->addTab(
515 $DIC->language()->txt(self::TAB_ID_EXPORT),
516 $DIC->ctrl()->getLinkTargetByClass(ilCmiXapiExportGUI::class)
520 if ($this->cmixAccess->hasEditPermissionsAccess()) {
521 $DIC->tabs()->addTab(
522 self::TAB_ID_PERMISSIONS,
523 $DIC->language()->txt(self::TAB_ID_PERMISSIONS),
524 $DIC->ctrl()->getLinkTargetByClass(ilPermissionGUI::class,
'perm')
528 if (defined(
'DEVMODE') && DEVMODE) {
529 $DIC->tabs()->addTab(
532 $DIC->ctrl()->getLinkTarget($this,
'debug')
541 $DIC->tabs()->activateTab(
'debug');
544 $filter->setActivityId($this->object->getActivityId());
548 $this->object->getLrsType()->getLrsEndpointStatementsAggregationLink(),
553 $this->object->getLrsType()->getBasicAuth(),
558 $report = $request->queryReport($this->
object);
560 $DIC->ui()->mainTemplate()->setContent(
561 $report->getResponseDebug()
577 $this->object->getTitle(),
578 $this->ctrl->getLinkTarget($this, self::DEFAULT_CMD),
589 $this->object->getType(),
590 $this->
object->getRefId(),
591 $this->
object->getId(),
592 $DIC->user()->getId()
600 $DIC->tabs()->activateTab(self::TAB_ID_INFO);
602 $DIC->ctrl()->setCmd(
"showSummary");
603 $DIC->ctrl()->setCmdClass(
"ilinfoscreengui");
613 $ilErr->raiseError($DIC->language()->txt(
"msg_no_perm_read"));
621 $info->enablePrivateNotes();
627 $info->enableNewsEditing(
false);
631 $enable_internal_rss = $news_set->get(
"enable_rss_for_internal");
633 if ($enable_internal_rss) {
634 $info->setBlockProperty(
"news",
"settings",
true);
635 $info->setBlockProperty(
"news",
"public_notifications_option",
true);
641 $info->addSection(
'DEVMODE Info');
642 $info->addProperty(
'Local Object ID', $this->object->getId());
643 $info->addProperty(
'Current User ID', $DIC->user()->getId());
647 $info->addMetaDataSections($this->object->getId(), 0, $this->
object->getType());
650 if ($this->object->isSourceTypeExternal()) {
651 $info->addSection($DIC->language()->txt(
"cmix_info_privacy_section"));
653 $info->addSection($DIC->language()->txt(
"cmix_info_privacy_section_launch"));
656 $info->addProperty($DIC->language()->txt(
'cmix_lrs_type'), $this->
object->getLrsType()->getTitle());
658 if ($this->object->isSourceTypeExternal()) {
659 $cmixUser =
new ilCmiXapiUser($this->object->getId(), $DIC->user()->getId(), $this->
object->getPrivacyIdent());
660 if ($cmixUser->getUsrIdent()) {
662 $DIC->language()->txt(
"conf_user_registered_mail"),
663 $cmixUser->getUsrIdent()
668 $DIC->language()->txt(
"conf_privacy_name"),
669 $DIC->language()->txt(
'conf_privacy_name_' . self::getPrivacyNameString($this->object->getPrivacyName()))
673 $DIC->language()->txt(
"conf_privacy_ident"),
674 $DIC->language()->txt(
'conf_privacy_ident_' . self::getPrivacyIdentString($this->object->getPrivacyIdent()))
678 if ($this->object->getLrsType()->getExternalLrs()) {
680 $DIC->language()->txt(
"cmix_info_external_lrs_label"),
681 $DIC->language()->txt(
'cmix_info_external_lrs_info')
685 if (strlen($this->object->getLrsType()->getPrivacyCommentDefault())) {
687 $DIC->language()->txt(
"cmix_indication_to_user"),
688 nl2br($this->object->getLrsType()->getPrivacyCommentDefault())
694 $this->ctrl->forwardCommand($info);
701 if (!$this->object->getOfflineStatus() && $this->
object->getLrsType()->isAvailable()) {
707 if ($this->object->isSourceTypeExternal()) {
711 if ($extCmiUserExists) {
712 $registerButton->setCaption(
'change_registration');
714 $registerButton->setPrimary(
true);
715 $registerButton->setCaption(
'create_registration');
718 $registerButton->setUrl($DIC->ctrl()->getLinkTargetByClass(
719 ilCmiXapiRegistrationGUI::class
722 $DIC->toolbar()->addButtonInstance($registerButton);
725 $launchButton->setPrimary(
true);
726 $launchButton->setCaption(
'launch');
729 $launchButton->setTarget(
'_blank');
732 $launchButton->setUrl($DIC->ctrl()->getLinkTargetByClass(
733 ilCmiXapiLaunchGUI::class
736 $DIC->toolbar()->addButtonInstance($launchButton);
744 $cmiUserExists =
ilCmiXapiUser::exists($this->object->getId(), $DIC->user()->getId(), $this->
object->getPrivacyIdent());
746 if ($cmiUserExists) {
747 $cmixUser =
new ilCmiXapiUser($this->object->getId(), $DIC->user()->getId(), $this->
object->getPrivacyIdent());
751 $fetchButton->setCaption(
'fetch_xapi_statements');
753 $fetchButton->setUrl($DIC->ctrl()->getLinkTarget(
755 self::CMD_FETCH_XAPI_STATEMENTS
758 $DIC->toolbar()->addButtonInstance($fetchButton);
782 if ($this->object->isBypassProxyEnabled()) {
798 $info = $DIC->language()->txt(
'xapi_statements_not_fetched_yet');
817 $cmixUser =
new ilCmiXapiUser($this->object->getId(), $DIC->user()->getId(), $this->
object->getPrivacyIdent());
824 if ($report->hasStatements()) {
826 $evaluation->evaluateReport($report);
832 $cmixUser->setFetchUntil($now);
835 ilUtil::sendSuccess($DIC->language()->txt(
'xapi_statements_fetched_successfully'),
true);
836 $DIC->ctrl()->redirect($this, self::CMD_INFO_SCREEN);
845 $this->object->getLrsType()->getLrsEndpointStatementsAggregationLink(),
850 $this->object->getLrsType()->getBasicAuth(),
854 return $request->queryReport($this->
object);
863 $filter->setActor(
new ilCmiXapiUser($this->object->getId(), $DIC->user()->getId()));
864 $filter->setActivityId($this->object->getActivityId());
866 $filter->setStartDate($since);
867 $filter->setEndDate($until);
880 return "il_uuid_user_id";
882 return "il_uuid_ext_account";
884 return "il_uuid_login";
888 return "il_uuid_random";
890 return "il_uuid_sha256";
892 return "il_uuid_sha256url";
static _recordReadEvent( $a_type, $a_ref_id, $obj_id, $usr_id, $isCatchupWriteEvents=true, $a_ext_rc=false, $a_ext_time=false)
Records a read event and catches up with write events.
This class represents an option in a radio group.
static getInstance(ilObjCmiXapi $object)
checkPermissionBool($a_perm, $a_cmd="", $a_type="", $a_node_id=null)
Check permission.
New implementation of ilObjectGUI.
GUI class for the workflow of copying objects.
afterSave(ilObject $newObject)
const LAUNCH_METHOD_NEW_WIN
static _gotoRepositoryRoot($a_raise_error=false)
Goto repository root.
static getTypesData($a_extended=false, $a_availability=null)
Get basic data array of all types (without field definitions)
static _lookupTitle($a_id)
lookup object title
static _getUploadDirectory()
Get the directory with uploaded files.
static _getUploadFiles()
Get a list of readable files in the upload directory.
setInfo($a_info)
Set Info.
__construct($a_id=0, $a_id_type=self::REPOSITORY_NODE_ID, $a_parent_node_id=0)
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
const CMD_DELIVER_CERTIFICATE
setTitle($a_title)
set object title
initMetadata(ilObjCmiXapi $object)
handleAvailablityMessage()
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
buildReportFilter(ilCmiXapiDateTime $since, ilCmiXapiDateTime $until)
const AVAILABILITY_CREATE
initCreateForm($a_new_type)
getXapiStatementsReport(ilCmiXapiDateTime $since, ilCmiXapiDateTime $until)
getId()
get object id public
static getPrivacyIdentString(int $ident)
static _gotoRepositoryNode($a_ref_id, $a_cmd="frameset")
Goto repository root.
static getPrivacyNameString(int $ident)
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
initDidacticTemplate(ilPropertyFormGUI $form)
Show didactic template types.
static _lookupObjId($a_id)
Validates if an active certificate is stored in the database and can be downloaded by the user...
static sendQuestion($a_info="", $a_keep=false)
Send Question to Screen.
isFetchXapiStatementsRequired(ilCmiXapiUser $cmixUser)
getType()
get object type public
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
const TAB_ID_LEARNING_PROGRESS
__construct(Container $dic, ilPlugin $plugin)
const LP_CONTEXT_REPOSITORY
static exists($objId, $usrId, $privacyIdent=999)
const CMD_FETCH_XAPI_STATEMENTS
prepareOutput($a_show_subobjects=true)
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
static getLogger($a_component_id)
Get component logger.
initHeaderAction($a_sub_type=null, $a_sub_id=null)
static _checkUploadFile($a_file)
Check if a file exists in the upload directory and is readable.
sendLastFetchInfo(ilCmiXapiUser $cmixUser)
addHeaderAction()
Add header action menu.
Class ilObjUserTrackingGUI.
static _getLink($a_ref_id, $a_type='', $a_params=array(), $append="")
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call