24 include_once
'Auth/Container/LDAP.php';
58 include_once
'Services/LDAP/classes/class.ilLDAPServer.php';
62 parent::__construct($this->server->toPearAuthArray());
67 self::$force_creation = $a_status;
79 $this->optional_check =
true;
102 if(!$this->server->doConnectionCheck())
108 $res = parent::fetchData($username,$password);
112 $this->
log(
'Container '.$key.
': '.
$res->getMessage(), AUTH_LOG_ERR);
115 elseif (
$res ==
true)
123 return parent::fetchData($username,$password);
139 $this->
log->write(__METHOD__.
': checking group restrictions...');
142 $groups = $this->server->getGroupNames();
146 $this->
log->write(__METHOD__.
': No group restrictions found.');
151 $this->
log->write(__METHOD__.
': Group membership is optional.');
155 foreach($groups as $group)
157 $this->options[
'group'] = $group;
159 if(parent::checkGroup($a_name))
175 $this->options[
'userfilter'] = $this->server->getGroupUserFilter();
187 $user_data = array_change_key_case($a_auth->getAuthData(),CASE_LOWER);
191 include_once
'./Services/LDAP/classes/class.ilLDAPUserSynchronisation.php';
194 $sync->setUserData($user_data);
195 $sync->forceCreation(self::$force_creation);
198 $internal_account = $sync->sync();
200 catch(UnexpectedValueException $e) {
201 $GLOBALS[
'ilLog']->write(__METHOD__.
': Login failed with message: '. $e->getMessage());
208 $GLOBALS[
'ilLog']->write(__METHOD__.
': Login failed with message: '. $e->getMessage());
214 $GLOBALS[
'ilLog']->write(__METHOD__.
': Starting account migration.');
216 ilUtil::redirect(
'ilias.php?baseClass=ilStartUpGUI&cmdClass=ilstartupgui&cmd=showAccountMigration');
219 $a_auth->setAuth($internal_account);
230 include_once(
'Services/LDAP/classes/class.ilLDAPAttributeToUser.php');
251 $a_username = isset($a_user_data[strtolower($this->server->getUserAttribute())]) ?
252 $a_user_data[strtolower($this->server->getUserAttribute())] :
256 if(!is_array($a_username))
260 foreach($a_username as $name)
269 return $a_username[0];
281 #$GLOBALS['ilLog']->write(__METHOD__.': Required 1'); 285 include_once
'./Services/LDAP/classes/class.ilLDAPAttributeMapping.php';
288 #$GLOBALS['ilLog']->write(__METHOD__.': Required 2'); 291 include_once
'./Services/LDAP/classes/class.ilLDAPRoleAssignmentRule.php';
294 #$GLOBALS['ilLog']->write(__METHOD__.': Required 3');
static _getFirstActiveServer()
Get first active server.
Description of ilLDAPSyncronisationException.
static hasRulesForUpdate()
Check if there any rule for updates.
checkGroup($a_name)
check group overwritten base class
loginObserver($a_username, $a_auth)
Called from fetchData after successful login.
failedLoginObserver($a_username, $a_auth)
Called from fetchData after failed login.
static hasRulesForUpdate($a_server_id)
Check if there is ldap attribute -> user data mapping which which is updated on login.
updateUserFilter()
Update user filter.
Overwritten Pear class AuthContainerLDAP This class is overwritten to support nested groups...
const AUTH_LOG_DEBUG
Auth Log level - DEBUG.
Synchronization of user accounts used in auth container ldap, radius , cas,...
initLDAPAttributeToUser()
Init LDAP attribute mapping.
setExternalAccount($a_ext)
Set external account (unique for each auth mode)
Description of ilLDAPAccountMigrationRequiredException.
updateRequired($a_username)
Check if an update is required.
enableOptionalGroupCheck()
enable optional group check
extractUserName($a_user_data)
const AUTH_LDAP_NO_ILIAS_USER
static _checkExternalAuthAccount($a_auth, $a_account)
check whether external account and authentication method matches with a user
fetchData($username, $password)
Overwritten from base class.
__construct()
Constructor.
enabledOptionalGroupCheck()
Check if optional group check is enabled.
log($message, $level=AUTH_LOG_DEBUG)
Log a message to the Auth log.
const AUTH_WRONG_LOGIN
Returned if container is unable to authenticate user/password pair.
Update/create ILIAS user account by given LDAP attributes according to user attribute mapping setting...
supportsCaptchaVerification()
static redirect($a_script)
http redirect to other script
isError($data, $code=null)
Tell whether a value is a PEAR error.