ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSCORMPresentationGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
32 {
35  public ilLanguage $lng;
36  protected int $refId;
38 
39  public function __construct()
40  {
41  global $DIC;
42  $ilCtrl = $DIC->ctrl();
43  // $this->tpl = $DIC['tpl'];
44  $this->lng = $DIC->language();
45  $this->ctrl = $ilCtrl;
46 
47  $this->lng->loadLanguageModule('cert');
48 
49  // Todo: check lm id
50  $this->refId = $DIC->http()->wrapper()->query()->retrieve('ref_id', $DIC->refinery()->kindlyTo()->int());
51  $this->slm = new ilObjSCORMLearningModule($this->refId, true);
52  }
53 
58  public function executeCommand(): void
59  {
60  global $DIC;
61  $ilAccess = $DIC->access();
62  $ilLog = ilLoggerFactory::getLogger('sahs');
63  $lng = $DIC->language();
64  $ilErr = $DIC["ilErr"];
65 
66  $next_class = $this->ctrl->getNextClass($this);
67  $cmd = $this->ctrl->getCmd("frameset");
68 
69  if (!$ilAccess->checkAccess("write", "", $this->refId) &&
70  (!$ilAccess->checkAccess("read", "", $this->refId) ||
71  $this->slm->getOfflineStatus())) {
72  $ilErr->raiseError($lng->txt("permission_denied"), $ilErr->WARNING);
73  }
74 
75  // switch ($next_class) {
76  // default:
77  $this->$cmd();
78  // }
79  }
80 
84  public function attrib2arr(?array $a_attributes): array
85  {
86  $attr = array();
87 
88  if (!is_array($a_attributes)) {
89  return $attr;
90  }
91  foreach ($a_attributes as $attribute) {
92  $attr[$attribute->name()] = $attribute->value();
93  }
94 
95  return $attr;
96  }
97 
103  public function frameset(): void
104  {
105  global $DIC;
106  $lng = $DIC->language();
107  $javascriptAPI = true;
108  $items = ilSCORMObject::_lookupPresentableItems($this->slm->getId());
109 
110  //check for max_attempts and raise error if max_attempts is exceeded
111  // if ($this->get_max_attempts() != 0) {
112  // if ($this->get_actual_attempts() >= $this->get_max_attempts()) {
113  // header('Content-Type: text/html; charset=utf-8');
114  // echo($lng->txt("cont_sc_max_attempt_exceed"));
115  // exit;
116  // }
117  // }
118 
120  ilWACSignedPath::signFolderOfStartFile($this->slm->getDataDirectory() . '/imsmanifest.xml');
121 
122  $debug = $this->slm->getDebug();
123  if (count($items) > 1) {
124  $this->ctrl->setParameter($this, "expand", "1");
125  $this->ctrl->setParameter($this, "jsApi", "1");
126  $exp_link = $this->ctrl->getLinkTarget($this, "explorer");
127 
128  // should be able to grep templates
129  if ($debug) {
130  $this->tpl = new ilGlobalTemplate("tpl.sahs_pres_frameset_js_debug.html", false, false, "components/ILIAS/ScormAicc");
131  } else {
132  $this->tpl = new ilGlobalTemplate("tpl.sahs_pres_frameset_js.html", false, false, "components/ILIAS/ScormAicc");
133  }
134 
135  $this->tpl->setVariable("EXPLORER_LINK", $exp_link);
136  $pres_link = $this->ctrl->getLinkTarget($this, "contentSelect");
137  $this->tpl->setVariable("PRESENTATION_LINK", $pres_link);
138  } else {
139  if ($debug) {
140  $this->tpl = new ilGlobalTemplate("tpl.sahs_pres_frameset_js_debug_one_page.html", false, false, "components/ILIAS/ScormAicc");
141  } else {
142  $this->tpl = new ilGlobalTemplate("tpl.sahs_pres_frameset_js_one_page.html", false, false, "components/ILIAS/ScormAicc");
143  }
144 
145  $this->ctrl->setParameter($this, "autolaunch", $items[0] ?? "");
146  }
147  $api_link = $this->ctrl->getLinkTarget($this, "apiInitData");
148  $this->tpl->setVariable("TITLE", $this->slm->getTitle());
149  $this->tpl->setVariable("API_LINK", $api_link);
150  $this->tpl->printToStdout("DEFAULT", false, true);
151 
152 
153  exit;
154  }
155 
156  // /**
157  // * Get max. number of attempts allowed for this package
158  // */
159  // public function get_max_attempts() : int
160  // {
161  // return ilObjSCORMInitData::get_max_attempts($this->slm->getId());
162  // }
163 
167  public function get_actual_attempts(): int
168  {
169  global $DIC;
170  $ilDB = $DIC->database();
171  $ilUser = $DIC->user();
172  $val_set = $ilDB->queryF(
173  'SELECT package_attempts FROM sahs_user WHERE obj_id = %s AND user_id = %s',
174  array('integer','integer'),
175  array($this->slm->getId(),$ilUser->getId())
176  );
177  $val_rec = $ilDB->fetchAssoc($val_set);
178  $attempts = $val_rec["package_attempts"];
179  if ($attempts == null) {
180  $attempts = 0;
181  }
182  return $attempts;
183  }
184  // function get_actual_attempts() {
185  // global $DIC;
186  // $ilDB = $DIC->database();
187  // $ilUser = $DIC->user();
188  // $val_set = $ilDB->queryF('
189  // SELECT * FROM scorm_tracking
190  // WHERE user_id = %s
191  // AND sco_id = %s
192  // AND lvalue= %s
193  // AND obj_id = %s',
194  // array('integer','integer','text','integer'),
195  // array($ilUser->getId(),0,'package_attempts',$this->slm->getId())
196  // );
197  // $val_rec = $ilDB->fetchAssoc($val_set);
198 
199  // $val_rec["rvalue"] = str_replace("\r\n", "\n", $val_rec["rvalue"]);
200  // if ($val_rec["rvalue"] == null) {
201  // $val_rec["rvalue"]=0;
202  // }
203 
204  // return $val_rec["rvalue"];
205  // }
206 
210  // function increase_attempt() {
211  // global $DIC;
212  // $ilDB = $DIC->database();
213  // $ilUser = $DIC->user();
214 
215  // //get existing account - sco id is always 0
216  // $val_set = $ilDB->queryF('
217  // SELECT * FROM scorm_tracking
218  // WHERE user_id = %s
219  // AND sco_id = %s
220  // AND lvalue= %s
221  // AND obj_id = %s',
222  // array('integer','integer','text','integer'),
223  // array($ilUser->getId(),0,'package_attempts',$this->slm->getId())
224  // );
225 
226  // $val_rec = $ilDB->fetchAssoc($val_set);
227 
228  // $val_rec["rvalue"] = str_replace("\r\n", "\n", $val_rec["rvalue"]);
229  // if ($val_rec["rvalue"] == null) {
230  // $val_rec["rvalue"]=0;
231  // }
232  // $new_rec = $val_rec["rvalue"]+1;
233  // //increase attempt by 1
234  // //TODO: do not set c_timestamp because of last_access
235  // if($ilDB->numRows($val_set) > 0)
236  // {
237  // $ilDB->update('scorm_tracking',
238  // array(
239  // 'rvalue' => array('clob', $new_rec),
240  // 'c_timestamp' => array('timestamp', ilUtil::now())
241  // ),
242  // array(
243  // 'user_id' => array('integer', $ilUser->getId()),
244  // 'sco_id' => array('integer', 0),
245  // 'lvalue' => array('text', 'package_attempts'),
246  // 'obj_id' => array('integer', $this->slm->getId())
247  // )
248  // );
249  // }
250  // else
251  // {
252  // $ilDB->insert('scorm_tracking', array(
253  // 'obj_id' => array('integer', $this->slm->getId()),
254  // 'user_id' => array('integer', $ilUser->getId()),
255  // 'sco_id' => array('integer', 0),
256  // 'lvalue' => array('text', 'package_attempts'),
257  // 'rvalue' => array('clob', $new_rec),
258  // 'c_timestamp' => array('timestamp', ilUtil::now())
259  // ));
260  // }
261 
262  // include_once("../components/ILIAS/Tracking/classes/class.ilLPStatusWrapper.php");
263  // ilLPStatusWrapper::_updateStatus($this->slm->getId(), $ilUser->getId());
264 
265  // }
266 
271  {
272  global $DIC;
273  $ilDB = $DIC->database();
274  $ilUser = $DIC->user();
275  $res = $ilDB->queryF(
276  'SELECT package_attempts,count(*) cnt FROM sahs_user WHERE obj_id = %s AND user_id = %s GROUP BY package_attempts',
277  array('integer','integer'),
278  array($this->slm->getId(),$ilUser->getId())
279  );
280  $val_rec = $ilDB->fetchAssoc($res);
281  if (!is_array($val_rec)) {
282  $attempts = 1;
283  $ilDB->manipulateF(
284  'INSERT INTO sahs_user (obj_id,user_id,package_attempts,module_version,last_access) VALUES(%s,%s,%s,%s,%s)',
285  array('integer', 'integer', 'integer', 'integer', 'timestamp'),
286  array($this->slm->getId(), $ilUser->getId(), $attempts, $this->slm->getModuleVersion(), date('Y-m-d H:i:s'))
287  );
288  } else {
289  $attempts = $val_rec["package_attempts"];
290  if ($attempts == null) {
291  $attempts = 0;
292  }
293  $attempts++;
294  $ilDB->manipulateF(
295  'UPDATE sahs_user SET package_attempts = %s, module_version = %s, last_access=%s WHERE obj_id = %s AND user_id = %s ',
296  array('integer', 'integer', 'timestamp', 'integer', 'integer'),
297  array($attempts, $this->slm->getModuleVersion(), date('Y-m-d H:i:s'), $this->slm->getId(), $ilUser->getId())
298  );
299  }
300  ilLPStatusWrapper::_updateStatus($this->slm->getId(), $ilUser->getId());
301  }
302 
306  // function save_module_version() {
307  // global $DIC;
308  // $ilDB = $DIC->database();
309  // $ilUser = $DIC->user();
310 
311  // $val_set = $ilDB->queryF('
312  // SELECT * FROM scorm_tracking
313  // WHERE user_id = %s
314  // AND sco_id = %s
315  // AND lvalue= %s
316  // AND obj_id = %s',
317  // array('integer','integer','text','integer'),
318  // array($ilUser->getId(),0,'module_version',$this->slm->getId())
319 
320  // );
321 
322  // if($ilDB->numRows($val_set) > 0)
323  // {
324  // $ilDB->update('scorm_tracking',
325  // array(
326  // 'rvalue' => array('clob', $this->slm->getModuleVersion()),
327  // 'c_timestamp' => array('timestamp', ilUtil::now())
328  // ),
329  // array(
330  // 'user_id' => array('integer', $ilUser->getId()),
331  // 'sco_id' => array('integer', 0),
332  // 'lvalue' => array('text', 'module_version'),
333  // 'obj_id' => array('integer', $this->slm->getId())
334  // )
335  // );
336  // }
337  // else
338  // {
339  // $ilDB->insert('scorm_tracking', array(
340  // 'obj_id' => array('integer', $this->slm->getId()),
341  // 'user_id' => array('integer', $ilUser->getId()),
342  // 'sco_id' => array('integer', 0),
343  // 'lvalue' => array('text', 'module_version'),
344  // 'rvalue' => array('clob', $this->slm->getModuleVersion()),
345  // 'c_timestamp' => array('timestamp', ilUtil::now())
346  // ));
347  // }
348 
349  // include_once("../components/ILIAS/Tracking/classes/class.ilLPStatusWrapper.php");
350  // ilLPStatusWrapper::_updateStatus($this->slm->getId(), $ilUser->getId());
351 
352  // }
353 
359  public function explorer(string $a_target = "sahs_content"): void
360  {
361  global $DIC;
362  $ilBench = $DIC['ilBench'];
363  $ilLog = ilLoggerFactory::getLogger('sahs');
364 
365  $ilBench->start("SCORMExplorer", "initExplorer");
366 
367  $this->tpl = new ilGlobalTemplate("tpl.sahs_exp_main.html", true, true, "components/ILIAS/ScormAicc");
368  // $this->tpl = new ilTemplate("tpl.sahs_exp_main.html", true, true, "components/ILIAS/ScormAicc");
369  $exp = new ilSCORMExplorer($this->ctrl->getLinkTarget($this, "view"), $this->slm);
370  $exp->setTargetGet("obj_id");
371  $exp->setFrameTarget($a_target);
372 
373  //$exp->setFiltered(true);
374  $jsApi = true;
375 
376  $expanded = "";
377  if ($DIC->http()->wrapper()->query()->has('scexpand')) {
378  $expanded = $DIC->http()->wrapper()->query()->retrieve('scexpand', $DIC->refinery()->kindlyTo()->string());
379  }
380  if ($expanded == "") {
381  $mtree = new ilSCORMTree($this->slm->getId());
382  $expanded = $mtree->readRootId();
383  }
384  $exp->setExpand($expanded);
385 
386  $exp->forceExpandAll(true, false);
387  $ilBench->stop("SCORMExplorer", "initExplorer");
388 
389  // build html-output
390  $ilBench->start("SCORMExplorer", "setOutput");
391  $exp->setOutput(0);
392  $ilBench->stop("SCORMExplorer", "setOutput");
393 
394  $ilBench->start("SCORMExplorer", "getOutput");
395  $output = $exp->getOutput($jsApi);
396  $ilBench->stop("SCORMExplorer", "getOutput");
397 
398  $this->tpl->setVariable("LOCATION_STYLESHEET", ilUtil::getStyleSheetLocation());
399  $this->tpl->addBlockFile("CONTENT", "content", "tpl.sahs_explorer.html", "components/ILIAS/ScormAicc");
400  //$this->tpl->setVariable("TXT_EXPLORER_HEADER", $this->lng->txt("cont_content"));
401  $this->tpl->setVariable("EXP_REFRESH", $this->lng->txt("refresh"));
402  $this->tpl->setVariable("EXPLORER", $output);
403 
404  $cmd = "";
405  if ($DIC->http()->wrapper()->query()->has('cmd')) {
406  $cmd = $DIC->http()->wrapper()->query()->retrieve('cmd', $DIC->refinery()->kindlyTo()->string());
407  }
408  $frame = "";
409  if ($DIC->http()->wrapper()->query()->has('frame')) {
410  $frame = $DIC->http()->wrapper()->query()->retrieve('frame', $DIC->refinery()->kindlyTo()->string());
411  }
412  $this->tpl->setVariable("ACTION", "ilias.php?baseClass=ilSAHSPresentationGUI&cmd=" . $cmd . "&frame=" . $frame .
413  "&ref_id=" . $this->slm->getRefId() . "&scexpand=" . $expanded);
414  $this->tpl->parseCurrentBlock();
415  //BUG 16794? $this->tpl->show();
416  // $this->tpl->show();
417  $this->tpl->printToStdout("DEFAULT", false);
418  }
419 
420 
424  public function view(): void
425  {
426  global $DIC;
427  $objId = $DIC->http()->wrapper()->query()->retrieve('obj_id', $DIC->refinery()->kindlyTo()->int());
428  $sc_gui_object = ilSCORMObjectGUI::getInstance($objId);
429 
430  if (is_object($sc_gui_object)) {
431  $sc_gui_object->view();
432  }
433 
434  $this->tpl->setVariable("LOCATION_STYLESHEET", ilUtil::getStyleSheetLocation());
435  $this->tpl->printToStdout('DEFAULT', false);
436  }
437 
438  public function contentSelect(): void
439  {
440  global $DIC;
441  $lng = $DIC->language();
442  $this->tpl = new ilGlobalTemplate("tpl.scorm_content_select.html", true, true, "components/ILIAS/ScormAicc");
443  $this->tpl->setVariable("LOCATION_STYLESHEET", ilUtil::getStyleSheetLocation());
444  $this->tpl->setVariable('TXT_SPECIALPAGE', $lng->txt("seq_toc"));
445  $this->tpl->printToStdout("DEFAULT", false);
446  }
447 
451  public function apiInitData(): void
452  {
453  global $DIC;
454 
455  if (!($DIC->http()->wrapper()->query()->has('ref_id'))) {
456  print('alert("no start without ref_id");');
457  die;
458  }
459 
460  header('Content-Type: text/javascript; charset=UTF-8');
461  print("function iliasApi() {\r\n");
462  $js_data = file_get_contents("../components/ILIAS/ScormAicc/scripts/basisAPI.js");
463  echo $js_data;
464  $js_data = file_get_contents("../components/ILIAS/ScormAicc/scripts/SCORM1_2standard.js");//want to give opportunities to different files (Uwe Kohnle)
465  echo $js_data;
466  print("}\r\n");
467 
468  print("IliasScormVars=" . ilObjSCORMInitData::getIliasScormVars($this->slm) . ";\r\n");
469 
470  //Resources
471  print("IliasScormResources=" . ilObjSCORMInitData::getIliasScormResources($this->slm->getId()) . ";\r\n");
472 
473  //Tree
474  print("IliasScormTree=" . ilObjSCORMInitData::getIliasScormTree($this->slm->getId()) . ";\r\n");
475 
476  //prevdata
477  print("IliasScormData=" . ilObjSCORMInitData::getIliasScormData($this->slm->getId()) . ";\r\n");
478 
479  // set alternative API name - not necessary for scorm
480  if ($this->slm->getAPIAdapterName() !== "API") {
481  print('var ' . $this->slm->getAPIAdapterName() . '=new iliasApi();');
482  } else {
483  print('var API=new iliasApi();');
484  }
485  }
486 
487  public function pingSession(): bool
488  {
489  ilWACSignedPath::signFolderOfStartFile($this->slm->getDataDirectory() . '/imsmanifest.xml');
490  return true;
491  }
492 
497  public function downloadCertificate(): void
498  {
499  global $DIC;
500 
501  $ilUser = $DIC->user();
502  $tree = $DIC['tree'];
503  $ilCtrl = $DIC->ctrl();
504  $refId = $DIC->http()->wrapper()->query()->retrieve('ref_id', $DIC->refinery()->kindlyTo()->int());
505  $obj_id = ilObject::_lookupObjId($refId);
506 
507  $certValidator = new ilCertificateDownloadValidator();
508  $allowed = $certValidator->isCertificateDownloadable($ilUser->getId(), $obj_id);
509  if ($allowed) {
510  $certificateLogger = $DIC->logger()->root();
511 
512  $ilUserCertificateRepository = new ilUserCertificateRepository();
513  $pdfGenerator = new ilPdfGenerator($ilUserCertificateRepository);
514  $pdfAction = new ilCertificatePdfAction(
515  $pdfGenerator,
517  $this->lng->txt('error_creating_certificate_pdf')
518  );
519 
520  $pdfAction->downloadPdf($ilUser->getId(), $obj_id);
521  exit;
522  }
523  // redirect to parent category if certificate is not accessible
524  $parent = $tree->getParentId($refId);
525  $ilCtrl->setParameterByClass("ilrepositorygui", "ref_id", $parent);
526  $ilCtrl->redirectByClass("ilrepositorygui", "");
527  }
528 }
static getStyleSheetLocation(string $mode="output", string $a_css_name="")
get full style sheet file name (path inclusive) of current user
$res
Definition: ltiservices.php:66
static getIliasScormData(int $a_packageId)
apiInitData()
SCORM Data for Javascript-API.
static getLogger(string $a_component_id)
Get component logger.
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...
static _lookupPresentableItems(int $a_slm_id)
Count number of presentable SCOs/Assets of SCORM learning module.
special template class to simplify handling of ITX/PEAR
$objId
Definition: xapitoken.php:57
static getIliasScormVars(ilObjSCORMLearningModule $slm_obj)
explorer(string $a_target="sahs_content")
save the active module version to scorm_tracking
$ilErr
Definition: raiseError.php:33
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static signFolderOfStartFile(string $start_file_path)
Validates if an active certificate is stored in the database and can be downloaded by the user...
global $DIC
Definition: shib_login.php:22
increase_attemptAndsave_module_version()
Increases attempts by one for this package.
SCORM Object Tree.
Class ilSCORMPresentationGUI.
static getIliasScormResources(int $a_packageId)
static getIliasScormTree(int $a_packageId)
downloadCertificate()
Download the certificate for the active user.
header()
expected output: > ILIAS shows the rendered Component.
Definition: header.php:29
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilObjSCORMLearningModule.
setTargetGet(string $a_target_get)
static _updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)
downloadPdf(int $userId, int $objectId)