3 declare(strict_types=1);
43 $auth_arr = explode(
'_', $a_auth_key);
44 if (count($auth_arr) > 1) {
45 return 'lti_' . $auth_arr[1];
57 $auth_arr = explode(
'_', $a_auth_mode);
58 if (count($auth_arr) > 1) {
73 $query =
'SELECT consumer_pk from lti2_consumer where enabled = ' . $ilDB->quote(1,
'integer');
78 $sids[] = $row->consumer_pk;
91 $query =
'SELECT distinct(consumer_pk) consumer_pk from lti2_consumer';
96 $sids[] = $row->consumer_pk;
110 return $consumer->getTitle();
120 if (self::isAuthModeLTI($a_auth_mode)) {
121 $auth_arr = explode(
'_', $a_auth_mode);
122 return (
int) $auth_arr[1];
138 $auth_arr = explode(
'_', $a_auth_mode);
151 $query =
'SELECT consumer_pk from lti2_consumer where consumer_key = ' . $ilDB->quote(
152 $a_oauth_consumer_key,
161 $lti_id = $row->consumer_pk;
164 $this->
getLogger()->debug(
'External consumer key is: ' . (
int) $lti_id);
177 $query =
'SELECT prefix from lti_ext_consumer where id = ' . $ilDB->quote($a_lti_id,
'integer');
184 $prefix = $row->prefix;
186 $this->
getLogger()->debug(
'LTI prefix: ' . $prefix);
199 $query =
'SELECT role from lti_ext_consumer where id = ' . $ilDB->quote($a_lti_id,
'integer');
205 $role = (
int) $row->role;
207 $this->
getLogger()->debug(
'LTI role: ' . $role);
221 if ($DIC->http()->wrapper()->post()->has(
'launch_presentation_document_target') &&
222 $DIC->http()->wrapper()->post()->retrieve(
223 'launch_presentation_document_target',
224 $DIC->refinery()->kindlyTo()->string()
232 $lti_provider =
new ilLTITool($this->dataConnector);
235 $lti_provider->handleRequest();
238 $this->
getLogger()->info(
'LTI authentication failed with message: ' . $lti_provider->reason);
239 $status->
setReason($lti_provider->reason);
243 $this->
getLogger()->debug(
'LTI authentication success');
258 $this->provider = $lti_provider;
259 $this->messageParameters = $this->provider->getMessageParameters();
261 if (empty($this->messageParameters)) {
262 $status->
setReason(
'empty_lti_message_parameters');
267 $this->ref_id = $this->provider->platform->getRefId();
271 if (isset($lti_context_ids) && is_array($lti_context_ids)) {
272 if (!in_array($this->ref_id, $lti_context_ids)) {
273 $this->
getLogger()->debug(
"push new lti ref_id: " . $this->ref_id);
279 $this->
getLogger()->debug(
"lti_context_ids is not set. Create new array...");
287 if ($DIC->http()->wrapper()->post()->has(
'launch_presentation_return_url')) {
288 $post[
'launch_presentation_return_url'] = $DIC->http()->wrapper()->post()->retrieve(
'launch_presentation_return_url', $DIC->refinery()->kindlyTo()->string());
290 if ($DIC->http()->wrapper()->post()->has(
'launch_presentation_css_url')) {
291 $post[
'launch_presentation_css_url'] = $DIC->http()->wrapper()->post()->retrieve(
'launch_presentation_css_url', $DIC->refinery()->kindlyTo()->string());
293 if ($DIC->http()->wrapper()->post()->has(
'resource_link_title')) {
294 $post[
'resource_link_title'] = $DIC->http()->wrapper()->post()->retrieve(
'resource_link_title', $DIC->refinery()->kindlyTo()->string());
301 if (!$this->provider->platform->enabled) {
302 $this->
getLogger()->warning(
'Consumer is not enabled');
303 $status->
setReason(
'lti_consumer_inactive');
308 if (!$this->provider->platform->getActive()) {
309 $this->
getLogger()->warning(
'Consumer is not active');
310 $status->
setReason(
'lti_consumer_inactive');
314 $lti_id = $this->provider->platform->getExtConsumerId();
316 $status->
setReason(
'lti_auth_failed_invalid_key');
321 $this->
getLogger()->debug(
'Using prefix:' . $this->provider->platform->getPrefix());
326 $this->provider->platform->getPrefix()
329 if ($internal_account) {
330 $this->
updateUser($internal_account, $this->provider->platform);
332 $internal_account = $this->
createUser($this->provider->platform);
350 protected function findUserId(
string $a_oauth_user,
string $a_oauth_id,
string $a_user_prefix):
int 353 self::AUTH_MODE_PREFIX .
'_' . $a_oauth_id,
360 $this->
getLogger()->debug(
'Found user with auth mode lti_' . $a_oauth_id .
' with user_id: ' .
$user_id);
373 global $ilClientIniFile,
$DIC;
379 $user_obj =
new ilObjUser($a_local_user_id);
380 if (isset($this->messageParameters[
'lis_person_name_given'])) {
381 $user_obj->setFirstname($this->messageParameters[
'lis_person_name_given']);
383 $user_obj->setFirstname(
'-');
385 if (isset($this->messageParameters[
'lis_person_name_family'])) {
386 $user_obj->setLastname($this->messageParameters[
'lis_person_name_family']);
388 $user_obj->setLastname(
'-');
390 $user_obj->setEmail($this->messageParameters[
'lis_person_contact_email_primary']);
392 $user_obj->setActive(
true);
394 $until = $user_obj->getTimeLimitUntil();
396 if ($until < (time() + (
int) $ilClientIniFile->readVariable(
'session',
'expire'))) {
397 $user_obj->setTimeLimitFrom(time() - 60);
398 $user_obj->setTimeLimitUntil(time() + (
int) $ilClientIniFile->readVariable(
"session",
"expire"));
401 $user_obj->refreshLogin();
403 $GLOBALS[
'DIC']->rbac()->admin()->assignUser($consumer->
getRole(), $user_obj->getId());
406 $this->
getLogger()->info(
'Update of lti user with uid: ' . $user_obj->getId() .
' and login: ' . $user_obj->getLogin());
407 return $user_obj->getId();
420 global $ilClientIniFile,
$DIC;
429 $newUser[
"login"] = $local_user;
430 if(isset($this->messageParameters[
'lis_person_name_given'])) {
431 $newUser[
"firstname"] = $this->messageParameters[
'lis_person_name_given'];
433 $newUser[
"firstname"] =
'-';
435 if(isset($this->messageParameters[
'lis_person_name_family'])) {
436 $newUser[
"lastname"] = $this->messageParameters[
'lis_person_name_family'];
438 $newUser[
"lastname"] =
'-';
440 $newUser[
'email'] = $this->messageParameters[
'lis_person_contact_email_primary'];
448 $newUser[
"profile_incomplete"] = 0;
452 $newUser[
"gender"] =
'n';
453 $newUser[
"title"] = null;
454 $newUser[
"birthday"] = null;
455 $newUser[
"institution"] = null;
456 $newUser[
"department"] = null;
457 $newUser[
"street"] = null;
458 $newUser[
"city"] = null;
459 $newUser[
"zipcode"] = null;
460 $newUser[
"country"] = null;
461 $newUser[
"sel_country"] = null;
462 $newUser[
"phone_office"] = null;
463 $newUser[
"phone_home"] = null;
464 $newUser[
"phone_mobile"] = null;
465 $newUser[
"fax"] = null;
466 $newUser[
"matriculation"] = null;
467 $newUser[
"second_email"] = null;
468 $newUser[
"hobby"] = null;
469 $newUser[
"client_ip"] = null;
470 $newUser[
"passwd_salt"] = null;
471 $newUser[
"latitude"] = null;
472 $newUser[
"longitude"] = null;
473 $newUser[
"loc_zoom"] = null;
474 $newUser[
"last_login"] = null;
475 $newUser[
"first_login"] = null;
476 $newUser[
"last_profile_prompt"] = null;
479 $newUser[
"referral_comment"] = null;
480 $newUser[
"approve_date"] = null;
481 $newUser[
"agree_date"] = null;
482 $newUser[
"inactivation_date"] = null;
483 $newUser[
"time_limit_from"] = null;
484 $newUser[
"time_limit_until"] = null;
485 $newUser[
"is_self_registered"] = null;
488 $newUser[
"passwd_enc_type"] =
"";
489 $newUser[
"active"] =
true;
490 $newUser[
"time_limit_owner"] = 7;
491 $newUser[
"time_limit_unlimited"] = 0;
492 $newUser[
"time_limit_message"] = 0;
493 $newUser[
"passwd"] =
" ";
497 $userObj->assignData($newUser);
498 $userObj->setTitle($userObj->getFullname());
499 $userObj->setDescription($userObj->getEmail());
505 $userObj->setTimeLimitOwner(7);
506 $userObj->setTimeLimitUnlimited(
false);
507 $userObj->setTimeLimitFrom(time() - 5);
509 $userObj->setTimeLimitUntil(time() + (
int) $ilClientIniFile->readVariable(
"session",
"expire"));
512 $userObj->setOwner(6);
514 $userObj->setActive(
true);
516 $userObj->setLastPasswordChangeTS(time());
517 $userObj->saveAsNew();
518 $userObj->writePrefs();
520 $GLOBALS[
'DIC']->rbac()->admin()->assignUser($consumer->
getRole(), $userObj->getId());
522 $this->
getLogger()->info(
'Created new lti user with uid: ' . $userObj->getId() .
' and login: ' . $userObj->getLogin());
523 return $userObj->getId();
536 $this->
getLogger()->info(
'$target_ref_id: ' . $target_ref_id);
537 if (!$target_ref_id) {
538 $this->
getLogger()->warning(
'No target id given');
546 $roles = $this->messageParameters[
'roles'];
548 if (!strlen($roles)) {
549 $this->
getLogger()->warning(
'No role information given');
552 $role_arr = explode(
',', $roles);
553 foreach ($role_arr as $role_name) {
554 $role_name = trim($role_name);
555 $role_name = str_replace(
'http://purl.imsglobal.org/vocab/lis/v2/membership#',
'', $role_name);
556 switch ($role_name) {
557 case 'Administrator':
558 $this->
getLogger()->info(
'Administrator role handling');
559 if ($obj_settings->getAdminRole()) {
560 $GLOBALS[
'DIC']->rbac()->admin()->assignUser(
561 $obj_settings->getAdminRole(),
569 case 'TeachingAssistant':
570 $this->
getLogger()->info(
'Instructor role handling');
571 $this->
getLogger()->info(
'Tutor role for request: ' . $obj_settings->getTutorRole());
572 if ($obj_settings->getTutorRole()) {
573 $GLOBALS[
'DIC']->rbac()->admin()->assignUser(
574 $obj_settings->getTutorRole(),
582 $this->
getLogger()->info(
'Member role handling');
583 if ($obj_settings->getMemberRole()) {
584 $GLOBALS[
'DIC']->rbac()->admin()->assignUser(
585 $obj_settings->getMemberRole(),
591 $this->
getLogger()->info(
'default role handling');
592 if ($obj_settings->getMemberRole()) {
593 $GLOBALS[
'DIC']->rbac()->admin()->assignUser(
594 $obj_settings->getMemberRole(),
static get(string $a_var)
static getAuthModeByKey(string $a_auth_key)
Get auth mode by key.
updateUser(int $a_local_user_id, ilLTIPlatform $consumer)
update existing user protected
static _generateLogin(string $a_login)
generate free login by starting with a default string and adding postfix numbers
static getLogger(string $a_component_id)
Get component logger.
static isAuthModeLTI(string $a_auth_mode)
Check if user auth mode is LTI.
const STATUS_AUTHENTICATION_FAILED
static getKeyByAuthMode(string $a_auth_mode)
Get auth id by auth mode.
static getServerIdByAuthMode(string $a_auth_mode)
Get auth id by auth mode.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilLTIDataConnector $dataConnector
static _lookupId($a_user_str)
handleLocalRoleAssignments(int $user_id, ilLTIPlatform $consumer)
static lookupConsumer(int $a_sid)
Lookup consumer title.
static _checkExternalAuthAccount(string $a_auth, string $a_account, bool $tryFallback=true)
check whether external account and authentication method matches with a user
static now()
Return current timestamp in Y-m-d H:i:s format.
Base class for authentication providers (ldap, apache, ...)
Standard interface for auth provider implementations.
static getActiveAuthModes()
get all active authmode server ids
createUser(ilLTIPlatform $consumer)
create new user protected
setStatus(int $a_status)
Set auth status.
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const STATUS_AUTHENTICATED
findGlobalRole(int $a_lti_id)
find global role of consumer
findAuthKeyId(string $a_oauth_consumer_key)
find consumer key id
setReason(string $a_reason)
Set reason.
setAuthenticatedUserId(int $a_id)
findAuthPrefix(int $a_lti_id)
find lti id
doAuthentication(\ilAuthStatus $status)
Do authentication.
static _lookupType(int $id, bool $reference=false)
Auth status implementation.
findUserId(string $a_oauth_user, string $a_oauth_id, string $a_user_prefix)
Find user by auth mode and lti id.
static set(string $a_var, $a_val)
Set a value.