ILIAS
Release_4_0_x_branch Revision 61816
|
Class Shibboleth. More...
Public Member Functions | |
ShibAuth ($authParams, $updateUserData=false) | |
Constructor public. | |
supportsRedirects () | |
Returns true, if the current auth mode allows redirection to e.g to loginScreen, public section... | |
setIdle ($time, $add=false) | |
Deletes a role and deletes entries in object_data, rbac_pa, rbac_templates, rbac_ua, rbac_fa public. | |
setExpire ($time, $add=false) | |
Set the maximum expire time. | |
login () | |
Login function. | |
logout () | |
Logout function. | |
generateLogin () | |
Automatically generates the username/screenname of a Shibboleth user or returns the user's already existing username. | |
getFirstString ($string) | |
Cleans and returns first of potential many values (multi-valued attributes) | |
toAscii ($string) | |
Replaces any non-ASCII character by its linguistically most logical substitution. | |
Public Member Functions inherited from Auth | |
Auth ($storageDriver, $options= '', $loginFunction= '', $showLogin=true) | |
Constructor. | |
& | applyAuthOptions (&$options) |
Set the Auth options. | |
_loadStorage () | |
Load Storage Driver if not already loaded. | |
assignData () | |
Assign data from login form to internal values. | |
start () | |
Start new auth session. | |
setSessionName ($name= 'session') | |
Set name of the session to a customized value. | |
setShowLogin ($showLogin=true) | |
Should the login form be displayed if neccessary? | |
setAllowLogin ($allowLogin=true) | |
Should the login form be displayed if neccessary? | |
setCheckAuthCallback ($checkAuthCallback) | |
Register a callback function to be called whenever the validity of the login is checked The function will receive two parameters, the username and a reference to the auth object. | |
setLoginCallback ($loginCallback) | |
Register a callback function to be called on user login. | |
setFailedLoginCallback ($loginFailedCallback) | |
Register a callback function to be called on failed user login. | |
setLogoutCallback ($logoutCallback) | |
Register a callback function to be called on user logout. | |
setAuthData ($name, $value, $overwrite=true) | |
Register additional information that is to be stored in the session. | |
getAuthData ($name=null) | |
Get additional information that is stored in the session. | |
setAuth ($username) | |
Register variable in a session telling that the user has logged in successfully. | |
setAdvancedSecurity ($flag=true) | |
Enables advanced security checks. | |
checkAuth () | |
Checks if there is a session with valid auth information. | |
getAuth () | |
Has the user been authenticated? | |
updateIdle () | |
Update the idletime. | |
getUsername () | |
Get the username. | |
getStatus () | |
Get the current status. | |
getPostUsernameField () | |
Gets the post varible used for the username. | |
getPostPasswordField () | |
Gets the post varible used for the username. | |
sessionValidThru () | |
Returns the time up to the session is valid. | |
listUsers () | |
List all users that are currently available in the storage container. | |
addUser ($username, $password, $additional= '') | |
Add user to the storage container. | |
removeUser ($username) | |
Remove user from the storage container. | |
changePassword ($username, $password) | |
Change password for user in the storage container. | |
log ($message, $level=AUTH_LOG_DEBUG) | |
Log a message from the Auth system. | |
_loadLogger () | |
Load Log object if not already loaded. | |
attachLogObserver (&$observer) | |
Attach an Observer to the Auth Log Source. | |
_isAdvancedSecurityEnabled ($feature=null) | |
Is advanced security enabled? | |
Public Member Functions inherited from ilAuthBase | |
supportRedirects () | |
Returns true, if the current auth mode allows redirects to e.g the login screen, public section ... | |
getContainer () | |
Get container object. |
Data Fields | |
$username | |
$_sessionName = '_authsession' | |
$status = '' | |
$expire = 0 | |
$idle = 0 | |
$idled = false | |
Data Fields inherited from Auth | |
$expire = 0 | |
$expired = false | |
$idle = 0 | |
$idled = false | |
$storage = '' | |
$loginFunction = '' | |
$showLogin = true | |
$allowLogin = true | |
$status = '' | |
$username = '' | |
$password = '' | |
$checkAuthCallback = '' | |
$loginCallback = '' | |
$loginFailedCallback = '' | |
$logoutCallback = '' | |
$_sessionName = '_authsession' | |
$version = "@version@" | |
$advancedsecurity = false | |
$_postUsername = 'username' | |
$_postPassword = 'password' | |
$session | |
$server | |
$post | |
$cookie | |
$authdata | |
$authChecks = 0 | |
$logger = null | |
$enableLogging = false | |
$regenerateSessionId = false |
Additional Inherited Members | |
Static Public Member Functions inherited from Auth | |
& | _factory ($driver, $options= '') |
Return a storage driver based on $driver and $options. | |
staticCheckAuth ($options=null) | |
Statically checks if there is a session with valid auth information. | |
Protected Member Functions inherited from ilAuthBase | |
initAuth () | |
Init auth object Enable logging, set callbacks... | |
loginObserver ($a_username, $a_auth) | |
Called after successful login. | |
failedLoginObserver ($a_username, $a_auth) | |
Called after failed login. | |
checkAuthObserver ($a_username, $a_auth) | |
Called after each check auth request. | |
logoutObserver ($a_username, $a_auth) | |
Called after logout. | |
Protected Attributes inherited from ilAuthBase | |
$sub_status = null |
Class Shibboleth.
This class provides basic functionality for Shibboleth authentication
Definition at line 37 of file class.ilShibboleth.php.
ShibAuth::generateLogin | ( | ) |
Automatically generates the username/screenname of a Shibboleth user or returns the user's already existing username.
private
Definition at line 379 of file class.ilShibboleth.php.
References $ilDB, $login, ilObjUser\_checkExternalAuthAccount(), ilUtil\generatePasswords(), getFirstString(), ilObjUser\getUserIdByLogin(), and toAscii().
Referenced by login().
ShibAuth::getFirstString | ( | $string | ) |
Cleans and returns first of potential many values (multi-valued attributes)
private
string | A Shibboleth attribute or other string |
Definition at line 456 of file class.ilShibboleth.php.
Referenced by generateLogin(), and login().
ShibAuth::login | ( | ) |
Login function.
private
Reimplemented from Auth.
Definition at line 166 of file class.ilShibboleth.php.
References $_GET, $username, AUTH_WRONG_LOGIN, ilShibbolethRoleAssignmentRules\doAssignments(), generateLogin(), ilUtil\generatePasswords(), getFirstString(), ilObjUser\getUserIdByLogin(), IL_PASSWD_MD5, ilUtil\redirect(), Auth\setAuth(), and ilShibbolethRoleAssignmentRules\updateAssignments().
ShibAuth::logout | ( | ) |
Logout function.
This function clears any auth tokens in the currently active session and executes the logout callback function, if any
public
Reimplemented from Auth.
Definition at line 366 of file class.ilShibboleth.php.
ShibAuth::setExpire | ( | $time, | |
$add = false |
|||
) |
Set the maximum expire time.
public
integer | time in seconds |
bool | add time to current expire time or not |
Reimplemented from Auth.
Definition at line 150 of file class.ilShibboleth.php.
ShibAuth::setIdle | ( | $time, | |
$add = false |
|||
) |
Deletes a role and deletes entries in object_data, rbac_pa, rbac_templates, rbac_ua, rbac_fa public.
integer | obj_id of role (role_id) |
integer | ref_id of role folder (ref_id) |
Reimplemented from Auth.
Definition at line 132 of file class.ilShibboleth.php.
ShibAuth::ShibAuth | ( | $authParams, | |
$updateUserData = false |
|||
) |
Constructor public.
Definition at line 94 of file class.ilShibboleth.php.
References Auth\Auth(), and Auth\setSessionName().
ShibAuth::supportsRedirects | ( | ) |
Returns true, if the current auth mode allows redirection to e.g to loginScreen, public section...
Definition at line 118 of file class.ilShibboleth.php.
ShibAuth::toAscii | ( | $string | ) |
Replaces any non-ASCII character by its linguistically most logical substitution.
private
string | A Shibboleth attribute or other string |
Definition at line 472 of file class.ilShibboleth.php.
References UtfNormal\toNFKD().
Referenced by generateLogin().
ShibAuth::$_sessionName = '_authsession' |
Definition at line 51 of file class.ilShibboleth.php.
ShibAuth::$expire = 0 |
Definition at line 68 of file class.ilShibboleth.php.
ShibAuth::$idle = 0 |
Definition at line 80 of file class.ilShibboleth.php.
ShibAuth::$idled = false |
Definition at line 88 of file class.ilShibboleth.php.
ShibAuth::$status = '' |
Definition at line 58 of file class.ilShibboleth.php.
ShibAuth::$username |
Definition at line 44 of file class.ilShibboleth.php.
Referenced by login().