19 declare(strict_types=1);
39 private \ILIAS\DI\Container
$dic;
49 $this->
lng = $DIC->language();
50 $this->
user = $DIC->user();
64 $command = $DIC->ctrl()->getCmd(self::CMD_LAUNCH);
74 if ($this->
object->getProvider()->getLtiVersion() ==
"LTI-1p0") {
75 if ($this->
object->isLaunchMethodEmbedded()) {
76 $tpl =
new ilTemplate(
'tpl.lti_content.html',
true,
true,
'components/ILIAS/LTIConsumer');
77 $tpl->setVariable(
"EMBEDDED_IFRAME_SRC", $this->dic->ctrl()->getLinkTarget(
79 self::CMD_SHOW_EMBEDDED
81 $this->dic->ui()->mainTemplate()->setContent($tpl->get());
87 $tpl =
new ilTemplate(
'tpl.lti_content.html',
true,
true,
'components/ILIAS/LTIConsumer');
88 $tpl->setVariable(
"EMBEDDED_IFRAME_SRC", $this->dic->ctrl()->getLinkTarget(
90 self::CMD_SHOW_EMBEDDED
92 $this->dic->ui()->mainTemplate()->setContent($tpl->get());
98 $this->dic->ui()->mainTemplate()->setOnScreenMessage(
'failure',
'initialLogin Error: ',
true);
101 $this->dic->http()->saveResponse(
$response);
102 $this->dic->http()->sendResponse();
103 $this->dic->http()->close();
122 if (isset($loginData[
'state'])) {
123 $params[
'state'] = $loginData[
'state'];
126 $r =
'<form action="' . $loginData[
'redirect_uri'] .
"\" name=\"ltiAuthForm\" id=\"ltiAuthForm\" " .
127 "method=\"post\" enctype=\"application/x-www-form-urlencoded\">\n";
129 foreach (
$params as $key => $value) {
130 $key = htmlspecialchars($key);
131 $value = htmlspecialchars($value);
132 $r .=
" <input type=\"hidden\" name=\"{$key}\" value=\"{$value}\"/>\n";
136 $r .=
"<script type=\"text/javascript\">\n" .
138 "document.ltiAuthForm.submit();\n" .
148 if ($this->
object->getOfflineStatus() ||
149 $this->
object->isLaunchMethodEmbedded() ||
156 $this->
user->getId(),
157 $this->
object->getProvider()->getPrivacyIdent()
160 if ($user_ident ==
'' || $user_ident ==
null) {
166 $context = $ilLTIConsumerLaunch->getContext();
167 $contextType = $ilLTIConsumerLaunch::getLTIContextType($context[
"type"]);
168 $contextId = $context[
"id"];
169 $contextTitle = $context[
"title"];
172 $this->dic->user()->getId(),
173 $this->
object->getRefId(),
174 $this->
object->getId()
177 $returnUrl = !$this->
object->isLaunchMethodOwnWin() ?
'' : str_replace(
183 $launchParameters = $this->
object->buildLaunchParameters(
192 $target = $this->
object->getLaunchMethod() ==
"newWin" ?
"_blank" :
"_self";
193 $button =
'<input class="btn btn-default ilPre" type="button" onClick="ltilaunch()" value = "' . $this->
lng->txt(
"show_content") .
'" />';
194 $output =
'<form id="lti_launch_form" name="lti_launch_form" action="' . $this->
object->getProvider()->getProviderUrl() .
'" method="post" target="' . $target .
'" encType="application/x-www-form-urlencoded">';
195 foreach ($launchParameters as $field => $value) {
196 $output .= sprintf(
'<input type="hidden" name="%s" value="%s" />', $field, $value) .
"\n";
199 $output .=
'</form>';
200 $output .=
'<span id ="lti_launched" style="display:none">' . $this->
lng->txt(
"launched") .
'</span>';
201 $output .=
'<script type="text/javascript"> 202 function ltilaunch() { 203 document.lti_launch_form.submit(); 204 document.getElementById("lti_launch_form").style.display = "none"; 205 document.getElementById("lti_launched").style.display = "inline"; 212 if ($this->
object->getOfflineStatus() ||
213 $this->
object->isLaunchMethodEmbedded() ||
218 $user_ident = $this->cmixUser->getUsrIdent();
220 $context = $ilLTIConsumerLaunch->getContext();
221 $contextType = $ilLTIConsumerLaunch::getLTIContextType($context[
"type"]);
222 $contextId = $context[
"id"];
223 $contextTitle = $context[
"title"];
226 $this->dic->user()->getId(),
227 $this->
object->getRefId(),
228 $this->
object->getId()
231 $returnUrl = !$this->
object->isLaunchMethodOwnWin() ?
'' : str_replace(
237 $target = $this->
object->getLaunchMethod() ==
"newWin" ?
"_blank" :
"_self";
238 $button =
'<input class="btn btn-default ilPre" type="button" onClick="ltilaunch()" value = "' . $this->
lng->txt(
"show_content") .
'" />';
241 $output =
'<form id="lti_launch_form" name="lti_launch_form" action="' . $this->
object->getProvider()->getInitiateLogin() .
'" method="post" target="' . $target .
'" encType="application/x-www-form-urlencoded">';
243 $output .= sprintf(
'<input type="hidden" name="%s" value="%s" />',
'target_link_uri', $this->
object->getProvider()->getProviderUrl()) .
"\n";
244 $output .= sprintf(
'<input type="hidden" name="%s" value="%s" />',
'login_hint', $user_ident) .
"\n";
245 $output .= sprintf(
'<input type="hidden" name="%s" value="%s" />',
'lti_message_hint',
$ltiMessageHint) .
"\n";
246 $output .= sprintf(
'<input type="hidden" name="%s" value="%s" />',
'client_id', $this->
object->getProvider()->getClientId()) .
"\n";
247 $output .= sprintf(
'<input type="hidden" name="%s" value="%s" />',
'lti_deployment_id', $this->
object->getProvider()->getId()) .
"\n";
249 $output .=
'</form>';
250 $output .=
'<span id ="lti_launched" style="display:none">' . $this->
lng->txt(
"launched") .
'</span>';
251 $output .=
'<script type="text/javascript"> 252 function ltilaunch() { 253 document.lti_launch_form.submit(); 254 document.getElementById("lti_launch_form").style.display = "none"; 255 document.getElementById("lti_launched").style.display = "inline"; 264 $user_ident = $this->cmixUser->getUsrIdent();
266 $context = $ilLTIConsumerLaunch->getContext();
267 $contextType = $ilLTIConsumerLaunch::getLTIContextType($context[
"type"]);
268 $contextId = $context[
"id"];
269 $contextTitle = $context[
"title"];
275 $output =
'<form id="lti_launch_form" name="lti_launch_form" action="' . $this->
object->getProvider()->getInitiateLogin() .
'" method="post" target="' . $target .
'" encType="application/x-www-form-urlencoded">';
277 $output .= sprintf(
'<input type="hidden" name="%s" value="%s" />',
'target_link_uri', $this->
object->getProvider()->getProviderUrl()) .
"\n";
278 $output .= sprintf(
'<input type="hidden" name="%s" value="%s" />',
'login_hint', $user_ident) .
"\n";
279 $output .= sprintf(
'<input type="hidden" name="%s" value="%s" />',
'lti_message_hint',
$ltiMessageHint) .
"\n";
280 $output .= sprintf(
'<input type="hidden" name="%s" value="%s" />',
'client_id', $this->
object->getProvider()->getClientId()) .
"\n";
281 $output .= sprintf(
'<input type="hidden" name="%s" value="%s" />',
'lti_deployment_id', $this->
object->getProvider()->getId()) .
"\n";
282 $output .=
'</form>';
284 $output .=
"<script type=\"text/javascript\">\n" .
286 "document.lti_launch_form.submit();\n" .
299 if ($this->
object->getProvider()->getLtiVersion() ==
"LTI-1p0") {
301 $tpl =
new ilTemplate(
'tpl.lti_embedded.html',
true,
true,
'components/ILIAS/LTIConsumer');
303 $tpl->setCurrentBlock(
'launch_parameter');
304 $tpl->setVariable(
'LAUNCH_PARAMETER', $field);
305 $tpl->setVariable(
'LAUNCH_PARAM_VALUE', $value);
306 $tpl->parseCurrentBlock();
310 $tpl->setVariable(
"DELOS_CSS_HREF",
'templates/default/delos.css' . $v);
311 $tpl->setVariable(
"JQUERY_SRC",
'public/node_modules/jquery/dist/jquery.js' . $v);
314 $tpl->setVariable(
'LAUNCH_URL', $this->
object->getProvider()->getProviderUrl());
316 #$DIC->ui()->mainTemplate()->getStandardTemplate(); 317 #$DIC->ui()->mainTemplate()->setContent($tpl->get()); 323 $this->dic->http()->saveResponse(
$response);
324 $this->dic->http()->sendResponse();
325 $this->dic->http()->close();
332 $launchContext = $ilLTIConsumerLaunch->
getContext();
335 $launchContextId = $launchContext[
"id"];
336 $launchContextTitle = $launchContext[
"title"];
339 $this->dic->user()->getId(),
340 $this->
object->getRefId(),
341 $this->
object->getId()
344 return $this->
object->buildLaunchParameters(
356 $launchContext = $ilLTIConsumerLaunch->
getContext();
359 $launchContextId = $launchContext[
"id"];
360 $launchContextTitle = $launchContext[
"title"];
363 return $this->
object->buildLaunchParametersLTI13(
379 if ($DIC->ctrl()->getNextClass() != strtolower(self::class)) {
383 if ($DIC->ctrl()->getCmd() != self::CMD_SHOW_EMBEDDED) {
392 $this->cmixUser =
new ilCmiXapiUser($this->
object->getId(), $this->dic->user()->getId(), $this->
object->getProvider()->getPrivacyIdent());
394 if ($user_ident ==
'' || $user_ident ==
null) {
396 $this->cmixUser->setUsrIdent($user_ident);
397 $this->cmixUser->save();
403 $scope = $loginData[
'scope'];
404 $responsetype = $loginData[
'response_type'];
405 $clientid = $loginData[
'client_id'];
406 $redirecturi = $loginData[
'redirect_uri'];
407 $loginhint = $loginData[
'login_hint'];
408 $ltimessagehint = $loginData[
'lti_message_hint'];
409 $state = $loginData[
'state'];
410 $responsemode = $loginData[
'response_mode'];
411 $nonce = $loginData[
'nonce'];
412 $prompt = $loginData[
'prompt'];
414 $ok = !empty(
$scope) && !empty($responsetype) && !empty($clientid) &&
415 !empty($redirecturi) && !empty($loginhint) &&
419 $error =
'invalid_request';
421 if ($ok && (
$scope !==
'openid')) {
423 $error =
'invalid_scope';
425 if ($ok && ($responsetype !==
'id_token')) {
427 $error =
'unsupported_response_type';
433 $error =
'invalid_request';
435 if ($this->
object->getProvider()->getClientId() !== $clientid) {
437 $error =
'unauthorized_client';
444 $this->
user->getId(),
445 $this->
object->getProvider()->getPrivacyIdent()
449 if ($user_ident ==
'' || $user_ident ==
null) {
455 if ((
string) $loginhint !== $user_ident) {
457 $error =
'access_denied';
460 $uris =
array_map(
"trim", explode(
",", $this->
object->getProvider()->getRedirectionUris()));
461 if (!in_array($redirecturi, $uris)) {
463 $error =
'invalid_request';
467 if (isset($responsemode)) {
468 $ok = ($responsemode ===
'form_post');
470 $error =
'invalid_request';
471 $desc =
'Invalid response_mode';
475 $error =
'invalid_request';
476 $desc =
'Missing response_mode';
479 if ($ok && !empty($prompt) && ($prompt !==
'none')) {
481 $error =
'invalid_request';
482 $desc =
'Invalid prompt';
501 if (isset($DIC->http()->request()->getQueryParams()[$key])) {
502 return $DIC->http()->request()->getQueryParams()[$key];
505 if (isset($DIC->http()->request()->getParsedBody()[$key])) {
506 return $DIC->http()->request()->getParsedBody()[$key];
509 return $default ??
null;
static get(string $a_var)
getRequestValue(string $key, $default=null)
static isEmbeddedLaunchRequest()
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
Interface Observer Contains several chained tasks and infos about them.
getLaunchParametersLTI13(string $endpoint, string $clientId, int $deploymentId, string $nonce)
getContext(?array $a_valid_types=array('crs', 'grp', 'cat', 'root'))
get info about the context in which the link is used The most outer matching course or group is used ...
static fillToken(int $usrId, int $refId, int $objId, int $lrsTypeId=0)
static getIdent(int $userIdentMode, ilObjUser $user)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
const ILIAS_VERSION_NUMERIC
validateLTI13InitalLogin(array $loginData)
static getIliasHttpPath()
setUsrIdent(string $usrIdent)
__construct(ilObjLTIConsumer $object)
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static getLTIContextType(string $a_type)
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static clear(string $a_var)
static set(string $a_var, $a_val)
Set a value.
getEmbeddedAutoStartFormular()