ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
|
Public Member Functions | |
Auth_Container_SOAP5 ($options) | |
Constructor of the container class. More... | |
fetchData ($username, $password) | |
Fetch data from SOAP service. More... | |
_validateOptions () | |
Validate that the options passed to the container class are enough for us to proceed. More... | |
_setDefaults () | |
Set some default options. More... | |
![]() | |
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... | |
![]() | |
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... | |
Data Fields | |
$_requiredOptions | |
$_options = array() | |
$_features = array() | |
$soapResponse = array() | |
![]() | |
$activeUser = "" | |
User that is currently selected from the storage container. More... | |
$_auth_obj = null | |
The Auth object this container is attached to. More... | |
Auth_Container_SOAP5::_setDefaults | ( | ) |
Set some default options.
private
Definition at line 254 of file SOAP5.php.
Referenced by Auth_Container_SOAP5().
Auth_Container_SOAP5::_validateOptions | ( | ) |
Validate that the options passed to the container class are enough for us to proceed.
private
array |
Definition at line 229 of file SOAP5.php.
References PEAR\raiseError().
Referenced by fetchData().
Auth_Container_SOAP5::Auth_Container_SOAP5 | ( | $options | ) |
Constructor of the container class.
$options,associative | array with endpoint, namespace, method, usernamefield, passwordfield and optional features |
Definition at line 156 of file SOAP5.php.
References $options, and _setDefaults().
Auth_Container_SOAP5::fetchData | ( | $username, | |
$password | |||
) |
Fetch data from SOAP service.
Requests the SOAP service for the given username/password combination.
string | Username |
string | Password |
Definition at line 183 of file SOAP5.php.
References $result, _validateOptions(), AUTH_LOG_DEBUG, PEAR\isError(), Auth_Container\log(), and PEAR\raiseError().
Auth_Container_SOAP5::$_requiredOptions |