3 declare(strict_types=1);
48 private \ILIAS\HTTP\Wrapper\WrapperFactory
$wrapper;
65 $this->
lng = $this->dic->language();
66 $this->
lng->loadLanguageModule(
'lti');
67 $this->wrapper = $DIC->http()->wrapper();
68 $this->kindlyTo = $DIC->refinery()->kindlyTo();
69 $this->
locator = $DIC[
'ilLocator'];
75 public function init(): void
77 $this->link_dir = (defined(
"ILIAS_MODULE")) ?
"../" :
"";
79 $context = $this->dic->globalScreen()->tool()->context();
101 if (!$this->dic->user() instanceof
ilObjUser) {
104 if ($this->dic->user()->getAuthMode() == null) {
107 return (strpos($this->dic->user()->getAuthMode(),
'lti_') === 0);
116 $cmd = $ilCtrl->getCmd();
137 $this->log->debug(
"initGUI");
139 if ($this->wrapper->query()->has(
'baseClass')) {
140 $baseclass = strtolower($this->wrapper->query()->retrieve(
'baseClass', $this->kindlyTo->string()));
142 if ($this->wrapper->query()->has(
'cmdClass')) {
143 $cmdclass = strtolower($this->wrapper->query()->retrieve(
'cmdClass', $this->kindlyTo->string()));
145 if ($baseclass ==
'illtiroutergui') {
158 if ($this->wrapper->query()->has(
'lti_context_id') &&
159 $this->wrapper->query()->retrieve(
'lti_context_id', $this->kindlyTo->string()) !==
'') {
160 $contextId = (
int) $this->wrapper->query()->retrieve(
'lti_context_id', $this->kindlyTo->int());
161 $this->log->debug(
"find context_id by GET param: " . (
string) $contextId);
169 $this->wrapper->query()->has(
'baseClass') &&
170 $this->wrapper->query()->retrieve(
'baseClass', $this->kindlyTo->string()) ===
'ilDashboardGUI' 174 $this->wrapper->query()->has(
'cmd') &&
175 $this->wrapper->query()->retrieve(
'cmd', $this->kindlyTo->string()) ===
'jumpToSelectedItems' 178 $this->log->debug(
"jumpToSelectedItems");
187 $this->log->debug(
"empty ref_id");
191 $this->log->debug(
"Effective ref_id: " .
$ref_id);
198 $this->log->debug(
"lti context session exists for " . $ref_id);
202 $this->log->debug(
"ref_id not exists as context_id, walking tree backwards to find a valid context_id");
203 $locator_items = $this->
locator->getItems();
204 if (is_array($locator_items) && count($locator_items) > 0) {
205 for (
$i = count($locator_items) - 1;
$i >= 0;
$i--) {
207 $this->log->debug(
"found valid ref_id in locator: " . $locator_items[$i][
'ref_id']);
208 return $locator_items[
$i][
'ref_id'];
212 $this->log->warning(
"no valid context_id found for ref_id request: " . $ref_id);
221 if (isset(
$_SERVER[
'HTTP_REFERER'])) {
229 $referrer = (
int) $this->effectiveRefId;
234 $context_id = $referer;
236 $this->log->debug(
"referer obj_type: " . $obj_type);
238 $this->log->debug(
"search tree of referer...");
239 if ($this->dic->repositoryTree()->isInTree($referer)) {
240 $path = $this->dic->repositoryTree()->getPathId($referer);
253 if ($ref_id > 0 && $obj_type !=
'') {
256 $this->wrapper->query()->has(
'baseClass') &&
257 $this->wrapper->query()->retrieve(
'baseClass', $this->kindlyTo->string()) ===
'ilDashboardGUI' 261 $this->wrapper->query()->has(
'cmdClass') &&
262 $this->wrapper->query()->retrieve(
'cmdClass', $this->kindlyTo->string()) ===
'ilpersonalprofilegui' 268 $redirect = $this->link_dir .
"goto.php?target=" . $obj_type .
"_" . $ref_id .
"<i_context_id=" . $context_id;
269 $this->log->debug(
"redirect: " . $redirect);
274 if (is_array($lti_context_ids) && count($lti_context_ids) > 0) {
275 if (count($lti_context_ids) == 1) {
276 $this->log->debug(
"using context_id from only LTI session");
277 return $lti_context_ids[0];
279 $this->log->warning(
"Multiple LTI sessions exists. The context_id can not be clearly detected");
291 if ($context_id == 0) {
292 $this->log->warning(
"could not find any valid context_id!");
296 if (!is_array($post_data)) {
297 $this->log->warning(
"no session post_data: " .
"lti_" . $context_id .
"_post_data");
309 if ($post_data !== null) {
310 return (isset($post_data[
'launch_presentation_css_url'])) ? $post_data[
'launch_presentation_css_url'] :
'';
321 if ($post_data !== null) {
322 return (isset($post_data[
'resource_link_title'])) ?
"LTI - " . $post_data[
'resource_link_title'] :
"LTI";
332 return $this->
lng->txt(
'lti_exited');
340 return $this->
lng->txt(
'lti_mode');
349 $this->log->info(
"exitLTI");
350 $force_ilias_logout =
false;
352 if ($context_id == 0) {
353 $this->log->warning(
"could not find any valid context_id!");
354 $force_ilias_logout =
true;
359 if (isset($post_data[
'launch_presentation_return_url'])) {
360 $return_url = $post_data[
'launch_presentation_return_url'];
366 $this->log->debug(
'unset SESSION["' .
'lti_' . $context_id .
'_post_data"]');
369 if (!isset($return_url) || $return_url ===
'') {
370 $cc = $this->dic->globalScreen()->tool()->context()->current();
371 $cc->addAdditionalData(LtiViewLayoutProvider::GS_EXIT_LTI,
true);
372 $ui_factory = $this->dic->ui()->factory();
373 $renderer = $this->dic->ui()->renderer();
375 $ui_factory->messageBox()->info($this->
lng->txt(
'lti_exited_info'))
377 $tpl = $this->dic[
"tpl"];
378 $tpl->setContent($renderer->render($content));
379 $this->
logout($force_ilias_logout);
380 $tpl->printToStdout();
382 $this->
logout($force_ilias_logout);
383 header(
'Location: ' . $return_url);
390 public function logout(
bool $force_ilias_logout =
false): void
392 if ($force_ilias_logout) {
393 $this->log->warning(
"forcing logout ilias session, maybe a broken LTI context");
396 $this->log->debug(
"there is another valid consumer session: ilias session logout refused.");
400 $this->log->info(
"logout");
403 $auth = $this->dic[
'ilAuthSession'];
406 $auth->setExpired(
true);
421 $lti_context_id_param = ($lti_context_id !=
'') ?
"<i_context_id=" . $lti_context_id :
'';
423 return $this->link_dir . $targetScript . $this->dic->ctrl()->getLinkTargetByClass(array(
'illtiroutergui',strtolower(get_class($this))), $cmd) .
"&baseClass=illtiroutergui" . $lti_context_id_param;
437 if ($this->dic->wrapper->cookie()->has($cookie_key) && $this->dic->wrapper->cookie()->retrieve($cookie_key, $this->dic->refinery()->kindlyTo()->string() !=
'')) {
438 return $this->dic->wrapper->cookie()->retrieve($cookie_key, $this->dic->refinery()->kindlyTo()->string());
447 if (is_array($lti_context_ids) && in_array($context_id, $lti_context_ids)) {
448 array_splice($lti_context_ids, array_search($context_id, $lti_context_ids), 1);
461 if ($this->wrapper->query()->has(
'ref_id')) {
462 $query[
'ref_id'] = $this->wrapper->query()->retrieve(
'ref_id', $this->kindlyTo->string());
464 if ($this->wrapper->query()->has(
'target')) {
465 $query[
'target'] = $this->wrapper->query()->retrieve(
'target', $this->kindlyTo->string());
468 parse_str((
string) parse_url(
$url, PHP_URL_QUERY),
$query);
470 if (isset(
$query[
'ref_id']) && (
int)
$query[
'ref_id']) {
471 $this->effectiveRefId = (
int) $query[
'ref_id'];
478 if (isset($query[
'target'])) {
479 $target_arr = explode(
'_', (
string) $query[
'target']);
483 $this->effectiveRefId = (
int) $target_arr[1];
static get(string $a_var)
logout(bool $force_ilias_logout=false)
logout ILIAS and destroys Session and ilClientId cookie if no consumer is still open in the LTI User ...
static getLogger(string $a_component_id)
Get component logger.
removeContextFromSession(string $context_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS HTTP Wrapper WrapperFactory $wrapper
getSessionValue(string $sess_key)
isLTIUser()
get LTI Mode from Users->getAuthMode
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
init()
Init LTI mode for lti authenticated users.
static setCookie(string $a_cookie_name, string $a_cookie_value='', bool $a_also_set_super_global=true, bool $a_set_cookie_invalid=false)
exitLti()
exit LTI session and if defined redirecting to returnUrl ToDo: Standard Template with delos ...
ILIAS DI Container $dic
private variables
getCookieValue(string $cookie_key)
static redirect(string $a_script)
const CHECK_HTTP_REFERER
contstants
ilLanguage $lng
public variables
ILIAS Refinery KindlyTo Group $kindlyTo
static getInstance()
for compatiblity with ilLTIRouterGUI
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl
static _lookupType(int $id, bool $reference=false)
static clear(string $a_var)
static set(string $a_var, $a_val)
Set a value.
findEffectiveRefId(?string $url=null)
Find effective ref_id for request.