44 protected \ILIAS\DI\Container
$dic;
61 ServerRequestInterface $httpRequest = null
72 if ($termsOfServiceEvaluation === null) {
73 $termsOfServiceEvaluation = $DIC[
'tos.document.evaluator'];
77 if ($mainTemplate === null) {
78 $mainTemplate = $DIC->ui()->mainTemplate();
82 if ($httpRequest === null) {
83 $httpRequest = $DIC->http()->request();
87 $this->
ctrl = $DIC->ctrl();
88 $this->
lng = $DIC->language();
89 $this->
lng->loadLanguageModule(
'auth');
91 $this->authSession = $DIC[
'ilAuthSession'];
92 $this->eventHandler = $DIC->event();
93 $this->setting = $DIC->settings();
94 $this->
access = $DIC->access();
95 $this->
help = $DIC->help();
97 $this->
http = $DIC->http();
100 $this->
ctrl->saveParameter($this, array(
"rep_ref_id",
"lang",
"target",
"client_id"));
101 $this->
user->setLanguage($this->
lng->getLangKey());
102 $this->
help->setScreenIdComponent(
'init');
107 if ($this->
http->wrapper()->query()->has(
'target')) {
108 return $this->
http->wrapper()->query()->retrieve(
110 $this->
refinery->kindlyTo()->string()
132 'doStandardAuthentication',
143 $cmd = $this->
ctrl->getCmd(
"processIndexPHP");
144 $next_class = $this->
ctrl->getNextClass($this);
145 switch ($next_class) {
146 case 'ilLoginPageGUI':
149 case "ilaccountregistrationgui":
150 require_once(
"Services/Registration/classes/class.ilAccountRegistrationGUI.php");
153 case "ilpasswordassistancegui":
154 require_once(
"Services/Init/classes/class.ilPasswordAssistanceGUI.php");
157 case strtolower(ilAccessibilityControlConceptGUI::class):
161 if (method_exists($this, $cmd)) {
170 $this->showLoginPageOrStartupPage();
188 $this->
ctrl->setCmdClass(
"ilaccountregistrationgui");
189 $this->
ctrl->setCmd(
"");
199 $this->
ctrl->setCmdClass(
"ilpasswordassistancegui");
200 $this->
ctrl->setCmd(
"");
207 protected function showLoginPageOrStartupPage():
void 215 $force_login =
false;
216 if (isset($_REQUEST[
'cmd']) &&
217 !is_array($_REQUEST[
'cmd']) &&
218 strcmp($_REQUEST[
'cmd'],
'force_login') === 0
224 $this->
logger->debug(
'Force login');
225 if ($auth_session->isValid()) {
227 $this->
logger->debug(
'Valid session -> logout current user');
229 $auth_session->logout();
231 $ilAppEventHandler->raise(
232 'Services/Authentication',
235 'username' => $this->
user->getLogin()
239 $this->
logger->debug(
'Show login page');
249 if ($auth_session->isValid()) {
250 $this->
logger->debug(
'Valid session -> redirect to starting page');
254 $this->
logger->debug(
'No valid session -> show login');
267 $this->
help->setSubScreenId(
'login');
269 $this->
getLogger()->debug(
'Showing login page');
271 $extUid = $this->
http->wrapper()->query()->retrieve(
273 $this->
refinery->byTrying([$this->refinery->kindlyTo()->string(), $this->
refinery->always(
'')])
275 $soapPw = $this->
http->wrapper()->query()->retrieve(
277 $this->
refinery->byTrying([$this->refinery->kindlyTo()->string(), $this->
refinery->always(
'')])
284 $credentials->setUsername($extUid);
285 $credentials->setPassword($soapPw);
286 $credentials->tryAuthenticationOnLoginPage();
289 $frontend->tryAuthenticationOnLoginPage();
291 $tpl = self::initStartUpTemplate(
"tpl.login.html");
298 $page_editor_html = $this->
showLoginForm($page_editor_html, $form);
307 if ($this->authSession->isExpired() || $this->
http->wrapper()->query()->has(
'session_expired')) {
308 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
'auth_err_expired'));
309 } elseif ($this->
http->wrapper()->query()->has(
'reg_confirmation_msg')) {
310 $this->
lng->loadLanguageModule(
'registration');
311 $message_key = $this->
http->wrapper()->query()->retrieve(
312 'reg_confirmation_msg',
313 $this->
refinery->kindlyTo()->string()
315 $message_type =
"reg_account_confirmation_successful" === $message_key ?
319 $this->
lng->txt($message_key)
322 if ($page_editor_html !==
'') {
323 $tpl->setVariable(
'LPE', $page_editor_html);
326 $tosWithdrawalGui->setWithdrawalInfoForLoginScreen($this->httpRequest);
327 self::printToGlobalTemplate($tpl);
337 $gtpl->setContent(
$tpl->get());
338 $gtpl->printToStdout(
"DEFAULT",
false,
true);
359 protected function showCodeForm($a_username = null, $a_form = null): void
361 $this->
help->setSubScreenId(
'code_input');
363 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
"time_limit_reached"));
365 $tpl = self::initStartUpTemplate(
"tpl.login_reactivate_code.html");
366 $tpl->setVariable(
"FORM", ($a_form ?? $this->
initCodeForm($a_username))->getHTML());
368 self::printToGlobalTemplate(
$tpl);
373 $this->
lng->loadLanguageModule(
"auth");
375 $form->setFormAction($this->
ctrl->getFormAction($this,
'showcodeform'));
376 $form->setTitle($this->
lng->txt(
'auth_account_code_title'));
379 $count->setRequired(
true);
380 $count->setInfo($this->
lng->txt(
'auth_account_code_info'));
381 $form->addItem($count);
385 $uname->setValue($a_username);
386 $form->addItem($uname);
387 $form->addCommandButton(
'processCode', $this->
lng->txt(
'send'));
396 $uname = $_POST[
"uname"];
398 if ($uname && $form->checkInput()) {
399 $code = $form->getInput(
"code");
406 $invalid_code =
false;
409 if ($valid_until ===
"0") {
412 if (is_numeric($valid_until)) {
413 $valid_until = strtotime(
"+" . $valid_until .
"days");
415 $valid_until = explode(
"-", $valid_until);
416 $valid_until = mktime(
424 if ($valid_until < time()) {
425 $invalid_code =
true;
429 if (!$invalid_code) {
435 if (!$invalid_code) {
445 $this->
ctrl->setParameter($this,
"cu", 1);
446 $this->
lng->loadLanguageModule(
'auth');
448 $this->
ctrl->redirect($this,
"showLoginPage");
452 $this->
lng->loadLanguageModule(
"user");
453 $field = $form->getItemByPostVar(
"code");
454 $field->setAlert($this->
lng->txt(
"user_account_code_not_valid"));
457 $form->setValuesByPost();
468 include_once
'Services/Form/classes/class.ilPropertyFormGUI.php';
470 $form->setFormAction($this->
ctrl->getFormAction($this,
'doStandardAuthentication'));
471 $form->setName(
"formlogin");
472 $form->setShowTopButtons(
false);
473 $form->setTitle($this->
lng->txt(
"login_to_ilias"));
475 include_once
'./Services/Authentication/classes/class.ilAuthModeDetermination.php';
478 $visible_auth_methods = array();
481 if (isset($option[
'hide_in_ui']) && $option[
'hide_in_ui']) {
486 $radg->addOption($op1);
487 if (isset($option[
'checked'])) {
488 $radg->setValue($key);
490 $visible_auth_methods[] = $op1;
493 if (count($visible_auth_methods) === 1) {
494 $first_auth_method = current($visible_auth_methods);
496 $hidden_auth_method->setValue($first_auth_method->getValue());
497 $form->addItem($hidden_auth_method);
499 $form->addItem($radg);
505 $ti->setRequired(
true);
510 $pi->setRetype(
false);
511 $pi->setSkipSyntaxCheck(
true);
513 $pi->setDisableHtmlAutoComplete(
false);
514 $pi->setRequired(
true);
517 $form->addCommandButton(
"doStandardAuthentication", $this->
lng->txt(
"log_in"));
527 $this->
getLogger()->debug(
'Trying shibboleth authentication');
530 $credentials->initFromRequest();
539 $frontend = $frontend_factory->getFrontend(
546 $frontend->authenticate();
548 switch ($status->getStatus()) {
550 $this->
logger->debug(
'Authentication successful; Redirecting to starting page.');
555 $this->
ctrl->redirect($this,
'showAccountMigration');
559 $this->
mainTemplate->setOnScreenMessage(
'failure', $status->getTranslatedReason(),
true);
560 $this->
ctrl->redirect($this,
'showLoginPage');
563 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_wrong_login'));
569 $this->
getLogger()->debug(
'Trying cas authentication');
579 $frontend = $frontend_factory->getFrontend(
586 $frontend->authenticate();
587 switch ($status->getStatus()) {
589 $this->
getLogger()->debug(
'Authentication successful.');
595 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt($status->getReason()));
605 $this->
getLogger()->debug(
'Trying lti authentication');
608 $credentials->initFromRequest();
617 $frontend = $frontend_factory->getFrontend(
624 $frontend->authenticate();
626 switch ($status->getStatus()) {
633 $this->
ctrl->redirect($this,
'showAccountMigration');
637 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt($status->getReason()),
true);
638 $this->
ctrl->redirect($this,
'showLoginPage');
642 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_wrong_login'));
651 $this->
getLogger()->debug(
'Trying apache authentication');
653 $credentials = new \ilAuthFrontendCredentialsApache($this->httpRequest, $this->
ctrl);
654 $credentials->initFromRequest();
656 $provider_factory = new \ilAuthProviderFactory();
661 $frontend_factory = new \ilAuthFrontendFactory();
663 $frontend = $frontend_factory->getFrontend(
670 $frontend->authenticate();
672 switch ($status->getStatus()) {
673 case \ilAuthStatus::STATUS_AUTHENTICATED:
674 if ($credentials->hasValidTargetUrl()) {
675 $this->
logger->debug(sprintf(
676 'Authentication successful. Redirecting to starting page: %s',
677 $credentials->getTargetUrl()
679 $this->
ctrl->redirectToURL($credentials->getTargetUrl());
682 'Authentication successful, but no valid target URL given. Redirecting to default starting page.' 688 case \ilAuthStatus::STATUS_ACCOUNT_MIGRATION_REQUIRED:
689 $this->
ctrl->redirect($this,
'showAccountMigration');
692 case \ilAuthStatus::STATUS_AUTHENTICATION_FAILED:
693 $this->
mainTemplate->setOnScreenMessage(
'failure', $status->getTranslatedReason(),
true);
695 $this->
ctrl->getLinkTarget($this,
'showLoginPage',
'',
false,
false),
701 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_wrong_login'));
711 if ($form->checkInput()) {
712 $this->
getLogger()->debug(
'Trying to authenticate user.');
714 $auth_callback =
function () use ($form) {
715 include_once
'./Services/Authentication/classes/Frontend/class.ilAuthFrontendCredentials.php';
717 $credentials->setUsername($form->getInput(
'username'));
718 $credentials->setPassword($form->getInput(
'password'));
721 include_once
'./Services/Authentication/classes/class.ilAuthModeDetermination.php';
724 $credentials->setAuthMode($form->getInput(
'auth_mode'));
727 include_once
'./Services/Authentication/classes/Provider/class.ilAuthProviderFactory.php';
729 $providers = $provider_factory->getProviders($credentials);
731 include_once
'./Services/Authentication/classes/class.ilAuthStatus.php';
734 include_once
'./Services/Authentication/classes/Frontend/class.ilAuthFrontendFactory.php';
737 $frontend = $frontend_factory->getFrontend(
744 $frontend->authenticate();
749 if (null !== ($auth_duration = $this->setting->get(
"auth_duration"))) {
750 $duration = $this->
http->durations()->callbackDuration((
int) $auth_duration);
751 $status = $duration->stretch($auth_callback);
753 $status = $auth_callback();
756 switch ($status->getStatus()) {
768 $this->
ctrl->redirect($this,
'showAccountMigration');
771 $this->
mainTemplate->setOnScreenMessage(
'failure', $status->getTranslatedReason());
776 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_wrong_login'));
792 $this->setting->get(
"shib_auth_allow_local")) &&
806 return $page_editor_html;
814 if (strlen($page_editor_html)) {
816 return $page_editor_html;
819 $loginSettings =
new ilSetting(
"login_settings");
820 $information = $loginSettings->get(
"login_message_" . $this->
lng->getLangKey());
822 if (strlen(trim($information))) {
823 $tpl->
setVariable(
"TXT_LOGIN_INFORMATION", $information);
825 return $page_editor_html;
834 if ($this->setting->get(
"cas_active")) {
835 $tpl =
new ilTemplate(
'tpl.login_form_cas.html',
true,
true,
'Services/Init');
836 $tpl->setVariable(
"TXT_CAS_LOGIN", $this->
lng->txt(
"login_to_ilias_via_cas"));
838 $tpl->setVariable(
"TXT_CAS_LOGIN_INSTRUCTIONS", $this->setting->get(
"cas_login_instructions"));
839 $this->
ctrl->setParameter($this,
"forceCASLogin",
"1");
840 $tpl->setVariable(
"TARGET_CAS_LOGIN", $this->
ctrl->getLinkTarget($this,
"doCasAuthentication"));
841 $this->
ctrl->setParameter($this,
"forceCASLogin",
"");
847 '[list-cas-login-form]',
851 return $page_editor_html;
862 if ($this->setting->get(
"shib_active")) {
863 $tpl =
new ilTemplate(
'tpl.login_form_shibboleth.html',
true,
true,
'Services/Init');
869 $federation_name = $this->setting->get(
"shib_federation_name");
870 $admin_mail =
' <a href="mailto:' . $this->setting->get(
"admin_email") .
'">ILIAS ' . $this->
lng->txt(
873 if ($this->setting->get(
"shib_hos_type") ==
'external_wayf') {
874 $tpl->setCurrentBlock(
"shibboleth_login");
875 $tpl->setVariable(
"TXT_SHIB_LOGIN", $this->
lng->txt(
"login_to_ilias_via_shibboleth"));
876 $tpl->setVariable(
"IL_TARGET", $target);
877 $tpl->setVariable(
"TXT_SHIB_FEDERATION_NAME", $this->setting->get(
"shib_federation_name"));
878 $tpl->setVariable(
"TXT_SHIB_LOGIN_BUTTON", $this->setting->get(
"shib_login_button"));
880 "TXT_SHIB_LOGIN_INSTRUCTIONS",
882 $this->
lng->txt(
"shib_general_login_instructions"),
887 $tpl->setVariable(
"TXT_SHIB_CUSTOM_LOGIN_INSTRUCTIONS", $this->setting->get(
"shib_login_instructions"));
888 $tpl->parseCurrentBlock();
889 } elseif ($this->setting->get(
"shib_hos_type") ==
'embedded_wayf') {
890 $tpl->setCurrentBlock(
"shibboleth_custom_login");
891 $customInstructions = stripslashes($this->setting->get(
"shib_login_instructions"));
892 $tpl->setVariable(
"TXT_SHIB_CUSTOM_LOGIN_INSTRUCTIONS", $customInstructions);
893 $tpl->parseCurrentBlock();
895 $tpl->setCurrentBlock(
"shibboleth_wayf_login");
896 $tpl->setVariable(
"TXT_SHIB_LOGIN", $this->
lng->txt(
"login_to_ilias_via_shibboleth"));
897 $tpl->setVariable(
"TXT_SHIB_FEDERATION_NAME", $this->setting->get(
"shib_federation_name"));
899 "TXT_SELECT_HOME_ORGANIZATION",
901 $this->
lng->txt(
"shib_select_home_organization"),
902 $this->setting->get(
"shib_federation_name")
905 $tpl->setVariable(
"TXT_CONTINUE", $this->
lng->txt(
"btn_next"));
906 $tpl->setVariable(
"TXT_SHIB_HOME_ORGANIZATION", $this->
lng->txt(
"shib_home_organization"));
908 "TXT_SHIB_LOGIN_INSTRUCTIONS",
910 $this->
lng->txt(
"shib_general_wayf_login_instructions"),
914 $tpl->setVariable(
"TXT_SHIB_CUSTOM_LOGIN_INSTRUCTIONS", $this->setting->get(
"shib_login_instructions"));
918 $tpl->setVariable(
"TXT_SHIB_INVALID_SELECTION", $ilShibbolethWAYF->showNotice());
919 $tpl->setVariable(
"SHIB_IDP_LIST", $ilShibbolethWAYF->generateSelection());
920 $tpl->setVariable(
"ILW_TARGET", $target);
921 $tpl->parseCurrentBlock();
928 '[list-shibboleth-login-form]',
933 return $page_editor_html;
947 string $page_editor_html,
948 string $element_html,
950 string $fallback_tplvar
952 if (!strlen($page_editor_html)) {
953 $tpl->setVariable($fallback_tplvar, $element_html);
954 return $page_editor_html;
957 if (!stristr($page_editor_html, $placeholder)) {
958 $tpl->setVariable($fallback_tplvar, $element_html);
959 return $page_editor_html;
961 return str_replace($placeholder, $element_html, $page_editor_html);
970 include_once
'./Services/Authentication/classes/class.ilAuthLoginPageEditorSettings.php';
972 $active_lang = $lpe->getIliasEditorLanguage($this->
lng->getLangKey());
979 include_once
'./Services/COPage/classes/class.ilPageUtil.php';
987 include_once(
"./Services/Style/Content/classes/class.ilObjStyleSheet.php");
988 $page_gui->setStyleId(0);
990 $page_gui->setPresentationTitle(
"");
991 $page_gui->setTemplateOutput(
false);
992 $page_gui->setHeader(
"");
993 $ret = $page_gui->showPage();
1005 $rtpl =
new ilTemplate(
'tpl.login_registration_links.html',
true,
true,
'Services/Init');
1008 include_once
'Services/Registration/classes/class.ilRegistrationSettings.php';
1010 $rtpl->setCurrentBlock(
"new_registration");
1011 $rtpl->setVariable(
"REGISTER", $this->
lng->txt(
"registration"));
1014 $this->
ctrl->getLinkTargetByClass(
"ilaccountregistrationgui",
"")
1016 $rtpl->parseCurrentBlock();
1019 if ($this->setting->get(
"password_assistance")) {
1020 $rtpl->setCurrentBlock(
"password_assistance");
1021 $rtpl->setVariable(
"FORGOT_PASSWORD", $this->
lng->txt(
"forgot_password"));
1022 $rtpl->setVariable(
"FORGOT_USERNAME", $this->
lng->txt(
"forgot_username"));
1024 "CMD_FORGOT_PASSWORD",
1025 $this->
ctrl->getLinkTargetByClass(
"ilpasswordassistancegui",
"")
1028 "CMD_FORGOT_USERNAME",
1029 $this->
ctrl->getLinkTargetByClass(
"ilpasswordassistancegui",
"showUsernameAssistanceForm")
1031 $rtpl->setVariable(
"LANG_ID", $this->
lng->getLangKey());
1032 $rtpl->parseCurrentBlock();
1037 $rtpl->setCurrentBlock(
"homelink");
1040 "?client_id=" .
CLIENT_ID .
"&lang=" . $this->
lng->getLangKey()
1042 $rtpl->setVariable(
"TXT_HOME", $this->
lng->txt(
"home"));
1043 $rtpl->parseCurrentBlock();
1050 '[list-registration-link]',
1051 'REG_PWD_CLIENT_LINKS' 1062 if (!$this->
user->getId()) {
1067 if ($helper->isGloballyEnabled() && $this->termsOfServiceEvaluation->hasDocument()) {
1068 $utpl =
new ilTemplate(
'tpl.login_terms_of_service_link.html',
true,
true,
'Services/Init');
1069 $utpl->setVariable(
'TXT_TERMS_OF_SERVICE', $this->
lng->txt(
'usr_agreement'));
1070 $utpl->setVariable(
'LINK_TERMS_OF_SERVICE', $this->
ctrl->getLinkTarget($this,
'showTermsOfService'));
1076 '[list-user-agreement]',
1085 '[list-user-agreement]',
1097 '[list-registration-link]',
1098 '[list-user-agreement]',
1099 '[list-login-form]',
1100 '[list-cas-login-form]',
1101 '[list-saml-login]',
1102 '[list-shibboleth-login-form]',
1103 '[list-openid-connect-login]' 1105 array(
'',
'',
'',
'',
'',
'',
''),
1115 $this->
help->setSubScreenId(
'account_migration');
1117 $tpl = self::initStartUpTemplate(
'tpl.login_account_migration.html');
1120 $form->setFormAction($this->
ctrl->getFormAction($this,
'migrateAccount'));
1122 $form->setTitle($this->
lng->txt(
'auth_account_migration'));
1123 $form->addCommandButton(
'migrateAccount', $this->
lng->txt(
'save'));
1124 $form->addCommandButton(
'showLogin', $this->
lng->txt(
'cancel'));
1130 $this->
lng->txt(
'auth_account_migration_keep'),
1131 static::ACCOUNT_MIGRATION_MIGRATE,
1132 $this->
lng->txt(
'auth_info_migrate')
1135 $user->setRequired(
true);
1138 (
string) ($this->httpRequest->getParsedBody()[
'mig_username'] ??
'')
1142 $user->setMaxLength(128);
1147 $pass->setRequired(
true);
1150 (
string) ($this->httpRequest->getParsedBody()[
'mig_password'] ??
'')
1154 $pass->setMaxLength(128);
1155 $keep->addSubItem($pass);
1156 $rad->addOption($keep);
1159 $this->
lng->txt(
'auth_account_migration_new'),
1160 static::ACCOUNT_MIGRATION_NEW,
1161 $this->
lng->txt(
'auth_info_add')
1163 $rad->addOption($new);
1165 $form->addItem($rad);
1167 $tpl->setVariable(
'MIG_FORM', $form->getHTML());
1173 self::printToGlobalTemplate(
$tpl);
1178 if (!isset($this->httpRequest->getParsedBody()[
'account_migration'])) {
1180 $this->
lng->txt(
'select_one')
1186 ((
int) $this->httpRequest->getParsedBody()[
'account_migration'] === self::ACCOUNT_MIGRATION_MIGRATE) &&
1188 !isset($this->httpRequest->getParsedBody()[
'mig_username']) ||
1189 !is_string($this->httpRequest->getParsedBody()[
'mig_username']) ||
1190 0 === strlen($this->httpRequest->getParsedBody()[
'mig_username']) ||
1191 !isset($this->httpRequest->getParsedBody()[
'mig_password']) ||
1192 !is_string($this->httpRequest->getParsedBody()[
'mig_password'])
1196 $this->
lng->txt(
'err_wrong_login')
1201 if ((
int) $this->httpRequest->getParsedBody()[
'account_migration'] == self::ACCOUNT_MIGRATION_MIGRATE) {
1204 } elseif ((
int) $this->httpRequest->getParsedBody()[
'account_migration'] == static::ACCOUNT_MIGRATION_NEW) {
1217 $provider = $provider_factory->getProviderByAuthMode(
1222 $this->
logger->debug(
'Using provider: ' . get_class(
$provider) .
' for further processing.');
1228 $frontend = $frontend_factory->getFrontend(
1235 if ($frontend->migrateAccountNew()) {
1239 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_wrong_login'));
1240 $this->
ctrl->redirect($this,
'showAccountMigration');
1248 if ($this->
http->wrapper()->post()->has(
'mig_username')) {
1249 $username = $this->
http->wrapper()->post()->retrieve(
1251 $this->
refinery->kindlyTo()->string()
1255 if ($this->
http->wrapper()->post()->has(
'mig_password')) {
1256 $password = $this->
http->wrapper()->post()->retrieve(
1258 $this->
refinery->kindlyTo()->string()
1262 $this->
logger->debug(
'Starting account migration for user: ' .
ilSession::get(
'mig_ext_account'));
1265 $credentials->setUsername($username);
1266 $credentials->setPassword($password);
1275 $frontend = $frontend_factory->getFrontend(
1282 $frontend->authenticate();
1284 switch ($status->getStatus()) {
1286 $this->
getLogger()->debug(
'Account migration: authentication successful for ' . $username);
1288 $provider = $provider_factory->getProviderByAuthMode(
1293 $frontend = $frontend_factory->getFrontend(
1300 $frontend->migrateAccount(
$GLOBALS[
'DIC'][
'ilAuthSession'])
1304 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_wrong_login'),
true);
1305 $this->
ctrl->redirect($this,
'showAccountMigration');
1310 $this->
getLogger()->info(
'Account migration failed for user ' . $username);
1325 $this->
help->setSubScreenId(
'logout');
1327 $tpl = self::initStartUpTemplate(
"tpl.logout.html");
1329 if ($this->
http->wrapper()->query()->has(
'client_id')) {
1332 $this->
refinery->kindlyTo()->string()
1336 $tpl->setCurrentBlock(
"homelink");
1337 $tpl->setVariable(
"CLIENT_ID",
"?client_id=" .
$client_id .
"&lang=" . $this->
lng->getLangKey());
1338 $tpl->setVariable(
"TXT_HOME", $this->
lng->txt(
"home"));
1339 $tpl->parseCurrentBlock();
1344 $tpl->setVariable(
"TXT_PAGEHEADLINE", $this->
lng->txt(
"logout"));
1347 $this->
lng->txt(
"logout_text") . $tosWithdrawalGui->getWithdrawalTextForLogoutScreen($this->httpRequest)
1349 $tpl->setVariable(
"TXT_LOGIN", $this->
lng->txt(
"login_to_ilias"));
1352 "?client_id=" .
$client_id .
"&cmd=force_login&lang=" . $this->
lng->getLangKey()
1355 self::printToGlobalTemplate(
$tpl);
1367 $this->eventHandler->raise(
1368 'Services/Authentication',
1371 'user_id' => $this->
user->getId()
1375 $user_language = $this->
user->getLanguage();
1378 $tosWithdrawalGui->handleWithdrawalLogoutRequest($this->httpRequest, $this);
1380 $had_external_authentication =
ilSession::get(
'used_external_auth');
1383 $this->authSession->logout();
1384 $this->eventHandler->raise(
1385 'Services/Authentication',
1388 'username' => $this->
user->getLogin()
1392 $this->
logger->info(
'Redirecting user to SAML logout script');
1393 $this->
ctrl->redirectToURL(
'saml.php?action=logout&logout_url=' . urlencode(ILIAS_HTTP_PATH .
'/login.php'));
1401 $this->
ctrl->setParameter($this,
'lang', $user_language);
1402 $this->
ctrl->redirect($this,
'showLogout');
1413 $str =
"<p style=\"margin:15px;\"> 1414 You need to enable Session Cookies in your Browser to use ILIAS. 1417 <br/>Tools -> Options -> Privacy -> Cookies 1418 <br/>Enable 'Allow sites to set cookies' and activate option 'Keep 1419 <br/>cookies' auf 'until I close Firefox' 1421 <br/><b>Mozilla/Netscape</b> 1422 <br/>Edit -> Preferences -> Privacy&Security -> Cookies 1423 <br/>Go to 'Cookie Lifetime Policy' and check option 'Accept for current 1426 <br/><b>Internet Explorer</b> 1427 <br/>Tools -> Internet Options -> Privacy -> Advanced 1428 <br/>- Check 'Override automatic cookie handling' 1429 <br/>- Check 'Always allow session cookies' 1431 $tpl->setVariable(
"CONTENT", $str);
1432 $tpl->printToStdout();
1450 if (!$this->
user->getId()) {
1453 $back_to_login =
false;
1454 if ($this->
user->getPref(
'consent_withdrawal_requested') != 1) {
1455 $back_to_login =
true;
1457 $tpl = self::initStartUpTemplate(
'tpl.view_terms_of_service.html', $back_to_login, !$back_to_login);
1460 $handleDocument = $helper->isGloballyEnabled() && $this->termsOfServiceEvaluation->hasDocument();
1461 if ($handleDocument) {
1462 $document = $this->termsOfServiceEvaluation->document();
1463 if (
'confirmWithdrawal' === $this->
ctrl->getCmd()) {
1464 if (isset($this->httpRequest->getParsedBody()[
'status']) &&
'withdrawn' === $this->httpRequest->getParsedBody()[
'status']) {
1465 $helper->deleteAcceptanceHistoryByUser($this->
user->getId());
1466 $this->
ctrl->redirectToUrl(self::logoutUrl());
1470 $tpl->setVariable(
'FORM_ACTION', $this->
ctrl->getFormAction($this, $this->ctrl->getCmd()));
1472 $tpl->setVariable(
'ACCEPT_TERMS_OF_SERVICE', $this->
lng->txt(
'accept_usr_agreement'));
1473 $tpl->setVariable(
'TXT_SUBMIT', $this->
lng->txt(
'submit'));
1475 $tpl->setPermanentLink(
'usr', null,
'agreement');
1476 $tpl->setVariable(
'TERMS_OF_SERVICE_CONTENT', $document->content());
1479 'TERMS_OF_SERVICE_CONTENT',
1481 $this->
lng->txt(
'no_agreement_description'),
1489 self::printToGlobalTemplate(
$tpl);
1501 $this->
help->setSubScreenId(
'terms_of_service');
1503 $back_to_login = (
'getAcceptance' !== $this->
ctrl->getCmd());
1506 if (!$this->
user->getId()) {
1510 $tpl = self::initStartUpTemplate(
'tpl.view_terms_of_service.html', $back_to_login, !$back_to_login);
1512 $is_read_only_view =
true;
1515 $handleDocument = $helper->isGloballyEnabled() && $this->termsOfServiceEvaluation->hasDocument();
1516 if ($handleDocument) {
1517 $document = $this->termsOfServiceEvaluation->document();
1519 'confirmAcceptance' === $this->
ctrl->getCmd() ||
1520 'getAcceptance' === $this->
ctrl->getCmd()
1523 $helper->trackAcceptance($this->
user, $document);
1528 $this->
ctrl->redirectToURL($target);
1530 $this->
ctrl->redirectToURL(
'index.php?target=' . $target .
'&client_id=' .
CLIENT_ID);
1534 $this->
mainTemplate->setTitle($this->
lng->txt(
'accept_usr_agreement'));
1535 $this->
mainTemplate->setOnScreenMessage(
'info', $this->
lng->txt(
'accept_usr_agreement_intro'));
1536 $is_read_only_view =
false;
1538 $tpl->setVariable(
'FORM_ACTION', $this->
ctrl->getFormAction($this, $this->ctrl->getCmd()));
1539 $tpl->setVariable(
'ACCEPT_TERMS_OF_SERVICE', $this->
lng->txt(
'accept_usr_agreement'));
1540 $tpl->setVariable(
'TXT_ACCEPT', $this->
lng->txt(
'accept_usr_agreement_btn'));
1541 $tpl->setVariable(
'DENY_TERMS_OF_SERVICE', $this->
lng->txt(
'deny_usr_agreement'));
1544 $this->dic->ui()->renderer()->render(
1545 $this->dic->ui()->factory()->button()->standard(
1546 $this->dic->language()->txt(
'deny_usr_agreement_btn'),
1547 self::logoutUrl([
'withdraw_consent' =>
''])
1553 $tpl->setPermanentLink(
'usr', 0,
'agreement');
1554 $tpl->setVariable(
'TERMS_OF_SERVICE_CONTENT', $document->content());
1557 'TERMS_OF_SERVICE_CONTENT',
1559 $this->
lng->txt(
'no_agreement_description'),
1567 if ($is_read_only_view) {
1568 if ($this->
user->isAnonymous()) {
1569 $this->
lng->loadLanguageModule(
'tos');
1570 $this->
mainTemplate->setTitle($this->
lng->txt(
'tos_accept_usr_agreement_anonymous'));
1571 $this->
mainTemplate->setOnScreenMessage(
'info', $this->
lng->txt(
'tos_accept_usr_agreement_anonymous_intro'));
1574 $this->
mainTemplate->setOnScreenMessage(
'info', $this->
lng->txt(
'usr_agreement_footer_intro'));
1578 self::printToGlobalTemplate(
$tpl);
1589 if ($this->authSession->isValid()) {
1591 $this->httpRequest->getServerParams()[
'SERVER_NAME']
1613 global $objDefinition,
$ilUser;
1614 $component_factory = $DIC[
"component.factory"];
1616 $access = $DIC->access();
1618 foreach ($component_factory->getActivePluginsInSlot(
"uihk") as $ui_plugin) {
1619 $gui_class = $ui_plugin->getUIClassInstance();
1620 $resp = $gui_class->checkGotoHook($a_target);
1621 if (
$resp[
"target"] !==
false) {
1622 $a_target =
$resp[
"target"];
1627 if ($a_target ==
"") {
1631 $t_arr = explode(
"_", $a_target);
1634 if (
$type ==
"git") {
1642 $class = $objDefinition->getClassName(
$type);
1648 $full_class =
"ilObj" . $class .
"Access";
1649 include_once(
$location .
"/class." . $full_class .
".php");
1651 $ret = call_user_func(array($full_class,
"_checkGoto"), $a_target);
1655 !stristr($a_target,
"_wsp") &&
1657 !$objDefinition->isAdministrationObject(
$type) &&
1658 $objDefinition->isRBACObject(
$type) &&
1660 global $tree, $rbacsystem, $ilAccess;
1664 if ($t_arr[0] ==
"pg") {
1665 if (isset($t_arr[2])) {
1671 $ref_id = array_shift($ref_ids);
1682 include_once
"Services/Membership/classes/class.ilParticipants.php";
1683 $block_obj = array();
1688 foreach (
$path as $path_ref_id) {
1689 $redirect_infopage =
false;
1690 $add_member_role =
false;
1697 !$access->
doActivationCheck(
'read',
'', $path_ref_id, $ilUser->getId(), $pobj_id, $ptype) ||
1698 !$access->
doStatusCheck(
'read',
'', $path_ref_id, $ilUser->getId(), $pobj_id, $ptype)
1702 } elseif ($ptype ==
"crs") {
1705 if (!$participants->isAssigned()) {
1707 include_once
"Modules/Course/classes/class.ilObjCourse.php";
1710 $block_obj[] = $path_ref_id;
1711 $add_member_role =
true;
1713 $redirect_infopage =
true;
1716 } elseif ($ptype ==
"grp") {
1718 include_once
"Modules/Group/classes/class.ilGroupParticipants.php";
1721 include_once
"Modules/Group/classes/class.ilObjGroup.php";
1723 if ($group_obj->isRegistrationEnabled()) {
1724 $block_obj[] = $path_ref_id;
1725 $add_member_role =
true;
1727 $redirect_infopage =
true;
1733 if ($add_member_role) {
1735 $rbacsystem->resetPACache($ilUser->getId(), $path_ref_id);
1736 if (!$rbacsystem->checkAccess(
"join", $path_ref_id)) {
1737 $redirect_infopage =
true;
1739 $rbacsystem->addTemporaryRole(
1747 if ($redirect_infopage) {
1748 if ($rbacsystem->checkAccess(
"visible", $path_ref_id)) {
1750 "&ref_id=" . $path_ref_id .
"&cmd=infoScreen");
1758 $rbacsystem->resetPACache($ilUser->getId(),
$ref_id);
1759 if ($rbacsystem->checkAccess(
"read",
$ref_id) &&
sizeof($block_obj)) {
1765 $_SESSION[
"pending_goto"] =
"goto.php?target=" . $a_target;
1769 "&ref_id=" . array_shift($block_obj));
1776 public function confirmRegistration():
void 1778 $this->
lng->loadLanguageModule(
'registration');
1781 $regitration_hash =
'';
1782 if ($this->
http->wrapper()->query()->has(
'rh')) {
1783 $regitration_hash = $this->
http->wrapper()->query()->retrieve(
1785 $this->
refinery->kindlyTo()->string()
1788 if (!strlen($regitration_hash) || !strlen(trim($regitration_hash))) {
1790 $this->
ctrl->redirectToURL(sprintf(
1791 './login.php?cmd=force_login&lang=%s',
1792 $this->
lng->getLangKey()
1804 if ($oRegSettings->passwordGenerationEnabled()) {
1806 $password = $passwords[0];
1812 $target = $user->
getPref(
'reg_target');
1813 if (strlen($target) > 0) {
1816 $_GET[
'target'] = $target;
1824 $accountMail->withEmailConfirmationRegistrationMode()->send($user, $password);
1827 $this->
ctrl->redirectToURL(sprintf(
1828 './login.php?cmd=force_login&lang=%s',
1833 $soap_client->setResponseTimeout(1);
1834 $soap_client->enableWSDL(
true);
1835 $soap_client->init();
1837 $this->
logger->info(
'Triggered soap call (background process) for deletion of inactive user objects with expired confirmation hash values (dual opt in) ...');
1840 'deleteExpiredDualOptInUserObjects',
1843 $exception->getCode()
1848 $this->
ctrl->redirectToURL(sprintf(
1849 './login.php?cmd=force_login&lang=%s',
1850 $this->
lng->getLangKey()
1854 $this->
ctrl->redirectToURL(sprintf(
1855 './login.php?cmd=force_login&lang=%s',
1856 $this->
lng->getLangKey()
1867 public static function initStartUpTemplate($a_tmpl,
bool $a_show_back =
false,
bool $a_show_logout =
false):
ilGlobalTemplateInterface 1879 $tpl->addBlockfile(
'CONTENT',
'content',
'tpl.startup_screen.html',
'Services/Init');
1881 $view_title = $lng->txt(
'login_to_ilias');
1886 $tpl->setCurrentBlock(
'link_item_bl');
1887 $tpl->setVariable(
'LINK_TXT', $view_title);
1888 $tpl->setVariable(
'LINK_URL',
'login.php?cmd=force_login&' .
$param);
1889 $tpl->parseCurrentBlock();
1891 include_once
'./Services/Init/classes/class.ilPublicSectionSettings.php';
1894 $tpl->setVariable(
'LINK_URL',
'index.php?' .
$param);
1895 $tpl->setVariable(
'LINK_TXT', $lng->txt(
'home'));
1896 $tpl->parseCurrentBlock();
1898 } elseif ($a_show_logout) {
1899 $view_title = $lng->txt(
'logout');
1900 $tpl->setCurrentBlock(
'link_item_bl');
1901 $tpl->setVariable(
'LINK_TXT', $view_title);
1902 $tpl->setVariable(
'LINK_URL', self::logoutUrl());
1903 $tpl->parseCurrentBlock();
1906 if (is_array($a_tmpl)) {
1907 $template_file = $a_tmpl[0];
1908 $template_dir = $a_tmpl[1];
1910 $template_file = $a_tmpl;
1911 $template_dir =
'Services/Init';
1914 $tpl->addBlockFile(
'STARTUP_CONTENT',
'startup_content', $template_file, $template_dir);
1916 PageContentProvider::setViewTitle($view_title);
1917 $short_title = $ilSetting->get(
'short_inst_name');
1918 if (trim($short_title) ===
"") {
1919 $short_title =
'ILIAS';
1921 PageContentProvider::setShortTitle($short_title);
1923 $header_title = ilObjSystemFolder::_getHeaderTitle();
1924 PageContentProvider::setTitle($header_title);
1931 require_once
'Services/Saml/classes/class.ilSamlIdp.php';
1932 require_once
'Services/Saml/classes/class.ilSamlSettings.php';
1935 $tpl =
new ilTemplate(
'tpl.login_form_saml.html',
true,
true,
'Services/Saml');
1939 if (strlen($target)) {
1943 $tpl->setVariable(
'SAML_SCRIPT_URL',
'./saml.php' . $return);
1944 $tpl->setVariable(
'TXT_LOGIN', $this->
lng->txt(
'saml_log_in'));
1945 $tpl->setVariable(
'LOGIN_TO_ILIAS_VIA_SAML', $this->
lng->txt(
'login_to_ilias_via_saml'));
1946 $tpl->setVariable(
'TXT_SAML_LOGIN_TXT', $this->
lng->txt(
'saml_login_form_txt'));
1947 $tpl->setVariable(
'TXT_SAML_LOGIN_INFO_TXT', $this->
lng->txt(
'saml_login_form_info_txt'));
1953 '[list-saml-login]',
1958 return $page_editor_html;
1964 if ($oidc_settings->getActive()) {
1965 $tpl =
new ilTemplate(
'tpl.login_element.html',
true,
true,
'Services/OpenIdConnect');
1967 $this->
lng->loadLanguageModule(
'auth');
1968 $tpl->setVariable(
'TXT_OIDCONNECT_HEADER', $this->
lng->txt(
'auth_oidc_login_element_info'));
1971 $target_str = empty($target) ?
'' : (
'?target=' . $target);
1972 switch ($oidc_settings->getLoginElementType()) {
1974 $tpl->setVariable(
'SCRIPT_OIDCONNECT_T', ILIAS_HTTP_PATH .
'/openidconnect.php' . $target_str);
1975 $tpl->setVariable(
'TXT_OIDC', $oidc_settings->getLoginElemenText());
1979 $tpl->setVariable(
'SCRIPT_OIDCONNECT_I', ILIAS_HTTP_PATH .
'/openidconnect.php' . $target_str);
1980 $tpl->setVariable(
'IMG_SOURCE', $oidc_settings->getImageFilePath());
1988 '[list-openid-connect-login]',
1989 'OPEN_ID_CONNECT_LOGIN_FORM' 1993 return $page_editor_html;
2001 $this->
getLogger()->debug(
'Trying openid connect authentication');
2004 $credentials->initFromRequest();
2013 $frontend = $frontend_factory->getFrontend(
2020 $frontend->authenticate();
2022 switch ($status->getStatus()) {
2024 $this->
logger->debug(
'Authentication successful; Redirecting to starting page.');
2025 if ($credentials->getRedirectionTarget()) {
2033 $this->
mainTemplate->setOnScreenMessage(
'failure', $status->getTranslatedReason(),
true);
2034 $this->
ctrl->redirect($this,
'showLoginPage');
2037 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_wrong_login'));
2043 $this->
getLogger()->debug(
'Trying saml authentication');
2045 $params = $request->getQueryParams();
2050 if (isset(
$params[
'action']) &&
$params[
'action'] ===
'logout') {
2051 $logout_url =
$params[
'logout_url'] ??
'';
2052 $this->
logger->info(sprintf(
'Requested SAML logout: %s', $logout_url));
2053 $auth->logout($logout_url);
2059 if (isset(
$params[
'returnTo'])) {
2063 $this->
logger->debug(
'Started SAML authentication request');
2064 if (!
$auth->isAuthenticated()) {
2066 if (!isset($request->getQueryParams()[
'idpentityid'], $request->getQueryParams()[
'saml_idp_id'])) {
2068 if (1 === count($activeIdps)) {
2069 $idp = current($activeIdps);
2072 'Found exactly one active IDP with id %s: %s',
2077 $this->
ctrl->setParameter($this,
'idpentityid', $idp->getEntityId());
2078 $this->
ctrl->setParameter($this,
'saml_idp_id', $idp->getIdpId());
2079 $this->
ctrl->setTargetScript(
'saml.php');
2080 $this->
ctrl->redirect($this,
'doSamlAuthentication');
2081 } elseif ($activeIdps === []) {
2082 $this->
logger->debug(
'Did not find any active IDP, skipp authentication process');
2083 $this->
ctrl->redirect($this,
'showLoginPage');
2085 $this->
logger->debug(
'Found multiple active IPDs, presenting IDP selection...');
2091 $auth->storeParam(
'idpId', (
int) $request->getQueryParams()[
'saml_idp_id']);
2092 $this->
logger->debug(sprintf(
2093 'Stored relevant IDP id in session: %s',
2094 (
string)
$auth->getParam(
'idpId')
2101 $this->
logger->debug(
'Checking SAML authentication status...');
2102 $auth->protectResource();
2104 'SAML authentication successful, continuing with ILIAS internal authentication process...' 2107 $idpId = (
int)
$auth->getParam(
'idpId');
2109 $this->
logger->debug(sprintf(
2110 'Internal SAML IDP id fetched from session: %s',
2116 'No valid internal IDP id found (most probably due to IDP initiated SSO), trying fallback determination...' 2118 $authData =
$auth->getAuthDataArray();
2119 if (isset($authData[
'saml:sp:IdP'])) {
2121 $this->
logger->debug(sprintf(
2122 'Searching active ILIAS IDP by entity id "%s" results in: %s',
2123 $authData[
'saml:sp:IdP'],
2128 'Could not execute fallback determination, no IDP entity ID found SAML authentication session data' 2133 $target =
$auth->popParam(
'target');
2135 $this->
logger->debug(sprintf(
2136 'Retrieved "target" parameter: %s',
2137 print_r($target,
true)
2141 $credentials->initFromRequest();
2149 $credentials->setReturnTo($target);
2156 $frontend = $frontend_factory->getFrontend(
2163 $frontend->authenticate();
2165 switch ($status->getStatus()) {
2167 $this->
logger->debug(
'Authentication successful; Redirecting to starting page.');
2172 $this->
ctrl->redirect($this,
'showAccountMigration');
2176 $this->
mainTemplate->setOnScreenMessage(
'failure', $status->getTranslatedReason(),
true);
2177 $this->
ctrl->redirect($this,
'showLoginPage');
2181 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_wrong_login'));
2193 $this->
help->setSubScreenId(
'saml_idp_selection');
2195 self::initStartUpTemplate(array(
'tpl.saml_idp_selection.html',
'Services/Saml'));
2198 $renderer = $DIC->ui()->renderer();
2199 $DIC->ctrl()->setTargetScript(
'saml.php');
2202 foreach ($idps as $idp) {
2203 $DIC->ctrl()->setParameter($this,
'saml_idp_id', $idp->getIdpId());
2204 $DIC->ctrl()->setParameter($this,
'idpentityid', urlencode($idp->getEntityId()));
2207 'idp_link' => $renderer->render(
2209 $idp->getEntityId(),
2210 $this->
ctrl->getLinkTarget($this,
'doSamlAuthentication')
2216 $table->setData($items);
2217 $this->
mainTemplate->setVariable(
'CONTENT', $table->getHtml());
2226 public static function logoutUrl(array $parameters = []): string
2230 $defaults = [
'lang' => $DIC->user()->getCurrentLanguage()];
2231 $parameters =
'&' . http_build_query(array_merge($defaults, $parameters));
2233 $DIC->ctrl()->setTargetScript(
'logout.php');
2234 $url = $DIC->ctrl()->getLinkTargetByClass([self::class],
'doLogout') . $parameters;
2235 $DIC->ctrl()->setTargetScript(
'ilias.php');
showLogout()
Show logout screen.
const AUTH_OPENID_CONNECT
Class ilTermsOfServiceWithdrawalGUIHelper.
static _checkGoto($a_target)
Return type depends on _checkGoto calls.
static get(string $a_var)
setTimeLimitUnlimited(bool $a_unlimited)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _isParticipant(int $a_ref_id, int $a_usr_id)
Static function to check if a user is a participant of the container object.
const ACCOUNT_MIGRATION_NEW
const ACCOUNT_MIGRATION_MIGRATE
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupRegistrationType()
static appendUrlParameterString(string $a_url, string $a_par, bool $xml_style=false)
ilTermsOfServiceDocumentEvaluation $termsOfServiceEvaluation
showLoginInformation(string $page_editor_html, ilGlobalTemplateInterface $tpl)
Show login information.
static useCode(string $code)
static applyRoleAssignments(ilObjUser $user, string $code)
showCodeForm($a_username=null, $a_form=null)
getLoginPageEditorHTML()
Get HTML of ILIAS login page editor.
const CONTEXT_STANDARD_FORM
static getLogger(string $a_component_id)
Get component logger.
doLTIAuthentication()
Handle lti requests.
static getCodeValidUntil(string $code)
__construct(ilObjUser $user=null, ilTermsOfServiceDocumentEvaluation $termsOfServiceEvaluation=null, ilGlobalTemplateInterface $mainTemplate=null, ServerRequestInterface $httpRequest=null)
ilStartUpGUI constructor.
static _hasMultipleAuthenticationMethods()
static _verifyRegistrationHash(string $a_hash)
Verifies a registration hash.
special template class to simplify handling of ITX/PEAR
Class ilAccountRegistrationGUI.
$location
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $mainTemplate
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
Class for user related exception handling in ILIAS.
static _isActivated(int $a_obj_id)
Is activated.
const STATUS_AUTHENTICATION_FAILED
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
static _getInstanceByObjId(int $a_obj_id, int $a_usr_id)
static _getAllReferences(int $id)
get all reference ids for object ID
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
Factory for auth frontend classes.
static isUnusedCode(string $code)
static _lookupId($a_user_str)
static goToPublicSection()
go to public section
const LOGIN_ELEMENT_TYPE_TXT
setVariable(string $variable, $value='')
Sets the given variable to the given value.
processIndexPHP()
process index.php
getAcceptance()
Get terms of service.
Interface ilTermsOfServiceDocumentEvaluation.
static getDefaultMemberRole(int $a_ref_id)
const MESSAGE_TYPE_QUESTION
setTimeLimitUntil(?int $a_until)
executeCommand()
execute command
showTermsOfService(bool $accepted=false)
Show terms of service.
static printToGlobalTemplate($tpl)
doShibbolethAuthentication()
Trying shibboleth authentication.
purgePlaceholders(string $page_editor_html)
Purge page editor html from unused placeholders.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setPasswd(string $a_str, string $a_type=ilObjUser::PASSWD_PLAIN)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupObjId(int $ref_id)
initStandardLoginForm()
Initialize the standard.
Interface ilCtrlBaseClassInterface describes ilCtrl base classes.
const MESSAGE_TYPE_SUCCESS
showLoginPage(ilPropertyFormGUI $form=null)
Class ilAuthFrontendCredentialsSaml.
setActive(bool $a_active, int $a_owner=0)
set user active state and updates system fields appropriately
showOpenIdConnectLoginForm(string $page_editor_html)
$messages
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
showShibbolethLoginForm(string $page_editor_html)
Show shibboleth login form.
static _existsAndNotEmpty(string $a_parent_type, int $a_id, string $a_lang="-")
checks whether page exists and is not empty (may return true on some empty pages) ...
static http()
Fetches the global http state from ILIAS.
showAccountMigration(string $message='')
Show account migration screen.
Class ilAccountRegistrationMail.
static logoutUrl(array $parameters=[])
Return the logout URL with a valid CSRF token.
Description of class class.
doApacheAuthentication()
Try apache auth.
static setCookie(string $a_cookie_name, string $a_cookie_value='', bool $a_also_set_super_global=true, bool $a_set_cookie_invalid=false)
retrieveMessagesFromSession()
getPref(string $a_keyword)
setValue(string $a_value)
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
static lookupId(string $a_lang_key)
Lookup obj_id of language.
Class ilSamlIdpSelectionTableGUI.
static getSyntaxStylePath()
doStandardAuthentication()
Check form input; authenticate user.
static getContentStylePath(int $a_style_id, bool $add_random=true, bool $add_token=true)
get content style path static (to avoid full reading)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
substituteLoginPageElements( $tpl, string $page_editor_html, string $element_html, string $placeholder, string $fallback_tplvar)
Substitute login page elements.
static redirect(string $a_script)
initCodeForm(string $a_username)
static generatePasswords(int $a_number)
Generate a number of passwords.
setLastPasswordChangeTS(int $a_last_password_change_ts)
showNoCookiesScreen()
show help screen, if cookies are disabled to do: link to online help here
Class ilTermsOfServiceHelper.
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
const STATUS_AUTHENTICATED
const MIG_EXTERNAL_ACCOUNT
Class ilObjAuthSettingsGUI.
static _registrationEnabled(int $a_obj_id)
Registration enabled? Method is in Access class, since it is needed by Access/ListGUI.
const STATUS_CODE_ACTIVATION_REQUIRED
static _getInstance()
Get instance.
static applyAccessLimits(ilObjUser $user, string $code)
doActivationCheck(string $a_permission, string $a_cmd, int $a_ref_id, int $a_user_id, int $a_obj_id, string $a_type)
check for activation and centralized offline status.
showRegistrationLinks(string $page_editor_html)
Show registration, password forgotten, client slection links.
ilAuthSession $authSession
static redirectToStartingPage(string $target='')
static getInstance()
Get status instance.
static setClosingContext(int $a_context)
set closing context (for statistics)
ilAppEventHandler $eventHandler
showSamlIdpSelection(ilSamlAuth $auth, array $idps)
Description of class class.
static _lookupContObjID(int $a_id)
get learning module id for lm object
showTermsOfServiceLink(string $page_editor_html)
Show terms of service link.
static geIdpIdByEntityId(string $entityId)
RefineryFactory $refinery
static _getMultipleAuthModeOptions(ilLanguage $lng)
const MESSAGE_TYPE_FAILURE
static getInstance()
Get singelton instance.
Class for user related exception handling in ILIAS.
ServerRequestInterface $httpRequest
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl
static getActiveIdpList()
const LOGIN_ELEMENT_TYPE_IMG
static _lookupType(int $id, bool $reference=false)
showLoginForm(string $page_editor_html, ilPropertyFormGUI $form=null)
Show login form.
const MIG_TRIGGER_AUTHMODE
doOpenIdConnectAuthentication()
do open id connect authentication
Interface ilCtrlSecurityInterface provides ilCtrl security information.
const STATUS_ACCOUNT_MIGRATION_REQUIRED
static set(string $a_var, $a_val)
Set a value.
doLogout()
show logout screen
jumpToPasswordAssistance()
jump to password assistance
jumpToRegistration()
jump to registration gui
Auth frontend credentials for CAS auth.
showSamlLoginForm(string $page_editor_html)
doStatusCheck(string $a_permission, string $a_cmd, int $a_ref_id, int $a_user_id, int $a_obj_id, string $a_type)
object type specific check
showCASLoginForm(string $page_editor_html)
Show cas login.
static _lookupLogin(int $a_user_id)