ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
ilAuthContainerMDB2 Class Reference

Authentication against ILIAS database. More...

+ Inheritance diagram for ilAuthContainerMDB2:
+ Collaboration diagram for ilAuthContainerMDB2:

Public Member Functions

 __construct ()
 Constructor. More...
 
 loginObserver ($a_username, $a_auth)
 Called from fetchData after successful login. More...
 
 supportsCaptchaVerification ()
 
- Public Member Functions inherited from Auth_Container_MDB2
 Auth_Container_MDB2 ($dsn)
 Constructor of the container class. More...
 
 _connect ($dsn)
 Connect to database by using the given DSN string. More...
 
 _prepare ()
 Prepare database connection. More...
 
 query ($query)
 Prepare query to the database. More...
 
 _setDefaults ()
 Set some default options. More...
 
 _parseOptions ($array)
 Parse options passed to the container class. More...
 
 _quoteDBFields ()
 Quote the db_fields option to avoid the possibility of SQL injection. More...
 
 fetchData ($username, $password, $isChallengeResponse=false)
 Get user information from database. More...
 
 listUsers ()
 Returns a list of users from the container. More...
 
 addUser ($username, $password, $additional="")
 Add user to the storage container. More...
 
 removeUser ($username)
 Remove user from the storage container. More...
 
 changePassword ($username, $password)
 Change password for user in the storage container. More...
 
 supportsChallengeResponse ()
 Determine if this container supports password authentication with challenge response. More...
 
 getCryptType ()
 Returns the selected crypt type for this container. More...
 
- Public Member Functions inherited from Auth_Container
 Auth_Container ()
 Constructor. More...
 
 fetchData ($username, $password, $isChallengeResponse=false)
 Fetch data from storage container. More...
 
 verifyPassword ($password1, $password2, $cryptType="md5")
 Crypt and verfiy the entered password. More...
 
 supportsChallengeResponse ()
 Returns true if the container supports Challenge Response password authentication. More...
 
 getCryptType ()
 Returns the crypt current crypt type of the container. More...
 
 listUsers ()
 List all users that are available from the storage container. More...
 
 getUser ($username)
 Returns a user assoc array. More...
 
 addUser ($username, $password, $additional=null)
 Add a new user to the storage container. More...
 
 removeUser ($username)
 Remove user from the storage container. More...
 
 changePassword ($username, $password)
 Change password for user in the storage container. More...
 
 log ($message, $level=AUTH_LOG_DEBUG)
 Log a message to the Auth log. More...
 
- Public Member Functions inherited from ilAuthContainerBase
 loginObserver ($a_username, $a_auth)
 Called after successful login. More...
 
 failedLoginObserver ($a_username, $a_auth)
 Called after failed login. More...
 
 checkAuthObserver ($a_username, $a_auth)
 Called after check auth requests. More...
 
 logoutObserver ($a_username, $a_auth)
 Called after logout. More...
 
 supportsCaptchaVerification ()
 Returns whether or not the auth container supports the verification of captchas This should be true for those auth methods, which are available in the default login form. More...
 

Static Public Member Functions

static toUsernameWithoutDomain ($username)
 Static function removes Microsoft domain name from username. More...
 

Additional Inherited Members

- Data Fields inherited from Auth_Container_MDB2
 $options = array()
 
 $db = null
 
 $dsn = ''
 
 $activeUser = ''
 
- Data Fields inherited from Auth_Container
 $activeUser = ""
 User that is currently selected from the storage container. More...
 
 $_auth_obj = null
 The Auth object this container is attached to. More...
 

Detailed Description

Authentication against ILIAS database.

Author
Stefan Meyer meyer.nosp@m.@lei.nosp@m.fos.c.nosp@m.om
Version
$Id$

Definition at line 35 of file class.ilAuthContainerMDB2.php.

Constructor & Destructor Documentation

◆ __construct()

ilAuthContainerMDB2::__construct ( )

Constructor.

Definition at line 41 of file class.ilAuthContainerMDB2.php.

42 {
43 global $ilClientIniFile, $ilDB, $ilIliasIniFile;
44
45 $options['dsn'] = $ilDB->getDSN();
46 $options['table'] = $ilClientIniFile->readVariable('auth', 'table');
47 $options['usernamecol'] = $ilClientIniFile->readVariable('auth', 'usercol');
48 $options['passwordcol'] = $ilClientIniFile->readVariable('auth', 'passcol');
49
50 // studip mode: check against submitted md5 password for ilSoapUserAdministration::login()
51 // todo: check whether we should put this to another place
52 if (isset($_POST['password']) && preg_match('/^[a-f0-9]{32,32}$/i', $_POST['password']))
53 {
54 if ($ilIliasIniFile->readVariable('server', 'studip'))
55 {
56 $options['cryptType'] = 'none';
57 }
58 }
59
60 parent::__construct($options);
61 }
$_POST['username']
Definition: cron.php:12
global $ilDB
global $ilIliasIniFile

References $_POST, $ilDB, $ilIliasIniFile, and Auth_Container_MDB2\$options.

Member Function Documentation

◆ loginObserver()

ilAuthContainerMDB2::loginObserver (   $a_username,
  $a_auth 
)

Called from fetchData after successful login.

Parameters
stringusername

Reimplemented from ilAuthContainerBase.

Definition at line 90 of file class.ilAuthContainerMDB2.php.

91 {
92 $usr_id = ilObjUser::_lookupId($a_username);
93 $auth_mode = ilObjUser::_lookupAuthMode($usr_id);
94 $auth_id = ilAuthUtils::_getAuthMode($auth_mode);
95
96 $GLOBALS['ilLog']->write(__METHOD__.': auth id = ' . $auth_id);
97
98 switch($auth_id)
99 {
100 case AUTH_APACHE:
101 case AUTH_LOCAL:
102 return true;
103
104 default:
106 {
107 return true;
108 }
109 }
110
111
112 $a_auth->status = AUTH_WRONG_LOGIN;
113 $a_auth->logout();
114
115 return false;
116 }
const AUTH_WRONG_LOGIN
Returned if container is unable to authenticate user/password pair.
Definition: Auth.php:38
const AUTH_APACHE
const AUTH_LOCAL
_getAuthMode($a_auth_mode, $a_db_handler='')
static isPasswordModificationEnabled($a_authmode)
Check if password modification is enabled.
static _lookupId($a_user_str)
lookup id by login
static _lookupAuthMode($a_usr_id)
lookup auth mode
$GLOBALS['ct_recipient']

References $GLOBALS, ilAuthUtils\_getAuthMode(), ilObjUser\_lookupAuthMode(), ilObjUser\_lookupId(), AUTH_APACHE, AUTH_LOCAL, AUTH_WRONG_LOGIN, and ilAuthUtils\isPasswordModificationEnabled().

+ Here is the call graph for this function:

◆ supportsCaptchaVerification()

ilAuthContainerMDB2::supportsCaptchaVerification ( )
Returns
bool

Reimplemented from ilAuthContainerBase.

Definition at line 121 of file class.ilAuthContainerMDB2.php.

122 {
123 return true;
124 }

◆ toUsernameWithoutDomain()

static ilAuthContainerMDB2::toUsernameWithoutDomain (   $username)
static

Static function removes Microsoft domain name from username.

Definition at line 67 of file class.ilAuthContainerMDB2.php.

68 {
69 // Remove all characters including the last slash or the last backslash
70 // in the username
71 $pos = strrpos($username, '/');
72 $pos2 = strrpos($username, '\\');
73 if ($pos === false || $pos < $pos2)
74 {
75 $pos = $pos2;
76 }
77 if ($pos !== false)
78 {
79 $username = substr($username, $pos + 1);
80 }
81 return $username;
82 }

Referenced by ilObjUser\getLoginFromAuth().

+ Here is the caller graph for this function:

The documentation for this class was generated from the following file: