19 declare(strict_types=1);
75 $this->
user = $user ?? $DIC->user();
76 $this->
mainTemplate = $mainTemplate ?? $DIC->ui()->mainTemplate();
77 $this->httpRequest = $httpRequest ?? $DIC->http()->request();
78 $this->
ctrl = $DIC->ctrl();
79 $this->
lng = $DIC->language();
80 $this->
lng->loadLanguageModule(
'auth');
82 $this->authSession = $DIC[
'ilAuthSession'];
83 $this->eventHandler = $DIC->event();
84 $this->setting = $DIC->settings();
85 $this->
access = $DIC->access();
86 $this->
help = $DIC->help();
87 $this->
http = $DIC->http();
89 $this->ui_factory = $DIC->ui()->factory();
90 $this->ui_renderer = $DIC->ui()->renderer();
92 $this->
ctrl->saveParameter($this, [
'rep_ref_id',
'lang',
'target',
'client_id']);
93 $this->
user->setLanguage($this->
lng->getLangKey());
94 $this->
help->setScreenIdComponent(
'init');
99 self::$forced_cmd = $cmd;
104 if (self::$forced_cmd) {
105 $cmd = self::$forced_cmd;
106 self::$forced_cmd =
'';
114 return $this->
refinery->custom()->transformation(
static function (array $values): array {
115 return array_merge(...$values);
121 return $this->
refinery->custom()->transformation(
static function (array $values): array {
122 $processed_values = array_merge(
124 isset($values[self::PROP_PASSWORD]) ? [self::PROP_PASSWORD => $values[self::PROP_PASSWORD]] : []
127 return $processed_values;
133 return $this->
http->wrapper()->query()->retrieve(
135 $this->
refinery->byTrying([$this->refinery->kindlyTo()->string(), $this->
refinery->always(
'')])
149 'doStandardAuthentication',
157 $next_class = $this->
ctrl->getNextClass($this) ??
'';
159 switch (strtolower($next_class)) {
160 case strtolower(ilLoginPageGUI::class):
163 case strtolower(ilAccountRegistrationGUI::class):
167 case strtolower(ilPasswordAssistanceGUI::class):
171 case strtolower(ilAccessibilityControlConceptGUI::class):
176 if (method_exists($this, $cmd)) {
195 $this->
ctrl->redirectByClass(ilAccountRegistrationGUI::class);
200 $this->
ctrl->saveParameterByClass(ilPasswordAssistanceGUI::class,
'key');
201 $this->
ctrl->redirectByClass(ilPasswordAssistanceGUI::class);
214 if ($this->authSession->isValid() && $this->authSession->getUserId() > 0 && !$this->
user->isAnonymous()) {
218 $is_forced_login = $this->
http->wrapper()->query()->retrieve(
221 $this->refinery->kindlyTo()->string(),
223 $this->
http->wrapper()->post()->retrieve(
226 $this->refinery->kindlyTo()->string(),
234 if ($is_forced_login) {
236 $this->
logger->debug(
'Force login');
238 if ($this->authSession->isValid()) {
240 $this->
logger->debug(
'Valid session -> logout current user');
242 $this->authSession->logout();
244 $this->eventHandler->raise(
245 'components/ILIAS/Authentication',
248 'username' => $this->
user->getLogin(),
249 'is_explicit_logout' =>
false,
253 $this->dic->user()->setId($this->authSession->getUserId());
254 $this->dic->user()->read();
257 $this->
logger->debug(
'Show login page');
258 foreach (
$messages as $type => $content) {
259 $this->
mainTemplate->setOnScreenMessage($type, $content);
266 if ($this->authSession->isValid()) {
267 $this->
logger->debug(
'Valid session -> redirect to starting page');
272 $this->
logger->debug(
'No valid session -> show login');
280 $this->
help->setSubScreenId(
'login');
282 $this->
getLogger()->debug(
'Showing login page');
284 $extUid = $this->
http->wrapper()->query()->retrieve(
286 $this->
refinery->byTrying([$this->refinery->kindlyTo()->string(), $this->
refinery->always(
'')])
289 $soapPw = $this->
http->wrapper()->query()->retrieve(
291 $this->
refinery->byTrying([$this->refinery->kindlyTo()->string(), $this->
refinery->always(
'')])
300 $credentials->setUsername($extUid);
301 $credentials->setPassword($soapPw);
302 $credentials->tryAuthenticationOnLoginPage();
305 $frontend->tryAuthenticationOnLoginPage();
307 $tpl = self::initStartUpTemplate(
'tpl.login.html');
314 $page_editor_html = $this->
showLoginForm($page_editor_html, $form);
323 if ($this->authSession->isExpired() || $this->
http->wrapper()->query()->has(
'session_expired')) {
324 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
'auth_err_expired'));
325 } elseif ($this->
http->wrapper()->query()->has(
'reg_confirmation_msg')) {
326 $this->
lng->loadLanguageModule(
'registration');
327 $message_key = $this->
http->wrapper()->query()->retrieve(
328 'reg_confirmation_msg',
329 $this->
refinery->kindlyTo()->string()
331 $message_type = $message_key ===
'reg_account_confirmation_successful' ?
335 $this->
lng->txt($message_key)
339 if ($page_editor_html !==
'') {
340 $tpl->setVariable(
'LPE', $page_editor_html);
343 if ($this->authSession->isExpired()) {
346 $this->dic->user()->setId($this->authSession->getUserId());
347 $this->dic->user()->read();
351 self::printToGlobalTemplate($tpl);
361 $gtpl->setContent($tpl->get());
362 $gtpl->printToStdout(
'DEFAULT',
false,
true);
378 foreach ($message_types as $message_type) {
388 ?
string $username =
null,
391 $this->
help->setSubScreenId(
'code_input');
393 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
'time_limit_reached'));
395 $tpl = self::initStartUpTemplate(
'tpl.login_reactivate_code.html');
396 $tpl->setVariable(
'FORM', $this->ui_renderer->render($form ?? $this->buildCodeForm($username)));
397 self::printToGlobalTemplate($tpl);
402 $this->
lng->loadLanguageModule(
'auth');
404 $field_factory = $this->ui_factory->input()->field();
406 $username_field = $field_factory
408 ->withRequired(
true);
409 if ($username !==
null) {
410 $username_field = $username_field->withValue($username);
413 return $this->ui_factory
418 $this->
ctrl->getFormAction($this,
'processCode'),
420 $field_factory->section(
422 self::PROP_CODE => $field_factory
424 $this->
lng->txt(
'auth_account_code'),
425 $this->
lng->txt(
'auth_account_code_info')
427 ->withRequired(
true),
429 self::PROP_USERNAME => $username_field,
431 $this->
lng->txt(
'auth_account_code_title'),
435 ->withSubmitLabel($this->
lng->txt(
'send'))
445 if ($this->
http->request()->getMethod() ===
'POST') {
446 $form = $form->withRequest($this->
http->request());
447 $form_data = $form->getData();
448 $form_valid = $form_data !==
null;
453 $code = $form_data[self::PROP_CODE];
454 $uname = $form_data[self::PROP_USERNAME];
461 $invalid_code =
false;
463 if ($valid_until ===
'0') {
466 if (is_numeric($valid_until)) {
467 $valid_until = strtotime(
'+' . $valid_until .
'days');
469 $valid_until = explode(
'-', $valid_until);
470 $valid_until = mktime(
474 (
int) $valid_until[1],
475 (
int) $valid_until[2],
476 (
int) $valid_until[0]
478 if ($valid_until < time()) {
479 $invalid_code =
true;
483 if (!$invalid_code) {
489 if (!$invalid_code) {
499 $this->
ctrl->setParameter($this,
'cu', 1);
500 $this->
lng->loadLanguageModule(
'auth');
506 $this->
ctrl->redirect($this,
'showLoginPage');
510 $this->
lng->loadLanguageModule(
'user');
511 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
'user_account_code_not_valid'));
513 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
'form_input_not_valid'));
521 $field_factory = $this->ui_factory->input()->field();
526 $auth_mode = $field_factory->radio($this->
lng->txt(
'auth_selection'))->withRequired(
true);
527 $visible_auth_methods = [];
529 if (isset($option[
'hide_in_ui']) && $option[
'hide_in_ui']) {
533 $auth_mode = $auth_mode->withOption((
string) $key, $option[
'txt']);
535 if (isset($option[
'checked'])) {
536 $auth_mode = $auth_mode->withValue($key);
538 $visible_auth_methods[] = $key;
541 if (count($visible_auth_methods) === 1) {
542 $auth_mode = $field_factory->hidden()->withRequired(
true)->withValue(current($visible_auth_methods));
545 $fields[self::PROP_AUTH_MODE] = $auth_mode;
549 self::PROP_USERNAME => $field_factory
550 ->text($this->
lng->txt(
'username'))
553 $this->
refinery->custom()->constraint(
554 static function (
string $value):
bool {
555 return $value !==
'';
557 static function (
Closure $lng,
string $value):
string {
558 return $lng(
'auth_required_username');
562 self::PROP_PASSWORD => $field_factory
563 ->password($this->
lng->txt(
'password'))
564 ->withRevelation(
true)
567 $this->
refinery->custom()->constraint(
568 static function (
string $value):
bool {
569 return $value !==
'';
571 static function (
Closure $lng,
string $value):
string {
572 return $lng(
'auth_required_password');
576 ->withAdditionalTransformation(
577 $this->
refinery->custom()->transformation(
578 static function (
ILIAS\
Data\Password $value):
string {
579 return $value->toString();
585 $sections = [$field_factory->section($fields, $this->
lng->txt(
'login_to_ilias'))];
587 return $this->ui_factory
591 ->standard($this->
ctrl->getFormAction($this,
'doStandardAuthentication'), $sections)
592 ->withDedicatedName(
'login_form')
593 ->withSubmitLabel($this->
lng->txt(
'log_in'))
600 $this->
getLogger()->debug(
'Trying shibboleth authentication');
603 $credentials->initFromRequest();
612 $frontend = $frontend_factory->getFrontend(
618 $frontend->authenticate();
620 switch ($status->getStatus()) {
622 $this->
logger->debug(
'Authentication successful; Redirecting to starting page.');
627 $this->
ctrl->redirect($this,
'showAccountMigration');
631 $this->
mainTemplate->setOnScreenMessage(
'failure', $status->getTranslatedReason(),
true);
632 $this->
ctrl->redirect($this,
'showLoginPage');
635 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_wrong_login'));
641 $this->
getLogger()->debug(
'Trying cas authentication');
651 $frontend = $frontend_factory->getFrontend(
657 $frontend->authenticate();
659 switch ($status->getStatus()) {
661 $this->
getLogger()->debug(
'Authentication successful.');
667 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt($status->getReason()));
674 $this->
getLogger()->debug(
'Trying lti authentication');
677 $credentials->initFromRequest();
686 $frontend = $frontend_factory->getFrontend(
692 $frontend->authenticate();
694 switch ($status->getStatus()) {
701 $this->
ctrl->redirect($this,
'showAccountMigration');
705 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt($status->getReason()),
true);
706 $this->
ctrl->redirect($this,
'showLoginPage');
709 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_wrong_login'));
715 $this->
getLogger()->debug(
'Trying apache authentication');
718 $credentials->initFromRequest();
725 $frontend_factory = new \ilAuthFrontendFactory();
727 $frontend = $frontend_factory->getFrontend(
733 $frontend->authenticate();
735 switch ($status->getStatus()) {
737 if ($credentials->hasValidTargetUrl()) {
740 'Authentication successful. Redirecting to starting page: %s',
741 $credentials->getTargetUrl()
744 $this->
ctrl->redirectToURL($credentials->getTargetUrl());
747 'Authentication successful, but no valid target URL given. Redirecting to default starting page.' 753 $this->
ctrl->redirect($this,
'showAccountMigration');
757 $this->
mainTemplate->setOnScreenMessage(
'failure', $status->getTranslatedReason(),
true);
758 $this->
ctrl->redirectToURL(
760 $this->
ctrl->getLinkTarget($this,
'showLoginPage',
'',
false,
false),
766 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_wrong_login'));
775 if ($this->
http->request()->getMethod() ===
'POST') {
776 $form = $form->withRequest($this->
http->request());
777 $form_data = $form->getData();
778 $form_valid = $form_data !==
null;
786 $this->
getLogger()->debug(
'Trying to authenticate user.');
788 $auth_callback =
function () use ($form_data) {
790 $credentials->setUsername($form_data[self::PROP_USERNAME]);
791 $credentials->setPassword($form_data[self::PROP_PASSWORD]);
795 $credentials->setAuthMode($form_data[self::PROP_AUTH_MODE]);
799 $providers = $provider_factory->getProviders($credentials);
805 $frontend = $frontend_factory->getFrontend(
811 $frontend->authenticate();
816 if (($auth_duration = $this->setting->get(
'auth_duration')) !==
null) {
817 $duration = $this->
http->durations()->callbackDuration((
int) $auth_duration);
818 $status =
$duration->stretch($auth_callback);
820 $status = $auth_callback();
823 switch ($status->getStatus()) {
826 'Authentication successful; Redirecting to starting page.' 837 $this->
ctrl->redirect($this,
'showAccountMigration');
841 $this->
mainTemplate->setOnScreenMessage(
'failure', $status->getTranslatedReason());
847 string $page_editor_html,
858 $this->setting->get(
'shib_auth_allow_local')
863 $this->ui_renderer->render($form ?? $this->buildStandardLoginForm()),
869 return $page_editor_html;
874 if ($page_editor_html !==
'') {
875 return $page_editor_html;
878 return $page_editor_html;
883 if ($this->setting->get(
'cas_active')) {
884 $tpl =
new ilTemplate(
'tpl.login_form_cas.html',
true,
true,
'components/ILIAS/Init');
885 $tpl->setVariable(
'TXT_CAS_LOGIN', $this->
lng->txt(
'login_to_ilias_via_cas'));
887 $tpl->setVariable(
'TXT_CAS_LOGIN_INSTRUCTIONS', $this->setting->get(
'cas_login_instructions'));
888 $this->
ctrl->setParameter($this,
'forceCASLogin',
'1');
889 $tpl->setVariable(
'TARGET_CAS_LOGIN', $this->
ctrl->getLinkTarget($this,
'doCasAuthentication'));
890 $this->
ctrl->setParameter($this,
'forceCASLogin',
'');
896 '[list-cas-login-form]',
901 return $page_editor_html;
908 if ($this->setting->get(
'shib_active')) {
909 $tpl =
new ilTemplate(
'tpl.login_form_shibboleth.html',
true,
true,
'components/ILIAS/Init');
915 $federation_name = $this->setting->get(
'shib_federation_name');
916 $admin_mail =
' <a href="mailto:' . $this->setting->get(
'admin_email') .
'">ILIAS ' . $this->
lng->txt(
919 if ($this->setting->get(
'shib_hos_type') ===
'external_wayf') {
920 $tpl->setCurrentBlock(
'shibboleth_login');
921 $tpl->setVariable(
'TXT_SHIB_LOGIN', $this->
lng->txt(
'login_to_ilias_via_shibboleth'));
922 $tpl->setVariable(
'IL_TARGET', $target);
923 $tpl->setVariable(
'TXT_SHIB_FEDERATION_NAME', $this->setting->get(
'shib_federation_name'));
924 $tpl->setVariable(
'TXT_SHIB_LOGIN_BUTTON', $this->setting->get(
'shib_login_button'));
926 'TXT_SHIB_LOGIN_INSTRUCTIONS',
928 $this->
lng->txt(
'shib_general_login_instructions'),
933 $tpl->setVariable(
'TXT_SHIB_CUSTOM_LOGIN_INSTRUCTIONS', $this->setting->get(
'shib_login_instructions'));
934 $tpl->parseCurrentBlock();
935 } elseif ($this->setting->get(
'shib_hos_type') ==
'embedded_wayf') {
936 $tpl->setCurrentBlock(
'shibboleth_custom_login');
937 $customInstructions = stripslashes($this->setting->get(
'shib_login_instructions'));
938 $tpl->setVariable(
'TXT_SHIB_CUSTOM_LOGIN_INSTRUCTIONS', $customInstructions);
939 $tpl->parseCurrentBlock();
941 $tpl->setCurrentBlock(
'shibboleth_wayf_login');
942 $tpl->setVariable(
'TXT_SHIB_LOGIN', $this->
lng->txt(
'login_to_ilias_via_shibboleth'));
943 $tpl->setVariable(
'TXT_SHIB_FEDERATION_NAME', $this->setting->get(
'shib_federation_name'));
945 'TXT_SELECT_HOME_ORGANIZATION',
947 $this->
lng->txt(
'shib_select_home_organization'),
948 $this->setting->get(
'shib_federation_name')
951 $tpl->setVariable(
'TXT_CONTINUE', $this->
lng->txt(
'btn_next'));
952 $tpl->setVariable(
'TXT_SHIB_HOME_ORGANIZATION', $this->
lng->txt(
'shib_home_organization'));
954 'TXT_SHIB_LOGIN_INSTRUCTIONS',
956 $this->
lng->txt(
'shib_general_wayf_login_instructions'),
960 $tpl->setVariable(
'TXT_SHIB_CUSTOM_LOGIN_INSTRUCTIONS', $this->setting->get(
'shib_login_instructions'));
964 $tpl->setVariable(
'TXT_SHIB_INVALID_SELECTION', $ilShibbolethWAYF->showNotice());
965 $tpl->setVariable(
'SHIB_IDP_LIST', $ilShibbolethWAYF->generateSelection());
966 $tpl->setVariable(
'ILW_TARGET', $target);
967 $tpl->parseCurrentBlock();
974 '[list-shibboleth-login-form]',
979 return $page_editor_html;
987 string $page_editor_html,
988 string $element_html,
990 string $fallback_tplvar
992 if ($page_editor_html ===
'') {
993 $tpl->setVariable($fallback_tplvar, $element_html);
994 return $page_editor_html;
997 if (stripos($page_editor_html, $placeholder) ===
false) {
998 $tpl->setVariable($fallback_tplvar, $element_html);
999 return $page_editor_html;
1002 return str_replace($placeholder, $element_html, $page_editor_html);
1009 $ipe_language = $ipe_settings->getIliasEditorLanguage($this->
lng->getLangKey());
1010 if (!$ipe_language) {
1023 $page_gui->setStyleId(0);
1025 $page_gui->setPresentationTitle(
'');
1026 $page_gui->setTemplateOutput(
false);
1027 $page_gui->setHeader(
'');
1029 return $page_gui->showPage();
1036 $rtpl =
new ilTemplate(
'tpl.login_registration_links.html',
true,
true,
'components/ILIAS/Init');
1040 $rtpl->setCurrentBlock(
'new_registration');
1041 $rtpl->setVariable(
'REGISTER', $this->
lng->txt(
'registration'));
1044 $this->
ctrl->getLinkTargetByClass(ilAccountRegistrationGUI::class)
1046 $rtpl->parseCurrentBlock();
1049 if ($this->setting->get(
'password_assistance')) {
1050 $rtpl->setCurrentBlock(
'password_assistance');
1051 $rtpl->setVariable(
'FORGOT_PASSWORD', $this->
lng->txt(
'forgot_password'));
1052 $rtpl->setVariable(
'FORGOT_USERNAME', $this->
lng->txt(
'forgot_username'));
1054 'CMD_FORGOT_PASSWORD',
1055 $this->
ctrl->getLinkTargetByClass(ilPasswordAssistanceGUI::class)
1058 'CMD_FORGOT_USERNAME',
1059 $this->
ctrl->getLinkTargetByClass(ilPasswordAssistanceGUI::class,
'showUsernameAssistanceForm')
1061 $rtpl->setVariable(
'LANG_ID', $this->
lng->getLangKey());
1062 $rtpl->parseCurrentBlock();
1067 $rtpl->setCurrentBlock(
'homelink');
1070 '?client_id=' .
CLIENT_ID .
'&lang=' . $this->
lng->getLangKey()
1072 $rtpl->setVariable(
'TXT_HOME', $this->
lng->txt(
'home'));
1073 $rtpl->parseCurrentBlock();
1080 '[list-registration-link]',
1081 'REG_PWD_CLIENT_LINKS' 1090 if (0 === $this->
user->getId()) {
1097 $DIC[
'legalDocuments']->loginPageHTML(TermsOfService::ID),
1098 '[list-user-agreement]',
1104 $DIC[
'legalDocuments']->loginPageHTML(DataProtection::ID),
1105 '[list-dpro-agreement]',
1109 return $page_editor_html;
1116 '[list-language-selection]',
1117 '[list-registration-link]',
1118 '[list-user-agreement]',
1119 '[list-dpro-agreement]',
1120 '[list-login-form]',
1121 '[list-cas-login-form]',
1122 '[list-saml-login]',
1123 '[list-shibboleth-login-form]',
1124 '[list-openid-connect-login]' 1133 $field_factory = $this->ui_factory->input()->field();
1135 $keep = $field_factory->group(
1137 self::PROP_USERNAME => $field_factory->text($this->lng->txt(
'login'))->withRequired(
true),
1138 self::PROP_PASSWORD => $field_factory
1139 ->password($this->
lng->txt(
'password'))
1140 ->withRequired(
true)
1141 ->withRevelation(
true)
1142 ->withAdditionalTransformation(
1143 $this->
refinery->custom()->transformation(
1144 static function (
ILIAS\
Data\Password $value):
string {
1145 return $value->toString();
1150 $this->
lng->txt(
'auth_account_migration_keep'),
1151 $this->
lng->txt(
'auth_info_migrate')
1154 $new = $field_factory->group(
1156 $this->
lng->txt(
'auth_account_migration_new'),
1157 $this->
lng->txt(
'auth_info_add')
1161 self::PROP_ACCOUNT_MIGRATION => $field_factory->switchableGroup(
1163 self::PROP_ACCOUNT_MIGRATION_MIGRATE => $keep,
1164 self::PROP_ACCOUNT_MIGRATION_NEW => $new,
1166 $this->
lng->txt(
'auth_account_migration_name')
1167 )->withRequired(
true)->withValue(self::PROP_ACCOUNT_MIGRATION_MIGRATE)
1170 $sections = [$field_factory->section($fields, $this->
lng->txt(
'auth_account_migration'))];
1172 return $this->ui_factory->input()
1175 ->standard($this->
ctrl->getFormAction($this,
'migrateAccount'), $sections)
1176 ->withDedicatedName(
'login_form')
1177 ->withSubmitLabel($this->
lng->txt(
'save'))
1186 $this->
help->setSubScreenId(
'account_migration');
1188 $tpl = self::initStartUpTemplate(
'tpl.login_account_migration.html');
1189 $tpl->setVariable(
'MIG_FORM', $this->ui_renderer->render($form ?? $this->buildAccountMigrationForm()));
1195 self::printToGlobalTemplate($tpl);
1201 $form_valid =
false;
1203 if ($this->
http->request()->getMethod() ===
'POST') {
1204 $form = $form->withRequest($this->
http->request());
1205 $form_data = $form->getData();
1206 $form_valid = $form_data !==
null;
1214 $account_migration = $form_data[self::PROP_ACCOUNT_MIGRATION];
1215 $account_migration_mode = $account_migration[0];
1216 if ($account_migration_mode === self::PROP_ACCOUNT_MIGRATION_MIGRATE) {
1218 } elseif ($account_migration_mode === self::PROP_ACCOUNT_MIGRATION_NEW) {
1223 $this->
lng->txt(
'form_input_not_valid')
1234 $provider = $provider_factory->getProviderByAuthMode(
1239 $this->
logger->debug(
'Using provider: ' . get_class(
$provider) .
' for further processing.');
1245 $frontend = $frontend_factory->getFrontend(
1252 if ($frontend->migrateAccountNew()) {
1256 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_wrong_login'));
1257 $this->
ctrl->redirect($this,
'showAccountMigration');
1265 $username = $migration_request_data[self::PROP_USERNAME];
1266 $password = $migration_request_data[self::PROP_PASSWORD];
1268 $this->
logger->debug(
'Starting account migration for user: ' .
ilSession::get(
'mig_ext_account'));
1271 $credentials->setUsername($username);
1272 $credentials->setPassword($password);
1281 $frontend = $frontend_factory->getFrontend(
1287 $frontend->authenticate();
1289 switch ($status->getStatus()) {
1291 $this->
getLogger()->debug(
'Account migration: authentication successful for ' . $username);
1293 $provider = $provider_factory->getProviderByAuthMode(
1298 $frontend = $frontend_factory->getFrontend(
1305 if ($frontend->migrateAccount(
$GLOBALS[
'DIC'][
'ilAuthSession'])) {
1309 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_wrong_login'),
true);
1310 $this->
ctrl->redirect($this,
'showAccountMigration');
1314 $this->
getLogger()->info(
'Account migration failed for user ' . $username);
1321 if (!$this->authSession->isExpired() &&
1322 $this->authSession->isAuthenticated() &&
1324 $this->
ctrl->redirectToURL(ilUserUtil::getStartingPointAsUrl());
1327 $this->
help->setSubScreenId(
'logout');
1329 $tpl = self::initStartUpTemplate(
'tpl.logout.html');
1332 $this->
refinery->byTrying([$this->refinery->kindlyTo()->string(), $this->
refinery->always(
'')])
1335 $tpl->setCurrentBlock(
'homelink');
1336 $tpl->setVariable(
'CLIENT_ID',
'?client_id=' .
$client_id .
'&lang=' . $this->
lng->getLangKey());
1337 $tpl->setVariable(
'TXT_HOME', $this->
lng->txt(
'home'));
1338 $tpl->parseCurrentBlock();
1342 $tpl->setVariable(
'TXT_PAGEHEADLINE', $this->
lng->txt(
'logout'));
1343 $tpl->setVariable(
'TXT_LOGIN', $this->
lng->txt(
'login_to_ilias'));
1346 '?client_id=' .
$client_id .
'&cmd=force_login&lang=' . $this->
lng->getLangKey()
1349 self::printToGlobalTemplate($tpl);
1352 private function doLogout():
void 1355 $legal_documents = $this->dic[
'legalDocuments'];
1357 $this->eventHandler->raise(
1358 'components/ILIAS/Authentication',
1361 'user_id' => $this->
user->getId()
1365 $user_language = $this->
user->getLanguage();
1367 $used_external_auth_mode =
ilSession::get(
'used_external_auth_mode');
1370 $this->authSession->logout();
1371 $this->eventHandler->raise(
1372 'components/ILIAS/Authentication',
1375 'username' => $this->
user->getLogin(),
1376 'is_explicit_logout' =>
true,
1377 'used_external_auth_mode' => $used_external_auth_mode,
1387 $target = $legal_documents->logoutTarget($target);
1388 $url = $target->asURI();
1391 $this->mainTemplate::MESSAGE_TYPE_INFO,
1392 $this->
lng->txt(
'logout_text') . $legal_documents->logoutText(),
1397 $this->
logger->info(
'Redirecting user to SAML logout script');
1398 $this->
ctrl->redirectToURL(
1399 'saml.php?action=logout&logout_url=' . urlencode((
string)
$url)
1406 $this->
ctrl->setParameter($this,
'lang', $user_language);
1408 $this->
ctrl->redirectToURL((
string)
$url);
1414 $tpl = self::initStartUpTemplate([
'agreement.html',
'components/ILIAS/LegalDocuments'],
true,
false);
1415 $tpl->setVariable(
'CONTENT', $DIC[
'legalDocuments']->agreeContent(self::class, __FUNCTION__));
1416 self::printToGlobalTemplate($tpl);
1421 if ($this->authSession->isValid()) {
1423 $this->httpRequest->getServerParams()[
'SERVER_NAME']
1440 public static function _checkGoto(
string $a_target)
1444 $component_factory = $DIC[
'component.factory'];
1446 $access = $DIC->access();
1448 foreach ($component_factory->getActivePluginsInSlot(
'uihk') as $ui_plugin) {
1450 $gui_class = $ui_plugin->getUIClassInstance();
1451 $resp = $gui_class->checkGotoHook($a_target);
1452 if (isset(
$resp[
'target']) && is_string(
$resp[
'target']) &&
$resp[
'target'] !==
'') {
1453 $a_target =
$resp[
'target'];
1458 if ($a_target ===
'') {
1462 $t_arr = explode(
'_', $a_target);
1465 if ($type ===
'git') {
1469 if ($type ===
'pg' | $type ===
'st') {
1473 $class = $DIC[
'objDefinition']->getClassName($type);
1474 if ($class ===
'') {
1478 $location = $DIC[
'objDefinition']->getLocation($type);
1479 $full_class =
'ilObj' . $class .
'Access';
1481 $ret = call_user_func([$full_class,
'_checkGoto'], $a_target);
1486 !str_contains($a_target,
'_wsp') &&
1487 !$DIC->user()->isAnonymous() &&
1488 !$DIC[
'objDefinition']->isAdministrationObject($type) &&
1489 $DIC[
'objDefinition']->isRBACObject($type)) {
1492 if ($t_arr[0] ===
'pg') {
1493 if (isset($t_arr[2])) {
1499 $ref_id = array_shift($ref_ids);
1515 foreach (
$path as $path_ref_id) {
1516 $redirect_infopage =
false;
1517 $add_member_role =
false;
1523 if (!$access->
doActivationCheck(
'read',
'', $path_ref_id, $DIC->user()->getId(), $pobj_id, $ptype) ||
1524 !$access->
doStatusCheck(
'read',
'', $path_ref_id, $DIC->user()->getId(), $pobj_id, $ptype)) {
1527 } elseif ($ptype ===
'crs') {
1530 if (!$participants->isAssigned()) {
1533 $block_obj[] = $path_ref_id;
1534 $add_member_role =
true;
1536 $redirect_infopage =
true;
1539 } elseif ($ptype ===
'grp') {
1544 if ($group_obj->isRegistrationEnabled()) {
1545 $block_obj[] = $path_ref_id;
1546 $add_member_role =
true;
1548 $redirect_infopage =
true;
1554 if ($add_member_role) {
1556 $DIC->rbac()->system()->resetPACache($DIC->user()->getId(), $path_ref_id);
1557 if (!$DIC->rbac()->system()->checkAccess(
'join', $path_ref_id)) {
1558 $redirect_infopage =
true;
1560 $DIC->rbac()->system()->addTemporaryRole(
1561 $DIC->user()->getId(),
1568 if ($redirect_infopage) {
1569 if ($DIC->rbac()->system()->checkAccess(
'visible', $path_ref_id)) {
1571 'ilias.php?baseClass=ilRepositoryGUI&ref_id=' . $path_ref_id .
'&cmd=infoScreen' 1580 $DIC->rbac()->system()->resetPACache($DIC->user()->getId(),
$ref_id);
1581 if ($block_obj !== [] && $DIC->rbac()->system()->checkAccess(
'read',
$ref_id)) {
1588 'ilias.php?baseClass=ilRepositoryGUI&ref_id=' . array_shift($block_obj)
1596 private function confirmRegistration():
void 1598 $this->
lng->loadLanguageModule(
'registration');
1601 $regitration_hash = trim(
1602 $this->
http->wrapper()->query()->retrieve(
1604 $this->
refinery->byTrying([$this->refinery->kindlyTo()->string(), $this->
refinery->always(
'')])
1607 if ($regitration_hash ===
'') {
1610 $this->
lng->txt(
'reg_confirmation_hash_not_passed'),
1613 $this->
ctrl->redirectToURL(sprintf(
'./login.php?cmd=force_login&lang=%s', $this->
lng->getLangKey()));
1624 if ($oRegSettings->passwordGenerationEnabled()) {
1626 $password = $passwords[0];
1632 $target = $user->
getPref(
'reg_target') ??
'';
1633 if ($target !==
'') {
1636 $_GET[
'target'] = $target;
1644 $accountMail->withEmailConfirmationRegistrationMode()->send($user, $password);
1648 $this->
lng->txt(
'reg_account_confirmation_successful'),
1651 $this->
ctrl->redirectToURL(sprintf(
'./login.php?cmd=force_login&lang=%s', $user->
getLanguage()));
1654 $soap_client->setResponseTimeout(1);
1655 $soap_client->enableWSDL(
true);
1656 $soap_client->init();
1659 'Triggered soap call (background process) for deletion of inactive user objects with expired confirmation hash values (dual opt in) ...' 1663 'deleteExpiredDualOptInUserObjects',
1666 $exception->getCode()
1672 $this->
lng->txt($exception->getMessage()),
1675 $this->
ctrl->redirectToURL(sprintf(
'./login.php?cmd=force_login&lang=%s', $this->
lng->getLangKey()));
1679 $this->
lng->txt($exception->getMessage()),
1682 $this->
ctrl->redirectToURL(sprintf(
'./login.php?cmd=force_login&lang=%s', $this->
lng->getLangKey()));
1692 bool $a_show_back =
false,
1693 bool $a_show_logout =
false 1699 $tpl->addBlockfile(
'CONTENT',
'content',
'tpl.startup_screen.html',
'components/ILIAS/Init');
1701 $view_title = $DIC->language()->txt(
'login_to_ilias');
1704 $param =
'client_id=' .
CLIENT_ID .
'&lang=' . $DIC->language()->getLangKey();
1706 $tpl->setCurrentBlock(
'link_item_bl');
1707 $tpl->setVariable(
'LINK_TXT', $view_title);
1708 $tpl->setVariable(
'LINK_URL',
'login.php?cmd=force_login&' .
$param);
1709 $tpl->parseCurrentBlock();
1713 $tpl->setVariable(
'LINK_URL',
'index.php?' .
$param);
1714 $tpl->setVariable(
'LINK_TXT', $DIC->language()->txt(
'home'));
1715 $tpl->parseCurrentBlock();
1717 } elseif ($a_show_logout) {
1718 $view_title = $DIC->language()->txt(
'logout');
1719 $tpl->setCurrentBlock(
'link_item_bl');
1720 $tpl->setVariable(
'LINK_TXT', $view_title);
1721 $tpl->setVariable(
'LINK_URL', self::logoutUrl());
1722 $tpl->parseCurrentBlock();
1725 if (is_array($a_tmpl)) {
1726 $template_file = $a_tmpl[0];
1727 $template_dir = $a_tmpl[1];
1729 $template_file = $a_tmpl;
1730 $template_dir =
'components/ILIAS/Init';
1733 $tpl->addBlockFile(
'STARTUP_CONTENT',
'startup_content', $template_file, $template_dir);
1735 PageContentProvider::setViewTitle($view_title);
1736 $short_title = trim($DIC->settings()->get(
'short_inst_name') ??
'');
1737 if ($short_title ===
'') {
1738 $short_title =
'ILIAS';
1740 PageContentProvider::setShortTitle($short_title);
1742 $header_title = ilObjSystemFolder::_getHeaderTitle();
1743 PageContentProvider::setTitle($header_title);
1751 $tpl =
new ilTemplate(
'tpl.login_form_saml.html',
true,
true,
'components/ILIAS/Saml');
1755 if ($target !==
'') {
1759 $tpl->setVariable(
'SAML_SCRIPT_URL',
'./saml.php' . $return);
1760 $tpl->setVariable(
'TXT_LOGIN', $this->
lng->txt(
'saml_log_in'));
1761 $tpl->setVariable(
'LOGIN_TO_ILIAS_VIA_SAML', $this->
lng->txt(
'login_to_ilias_via_saml'));
1762 $tpl->setVariable(
'TXT_SAML_LOGIN_TXT', $this->
lng->txt(
'saml_login_form_txt'));
1763 $tpl->setVariable(
'TXT_SAML_LOGIN_INFO_TXT', $this->
lng->txt(
'saml_login_form_info_txt'));
1769 '[list-saml-login]',
1774 return $page_editor_html;
1780 if ($oidc_settings->getActive()) {
1781 $tpl =
new ilTemplate(
'tpl.login_element.html',
true,
true,
'components/ILIAS/OpenIdConnect');
1783 $this->
lng->loadLanguageModule(
'auth');
1784 $tpl->setVariable(
'TXT_OIDCONNECT_HEADER', $this->
lng->txt(
'auth_oidc_login_element_info'));
1787 $target_str = empty($target) ?
'' : (
'?target=' . $target);
1788 switch ($oidc_settings->getLoginElementType()) {
1790 $tpl->setVariable(
'SCRIPT_OIDCONNECT_T',
'./openidconnect.php' . $target_str);
1791 $tpl->setVariable(
'TXT_OIDC', $oidc_settings->getLoginElemenText());
1795 $tpl->setVariable(
'SCRIPT_OIDCONNECT_I',
'./openidconnect.php' . $target_str);
1796 $tpl->setVariable(
'IMG_SOURCE', $oidc_settings->getImageFilePath());
1804 '[list-openid-connect-login]',
1805 'OPEN_ID_CONNECT_LOGIN_FORM' 1809 return $page_editor_html;
1814 $this->
getLogger()->debug(
'Trying openid connect authentication');
1817 $credentials->initFromRequest();
1826 $frontend = $frontend_factory->getFrontend(
1832 $frontend->authenticate();
1834 switch ($status->getStatus()) {
1836 $this->
logger->debug(
'Authentication successful; Redirecting to starting page.');
1837 if ($credentials->getRedirectionTarget()) {
1844 $this->
mainTemplate->setOnScreenMessage(
'failure', $status->getTranslatedReason(),
true);
1845 $this->
ctrl->redirect($this,
'showLoginPage');
1848 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_wrong_login'));
1854 $this->
getLogger()->debug(
'Trying saml authentication');
1856 $params = $request->getQueryParams();
1859 $auth = $factory->auth();
1861 if (isset(
$params[
'action']) &&
$params[
'action'] ===
'logout') {
1862 $logout_url =
$params[
'logout_url'] ??
'';
1863 $this->
logger->info(sprintf(
'Requested SAML logout: %s', $logout_url));
1864 $auth->logout($logout_url);
1871 if (isset(
$params[
'returnTo'])) {
1872 $auth->storeParam(
'target',
$params[
'returnTo']);
1875 $this->
logger->debug(
'Started SAML authentication request');
1876 if (!$auth->isAuthenticated()) {
1878 if (!isset($request->getQueryParams()[
'idpentityid'], $request->getQueryParams()[
'saml_idp_id'])) {
1880 if (count($activeIdps) === 1) {
1881 $idp = current($activeIdps);
1885 'Found exactly one active IDP with id %s: %s',
1891 $this->
ctrl->setParameter($this,
'idpentityid', $idp->getEntityId());
1892 $this->
ctrl->setParameter($this,
'saml_idp_id', $idp->getIdpId());
1893 $this->
ctrl->setTargetScript(
'saml.php');
1894 $this->
ctrl->redirect($this,
'doSamlAuthentication');
1895 } elseif ($activeIdps === []) {
1896 $this->
logger->debug(
'Did not find any active IDP, skipp authentication process');
1897 $this->
ctrl->redirect($this,
'showLoginPage');
1899 $this->
logger->debug(
'Found multiple active IPDs, presenting IDP selection...');
1905 $auth->storeParam(
'idpId', (
int) $request->getQueryParams()[
'saml_idp_id']);
1906 $this->
logger->debug(sprintf(
'Stored relevant IDP id in session: %s', $auth->getParam(
'idpId')));
1909 $auth = $factory->auth();
1911 $this->
logger->debug(
'Checking SAML authentication status...');
1912 $auth->protectResource();
1914 'SAML authentication successful, continuing with ILIAS internal authentication process...' 1917 $idpId = (
int) $auth->getParam(
'idpId');
1921 'Internal SAML IDP id fetched from session: %s',
1928 'No valid internal IDP id found (most probably due to IDP initiated SSO), trying fallback determination...' 1930 $authData = $auth->getAuthDataArray();
1931 if (isset($authData[
'saml:sp:IdP'])) {
1935 'Searching active ILIAS IDP by entity id "%s" results in: %s',
1936 $authData[
'saml:sp:IdP'],
1942 'Could not execute fallback determination, no IDP entity ID found SAML authentication session data' 1947 $target = $auth->popParam(
'target');
1949 $this->
logger->debug(sprintf(
'Retrieved "target" parameter: %s', print_r($target,
true)));
1952 $credentials->initFromRequest();
1955 $provider = $provider_factory->getProviderByAuthMode(
1963 $credentials->setReturnTo($target);
1965 $target = $credentials->getReturnTo();
1972 $frontend = $frontend_factory->getFrontend(
1978 $frontend->authenticate();
1980 switch ($status->getStatus()) {
1982 $this->
logger->debug(
'Authentication successful; Redirecting to starting page.');
1987 $this->
ctrl->redirect($this,
'showAccountMigration');
1991 $this->
mainTemplate->setOnScreenMessage(
'failure', $status->getTranslatedReason(),
true);
1992 $this->
ctrl->redirect($this,
'showLoginPage');
1995 $this->
mainTemplate->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_wrong_login'));
2004 $this->
help->setSubScreenId(
'saml_idp_selection');
2006 self::initStartUpTemplate([
'tpl.saml_idp_selection.html',
'components/ILIAS/Saml']);
2008 $this->
ctrl->setTargetScript(
'saml.php');
2010 foreach ($idps as $idp) {
2011 $this->
ctrl->setParameter($this,
'saml_idp_id', $idp->getIdpId());
2012 $this->
ctrl->setParameter($this,
'idpentityid', urlencode($idp->getEntityId()));
2014 $items[] = $this->ui_factory->link()->standard(
2015 $idp->getEntityId(),
2016 $this->
ctrl->getLinkTarget($this,
'doSamlAuthentication')
2021 $this->ui_factory->panel()->standard(
2022 $this->
lng->txt(
'auth_saml_idp_selection_table_title'),
2024 $this->ui_factory->messageBox()->info($this->
lng->txt(
'auth_saml_idp_selection_table_desc')),
2025 $this->ui_factory->listing()->unordered(
2027 fn($item) => $this->ui_renderer->render($item),
2044 public static function logoutUrl(array $parameters = []): string
2048 $defaults = [
'lang' => $DIC->user()->getCurrentLanguage()];
2049 $parameters =
'&' . http_build_query(array_merge($defaults, $parameters));
2051 $DIC->ctrl()->setTargetScript(
'logout.php');
2052 $url = $DIC->ctrl()->getLinkTargetByClass([self::class],
'doLogout') . $parameters;
2053 $DIC->ctrl()->setTargetScript(
'ilias.php');
const AUTH_OPENID_CONNECT
static get(string $a_var)
getSafePostCommands()
This method must return a list of safe POST commands.
setTimeLimitUnlimited(bool $a_unlimited)
const PROP_ACCOUNT_MIGRATION_MIGRATE
static _isParticipant(int $a_ref_id, int $a_usr_id)
Static function to check if a user is a participant of the container object.
static initStartUpTemplate( $a_tmpl, bool $a_show_back=false, bool $a_show_logout=false)
This method enriches the global template with some user interface elements (language selection...
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)
static stripSlashesRecursive($a_data, bool $a_strip_html=true, string $a_allow="")
showLoginInformation(string $page_editor_html, ilGlobalTemplateInterface $tpl)
static getCodeValidUntil(string $code)
const CONTEXT_STANDARD_FORM
static setForcedCommand(string $cmd)
static getLogger(string $a_component_id)
Get component logger.
showAccountMigration(?ILIAS\UI\Component\Input\Container\Form\Form $form=null, string $message='')
static _hasMultipleAuthenticationMethods()
static _verifyRegistrationHash(string $a_hash)
Verifies a registration hash.
special template class to simplify handling of ITX/PEAR
Class ilAccountRegistrationGUI.
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
Interface Observer Contains several chained tasks and infos about them.
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
Factory for auth frontend classes.
checkForcedCommand(string $cmd)
static _lookupId($a_user_str)
static goToPublicSection()
go to public section
const MESSAGE_TYPE_QUESTION
const LOGIN_ELEMENT_TYPE_TXT
const MESSAGE_TYPE_SUCCESS
static getDefaultMemberRole(int $a_ref_id)
setTimeLimitUntil(?int $a_until)
static printToGlobalTemplate($tpl)
doShibbolethAuthentication()
purgePlaceholders(string $page_editor_html)
setPasswd(string $a_str, string $a_type=ilObjUser::PASSWD_PLAIN)
Auth credentials for lti oauth based authentication.
static string $forced_cmd
static _lookupObjId(int $ref_id)
const PROP_ACCOUNT_MIGRATION
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getAuthPageEditorHtml(AuthPageEditorContext $ipe_context)
setActive(bool $a_active, int $a_owner=0)
set user active state and updates system fields appropriately
showOpenIdConnectLoginForm(string $page_editor_html)
showShibbolethLoginForm(string $page_editor_html)
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.
Class ilAccountRegistrationMail.
static logoutUrl(array $parameters=[])
Return the logout URL with a valid CSRF token.
showLoginPage(?ILIAS\UI\Component\Input\Container\Form\Form $form=null)
Description of class class.
showLoginForm(string $page_editor_html, ?ILIAS\UI\Component\Input\Container\Form\Form $form=null)
static setCookie(string $a_cookie_name, string $a_cookie_value='', bool $a_also_set_super_global=true, bool $a_set_cookie_invalid=false)
static isUnusedCode(string $code)
retrieveMessagesFromSession()
getPref(string $a_keyword)
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
buildAccountMigrationForm()
static lookupId(string $a_lang_key)
Lookup obj_id of language.
showLoginPageOrStartupPage()
showCodeForm(?string $username=null, ?ILIAS\UI\Component\Input\Container\Form\Form $form=null)
static getSyntaxStylePath()
const PROP_ACCOUNT_MIGRATION_NEW
doStandardAuthentication()
static getContentStylePath(int $a_style_id, bool $add_random=true, bool $add_token=true)
get content style path static (to avoid full reading)
substituteLoginPageElements( $tpl, string $page_editor_html, string $element_html, string $placeholder, string $fallback_tplvar)
static _isAnonymous(int $usr_id)
static redirect(string $a_script)
static generatePasswords(int $a_number)
Generate a number of passwords.
setLastPasswordChangeTS(int $a_last_password_change_ts)
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.
doMigration(array $migration_request_data)
saniziteArrayElementsTrafo()
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.
static useCode(string $code)
showRegistrationLinks(string $page_editor_html)
ilAuthSession $authSession
static redirectToStartingPage(string $target='')
static getInstance()
Get status instance.
static setClosingContext(int $a_context)
set closing context (for statistics)
showLegalDocumentsLinks(string $page_editor_html)
ILIAS UI Factory $ui_factory
ilAppEventHandler $eventHandler
showSamlIdpSelection(ilSamlAuth $auth, array $idps)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupContObjID(int $a_id)
get learning module id for lm object
static geIdpIdByEntityId(string $entityId)
RefineryFactory $refinery
static _getMultipleAuthModeOptions(ilLanguage $lng)
language()
description: > Example for rendring a language glyph.
const MESSAGE_TYPE_FAILURE
Class for user related exception handling in ILIAS.
ServerRequestInterface $httpRequest
static getInstance(AuthPageEditorContext $context)
static getActiveIdpList()
static applyRoleAssignments(ilObjUser $user, string $code)
const LOGIN_ELEMENT_TYPE_IMG
static _lookupType(int $id, bool $reference=false)
const MIG_TRIGGER_AUTHMODE
doOpenIdConnectAuthentication()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const STATUS_ACCOUNT_MIGRATION_REQUIRED
static getAuthSettingsRefId()
getUnsafeGetCommands()
This method must return a list of unsafe GET commands.
static set(string $a_var, $a_val)
Set a value.
__construct(?ilObjUser $user=null, ?ilGlobalTemplateInterface $mainTemplate=null, ?ServerRequestInterface $httpRequest=null)
ILIAS UI Renderer $ui_renderer
static applyAccessLimits(ilObjUser $user, string $code)
jumpToPasswordAssistance()
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)
buildCodeForm(?string $username=null)
static _lookupLogin(int $a_user_id)