mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 18:09:06 +01:00
LSsession : Added getLSauthObject() and used it. Modify logout procedure to use LSauth::logout() method.
This commit is contained in:
parent
6c9043b385
commit
b4758b2dec
1 changed files with 58 additions and 33 deletions
|
@ -84,6 +84,9 @@ class LSsession {
|
|||
// L'objet de l'utilisateur connecté
|
||||
private static $LSuserObject = NULL;
|
||||
|
||||
// The LSauht object of the session
|
||||
private static $LSauthObject = false;
|
||||
|
||||
/**
|
||||
* Include un fichier PHP
|
||||
*
|
||||
|
@ -487,23 +490,7 @@ class LSsession {
|
|||
return;
|
||||
}
|
||||
|
||||
// Déconnexion
|
||||
if (isset($_GET['LSsession_logout'])||isset($_GET['LSsession_recoverPassword'])) {
|
||||
session_destroy();
|
||||
|
||||
if (is_array($_SESSION['LSsession']['tmp_file'])) {
|
||||
self :: $tmp_file = $_SESSION['LSsession']['tmp_file'];
|
||||
}
|
||||
self :: deleteTmpFile();
|
||||
unset($_SESSION['LSsession']);
|
||||
}
|
||||
|
||||
// Récupération de mot de passe
|
||||
if (isset($_GET['recoveryHash'])) {
|
||||
$_POST['LSsession_user'] = 'a determiner plus tard';
|
||||
}
|
||||
|
||||
if(isset($_SESSION['LSsession']['dn'])) {
|
||||
if(isset($_SESSION['LSsession']['dn']) && !isset($_GET['LSsession_recoverPassword'])) {
|
||||
// Session existante
|
||||
self :: $topDn = $_SESSION['LSsession']['topDn'];
|
||||
self :: $dn = $_SESSION['LSsession']['dn'];
|
||||
|
@ -512,6 +499,23 @@ class LSsession {
|
|||
self :: $tmp_file = $_SESSION['LSsession']['tmp_file'];
|
||||
self :: $authParams = $_SESSION['LSsession']['authParams'];
|
||||
|
||||
if (isset($_GET['LSsession_logout'])) {
|
||||
$authObj = self :: getLSauthObject();
|
||||
if ($authObj) {
|
||||
$authObj -> logout();
|
||||
}
|
||||
session_destroy();
|
||||
|
||||
if (is_array($_SESSION['LSsession']['tmp_file'])) {
|
||||
self :: $tmp_file = $_SESSION['LSsession']['tmp_file'];
|
||||
}
|
||||
self :: deleteTmpFile();
|
||||
unset($_SESSION['LSsession']);
|
||||
|
||||
self :: redirect('index.php');
|
||||
return;
|
||||
}
|
||||
|
||||
if ( self :: cacheLSprofiles() && !isset($_REQUEST['LSsession_refresh']) ) {
|
||||
self :: setLdapServer(self :: $ldapServerId);
|
||||
self :: $LSprofiles = $_SESSION['LSsession']['LSprofiles'];
|
||||
|
@ -553,6 +557,9 @@ class LSsession {
|
|||
|
||||
}
|
||||
else {
|
||||
if (isset($_GET['LSsession_recoverPassword'])) {
|
||||
session_destroy();
|
||||
}
|
||||
// Session inexistante
|
||||
if (isset($_POST['LSsession_ldapserver'])) {
|
||||
self :: setLdapServer($_POST['LSsession_ldapserver']);
|
||||
|
@ -580,24 +587,12 @@ class LSsession {
|
|||
);
|
||||
}
|
||||
else {
|
||||
if (self :: loadLSauth()) {
|
||||
if (isset(self :: $ldapServer['LSauth']['method'])) {
|
||||
$LSauthClass = 'LSauth'.self :: $ldapServer['LSauth']['method'];
|
||||
if (!self :: loadLSauth(self :: $ldapServer['LSauth']['method'])) {
|
||||
LSerror :: addErrorCode('LSsession_08',self :: $ldapServer['LSauth']['method']);
|
||||
$LSauthClass = 'LSauth';
|
||||
}
|
||||
}
|
||||
else {
|
||||
$LSauthClass = 'LSauth';
|
||||
}
|
||||
|
||||
$authObj = new $LSauthClass();
|
||||
self :: $authParams = $authObj->params;
|
||||
$authObj=self :: getLSauthObject();
|
||||
if ($authObj) {
|
||||
if ($authObj -> getPostData()) {
|
||||
$LSuserObject = $authObj -> authenticate();
|
||||
if ($LSuserObject) {
|
||||
// Authentification réussi
|
||||
// Authentication successful
|
||||
self :: $LSuserObject = $LSuserObject;
|
||||
self :: $dn = $LSuserObject->getValue('dn');
|
||||
self :: $rdn = $LSuserObject->getValue('rdn');
|
||||
|
@ -614,6 +609,7 @@ class LSsession {
|
|||
else {
|
||||
LSerror :: addErrorCode('LSsession_09');
|
||||
}
|
||||
|
||||
if (self :: $ldapServerId) {
|
||||
$GLOBALS['Smarty'] -> assign('ldapServerId',self :: $ldapServerId);
|
||||
}
|
||||
|
@ -632,6 +628,32 @@ class LSsession {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get LSauthObject
|
||||
*
|
||||
* @retval LSauth object or false
|
||||
**/
|
||||
private static function getLSauthObject() {
|
||||
if (!self :: $LSauthObject) {
|
||||
if (self :: loadLSauth()) {
|
||||
if (isset(self :: $ldapServer['LSauth']['method'])) {
|
||||
$LSauthClass = 'LSauth'.self :: $ldapServer['LSauth']['method'];
|
||||
if (!self :: loadLSauth(self :: $ldapServer['LSauth']['method'])) {
|
||||
LSerror :: addErrorCode('LSsession_08',self :: $ldapServer['LSauth']['method']);
|
||||
$LSauthClass = 'LSauth';
|
||||
}
|
||||
}
|
||||
else {
|
||||
$LSauthClass = 'LSauth';
|
||||
}
|
||||
|
||||
self :: $LSauthObject = new $LSauthClass();
|
||||
self :: $authParams = self :: $LSauthObject->params;
|
||||
}
|
||||
}
|
||||
return self :: $LSauthObject;
|
||||
}
|
||||
|
||||
/**
|
||||
* Do recover password
|
||||
*
|
||||
|
@ -652,13 +674,16 @@ class LSsession {
|
|||
);
|
||||
$result = $authobject -> listObjects($filter,self :: $topDn);
|
||||
}
|
||||
else {
|
||||
elseif (!empty($username)) {
|
||||
$result = $authobject -> searchObject(
|
||||
$username,
|
||||
self :: $topDn,
|
||||
self :: $ldapServer['authObjectFilter']
|
||||
);
|
||||
}
|
||||
else {
|
||||
return $recoveryPasswordInfos;
|
||||
}
|
||||
|
||||
$nbresult=count($result);
|
||||
|
||||
|
|
Loading…
Reference in a new issue