mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-23 02:19:07 +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é
|
// L'objet de l'utilisateur connecté
|
||||||
private static $LSuserObject = NULL;
|
private static $LSuserObject = NULL;
|
||||||
|
|
||||||
|
// The LSauht object of the session
|
||||||
|
private static $LSauthObject = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Include un fichier PHP
|
* Include un fichier PHP
|
||||||
*
|
*
|
||||||
|
@ -487,23 +490,7 @@ class LSsession {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Déconnexion
|
if(isset($_SESSION['LSsession']['dn']) && !isset($_GET['LSsession_recoverPassword'])) {
|
||||||
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'])) {
|
|
||||||
// Session existante
|
// Session existante
|
||||||
self :: $topDn = $_SESSION['LSsession']['topDn'];
|
self :: $topDn = $_SESSION['LSsession']['topDn'];
|
||||||
self :: $dn = $_SESSION['LSsession']['dn'];
|
self :: $dn = $_SESSION['LSsession']['dn'];
|
||||||
|
@ -512,6 +499,23 @@ class LSsession {
|
||||||
self :: $tmp_file = $_SESSION['LSsession']['tmp_file'];
|
self :: $tmp_file = $_SESSION['LSsession']['tmp_file'];
|
||||||
self :: $authParams = $_SESSION['LSsession']['authParams'];
|
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']) ) {
|
if ( self :: cacheLSprofiles() && !isset($_REQUEST['LSsession_refresh']) ) {
|
||||||
self :: setLdapServer(self :: $ldapServerId);
|
self :: setLdapServer(self :: $ldapServerId);
|
||||||
self :: $LSprofiles = $_SESSION['LSsession']['LSprofiles'];
|
self :: $LSprofiles = $_SESSION['LSsession']['LSprofiles'];
|
||||||
|
@ -553,6 +557,9 @@ class LSsession {
|
||||||
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
if (isset($_GET['LSsession_recoverPassword'])) {
|
||||||
|
session_destroy();
|
||||||
|
}
|
||||||
// Session inexistante
|
// Session inexistante
|
||||||
if (isset($_POST['LSsession_ldapserver'])) {
|
if (isset($_POST['LSsession_ldapserver'])) {
|
||||||
self :: setLdapServer($_POST['LSsession_ldapserver']);
|
self :: setLdapServer($_POST['LSsession_ldapserver']);
|
||||||
|
@ -580,24 +587,12 @@ class LSsession {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (self :: loadLSauth()) {
|
$authObj=self :: getLSauthObject();
|
||||||
if (isset(self :: $ldapServer['LSauth']['method'])) {
|
if ($authObj) {
|
||||||
$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;
|
|
||||||
if ($authObj -> getPostData()) {
|
if ($authObj -> getPostData()) {
|
||||||
$LSuserObject = $authObj -> authenticate();
|
$LSuserObject = $authObj -> authenticate();
|
||||||
if ($LSuserObject) {
|
if ($LSuserObject) {
|
||||||
// Authentification réussi
|
// Authentication successful
|
||||||
self :: $LSuserObject = $LSuserObject;
|
self :: $LSuserObject = $LSuserObject;
|
||||||
self :: $dn = $LSuserObject->getValue('dn');
|
self :: $dn = $LSuserObject->getValue('dn');
|
||||||
self :: $rdn = $LSuserObject->getValue('rdn');
|
self :: $rdn = $LSuserObject->getValue('rdn');
|
||||||
|
@ -614,6 +609,7 @@ class LSsession {
|
||||||
else {
|
else {
|
||||||
LSerror :: addErrorCode('LSsession_09');
|
LSerror :: addErrorCode('LSsession_09');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (self :: $ldapServerId) {
|
if (self :: $ldapServerId) {
|
||||||
$GLOBALS['Smarty'] -> assign('ldapServerId',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
|
* Do recover password
|
||||||
*
|
*
|
||||||
|
@ -652,13 +674,16 @@ class LSsession {
|
||||||
);
|
);
|
||||||
$result = $authobject -> listObjects($filter,self :: $topDn);
|
$result = $authobject -> listObjects($filter,self :: $topDn);
|
||||||
}
|
}
|
||||||
else {
|
elseif (!empty($username)) {
|
||||||
$result = $authobject -> searchObject(
|
$result = $authobject -> searchObject(
|
||||||
$username,
|
$username,
|
||||||
self :: $topDn,
|
self :: $topDn,
|
||||||
self :: $ldapServer['authObjectFilter']
|
self :: $ldapServer['authObjectFilter']
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
return $recoveryPasswordInfos;
|
||||||
|
}
|
||||||
|
|
||||||
$nbresult=count($result);
|
$nbresult=count($result);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue