18 declare(strict_types=1);
39 protected ?
int $mid = null;
56 $this->clientIniFile = $DIC->clientIni();
57 $this->rbacAdmin = $DIC->rbac()->admin();
58 $this->setting = $DIC->settings();
59 $this->
lng = $DIC->language();
60 $this->
lng->loadLanguageModule(
'ecs');
61 $this->
http = $DIC->http();
63 $this->authSession = $DIC[
'ilAuthSession'];
64 $this->
ctrl = $DIC->ctrl();
85 public function setMID(
int $a_mid): void
120 $this->
getLogger()->debug(
'Starting ECS authentication');
122 $this->
getLogger()->warning(
'No active ecs server found. Aborting');
134 $this->
getLogger()->warning(
'Could not validate ecs hash for any active server.');
145 $is_external_account =
false;
146 if ($this->
http->wrapper()->query()->has(
'ecs_external_account')) {
147 $is_external_account = $this->
http->wrapper()->query()->retrieve(
148 'ecs_external_account',
152 $redirection_target =
'';
153 if ($this->
http->wrapper()->query()->has(
'target')) {
154 $redirection_target = $this->
http->wrapper()->query()->retrieve(
156 $this->
refinery->kindlyTo()->string()
164 $this->
getLogger()->debug(
'Continuing current user session');
170 $is_external_account &&
173 $this->
getLogger()->info(
'ILIAS login page authentication required.');
176 $this->
ctrl->redirectToURL(
'login.php?target=' . $redirection_target);
180 $is_external_account &&
183 $this->
getLogger()->info(
'Redirect to shibboleth authentication');
185 $this->
ctrl->redirectToURL(
'shib_login.php?target=' . $redirection_target);
187 if ($part_settings->areIncomingLocalAccountsSupported()) {
190 $this->
getLogger()->info(
'ECS authentication successful.');
201 $session_user_id = $this->authSession->getUserId();
203 $this->
getLogger()->debug(
'No valid session found');
208 $user =
new ilECSUser($this->
http->request()->getQueryParams());
209 $this->
getLogger()->debug(
'ECS user name: ' . $user->getLogin());
210 $this->
getLogger()->debug(
'Session external account: ' . $session_ext_account);
211 if (!$session_ext_account || strcmp($user->getLogin(), $session_ext_account) !== 0) {
212 $this->
getLogger()->debug(
'No matching session found. Terminating current user session.');
217 $this->rbacAdmin->assignUser($this->
getCurrentServer()->getGlobalRole(), $this->authSession->getUserId());
227 $user =
new ilECSUser($this->
http->request()->getQueryParams());
232 $username = $this->
updateUser($user, $usr_id);
241 $remoteUserRepository->createIfNotExisting(
248 $this->
getLogger()->info(
'Current user is: ' . $username);
255 $user =
new ilECSUser($this->
http->request()->getQueryParams());
259 $remoteUserRepository->createIfRemoteUserNotExisting(
274 if ($this->
http->wrapper()->query()->has(
'ecs_hash')) {
275 $hash = $this->
http->wrapper()->query()->retrieve(
277 $this->
refinery->kindlyTo()->string()
280 if ($this->
http->wrapper()->query()->has(
'ecs_hash_url')) {
281 $hashurl = urldecode(
282 $this->
http->wrapper()->query()->retrieve(
284 $this->
refinery->kindlyTo()->string()
287 $hash = basename(parse_url($hashurl, PHP_URL_PATH));
290 $this->
getLogger()->info(
'Using ecs hash: ' . $hash);
294 $res = $connector->getAuth($hash);
295 $auths =
$res->getResult();
302 foreach ($reader->getParticipantsByPid($auths->pid) as $participant) {
303 if ($participant->getOrganisation() instanceof \ilECSOrganisation) {
304 $this->abreviation = $participant->getOrganisation()->getAbbreviation();
308 if (!$this->abreviation) {
309 $this->abreviation = $auths->abbr;
312 $this->
getLogger()->warning(
'Authentication failed with message: ' . $e->getMessage());
316 $this->abreviation = $auths->abbr;
319 $this->
getLogger()->debug(
'Got abbreviation: ' . $this->abreviation);
321 $this->
getLogger()->warning(
'Authentication failed with message: ' . $e->getMessage());
328 $details = $connector->getAuth($hash,
true);
331 $this->
getLogger()->debug(
'Token create for mid: ' .
$details->getFirstSender());
335 $this->
getLogger()->warning(
'Receiving mid failed with message: ' . $e->getMessage());
360 $newUser[
"login"] = $local_user;
363 $newUser[
'email'] = $user->
getEmail();
367 $newUser[
"passwd"] =
"";
370 $newUser[
"auth_mode"] =
"ecs";
371 $newUser[
"profile_incomplete"] = 0;
374 $userObj->assignData($newUser);
375 $userObj->setTitle($userObj->getFullname());
376 $userObj->setDescription($userObj->getEmail());
379 $userObj->setLanguage($this->setting->get(
"language"));
382 $userObj->setTimeLimitOwner(7);
383 $userObj->setTimeLimitUnlimited(
false);
384 $userObj->setTimeLimitFrom(time() - 5);
385 $userObj->setTimeLimitUntil(time() + (
int) $this->clientIniFile->readVariable(
"session",
"expire"));
388 $userObj->setOwner(6);
390 $userObj->setActive(
true);
391 $userObj->saveAsNew();
392 $userObj->updateOwner();
393 $userObj->writePrefs();
396 $this->rbacAdmin->assignUser($this->
getCurrentServer()->getGlobalRole(), $userObj->getId());
403 #$this->sendNotification($userObj); 406 return $userObj->getLogin();
414 $user_obj =
new ilObjUser($a_local_user_id);
417 $user_obj->setEmail($user->
getEmail());
419 $user_obj->setActive(
true);
421 $until = $user_obj->getTimeLimitUntil();
423 if ($until < (time() + (
int) $this->clientIniFile->readVariable(
'session',
'expire'))) {
424 $user_obj->setTimeLimitFrom(time() - 60);
425 $user_obj->setTimeLimitUntil(time() + (
int) $this->clientIniFile->readVariable(
"session",
"expire"));
428 $user_obj->refreshLogin();
431 $this->rbacAdmin->assignUser(
439 $this->
getLogger()->debug(
'Finished update of remote user with usr_id: ' . $user->
getImportId());
440 return $user_obj->getLogin();
451 $options->updateOptions();
initRemoteUserWithRemoteId()
static _lookupObjIdByImportId(string $import_id)
Get (latest) object id for an import id.
handleLogin()
Called from base class after successful login.
Class ilMailOptions this class handles user mails.
static _generateLogin(string $a_login)
generate free login by starting with a default string and adding postfix numbers
Interface of auth credentials.
getFirstname()
get firstname
static _writeImportId(int $obj_id, string $import_id)
write import id to db (static)
getServerSettings()
Get server settings.
handleLoginByAuthMode(ilAuthStatus $status)
Redirects to shibboleth login; to standard login page for LDAP based authentication or authenticates/...
updateUser(ilECSUser $user, int $a_local_user_id)
update existing user
const INCOMING_AUTH_TYPE_LOGIN_PAGE
resetMailOptions(int $a_usr_id)
Reset mail options to "local only".
getCurrentServer()
Get current server.
static getInstance()
Get singleton instance.
const SYSTEM_USER_ID
This file contains constants for PHPStan analyis, see: https://phpstan.org/config-reference#constants...
static _lookupId($a_user_str)
static _lookupExternalAccount(int $a_user_id)
doAuthentication(\ilAuthStatus $status)
Try ecs authentication.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilECSSetting $currentServer
createUser(ilECSUser $user)
create new user
getAbreviation()
get abbreviation
ilAuthSession $authSession
handleAuthenticationFail(ilAuthStatus $status, string $a_reason)
Handle failed authentication.
Base class for authentication providers (ldap, apache, ...)
ilECSServerSettings $servers
Auth prvider for ecs auth.
static http()
Fetches the global http state from ILIAS.
__construct(\ilAuthCredentials $credentials)
Constructor.
Collection of ECS settings.
setStatus(int $a_status)
Set auth status.
setCurrentServer(ilECSSetting $server)
Set current server.
Storage of ECS imported objects.
ilAuthCredentials $credentials
const INCOMING_AUTH_TYPE_SHIBBOLETH
initECSServices()
Init ECS Services.
const STATUS_AUTHENTICATED
__construct(Container $dic, ilPlugin $plugin)
setAuthenticatedUserId(int $a_id)
Class ilRbacAdmin Core functions for role based access control.
getInstitution()
get institution
validateHash()
Validate ECS hash.
Auth status implementation.
static set(string $a_var, $a_val)
Set a value.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Stores relevant user data.