2008-02-05 17:11:21 +01:00
|
|
|
|
<?php
|
|
|
|
|
/*******************************************************************************
|
|
|
|
|
* Copyright (C) 2007 Easter-eggs
|
|
|
|
|
* http://ldapsaisie.labs.libre-entreprise.org
|
|
|
|
|
*
|
|
|
|
|
* Author: See AUTHORS file in top-level directory.
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU General Public License version 2
|
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
|
|
define('LS_DEFAULT_CONF_DIR','conf');
|
2009-01-21 18:08:09 +01:00
|
|
|
|
require_once 'includes/functions.php';
|
2008-02-05 17:11:21 +01:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Gestion des sessions
|
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* Cette classe gère les sessions d'utilisateurs.
|
2008-02-05 17:11:21 +01:00
|
|
|
|
*
|
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
|
*/
|
|
|
|
|
class LSsession {
|
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
// La configuration du serveur Ldap utilisé
|
|
|
|
|
public static $ldapServer = NULL;
|
|
|
|
|
|
|
|
|
|
// L'id du serveur Ldap utilisé
|
|
|
|
|
private static $ldapServerId = NULL;
|
|
|
|
|
|
|
|
|
|
// Le topDn courant
|
|
|
|
|
private static $topDn = NULL;
|
|
|
|
|
|
|
|
|
|
// Le DN de l'utilisateur connecté
|
|
|
|
|
private static $dn = NULL;
|
|
|
|
|
|
|
|
|
|
// Le RDN de l'utilisateur connecté (son identifiant)
|
|
|
|
|
private static $rdn = NULL;
|
|
|
|
|
|
|
|
|
|
// Les LSprofiles de l'utilisateur
|
|
|
|
|
private static $LSprofiles = array();
|
|
|
|
|
|
|
|
|
|
// Les droits d'accès de l'utilisateur
|
|
|
|
|
private static $LSaccess = array();
|
|
|
|
|
|
|
|
|
|
// Les fichiers temporaires
|
|
|
|
|
private static $tmp_file = array();
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Constante de classe non stockée en session
|
2008-02-05 17:11:21 +01:00
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
// Le template à afficher
|
|
|
|
|
private static $template = NULL;
|
|
|
|
|
|
|
|
|
|
// Les subDn des serveurs Ldap
|
|
|
|
|
private static $_subDnLdapServer = array();
|
|
|
|
|
|
|
|
|
|
// Affichage Ajax
|
|
|
|
|
private static $ajaxDisplay = false;
|
|
|
|
|
|
|
|
|
|
// Les fichiers JS à charger dans la page
|
|
|
|
|
private static $JSscripts = array();
|
|
|
|
|
|
|
|
|
|
// Les paramètres JS à communiquer dans la page
|
|
|
|
|
private static $_JSconfigParams = array();
|
|
|
|
|
|
|
|
|
|
// Les fichiers CSS à charger dans la page
|
|
|
|
|
private static $CssFiles = array();
|
|
|
|
|
|
|
|
|
|
// L'objet de l'utilisateur connecté
|
|
|
|
|
private static $LSuserObject = NULL;
|
2008-02-05 17:11:21 +01:00
|
|
|
|
|
2009-01-21 18:08:09 +01:00
|
|
|
|
/**
|
|
|
|
|
* Include un fichier PHP
|
|
|
|
|
*
|
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
|
*
|
|
|
|
|
* @retval true si tout c'est bien passé, false sinon
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function includeFile($file) {
|
2009-01-21 18:08:09 +01:00
|
|
|
|
if (!file_exists($file)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if ($GLOBALS['LSdebug']['active']) {
|
|
|
|
|
return include_once($file);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
return @include_once($file);
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
|
/**
|
2008-02-08 18:39:24 +01:00
|
|
|
|
* Chargement de la configuration
|
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* Chargement des fichiers de configuration et création de l'objet Smarty.
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*
|
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @retval true si tout c'est bien passé, false sinon
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
private static function loadConfig() {
|
|
|
|
|
if (loadDir(LS_DEFAULT_CONF_DIR, '^config\..*\.php$')) {
|
|
|
|
|
if ( self :: includeFile($GLOBALS['LSconfig']['Smarty']) ) {
|
2008-02-08 18:39:24 +01:00
|
|
|
|
$GLOBALS['Smarty'] = new Smarty();
|
2008-10-09 03:31:33 +02:00
|
|
|
|
$GLOBALS['Smarty'] -> template_dir = LS_TEMPLATES_DIR;
|
|
|
|
|
$GLOBALS['Smarty'] -> compile_dir = LS_TMP_DIR;
|
|
|
|
|
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('LS_CSS_DIR',LS_CSS_DIR);
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('LS_IMAGES_DIR',LS_IMAGES_DIR);
|
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: addJSconfigParam('LS_IMAGES_DIR',LS_IMAGES_DIR);
|
2008-02-08 18:39:24 +01:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else {
|
2009-01-25 16:55:33 +01:00
|
|
|
|
die("ERROR : Can't load Smarty.");
|
2008-02-08 18:39:24 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else {
|
2009-01-25 16:55:33 +01:00
|
|
|
|
die("ERROR : Can't load configuration files.");
|
2008-02-08 18:39:24 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
2009-01-02 17:00:25 +01:00
|
|
|
|
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
|
|
|
|
|
|
public static function getTopDn() {
|
|
|
|
|
return self :: $topDn;
|
|
|
|
|
}
|
2008-02-05 17:11:21 +01:00
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
|
/**
|
2008-02-08 18:39:24 +01:00
|
|
|
|
* Initialisation de la gestion des erreurs
|
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* Création de l'objet LSerror
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*
|
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com
|
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @retval boolean true si l'initialisation a réussi, false sinon.
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
private static function startLSerror() {
|
|
|
|
|
if(!self :: loadLSclass('LSerror')) {
|
2008-02-08 18:39:24 +01:00
|
|
|
|
return;
|
2009-01-02 17:00:25 +01:00
|
|
|
|
}
|
2009-01-25 15:37:03 +01:00
|
|
|
|
self :: defineLSerrors();
|
2008-02-08 18:39:24 +01:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2008-02-05 17:11:21 +01:00
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
|
/**
|
2008-02-08 18:39:24 +01:00
|
|
|
|
* Chargement d'une classe d'LdapSaisie
|
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @param[in] $class Nom de la classe à charger (Exemple : LSeepeople)
|
|
|
|
|
* @param[in] $type (Optionnel) Type de classe à charger (Exemple : LSobjects)
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*
|
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com
|
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @retval boolean true si le chargement a réussi, false sinon.
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function loadLSclass($class,$type='') {
|
2008-02-08 18:39:24 +01:00
|
|
|
|
if (class_exists($class))
|
|
|
|
|
return true;
|
|
|
|
|
if($type!='')
|
|
|
|
|
$type=$type.'.';
|
2009-01-24 18:45:14 +01:00
|
|
|
|
return self :: includeFile(LS_CLASS_DIR .'class.'.$type.$class.'.php');
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2008-02-05 17:11:21 +01:00
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
|
/**
|
2008-02-08 18:39:24 +01:00
|
|
|
|
* Chargement d'un object LdapSaisie
|
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @param[in] $object Nom de l'objet à charger
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @retval boolean true si le chargement a réussi, false sinon.
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function loadLSobject($object) {
|
2009-01-02 17:00:25 +01:00
|
|
|
|
$error = 0;
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: loadLSclass('LSldapObject');
|
|
|
|
|
if (!self :: loadLSclass($object,'LSobjects')) {
|
2009-01-02 17:00:25 +01:00
|
|
|
|
$error = 1;
|
2008-04-25 15:48:12 +02:00
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if (!self :: includeFile( LS_OBJECTS_DIR . 'config.LSobjects.'.$object.'.php' )) {
|
2009-01-02 17:00:25 +01:00
|
|
|
|
$error = 1;
|
|
|
|
|
}
|
|
|
|
|
if ($error) {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
LSerror :: addErrorCode('LSsession_04',$object);
|
2008-02-08 18:39:24 +01:00
|
|
|
|
return;
|
2008-04-25 15:48:12 +02:00
|
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2008-02-05 17:11:21 +01:00
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
|
/**
|
2008-02-08 18:39:24 +01:00
|
|
|
|
* Chargement d'un addons d'LdapSaisie
|
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @param[in] $addon Nom de l'addon à charger (Exemple : samba)
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*
|
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com
|
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @retval boolean true si le chargement a réussi, false sinon.
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function loadLSaddon($addon) {
|
|
|
|
|
if(self :: includeFile(LS_ADDONS_DIR .'LSaddons.'.$addon.'.php')) {
|
|
|
|
|
self :: includeFile(LS_CONF_DIR."LSaddons/config.LSaddons.".$addon.".php");
|
2008-09-25 17:15:33 +02:00
|
|
|
|
if (!call_user_func('LSaddon_'. $addon .'_support')) {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
LSerror :: addErrorCode('LSsession_02',$addon);
|
2008-09-25 17:15:33 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return;
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2008-02-05 17:11:21 +01:00
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
|
/**
|
2008-02-08 18:39:24 +01:00
|
|
|
|
* Chargement des addons LdapSaisie
|
|
|
|
|
*
|
|
|
|
|
* Chargement des LSaddons contenue dans la variable
|
|
|
|
|
* $GLOBALS['LSaddons']['loads']
|
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @retval boolean true si le chargement a réussi, false sinon.
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function loadLSaddons() {
|
2008-02-08 18:39:24 +01:00
|
|
|
|
if(!is_array($GLOBALS['LSaddons']['loads'])) {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
LSerror :: addErrorCode('LSsession_01',"LSaddons['loads']");
|
2008-02-08 18:39:24 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach ($GLOBALS['LSaddons']['loads'] as $addon) {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: loadLSaddon($addon);
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2008-02-05 17:11:21 +01:00
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
/**
|
|
|
|
|
* Initialisation LdapSaisie
|
|
|
|
|
*
|
|
|
|
|
* @retval boolean True si l'initialisation à réussi, false sinon.
|
|
|
|
|
*/
|
|
|
|
|
public static function initialize() {
|
|
|
|
|
if (!self :: loadConfig()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
self :: startLSerror();
|
|
|
|
|
self :: loadLSaddons();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
|
/**
|
2008-02-05 17:11:21 +01:00
|
|
|
|
* Initialisation de la session LdapSaisie
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*
|
|
|
|
|
* Initialisation d'une LSsession :
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* - Authentification et activation du mécanisme de session de LdapSaisie
|
|
|
|
|
* - ou Chargement des paramètres de la session à partir de la variable
|
2008-02-08 18:39:24 +01:00
|
|
|
|
* $_SESSION['LSsession'].
|
|
|
|
|
* - ou Destruction de la session en cas de $_GET['LSsession_logout'].
|
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @retval boolean True si l'initialisation à réussi (utilisateur authentifié), false sinon.
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function startLSsession() {
|
|
|
|
|
if (!self :: initialize()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
session_start();
|
|
|
|
|
|
|
|
|
|
// 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'];
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
|
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'])) {
|
|
|
|
|
// Session existante
|
|
|
|
|
self :: $topDn = $_SESSION['LSsession']['topDn'];
|
|
|
|
|
self :: $dn = $_SESSION['LSsession']['dn'];
|
|
|
|
|
self :: $rdn = $_SESSION['LSsession']['rdn'];
|
|
|
|
|
self :: $ldapServerId = $_SESSION['LSsession']['ldapServerId'];
|
|
|
|
|
self :: $tmp_file = $_SESSION['LSsession']['tmp_file'];
|
2008-02-26 18:40:05 +01:00
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if ( self :: cacheLSprofiles() && !isset($_REQUEST['LSsession_refresh']) ) {
|
|
|
|
|
self :: setLdapServer(self :: $ldapServerId);
|
|
|
|
|
self :: $LSprofiles = $_SESSION['LSsession']['LSprofiles'];
|
|
|
|
|
self :: $LSaccess = $_SESSION['LSsession']['LSaccess'];
|
|
|
|
|
if (!self :: LSldapConnect())
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
self :: setLdapServer(self :: $ldapServerId);
|
|
|
|
|
if (!self :: LSldapConnect())
|
|
|
|
|
return;
|
|
|
|
|
self :: loadLSprofiles();
|
2008-06-05 15:21:18 +02:00
|
|
|
|
}
|
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if ( self :: cacheSudDn() && (!isset($_REQUEST['LSsession_refresh'])) ) {
|
|
|
|
|
self :: $_subDnLdapServer = $_SESSION['LSsession_subDnLdapServer'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!self :: loadLSobject(self :: $ldapServer['authObjectType'])) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
self :: getLSuserObject();
|
|
|
|
|
|
|
|
|
|
if ( !self :: cacheLSprofiles() || isset($_REQUEST['LSsession_refresh']) ) {
|
|
|
|
|
self :: loadLSaccess();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('LSsession_username',self :: getLSuserObject() -> getDisplayName());
|
|
|
|
|
|
|
|
|
|
if ($_POST['LSsession_topDn']) {
|
|
|
|
|
if (self :: validSubDnLdapServer($_POST['LSsession_topDn'])) {
|
|
|
|
|
self :: $topDn = $_POST['LSsession_topDn'];
|
|
|
|
|
$_SESSION['LSsession']['topDn'] = $_POST['LSsession_topDn'];
|
|
|
|
|
} // end if
|
|
|
|
|
} // end if
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
// Session inexistante
|
|
|
|
|
$recoveryPasswordInfos=array();
|
|
|
|
|
|
|
|
|
|
if (isset($_POST['LSsession_user'])) {
|
|
|
|
|
if (isset($_POST['LSsession_ldapserver'])) {
|
|
|
|
|
self :: setLdapServer($_POST['LSsession_ldapserver']);
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: setLdapServer(0);
|
2008-06-21 18:16:15 +02:00
|
|
|
|
}
|
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
// Connexion au serveur LDAP
|
|
|
|
|
if (self :: LSldapConnect()) {
|
2008-02-08 18:39:24 +01:00
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
// topDn
|
|
|
|
|
if ( $_POST['LSsession_topDn'] != '' ){
|
|
|
|
|
self :: $topDn = $_POST['LSsession_topDn'];
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: $topDn = self :: $ldapServer['ldap_config']['basedn'];
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
|
$_SESSION['LSsession_topDn']=self :: $topDn;
|
2008-04-25 15:48:12 +02:00
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if ( self :: loadLSobject(self :: $ldapServer['authObjectType']) ) {
|
|
|
|
|
$authobject = new self :: $ldapServer['authObjectType']();
|
|
|
|
|
$find=true;
|
|
|
|
|
if (isset($_GET['recoveryHash'])) {
|
|
|
|
|
$filter=self :: $ldapServer['recoverPassword']['recoveryHashAttr']."=".$_GET['recoveryHash'];
|
|
|
|
|
$result = $authobject -> listObjects($filter,self :: $topDn);
|
|
|
|
|
$nbresult=count($result);
|
|
|
|
|
if ($nbresult==1) {
|
|
|
|
|
$rdn = $result[0] -> getValue('rdn');
|
|
|
|
|
$rdn = $rdn[0];
|
|
|
|
|
$_POST['LSsession_user'] = $rdn;
|
|
|
|
|
$find=false;
|
|
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if ($find) {
|
2009-03-09 14:14:37 +01:00
|
|
|
|
$result = $authobject -> searchObject($_POST['LSsession_user'],self :: $topDn,self :: $ldapServer['authObjectFilter']);
|
2009-01-24 18:45:14 +01:00
|
|
|
|
$nbresult=count($result);
|
|
|
|
|
}
|
|
|
|
|
if ($nbresult==0) {
|
|
|
|
|
// identifiant incorrect
|
|
|
|
|
LSdebug('identifiant incorrect');
|
|
|
|
|
LSerror :: addErrorCode('LSsession_06');
|
|
|
|
|
}
|
|
|
|
|
else if ($nbresult>1) {
|
|
|
|
|
// duplication d'authentité
|
|
|
|
|
LSerror :: addErrorCode('LSsession_07');
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
|
else {
|
|
|
|
|
if (isset($_GET['LSsession_recoverPassword'])) {
|
|
|
|
|
LSdebug('Recover : Id trouvé');
|
|
|
|
|
if (self :: $ldapServer['recoverPassword']) {
|
|
|
|
|
if (self :: loadLSaddon('mail')) {
|
|
|
|
|
LSdebug('Récupération active');
|
|
|
|
|
$user=$result[0];
|
|
|
|
|
$emailAddress = $user -> getValue(self :: $ldapServer['recoverPassword']['mailAttr']);
|
|
|
|
|
$emailAddress = $emailAddress[0];
|
|
|
|
|
|
|
|
|
|
// Header des mails
|
|
|
|
|
$sendParams=array();
|
|
|
|
|
if (self :: $ldapServer['recoverPassword']['recoveryEmailSender']) {
|
|
|
|
|
$sendParams['From']=self :: $ldapServer['recoverPassword']['recoveryEmailSender'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (checkEmail($emailAddress)) {
|
|
|
|
|
LSdebug('Email : '.$emailAddress);
|
|
|
|
|
self :: $dn = $user -> getDn();
|
|
|
|
|
// 1ère étape : envoie du recoveryHash
|
|
|
|
|
if (!isset($_GET['recoveryHash'])) {
|
|
|
|
|
// Generer un hash
|
|
|
|
|
$rdn=$user -> getValue('rdn');
|
|
|
|
|
$rdn = $rdn[0];
|
|
|
|
|
$recovery_hash = md5($rdn . strval(time()) . strval(rand()));
|
|
|
|
|
|
|
|
|
|
$lostPasswdForm = $user -> getForm('lostPassword');
|
|
|
|
|
$lostPasswdForm -> setPostData(
|
|
|
|
|
array(
|
|
|
|
|
self :: $ldapServer['recoverPassword']['recoveryHashAttr'] => $recovery_hash
|
|
|
|
|
)
|
|
|
|
|
,true
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if($lostPasswdForm -> validate()) {
|
|
|
|
|
if ($user -> updateData('lostPassword')) {
|
|
|
|
|
// recoveryHash de l'utilisateur mis à jour
|
|
|
|
|
if ($_SERVER['HTTPS']=='on') {
|
|
|
|
|
$recovery_url='https://';
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$recovery_url='http://';
|
|
|
|
|
}
|
|
|
|
|
$recovery_url .= $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'].'&recoveryHash='.$recovery_hash;
|
2008-02-08 18:39:24 +01:00
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if (
|
|
|
|
|
sendMail(
|
|
|
|
|
$emailAddress,
|
|
|
|
|
self :: $ldapServer['recoverPassword']['recoveryHashMail']['subject'],
|
|
|
|
|
getFData(self :: $ldapServer['recoverPassword']['recoveryHashMail']['msg'],$recovery_url),
|
|
|
|
|
$sendParams
|
|
|
|
|
)
|
|
|
|
|
){
|
|
|
|
|
// Mail a bien été envoyé
|
|
|
|
|
$recoveryPasswordInfos['recoveryHashMail']=$emailAddress;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
// Problème durant l'envoie du mail
|
|
|
|
|
LSdebug("Problème durant l'envoie du mail");
|
|
|
|
|
LSerror :: addErrorCode('LSsession_20',7);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
// Erreur durant la mise à jour de l'objet
|
|
|
|
|
LSdebug("Erreur durant la mise à jour de l'objet");
|
|
|
|
|
LSerror :: addErrorCode('LSsession_20',6);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
// Erreur durant la validation du formulaire de modification de perte de password
|
|
|
|
|
LSdebug("Erreur durant la validation du formulaire de modification de perte de password");
|
|
|
|
|
LSerror :: addErrorCode('LSsession_20',5);
|
|
|
|
|
}
|
2008-06-05 15:21:18 +02:00
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
|
// 2nd étape : génération du mot de passe + envoie par mail
|
|
|
|
|
else {
|
|
|
|
|
$attr=$user -> attrs[self :: $ldapServer['authObjectTypeAttrPwd']];
|
|
|
|
|
if ($attr instanceof LSattribute) {
|
|
|
|
|
$mdp = generatePassword($attr -> config['html_options']['chars'],$attr -> config['html_options']['lenght']);
|
|
|
|
|
LSdebug('Nvx mpd : '.$mdp);
|
2008-06-05 15:21:18 +02:00
|
|
|
|
$lostPasswdForm = $user -> getForm('lostPassword');
|
|
|
|
|
$lostPasswdForm -> setPostData(
|
|
|
|
|
array(
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: $ldapServer['recoverPassword']['recoveryHashAttr'] => array(''),
|
|
|
|
|
self :: $ldapServer['authObjectTypeAttrPwd'] => array($mdp)
|
2008-06-05 15:21:18 +02:00
|
|
|
|
)
|
|
|
|
|
,true
|
|
|
|
|
);
|
|
|
|
|
if($lostPasswdForm -> validate()) {
|
|
|
|
|
if ($user -> updateData('lostPassword')) {
|
|
|
|
|
if (
|
2008-10-14 18:21:36 +02:00
|
|
|
|
sendMail(
|
2008-06-05 15:21:18 +02:00
|
|
|
|
$emailAddress,
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: $ldapServer['recoverPassword']['newPasswordMail']['subject'],
|
|
|
|
|
getFData(self :: $ldapServer['recoverPassword']['newPasswordMail']['msg'],$mdp),
|
2008-10-14 18:21:36 +02:00
|
|
|
|
$sendParams
|
2008-06-05 15:21:18 +02:00
|
|
|
|
)
|
|
|
|
|
){
|
|
|
|
|
// Mail a bien été envoyé
|
2009-01-24 18:45:14 +01:00
|
|
|
|
$recoveryPasswordInfos['newPasswordMail']=$emailAddress;
|
2008-06-05 15:21:18 +02:00
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
// Problème durant l'envoie du mail
|
2008-09-26 20:03:56 +02:00
|
|
|
|
LSdebug("Problème durant l'envoie du mail");
|
2009-01-24 18:45:14 +01:00
|
|
|
|
LSerror :: addErrorCode('LSsession_20',4);
|
2008-06-05 15:21:18 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
// Erreur durant la mise à jour de l'objet
|
2008-09-26 20:03:56 +02:00
|
|
|
|
LSdebug("Erreur durant la mise à jour de l'objet");
|
2009-01-24 18:45:14 +01:00
|
|
|
|
LSerror :: addErrorCode('LSsession_20',3);
|
2008-06-05 15:21:18 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
// Erreur durant la validation du formulaire de modification de perte de password
|
2008-09-26 20:03:56 +02:00
|
|
|
|
LSdebug("Erreur durant la validation du formulaire de modification de perte de password");
|
2009-01-24 18:45:14 +01:00
|
|
|
|
LSerror :: addErrorCode('LSsession_20',2);
|
2008-06-05 15:21:18 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
// l'attribut password n'existe pas
|
|
|
|
|
LSdebug("L'attribut password n'existe pas");
|
|
|
|
|
LSerror :: addErrorCode('LSsession_20',1);
|
2008-06-05 15:21:18 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
|
else {
|
|
|
|
|
LSerror :: addErrorCode('LSsession_19');
|
|
|
|
|
}
|
2008-06-05 15:21:18 +02:00
|
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
LSerror :: addErrorCode('LSsession_18');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
if ( self :: checkUserPwd($result[0],$_POST['LSsession_pwd']) ) {
|
|
|
|
|
// Authentification réussi
|
|
|
|
|
self :: $LSuserObject = $result[0];
|
|
|
|
|
self :: $dn = $result[0]->getValue('dn');
|
2009-03-09 14:14:37 +01:00
|
|
|
|
self :: $rdn = $result[0]->getValue('rdn');
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: loadLSprofiles();
|
|
|
|
|
self :: loadLSaccess();
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('LSsession_username',self :: getLSuserObject() -> getDisplayName());
|
|
|
|
|
$_SESSION['LSsession']=self :: getContextInfos();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
LSerror :: addErrorCode('LSsession_06');
|
|
|
|
|
LSdebug('mdp incorrect');
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
LSerror :: addErrorCode('LSsession_10');
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2008-06-05 15:21:18 +02:00
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
LSerror :: addErrorCode('LSsession_09');
|
2008-06-05 15:21:18 +02:00
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
|
}
|
|
|
|
|
if (self :: $ldapServerId) {
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('ldapServerId',self :: $ldapServerId);
|
|
|
|
|
}
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('topDn',self :: $topDn);
|
|
|
|
|
if (isset($_GET['LSsession_recoverPassword'])) {
|
|
|
|
|
self :: displayRecoverPasswordForm($recoveryPasswordInfos);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
self :: displayLoginForm();
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Retourne les informations du contexte
|
|
|
|
|
*
|
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com
|
|
|
|
|
*
|
|
|
|
|
* @retval array Tableau associatif des informations du contexte
|
|
|
|
|
*/
|
|
|
|
|
private static function getContextInfos() {
|
|
|
|
|
return array(
|
|
|
|
|
'tmp_file' => self :: $tmp_file,
|
|
|
|
|
'topDn' => self :: $topDn,
|
|
|
|
|
'dn' => self :: $dn,
|
|
|
|
|
'rdn' => self :: $rdn,
|
|
|
|
|
'ldapServerId' => self :: $ldapServerId,
|
|
|
|
|
'ldapServer' => self :: $ldapServer,
|
|
|
|
|
'LSprofiles' => self :: $LSprofiles,
|
|
|
|
|
'LSaccess' => self :: $LSaccess
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Retourne l'objet de l'utilisateur connecté
|
|
|
|
|
*
|
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com
|
|
|
|
|
*
|
|
|
|
|
* @retval mixed L'objet de l'utilisateur connecté ou false si il n'a pas put
|
|
|
|
|
* être créé
|
|
|
|
|
*/
|
|
|
|
|
public static function getLSuserObject($dn=null) {
|
|
|
|
|
if ($dn) {
|
|
|
|
|
self :: $dn = $dn;
|
|
|
|
|
}
|
|
|
|
|
if (!self :: $LSuserObject) {
|
|
|
|
|
if (self :: loadLSobject(self :: $ldapServer['authObjectType'])) {
|
|
|
|
|
self :: $LSuserObject = new self :: $ldapServer['authObjectType']();
|
|
|
|
|
self :: $LSuserObject -> loadData(self :: $dn);
|
|
|
|
|
}
|
|
|
|
|
else {
|
2008-02-08 18:39:24 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
|
}
|
|
|
|
|
return self :: $LSuserObject;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Retourne le DN de l'utilisateur connecté
|
|
|
|
|
*
|
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com
|
|
|
|
|
*
|
|
|
|
|
* @retval string Le DN de l'utilisateur connecté
|
|
|
|
|
*/
|
|
|
|
|
public static function getLSuserObjectDn() {
|
|
|
|
|
return self :: $dn;
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2008-02-05 17:11:21 +01:00
|
|
|
|
|
2008-07-29 15:45:02 +02:00
|
|
|
|
/**
|
|
|
|
|
* Modifie l'utilisateur connecté à la volé
|
|
|
|
|
*
|
|
|
|
|
* @param[in] $object Mixed L'objet Ldap du nouvel utilisateur
|
|
|
|
|
* le type doit correspondre à
|
2009-01-24 18:45:14 +01:00
|
|
|
|
* self :: $ldapServer['authObjectType']
|
2008-07-29 15:45:02 +02:00
|
|
|
|
*
|
|
|
|
|
* @retval boolean True en cas de succès, false sinon
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function changeAuthUser($object) {
|
|
|
|
|
if ($object instanceof self :: $ldapServer['authObjectType']) {
|
|
|
|
|
self :: $dn = $object -> getDn();
|
2008-07-29 15:45:02 +02:00
|
|
|
|
$rdn = $object -> getValue('rdn');
|
|
|
|
|
if(is_array($rdn)) {
|
|
|
|
|
$rdn = $rdn[0];
|
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: $rdn = $rdn;
|
|
|
|
|
self :: $LSuserObject = $object;
|
2008-07-29 15:45:02 +02:00
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if(self :: loadLSprofiles()) {
|
|
|
|
|
self :: loadLSaccess();
|
|
|
|
|
$_SESSION['LSsession']=self :: getContextInfos();
|
2008-07-29 15:45:02 +02:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
|
/**
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* Définition du serveur Ldap de la session
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* Définition du serveur Ldap de la session à partir de son ID dans
|
2008-02-08 18:39:24 +01:00
|
|
|
|
* le tableau $GLOBALS['LSconfig']['ldap_servers'].
|
|
|
|
|
*
|
|
|
|
|
* @param[in] integer Index du serveur Ldap
|
|
|
|
|
*
|
|
|
|
|
* @retval boolean True sinon false.
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function setLdapServer($id) {
|
2008-02-08 18:39:24 +01:00
|
|
|
|
if ( isset($GLOBALS['LSconfig']['ldap_servers'][$id]) ) {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: $ldapServerId = $id;
|
|
|
|
|
self :: $ldapServer=$GLOBALS['LSconfig']['ldap_servers'][$id];
|
2008-02-08 18:39:24 +01:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-02-05 17:11:21 +01:00
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
|
/**
|
2008-02-08 18:39:24 +01:00
|
|
|
|
* Connexion au serveur Ldap
|
|
|
|
|
*
|
|
|
|
|
* @retval boolean True sinon false.
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function LSldapConnect() {
|
|
|
|
|
if (self :: $ldapServer) {
|
|
|
|
|
self :: includeFile($GLOBALS['LSconfig']['NetLDAP2']);
|
|
|
|
|
if (!self :: loadLSclass('LSldap')) {
|
2008-02-08 18:39:24 +01:00
|
|
|
|
return;
|
2008-12-05 15:38:42 +01:00
|
|
|
|
}
|
2009-01-25 15:37:03 +01:00
|
|
|
|
LSldap :: connect(self :: $ldapServer['ldap_config']);
|
|
|
|
|
if (LSldap :: isConnected()) {
|
2008-12-05 15:38:42 +01:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
LSerror :: addErrorCode('LSsession_03');
|
2008-02-08 18:39:24 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
|
/**
|
2008-02-26 18:40:05 +01:00
|
|
|
|
* Retourne les sous-dns du serveur Ldap courant
|
|
|
|
|
*
|
|
|
|
|
* @retval mixed Tableau des subDn, false si une erreur est survenue.
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function getSubDnLdapServer() {
|
|
|
|
|
if (self :: cacheSudDn() && isset(self :: $_subDnLdapServer[self :: $ldapServerId])) {
|
|
|
|
|
return self :: $_subDnLdapServer[self :: $ldapServerId];
|
2008-06-18 14:27:35 +02:00
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if (!isset(self :: $ldapServer['subDn'])) {
|
2009-01-02 17:00:25 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if ( !is_array(self :: $ldapServer['subDn']) ) {
|
2009-01-02 17:00:25 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
$return=array();
|
2009-01-24 18:45:14 +01:00
|
|
|
|
foreach(self :: $ldapServer['subDn'] as $subDn_name => $subDn_config) {
|
2009-01-02 17:00:25 +01:00
|
|
|
|
if ($subDn_name == 'LSobject') {
|
|
|
|
|
if (is_array($subDn_config)) {
|
|
|
|
|
foreach($subDn_config as $LSobject_name => $LSoject_config) {
|
2009-01-03 23:00:32 +01:00
|
|
|
|
if ($LSoject_config['basedn']) {
|
|
|
|
|
$basedn = $LSoject_config['basedn'];
|
2009-01-02 17:00:25 +01:00
|
|
|
|
}
|
|
|
|
|
else {
|
2009-01-03 23:00:32 +01:00
|
|
|
|
$basedn = NULL;
|
|
|
|
|
}
|
2009-01-07 20:58:08 +01:00
|
|
|
|
if ($LSoject_config['displayName']) {
|
|
|
|
|
$displayName = $LSoject_config['displayName'];
|
2009-01-03 23:00:32 +01:00
|
|
|
|
}
|
|
|
|
|
else {
|
2009-01-07 20:58:08 +01:00
|
|
|
|
$displayName = NULL;
|
2009-01-02 17:00:25 +01:00
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if( self :: loadLSobject($LSobject_name) ) {
|
2009-01-02 17:00:25 +01:00
|
|
|
|
if ($subdnobject = new $LSobject_name()) {
|
2009-01-07 20:58:08 +01:00
|
|
|
|
$tbl_return = $subdnobject -> getSelectArray(NULL,$basedn,$displayName);
|
2009-01-02 17:00:25 +01:00
|
|
|
|
if (is_array($tbl_return)) {
|
|
|
|
|
$return=array_merge($return,$tbl_return);
|
2008-04-25 15:48:12 +02:00
|
|
|
|
}
|
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
LSerror :: addErrorCode('LSsession_17',3);
|
2008-04-25 15:48:12 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
LSerror :: addErrorCode('LSsession_17',2);
|
2008-04-25 15:48:12 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-02-05 17:11:21 +01:00
|
|
|
|
}
|
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
LSerror :: addErrorCode('LSsession_17',1);
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2009-01-02 17:00:25 +01:00
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if ((isCompatibleDNs($subDn_config['dn'],self :: $ldapServer['ldap_config']['basedn']))&&($subDn_config['dn']!="")) {
|
2009-01-02 17:00:25 +01:00
|
|
|
|
$return[$subDn_config['dn']] = $subDn_name;
|
|
|
|
|
}
|
2008-06-18 14:27:35 +02:00
|
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if (self :: cacheSudDn()) {
|
|
|
|
|
self :: $_subDnLdapServer[self :: $ldapServerId]=$return;
|
|
|
|
|
$_SESSION['LSsession_subDnLdapServer'] = self :: $_subDnLdapServer;
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2009-01-02 17:00:25 +01:00
|
|
|
|
return $return;
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2008-06-18 14:27:35 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Retourne la liste de subDn du serveur Ldap utilise
|
|
|
|
|
* trié par la profondeur dans l'arboressence (ordre décroissant)
|
|
|
|
|
*
|
|
|
|
|
* @return array() Tableau des subDn trié
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function getSortSubDnLdapServer() {
|
|
|
|
|
$subDnLdapServer = self :: getSubDnLdapServer();
|
2008-06-20 17:52:15 +02:00
|
|
|
|
if (!$subDnLdapServer) {
|
|
|
|
|
return array();
|
|
|
|
|
}
|
2008-06-18 14:27:35 +02:00
|
|
|
|
uksort($subDnLdapServer,"compareDn");
|
|
|
|
|
return $subDnLdapServer;
|
|
|
|
|
}
|
2008-02-05 17:11:21 +01:00
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
|
/**
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* Retourne les options d'une liste déroulante pour le choix du topDn
|
2008-02-08 18:39:24 +01:00
|
|
|
|
* de connexion au serveur Ldap
|
|
|
|
|
*
|
2009-01-24 18:45:14 +01:00
|
|
|
|
* Liste les subdn (self :: $ldapServer['subDn'])
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @retval string Les options (<option>) pour la sélection du topDn.
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function getSubDnLdapServerOptions($selected=NULL) {
|
|
|
|
|
$list = self :: getSubDnLdapServer();
|
2008-04-25 15:48:12 +02:00
|
|
|
|
if ($list) {
|
2008-07-19 21:14:57 +02:00
|
|
|
|
asort($list);
|
2008-04-25 15:48:12 +02:00
|
|
|
|
$display='';
|
|
|
|
|
foreach($list as $dn => $txt) {
|
|
|
|
|
if ($selected && ($selected==$dn)) {
|
|
|
|
|
$selected_txt = ' selected';
|
2008-02-05 17:11:21 +01:00
|
|
|
|
}
|
|
|
|
|
else {
|
2008-04-25 15:48:12 +02:00
|
|
|
|
$selected_txt = '';
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2008-04-25 15:48:12 +02:00
|
|
|
|
$display.="<option value=\"".$dn."\"$selected_txt>".$txt."</option>\n";
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2008-04-25 15:48:12 +02:00
|
|
|
|
return $display;
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2008-04-25 15:48:12 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
/**
|
|
|
|
|
* Vérifie qu'un subDn est déclaré
|
|
|
|
|
*
|
|
|
|
|
* @param[in] string Un subDn
|
|
|
|
|
*
|
|
|
|
|
* @retval boolean True si le subDn existe, False sinon
|
|
|
|
|
*/
|
|
|
|
|
public static function validSubDnLdapServer($subDn) {
|
|
|
|
|
$listTopDn = self :: getSubDnLdapServer();
|
2008-04-25 15:48:12 +02:00
|
|
|
|
if(is_array($listTopDn)) {
|
|
|
|
|
foreach($listTopDn as $dn => $txt) {
|
|
|
|
|
if ($subDn==$dn) {
|
|
|
|
|
return true;
|
|
|
|
|
} // end if
|
|
|
|
|
} // end foreach
|
|
|
|
|
} // end if
|
|
|
|
|
return;
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2008-02-05 17:11:21 +01:00
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
|
/**
|
2008-02-08 18:39:24 +01:00
|
|
|
|
* Test un couple LSobject/pwd
|
|
|
|
|
*
|
|
|
|
|
* Test un bind sur le serveur avec le dn de l'objet et le mot de passe fourni.
|
|
|
|
|
*
|
|
|
|
|
* @param[in] LSobject L'object "user" pour l'authentification
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @param[in] string Le mot de passe à tester
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @retval boolean True si l'authentification à réussi, false sinon.
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function checkUserPwd($object,$pwd) {
|
2009-01-25 15:37:03 +01:00
|
|
|
|
return LSldap :: checkBind($object -> getValue('dn'),$pwd);
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2008-02-05 17:11:21 +01:00
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
|
/**
|
2008-02-08 18:39:24 +01:00
|
|
|
|
* Affiche le formulaire de login
|
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* Défini les informations pour le template Smarty du formulaire de login.
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*
|
|
|
|
|
* @retval void
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function displayLoginForm() {
|
2009-02-12 13:38:56 +01:00
|
|
|
|
$GLOBALS['Smarty'] -> assign('pagetitle',_('Connection'));
|
2008-05-14 11:24:47 +02:00
|
|
|
|
if (isset($_GET['LSsession_logout'])) {
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('loginform_action','index.php');
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('loginform_action',$_SERVER['REQUEST_URI']);
|
|
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
|
if (count($GLOBALS['LSconfig']['ldap_servers'])==1) {
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('loginform_ldapserver_style','style="display: none"');
|
|
|
|
|
}
|
2009-02-12 13:38:56 +01:00
|
|
|
|
$GLOBALS['Smarty'] -> assign('loginform_label_ldapserver',_('LDAP server'));
|
2008-02-08 18:39:24 +01:00
|
|
|
|
$ldapservers_name=array();
|
|
|
|
|
$ldapservers_index=array();
|
|
|
|
|
foreach($GLOBALS['LSconfig']['ldap_servers'] as $id => $infos) {
|
|
|
|
|
$ldapservers_index[]=$id;
|
|
|
|
|
$ldapservers_name[]=$infos['name'];
|
|
|
|
|
}
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('loginform_ldapservers_name',$ldapservers_name);
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('loginform_ldapservers_index',$ldapservers_index);
|
|
|
|
|
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('loginform_label_level',_('Niveau'));
|
2009-02-12 13:38:56 +01:00
|
|
|
|
$GLOBALS['Smarty'] -> assign('loginform_label_user',_('Identifier'));
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('loginform_label_pwd',_('Password'));
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('loginform_label_submit',_('Connect'));
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('loginform_label_recoverPassword',_('Forgot your password ?'));
|
2008-06-05 15:21:18 +02:00
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: setTemplate('login.tpl');
|
|
|
|
|
self :: addJSscript('LSsession_login.js');
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2008-02-05 17:11:21 +01:00
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
|
/**
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* Affiche le formulaire de récupération de mot de passe
|
|
|
|
|
*
|
|
|
|
|
* Défini les informations pour le template Smarty du formulaire de
|
|
|
|
|
* récupération de mot de passe
|
|
|
|
|
*
|
|
|
|
|
* @param[in] $infos array() Information sur le status du processus de
|
|
|
|
|
* recouvrement de mot de passe
|
|
|
|
|
*
|
|
|
|
|
* @retval void
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function displayRecoverPasswordForm($recoveryPasswordInfos) {
|
2009-02-12 13:38:56 +01:00
|
|
|
|
$GLOBALS['Smarty'] -> assign('pagetitle',_('Recovery of your credentials'));
|
2008-06-05 15:21:18 +02:00
|
|
|
|
$GLOBALS['Smarty'] -> assign('recoverpasswordform_action','index.php?LSsession_recoverPassword');
|
|
|
|
|
|
|
|
|
|
if (count($GLOBALS['LSconfig']['ldap_servers'])==1) {
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('recoverpasswordform_ldapserver_style','style="display: none"');
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-12 13:38:56 +01:00
|
|
|
|
$GLOBALS['Smarty'] -> assign('recoverpasswordform_label_ldapserver',_('LDAP server'));
|
2008-06-05 15:21:18 +02:00
|
|
|
|
$ldapservers_name=array();
|
|
|
|
|
$ldapservers_index=array();
|
|
|
|
|
foreach($GLOBALS['LSconfig']['ldap_servers'] as $id => $infos) {
|
|
|
|
|
$ldapservers_index[]=$id;
|
|
|
|
|
$ldapservers_name[]=$infos['name'];
|
|
|
|
|
}
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('recoverpasswordform_ldapservers_name',$ldapservers_name);
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('recoverpasswordform_ldapservers_index',$ldapservers_index);
|
|
|
|
|
|
2009-02-12 13:38:56 +01:00
|
|
|
|
$GLOBALS['Smarty'] -> assign('recoverpasswordform_label_user',_('Identifier'));
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('recoverpasswordform_label_submit',_('Valid'));
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('recoverpasswordform_label_back',_('Back'));
|
2008-06-05 15:21:18 +02:00
|
|
|
|
|
2009-02-12 13:38:56 +01:00
|
|
|
|
$recoverpassword_msg = _('Please fill the identifier field to proceed recovery procedure');
|
2008-06-19 16:20:59 +02:00
|
|
|
|
|
2008-06-05 15:21:18 +02:00
|
|
|
|
if (isset($recoveryPasswordInfos['recoveryHashMail'])) {
|
2008-06-19 16:20:59 +02:00
|
|
|
|
$recoverpassword_msg = getFData(
|
2009-02-12 13:38:56 +01:00
|
|
|
|
_("An email has been sent to %{mail}. " .
|
|
|
|
|
"Please follow the instructions on it."),
|
2008-06-19 16:20:59 +02:00
|
|
|
|
$recoveryPasswordInfos['recoveryHashMail']
|
2008-06-05 15:21:18 +02:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (isset($recoveryPasswordInfos['newPasswordMail'])) {
|
2008-06-19 16:20:59 +02:00
|
|
|
|
$recoverpassword_msg = getFData(
|
2009-02-12 13:38:56 +01:00
|
|
|
|
_("Your new password has been sent to %{mail}. "),
|
2008-06-19 16:20:59 +02:00
|
|
|
|
$recoveryPasswordInfos['newPasswordMail']
|
2008-06-05 15:21:18 +02:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2008-06-19 16:20:59 +02:00
|
|
|
|
$GLOBALS['Smarty'] -> assign('recoverpassword_msg',$recoverpassword_msg);
|
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: setTemplate('recoverpassword.tpl');
|
|
|
|
|
self :: addJSscript('LSsession_recoverPassword.js');
|
2008-06-05 15:21:18 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Défini le template Smarty à utiliser
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*
|
|
|
|
|
* Remarque : les fichiers de templates doivent se trouver dans le dossier
|
|
|
|
|
* templates/.
|
|
|
|
|
*
|
|
|
|
|
* @param[in] string Le nom du fichier de template
|
|
|
|
|
*
|
|
|
|
|
* @retval void
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function setTemplate($template) {
|
|
|
|
|
self :: $template = $template;
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2008-02-05 17:11:21 +01:00
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
|
/**
|
2008-02-08 18:39:24 +01:00
|
|
|
|
* Ajoute un script JS au chargement de la page
|
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* Remarque : les scripts doivents être dans le dossier LS_JS_DIR.
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @param[in] $script Le nom du fichier de script à charger.
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*
|
|
|
|
|
* @retval void
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function addJSscript($file,$path=NULL) {
|
2008-07-18 16:02:46 +02:00
|
|
|
|
$script=array(
|
|
|
|
|
'file' => $file,
|
|
|
|
|
'path' => $path
|
|
|
|
|
);
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: $JSscripts[$path.$file]=$script;
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2008-02-05 17:11:21 +01:00
|
|
|
|
|
2008-07-18 16:02:46 +02:00
|
|
|
|
/**
|
|
|
|
|
* Ajouter un paramètre de configuration Javascript
|
|
|
|
|
*
|
|
|
|
|
* @param[in] $name string Nom de la variable de configuration
|
|
|
|
|
* @param[in] $val mixed Valeur de la variable de configuration
|
|
|
|
|
*
|
|
|
|
|
* @retval void
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function addJSconfigParam($name,$val) {
|
|
|
|
|
self :: $_JSconfigParams[$name]=$val;
|
2008-07-18 16:02:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
|
/**
|
2008-02-08 18:39:24 +01:00
|
|
|
|
* Ajoute une feuille de style au chargement de la page
|
|
|
|
|
*
|
2008-10-09 03:31:33 +02:00
|
|
|
|
* Remarque : les scripts doivents être dans le dossier LS_CSS_DIR.
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @param[in] $script Le nom du fichier css à charger.
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*
|
|
|
|
|
* @retval void
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function addCssFile($file,$path=NULL) {
|
2008-07-18 16:02:46 +02:00
|
|
|
|
$cssFile=array(
|
|
|
|
|
'file' => $file,
|
|
|
|
|
'path' => $path
|
|
|
|
|
);
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: $CssFiles[$path.$file]=$cssFile;
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2008-02-05 17:11:21 +01:00
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
|
/**
|
2008-02-08 18:39:24 +01:00
|
|
|
|
* Affiche le template Smarty
|
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* Charge les dépendances et affiche le template Smarty
|
2008-02-08 18:39:24 +01:00
|
|
|
|
*
|
|
|
|
|
* @retval void
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function displayTemplate() {
|
2008-02-08 18:39:24 +01:00
|
|
|
|
// JS
|
|
|
|
|
$JSscript_txt='';
|
|
|
|
|
foreach ($GLOBALS['defaultJSscipts'] as $script) {
|
|
|
|
|
$JSscript_txt.="<script src='".LS_JS_DIR.$script."' type='text/javascript'></script>\n";
|
|
|
|
|
}
|
2008-02-26 18:40:05 +01:00
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
foreach (self :: $JSscripts as $script) {
|
2008-07-18 16:02:46 +02:00
|
|
|
|
if (!$script['path']) {
|
|
|
|
|
$script['path']=LS_JS_DIR;
|
|
|
|
|
}
|
2008-09-26 20:03:56 +02:00
|
|
|
|
else {
|
|
|
|
|
$script['path'].='/';
|
|
|
|
|
}
|
|
|
|
|
$JSscript_txt.="<script src='".$script['path'].$script['file']."' type='text/javascript'></script>\n";
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2008-07-18 16:02:46 +02:00
|
|
|
|
|
2009-02-21 12:42:26 +01:00
|
|
|
|
if (
|
|
|
|
|
(
|
|
|
|
|
(!isset(self :: $ldapServer['keepLSsessionActive']))
|
|
|
|
|
&&
|
|
|
|
|
(
|
|
|
|
|
(!isset($GLOBALS['LSconfig']['keepLSsessionActive']))
|
|
|
|
|
||
|
|
|
|
|
($GLOBALS['LSconfig']['keepLSsessionActive'])
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
||
|
|
|
|
|
(self :: $ldapServer['keepLSsessionActive'])
|
|
|
|
|
) {
|
2009-02-20 15:05:22 +01:00
|
|
|
|
self :: addJSconfigParam('keepLSsessionActive',ini_get('session.gc_maxlifetime'));
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
$GLOBALS['Smarty'] -> assign('LSjsConfig',json_encode(self :: $_JSconfigParams));
|
2008-02-26 18:40:05 +01:00
|
|
|
|
|
|
|
|
|
if ($GLOBALS['LSdebug']['active']) {
|
|
|
|
|
$JSscript_txt.="<script type='text/javascript'>LSdebug_active = 1;</script>\n";
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$JSscript_txt.="<script type='text/javascript'>LSdebug_active = 0;</script>\n";
|
|
|
|
|
}
|
|
|
|
|
|
2008-02-08 18:39:24 +01:00
|
|
|
|
$GLOBALS['Smarty'] -> assign('LSsession_js',$JSscript_txt);
|
|
|
|
|
|
|
|
|
|
// Css
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: addCssFile("LSdefault.css");
|
2009-01-02 17:00:25 +01:00
|
|
|
|
$Css_txt='';
|
2009-01-24 18:45:14 +01:00
|
|
|
|
foreach (self :: $CssFiles as $file) {
|
2008-07-18 16:02:46 +02:00
|
|
|
|
if (!$file['path']) {
|
2008-10-09 03:31:33 +02:00
|
|
|
|
$file['path']=LS_CSS_DIR.'/';
|
2008-07-18 16:02:46 +02:00
|
|
|
|
}
|
|
|
|
|
$Css_txt.="<link rel='stylesheet' type='text/css' href='".$file['path'].$file['file']."' />\n";
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('LSsession_css',$Css_txt);
|
2008-06-21 18:16:15 +02:00
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if (isset(self :: $LSaccess[self :: $topDn])) {
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('LSaccess',self :: $LSaccess[self :: $topDn]);
|
2009-01-02 17:00:25 +01:00
|
|
|
|
}
|
2008-04-25 15:48:12 +02:00
|
|
|
|
|
|
|
|
|
// Niveau
|
2009-01-24 18:45:14 +01:00
|
|
|
|
$listTopDn = self :: getSubDnLdapServer();
|
2008-04-25 15:48:12 +02:00
|
|
|
|
if (is_array($listTopDn)) {
|
2008-07-19 21:14:57 +02:00
|
|
|
|
asort($listTopDn);
|
2009-01-24 18:45:14 +01:00
|
|
|
|
$GLOBALS['Smarty'] -> assign('label_level',self :: getSubDnLabel());
|
2009-02-12 13:38:56 +01:00
|
|
|
|
$GLOBALS['Smarty'] -> assign('_refresh',_('Refresh'));
|
2008-04-25 15:48:12 +02:00
|
|
|
|
$LSsession_topDn_index = array();
|
|
|
|
|
$LSsession_topDn_name = array();
|
|
|
|
|
foreach($listTopDn as $index => $name) {
|
|
|
|
|
$LSsession_topDn_index[] = $index;
|
|
|
|
|
$LSsession_topDn_name[] = $name;
|
|
|
|
|
}
|
2008-06-18 14:27:35 +02:00
|
|
|
|
$GLOBALS['Smarty'] -> assign('LSsession_subDn_indexes',$LSsession_topDn_index);
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('LSsession_subDn_names',$LSsession_topDn_name);
|
2009-01-24 18:45:14 +01:00
|
|
|
|
$GLOBALS['Smarty'] -> assign('LSsession_subDn',self :: $topDn);
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('LSsession_subDnName',self :: getSubDnName());
|
2008-04-25 15:48:12 +02:00
|
|
|
|
}
|
2008-09-09 17:48:07 +02:00
|
|
|
|
|
|
|
|
|
// Infos
|
|
|
|
|
if((!empty($_SESSION['LSsession_infos']))&&(is_array($_SESSION['LSsession_infos']))) {
|
|
|
|
|
$txt_infos="<ul>\n";
|
|
|
|
|
foreach($_SESSION['LSsession_infos'] as $info) {
|
|
|
|
|
$txt_infos.="<li>$info</li>\n";
|
|
|
|
|
}
|
|
|
|
|
$txt_infos.="</ul>\n";
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('LSinfos',$txt_infos);
|
|
|
|
|
$_SESSION['LSsession_infos']=array();
|
|
|
|
|
}
|
2008-04-25 15:48:12 +02:00
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if (self :: $ajaxDisplay) {
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('LSerror_txt',LSerror :: getErrors());
|
2008-09-26 20:03:56 +02:00
|
|
|
|
$GLOBALS['Smarty'] -> assign('LSdebug_txt',LSdebug_print(true));
|
2008-06-18 14:27:35 +02:00
|
|
|
|
}
|
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
LSerror :: display();
|
2008-09-26 20:03:56 +02:00
|
|
|
|
LSdebug_print();
|
2008-06-18 14:27:35 +02:00
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if (!self :: $template)
|
|
|
|
|
self :: setTemplate('empty.tpl');
|
2009-02-17 14:55:07 +01:00
|
|
|
|
|
|
|
|
|
$GLOBALS['Smarty'] -> assign('connected_as',_("Connected as"));
|
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
$GLOBALS['Smarty'] -> display(self :: $template);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Défini que l'affichage se fera ou non via un retour Ajax
|
|
|
|
|
*
|
|
|
|
|
* @param[in] $val boolean True pour que l'affichage se fasse par un retour
|
|
|
|
|
* Ajax, false sinon
|
|
|
|
|
* @retval void
|
|
|
|
|
*/
|
|
|
|
|
public static function setAjaxDisplay($val=true) {
|
|
|
|
|
self :: $ajaxDisplay = (boolean)$val;
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2008-11-10 00:14:51 +01:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Affiche un retour Ajax
|
|
|
|
|
*
|
|
|
|
|
* @retval void
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function displayAjaxReturn($data=array()) {
|
2009-01-21 18:08:09 +01:00
|
|
|
|
if (isset($data['LSredirect']) && (!LSdebugDefined()) ) {
|
|
|
|
|
echo json_encode($data);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
$data['LSjsConfig'] = self :: $_JSconfigParams;
|
2008-11-10 00:14:51 +01:00
|
|
|
|
|
|
|
|
|
// Infos
|
|
|
|
|
if((!empty($_SESSION['LSsession_infos']))&&(is_array($_SESSION['LSsession_infos']))) {
|
|
|
|
|
$txt_infos="<ul>\n";
|
|
|
|
|
foreach($_SESSION['LSsession_infos'] as $info) {
|
|
|
|
|
$txt_infos.="<li>$info</li>\n";
|
|
|
|
|
}
|
|
|
|
|
$txt_infos.="</ul>\n";
|
|
|
|
|
$data['LSinfos'] = $txt_infos;
|
|
|
|
|
$_SESSION['LSsession_infos']=array();
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if (LSerror :: errorsDefined()) {
|
|
|
|
|
$data['LSerror'] = LSerror :: getErrors();
|
2008-11-10 00:14:51 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (isset($_REQUEST['imgload'])) {
|
|
|
|
|
$data['imgload'] = $_REQUEST['imgload'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (LSdebugDefined()) {
|
|
|
|
|
$data['LSdebug'] = LSdebug_print(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
echo json_encode($data);
|
|
|
|
|
}
|
2008-10-15 19:40:04 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Retournne un template Smarty compilé
|
|
|
|
|
*
|
|
|
|
|
* @param[in] string $template Le template à retourner
|
|
|
|
|
* @param[in] array $variables Variables Smarty à assigner avant l'affichage
|
|
|
|
|
*
|
|
|
|
|
* @retval string Le HTML compilé du template
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function fetchTemplate($template,$variables=array()) {
|
2008-10-15 19:40:04 +02:00
|
|
|
|
foreach($variables as $name => $val) {
|
|
|
|
|
$GLOBALS['Smarty'] -> assign($name,$val);
|
|
|
|
|
}
|
|
|
|
|
return $GLOBALS['Smarty'] -> fetch($template);
|
|
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Charge les droits LS de l'utilisateur
|
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @retval boolean True si le chargement à réussi, false sinon.
|
2008-02-08 18:39:24 +01:00
|
|
|
|
**/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
private static function loadLSprofiles() {
|
|
|
|
|
if (is_array(self :: $ldapServer['LSprofiles'])) {
|
|
|
|
|
foreach (self :: $ldapServer['LSprofiles'] as $profile => $profileInfos) {
|
2008-11-12 17:57:40 +01:00
|
|
|
|
if (is_array($profileInfos)) {
|
|
|
|
|
foreach ($profileInfos as $topDn => $rightsInfos) {
|
2009-01-02 17:00:25 +01:00
|
|
|
|
/*
|
|
|
|
|
* If $topDn == 'LSobject', we search for each LSobject type to find
|
|
|
|
|
* all items on witch the user will have powers.
|
|
|
|
|
*/
|
2008-11-12 17:57:40 +01:00
|
|
|
|
if ($topDn == 'LSobjects') {
|
|
|
|
|
if (is_array($rightsInfos)) {
|
|
|
|
|
foreach ($rightsInfos as $LSobject => $listInfos) {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if (self :: loadLSobject($LSobject)) {
|
2008-11-12 17:57:40 +01:00
|
|
|
|
if ($object = new $LSobject()) {
|
|
|
|
|
if ($listInfos['filter']) {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
$filter = self :: getLSuserObject() -> getFData($listInfos['filter']);
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2008-11-12 17:57:40 +01:00
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
$filter = $listInfos['attr'].'='.self :: getLSuserObject() -> getFData($listInfos['attr_value']);
|
2008-11-12 17:57:40 +01:00
|
|
|
|
}
|
|
|
|
|
$list = $object -> search($filter,$listInfos['basedn'],$listInfos['params']);
|
|
|
|
|
foreach($list as $obj) {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: $LSprofiles[$profile][] = $obj['dn'];
|
2008-11-12 17:57:40 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
LSdebug('Impossible de créer l\'objet de type : '.$LSobject);
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
2008-11-12 17:57:40 +01:00
|
|
|
|
LSdebug('LSobjects => [] doit etre un tableau');
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
2008-11-12 17:57:40 +01:00
|
|
|
|
if (is_array($rightsInfos)) {
|
|
|
|
|
foreach($rightsInfos as $dn => $conf) {
|
|
|
|
|
if ((isset($conf['attr'])) && (isset($conf['LSobject']))) {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if( self :: loadLSobject($conf['LSobject']) ) {
|
2008-11-12 17:57:40 +01:00
|
|
|
|
if ($object = new $conf['LSobject']()) {
|
|
|
|
|
if ($object -> loadData($dn)) {
|
|
|
|
|
$listDns=$object -> getValue($conf['attr']);
|
2008-12-06 01:27:18 +01:00
|
|
|
|
$valKey = (isset($conf['attr_value']))?$conf['attr_value']:'%{dn}';
|
2009-01-24 18:45:14 +01:00
|
|
|
|
$val = self :: getLSuserObject() -> getFData($valKey);
|
2008-11-12 17:57:40 +01:00
|
|
|
|
if (is_array($listDns)) {
|
2008-12-05 15:38:42 +01:00
|
|
|
|
if (in_array($val,$listDns)) {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: $LSprofiles[$profile][] = $topDn;
|
2008-11-12 17:57:40 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
LSdebug('Impossible de chargé le dn : '.$dn);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
LSdebug('Impossible de créer l\'objet de type : '.$conf['LSobject']);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if (self :: $dn == $dn) {
|
|
|
|
|
self :: $LSprofiles[$profile][] = $topDn;
|
2008-11-12 17:57:40 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2008-11-12 17:57:40 +01:00
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if ( self :: $dn == $rightsInfos ) {
|
|
|
|
|
self :: $LSprofiles[$profile][] = $topDn;
|
2008-11-12 17:57:40 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} // fin else ($topDn == 'LSobjects')
|
|
|
|
|
} // fin foreach($profileInfos)
|
|
|
|
|
} // fin is_array($profileInfos)
|
2009-01-02 17:00:25 +01:00
|
|
|
|
} // fin foreach LSprofiles
|
2009-01-24 18:45:14 +01:00
|
|
|
|
LSdebug(self :: $LSprofiles);
|
2008-02-08 18:39:24 +01:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-02-12 18:59:44 +01:00
|
|
|
|
/**
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* Charge les droits d'accès de l'utilisateur pour construire le menu de l'interface
|
2008-02-12 18:59:44 +01:00
|
|
|
|
*
|
|
|
|
|
* @retval void
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
private static function loadLSaccess() {
|
2008-06-21 18:16:15 +02:00
|
|
|
|
$LSaccess=array();
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if (is_array(self :: $ldapServer['subDn'])) {
|
|
|
|
|
foreach(self :: $ldapServer['subDn'] as $name => $config) {
|
2008-06-21 18:16:15 +02:00
|
|
|
|
if ($name=='LSobject') {
|
|
|
|
|
if (is_array($config)) {
|
|
|
|
|
|
|
|
|
|
// Définition des subDns
|
|
|
|
|
foreach($config as $objectType => $objectConf) {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if (self :: loadLSobject($objectType)) {
|
2008-06-21 18:16:15 +02:00
|
|
|
|
if ($subdnobject = new $objectType()) {
|
|
|
|
|
$tbl = $subdnobject -> getSelectArray();
|
|
|
|
|
if (is_array($tbl)) {
|
|
|
|
|
// Définition des accès
|
|
|
|
|
$access=array();
|
|
|
|
|
if (is_array($objectConf['LSobjects'])) {
|
|
|
|
|
foreach($objectConf['LSobjects'] as $type) {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if (self :: loadLSobject($type)) {
|
|
|
|
|
if (self :: canAccess($type)) {
|
2008-06-21 18:16:15 +02:00
|
|
|
|
$access[$type] = $GLOBALS['LSobjects'][$type]['label'];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
foreach($tbl as $dn => $dn_name) {
|
|
|
|
|
$LSaccess[$dn]=$access;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if ((isCompatibleDNs(self :: $ldapServer['ldap_config']['basedn'],$config['dn']))&&($config['dn']!='')) {
|
2008-06-21 18:16:15 +02:00
|
|
|
|
$access=array();
|
|
|
|
|
if (is_array($config['LSobjects'])) {
|
|
|
|
|
foreach($config['LSobjects'] as $objectType) {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if (self :: loadLSobject($objectType)) {
|
|
|
|
|
if (self :: canAccess($objectType)) {
|
2008-06-21 18:16:15 +02:00
|
|
|
|
$access[$objectType] = $GLOBALS['LSobjects'][$objectType]['label'];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$LSaccess[$config['dn']]=$access;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-02-12 18:59:44 +01:00
|
|
|
|
}
|
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if(is_array(self :: $ldapServer['LSaccess'])) {
|
2008-06-21 18:16:15 +02:00
|
|
|
|
$access=array();
|
2009-01-24 18:45:14 +01:00
|
|
|
|
foreach(self :: $ldapServer['LSaccess'] as $objectType) {
|
|
|
|
|
if (self :: loadLSobject($objectType)) {
|
|
|
|
|
if (self :: canAccess($objectType)) {
|
2008-06-21 18:16:15 +02:00
|
|
|
|
$access[$objectType] = $GLOBALS['LSobjects'][$objectType]['label'];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
|
$LSaccess[self :: $topDn] = $access;
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2008-06-21 18:16:15 +02:00
|
|
|
|
foreach($LSaccess as $dn => $access) {
|
|
|
|
|
$LSaccess[$dn] = array_merge(
|
|
|
|
|
array(
|
2009-02-12 13:38:56 +01:00
|
|
|
|
'SELF' => _('My account')
|
2008-06-21 18:16:15 +02:00
|
|
|
|
),
|
|
|
|
|
$access
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: $LSaccess = $LSaccess;
|
2008-06-21 18:16:15 +02:00
|
|
|
|
$_SESSION['LSsession']['LSaccess'] = $LSaccess;
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
2008-02-12 18:59:44 +01:00
|
|
|
|
/**
|
2008-11-12 17:57:40 +01:00
|
|
|
|
* Dit si l'utilisateur est du profil pour le DN spécifié
|
2008-02-12 18:59:44 +01:00
|
|
|
|
*
|
2008-11-12 17:57:40 +01:00
|
|
|
|
* @param[in] string $profile de l'objet
|
|
|
|
|
* @param[in] string $dn DN de l'objet
|
2008-02-12 18:59:44 +01:00
|
|
|
|
*
|
2008-11-12 17:57:40 +01:00
|
|
|
|
* @retval boolean True si l'utilisateur est du profil sur l'objet, false sinon.
|
2008-02-12 18:59:44 +01:00
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function isLSprofile($dn,$profile) {
|
|
|
|
|
if (is_array(self :: $LSprofiles[$profile])) {
|
|
|
|
|
foreach(self :: $LSprofiles[$profile] as $topDn) {
|
2008-11-12 17:57:40 +01:00
|
|
|
|
if($dn == $topDn) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else if ( isCompatibleDNs($dn,$topDn) ) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2008-02-12 18:59:44 +01:00
|
|
|
|
/**
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* Retourne qui est l'utilisateur par rapport à l'object
|
2008-02-12 18:59:44 +01:00
|
|
|
|
*
|
|
|
|
|
* @param[in] string Le DN de l'objet
|
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @retval string 'admin'/'self'/'user' pour Admin , l'utilisateur lui même ou un simple utilisateur
|
2008-02-12 18:59:44 +01:00
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function whoami($dn) {
|
2008-11-12 17:57:40 +01:00
|
|
|
|
$retval = array('user');
|
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
foreach(self :: $LSprofiles as $profile => $infos) {
|
|
|
|
|
if(self :: isLSprofile($dn,$profile)) {
|
2008-11-12 17:57:40 +01:00
|
|
|
|
$retval[]=$profile;
|
|
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if (self :: $dn == $dn) {
|
2008-11-12 17:57:40 +01:00
|
|
|
|
$retval[]='self';
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
2008-11-12 17:57:40 +01:00
|
|
|
|
return $retval;
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
2008-02-12 18:59:44 +01:00
|
|
|
|
/**
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* Retourne le droit de l'utilisateur à accèder à un objet
|
2008-02-12 18:59:44 +01:00
|
|
|
|
*
|
|
|
|
|
* @param[in] string $LSobject Le type de l'objet
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @param[in] string $dn Le DN de l'objet (le container_dn du type de l'objet par défaut)
|
|
|
|
|
* @param[in] string $right Le type de droit d'accès à tester ('r'/'w')
|
|
|
|
|
* @param[in] string $attr Le nom de l'attribut auquel on test l'accès
|
2008-02-12 18:59:44 +01:00
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @retval boolean True si l'utilisateur a accès, false sinon
|
2008-02-12 18:59:44 +01:00
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function canAccess($LSobject,$dn=NULL,$right=NULL,$attr=NULL) {
|
|
|
|
|
if (!self :: loadLSobject($LSobject)) {
|
2008-02-08 18:39:24 +01:00
|
|
|
|
return;
|
2008-06-21 18:16:15 +02:00
|
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
|
if ($dn) {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
$whoami = self :: whoami($dn);
|
|
|
|
|
if ($dn==self :: getLSuserObject() -> getValue('dn')) {
|
|
|
|
|
if (!self :: in_menu('SELF')) {
|
2008-06-21 18:16:15 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$obj = new $LSobject();
|
|
|
|
|
$obj -> dn = $dn;
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if (!self :: in_menu($LSobject,$obj -> getSubDnValue())) {
|
2008-06-21 18:16:15 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
$objectdn=$GLOBALS['LSobjects'][$LSobject]['container_dn'].','.self :: $topDn;
|
|
|
|
|
$whoami = self :: whoami($objectdn);
|
2008-02-12 18:59:44 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Pour un attribut particulier
|
|
|
|
|
if ($attr) {
|
|
|
|
|
if ($attr=='rdn') {
|
|
|
|
|
$attr=$GLOBALS['LSobjects'][$LSobject]['rdn'];
|
|
|
|
|
}
|
|
|
|
|
if (!isset($GLOBALS['LSobjects'][$LSobject]['attrs'][$attr])) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2008-11-12 17:57:40 +01:00
|
|
|
|
|
|
|
|
|
$r = 'n';
|
|
|
|
|
foreach($whoami as $who) {
|
|
|
|
|
$nr = $GLOBALS['LSobjects'][$LSobject]['attrs'][$attr]['rights'][$who];
|
|
|
|
|
if($nr == 'w') {
|
|
|
|
|
$r = 'w';
|
|
|
|
|
}
|
|
|
|
|
else if($nr == 'r') {
|
|
|
|
|
if ($r=='n') {
|
|
|
|
|
$r='r';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-02-12 18:59:44 +01:00
|
|
|
|
|
|
|
|
|
if (($right=='r')||($right=='w')) {
|
2008-11-12 17:57:40 +01:00
|
|
|
|
if ($r==$right) {
|
2008-02-12 18:59:44 +01:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else {
|
2008-11-12 17:57:40 +01:00
|
|
|
|
if ( ($r=='r') || ($r=='w') ) {
|
2008-02-12 18:59:44 +01:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2008-02-12 18:59:44 +01:00
|
|
|
|
|
|
|
|
|
// Pour un attribut quelconque
|
2008-02-08 18:39:24 +01:00
|
|
|
|
if (is_array($GLOBALS['LSobjects'][$LSobject]['attrs'])) {
|
|
|
|
|
if (($right=='r')||($right=='w')) {
|
2008-11-12 17:57:40 +01:00
|
|
|
|
foreach($whoami as $who) {
|
|
|
|
|
foreach ($GLOBALS['LSobjects'][$LSobject]['attrs'] as $attr_name => $attr_config) {
|
|
|
|
|
if ($attr_config['rights'][$who]==$right) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
2008-11-12 17:57:40 +01:00
|
|
|
|
foreach($whoami as $who) {
|
|
|
|
|
foreach ($GLOBALS['LSobjects'][$LSobject]['attrs'] as $attr_name => $attr_config) {
|
|
|
|
|
if ( ($attr_config['rights'][$who]=='r') || ($attr_config['rights'][$who]=='w') ) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2008-02-12 18:59:44 +01:00
|
|
|
|
/**
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* Retourne le droit de l'utilisateur à editer à un objet
|
2008-02-12 18:59:44 +01:00
|
|
|
|
*
|
|
|
|
|
* @param[in] string $LSobject Le type de l'objet
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @param[in] string $dn Le DN de l'objet (le container_dn du type de l'objet par défaut)
|
|
|
|
|
* @param[in] string $attr Le nom de l'attribut auquel on test l'accès
|
2008-02-12 18:59:44 +01:00
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @retval boolean True si l'utilisateur a accès, false sinon
|
2008-02-12 18:59:44 +01:00
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function canEdit($LSobject,$dn=NULL,$attr=NULL) {
|
|
|
|
|
return self :: canAccess($LSobject,$dn,'w',$attr);
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2008-02-12 18:59:44 +01:00
|
|
|
|
|
|
|
|
|
/**
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* Retourne le droit de l'utilisateur à supprimer un objet
|
2008-02-12 18:59:44 +01:00
|
|
|
|
*
|
|
|
|
|
* @param[in] string $LSobject Le type de l'objet
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @param[in] string $dn Le DN de l'objet (le container_dn du type de l'objet par défaut)
|
2008-02-12 18:59:44 +01:00
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @retval boolean True si l'utilisateur a accès, false sinon
|
2008-02-12 18:59:44 +01:00
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function canRemove($LSobject,$dn) {
|
|
|
|
|
return self :: canAccess($LSobject,$dn,'w','rdn');
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
2008-02-12 18:59:44 +01:00
|
|
|
|
/**
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* Retourne le droit de l'utilisateur à créer un objet
|
2008-02-12 18:59:44 +01:00
|
|
|
|
*
|
|
|
|
|
* @param[in] string $LSobject Le type de l'objet
|
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @retval boolean True si l'utilisateur a accès, false sinon
|
2008-02-12 18:59:44 +01:00
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function canCreate($LSobject) {
|
|
|
|
|
return self :: canAccess($LSobject,NULL,'w','rdn');
|
2008-02-08 18:39:24 +01:00
|
|
|
|
}
|
2008-02-26 18:40:05 +01:00
|
|
|
|
|
|
|
|
|
/**
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* Retourne le droit de l'utilisateur à gérer la relation d'objet
|
2008-02-26 18:40:05 +01:00
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @param[in] string $dn Le DN de l'objet (le container_dn du type de l'objet par défaut)
|
2008-10-08 16:50:48 +02:00
|
|
|
|
* @param[in] string $LSobject Le type de l'objet
|
2008-02-26 18:40:05 +01:00
|
|
|
|
* @param[in] string $relationName Le nom de la relation avec l'objet
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @param[in] string $right Le type de droit a vérifier ('r' ou 'w')
|
2008-02-26 18:40:05 +01:00
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @retval boolean True si l'utilisateur a accès, false sinon
|
2008-02-26 18:40:05 +01:00
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function relationCanAccess($dn,$LSobject,$relationName,$right=NULL) {
|
2009-01-08 00:06:05 +01:00
|
|
|
|
if (!isset($GLOBALS['LSobjects'][$LSobject]['LSrelation'][$relationName]))
|
2008-02-26 18:40:05 +01:00
|
|
|
|
return;
|
2009-01-24 18:45:14 +01:00
|
|
|
|
$whoami = self :: whoami($dn);
|
2008-04-25 15:48:12 +02:00
|
|
|
|
|
2008-02-26 18:40:05 +01:00
|
|
|
|
if (($right=='w') || ($right=='r')) {
|
2008-11-12 17:57:40 +01:00
|
|
|
|
$r = 'n';
|
|
|
|
|
foreach($whoami as $who) {
|
2009-01-08 00:06:05 +01:00
|
|
|
|
$nr = $GLOBALS['LSobjects'][$LSobject]['LSrelation'][$relationName]['rights'][$who];
|
2008-11-12 17:57:40 +01:00
|
|
|
|
if($nr == 'w') {
|
|
|
|
|
$r = 'w';
|
|
|
|
|
}
|
|
|
|
|
else if($nr == 'r') {
|
|
|
|
|
if ($r=='n') {
|
|
|
|
|
$r='r';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($r == $right) {
|
2008-02-26 18:40:05 +01:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
2008-11-12 17:57:40 +01:00
|
|
|
|
foreach($whoami as $who) {
|
2009-01-08 00:06:05 +01:00
|
|
|
|
if (($GLOBALS['LSobjects'][$LSobject]['LSrelation'][$relationName]['rights'][$who] == 'w') || ($GLOBALS['LSobjects'][$LSobject]['LSrelation'][$relationName]['rights'][$who] == 'r')) {
|
2008-11-12 17:57:40 +01:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2008-02-26 18:40:05 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* Retourne le droit de l'utilisateur à modifier la relation d'objet
|
2008-02-26 18:40:05 +01:00
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @param[in] string $dn Le DN de l'objet (le container_dn du type de l'objet par défaut)
|
2008-10-08 16:50:48 +02:00
|
|
|
|
* @param[in] string $LSobject Le type de l'objet
|
2008-02-26 18:40:05 +01:00
|
|
|
|
* @param[in] string $relationName Le nom de la relation avec l'objet
|
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* @retval boolean True si l'utilisateur a accès, false sinon
|
2008-02-26 18:40:05 +01:00
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function relationCanEdit($dn,$LSobject,$relationName) {
|
|
|
|
|
return self :: relationCanAccess($dn,$LSobject,$relationName,'w');
|
2008-02-26 18:40:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
|
/**
|
2008-02-26 18:40:05 +01:00
|
|
|
|
* Ajoute un fichier temporaire
|
|
|
|
|
*
|
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
|
*
|
|
|
|
|
* @retval void
|
|
|
|
|
**/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function addTmpFile($value,$filePath) {
|
2008-02-26 18:40:05 +01:00
|
|
|
|
$hash = mhash(MHASH_MD5,$value);
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: $tmp_file[$filePath] = $hash;
|
2008-02-26 18:40:05 +01:00
|
|
|
|
$_SESSION['LSsession']['tmp_file'][$filePath] = $hash;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Retourne le chemin du fichier temporaire si l'existe
|
|
|
|
|
*
|
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
|
*
|
|
|
|
|
* @param[in] $value La valeur du fichier
|
|
|
|
|
*
|
|
|
|
|
* @retval mixed
|
|
|
|
|
**/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function tmpFileExist($value) {
|
2008-02-26 18:40:05 +01:00
|
|
|
|
$hash = mhash(MHASH_MD5,$value);
|
2009-01-24 18:45:14 +01:00
|
|
|
|
foreach(self :: $tmp_file as $filePath => $contentHash) {
|
2008-02-26 18:40:05 +01:00
|
|
|
|
if ($hash == $contentHash) {
|
|
|
|
|
return $filePath;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Retourne le chemin du fichier temporaire
|
|
|
|
|
*
|
2008-06-05 15:21:18 +02:00
|
|
|
|
* Retourne le chemin du fichier temporaire qu'il créera à partir de la valeur
|
|
|
|
|
* s'il n'existe pas déjà .
|
2008-02-26 18:40:05 +01:00
|
|
|
|
*
|
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
|
*
|
|
|
|
|
* @param[in] $value La valeur du fichier
|
|
|
|
|
*
|
|
|
|
|
* @retval mixed
|
|
|
|
|
**/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function getTmpFile($value) {
|
|
|
|
|
$exist = self :: tmpFileExist($value);
|
2008-02-26 18:40:05 +01:00
|
|
|
|
if (!$exist) {
|
|
|
|
|
$img_path = LS_TMP_DIR .rand().'.tmp';
|
|
|
|
|
$fp = fopen($img_path, "w");
|
|
|
|
|
fwrite($fp, $value);
|
|
|
|
|
fclose($fp);
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: addTmpFile($value,$img_path);
|
2008-02-26 18:40:05 +01:00
|
|
|
|
return $img_path;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
return $exist;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-05-15 12:56:55 +02:00
|
|
|
|
/**
|
2008-02-26 18:40:05 +01:00
|
|
|
|
* Supprime les fichiers temporaires
|
|
|
|
|
*
|
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
|
*
|
|
|
|
|
* @retval void
|
|
|
|
|
**/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function deleteTmpFile($filePath=NULL) {
|
2008-02-26 18:40:05 +01:00
|
|
|
|
if ($filePath) {
|
|
|
|
|
@unlink($filePath);
|
2009-01-24 18:45:14 +01:00
|
|
|
|
unset(self :: $tmp_file[$filePath]);
|
2008-02-26 18:40:05 +01:00
|
|
|
|
unset($_SESSION['LSsession']['tmp_file'][$filePath]);
|
|
|
|
|
}
|
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
foreach(self :: $tmp_file as $file => $content) {
|
2008-02-26 18:40:05 +01:00
|
|
|
|
@unlink($file);
|
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: $tmp_file = array();
|
2008-02-26 18:40:05 +01:00
|
|
|
|
$_SESSION['LSsession']['tmp_file'] = array();
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-02-12 18:59:44 +01:00
|
|
|
|
|
2008-06-18 14:27:35 +02:00
|
|
|
|
/**
|
|
|
|
|
* Retourne true si le cache des droits est activé
|
|
|
|
|
*
|
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
|
*
|
|
|
|
|
* @retval boolean True si le cache des droits est activé, false sinon.
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function cacheLSprofiles() {
|
|
|
|
|
return ( ($GLOBALS['LSconfig']['cacheLSprofiles']) || (self :: $ldapServer['cacheLSprofiles']) );
|
2008-06-18 14:27:35 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Retourne true si le cache des subDn est activé
|
|
|
|
|
*
|
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
|
*
|
|
|
|
|
* @retval boolean True si le cache des subDn est activé, false sinon.
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function cacheSudDn() {
|
|
|
|
|
return (($GLOBALS['LSconfig']['cacheSubDn']) || (self :: $ldapServer['cacheSubDn']));
|
2008-06-18 14:27:35 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Retourne true si le cache des recherches est activé
|
|
|
|
|
*
|
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
|
*
|
|
|
|
|
* @retval boolean True si le cache des recherches est activé, false sinon.
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function cacheSearch() {
|
|
|
|
|
return (($GLOBALS['LSconfig']['cacheSearch']) || (self :: $ldapServer['cacheSearch']));
|
2008-06-18 14:27:35 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Retourne le label des niveaux pour le serveur ldap courant
|
|
|
|
|
*
|
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
|
*
|
|
|
|
|
* @retval string Le label des niveaux pour le serveur ldap dourant
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function getSubDnLabel() {
|
2009-02-12 13:38:56 +01:00
|
|
|
|
return (self :: $ldapServer['subDnLabel']!='')?self :: $ldapServer['subDnLabel']:_('Level');
|
2008-06-18 14:27:35 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Retourne le nom du subDn
|
|
|
|
|
*
|
|
|
|
|
* @param[in] $subDn string subDn
|
|
|
|
|
*
|
2008-06-21 18:16:15 +02:00
|
|
|
|
* @retval string Le nom du subDn ou '' sinon
|
2008-06-18 14:27:35 +02:00
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function getSubDnName($subDn=false) {
|
2008-06-18 14:27:35 +02:00
|
|
|
|
if (!$subDn) {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
$subDn = self :: $topDn;
|
2008-06-18 14:27:35 +02:00
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if (self :: getSubDnLdapServer()) {
|
|
|
|
|
if (isset(self :: $_subDnLdapServer[self :: $ldapServerId][$subDn])) {
|
|
|
|
|
return self :: $_subDnLdapServer[self :: $ldapServerId][$subDn];
|
2008-06-18 14:27:35 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
|
2008-06-20 17:52:15 +02:00
|
|
|
|
/**
|
|
|
|
|
* L'objet est t-il utilisé pour listé les subDnS
|
|
|
|
|
*
|
|
|
|
|
* @param[in] $type string Le type d'objet
|
|
|
|
|
*
|
2008-06-21 18:16:15 +02:00
|
|
|
|
* @retval boolean true si le type d'objet est un subDnObject, false sinon
|
2008-06-20 17:52:15 +02:00
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function isSubDnLSobject($type) {
|
2008-06-20 17:52:15 +02:00
|
|
|
|
$result = false;
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if (is_array(self :: $ldapServer['subDn']['LSobject'])) {
|
|
|
|
|
foreach(self :: $ldapServer['subDn']['LSobject'] as $key => $value) {
|
2008-06-20 17:52:15 +02:00
|
|
|
|
if ($key==$type) {
|
|
|
|
|
$result=true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
2008-06-21 18:16:15 +02:00
|
|
|
|
|
|
|
|
|
/**
|
2008-07-05 22:28:49 +02:00
|
|
|
|
* Indique si un type d'objet est dans le menu courant
|
2008-06-21 18:16:15 +02:00
|
|
|
|
*
|
|
|
|
|
* @retval boolean true si le type d'objet est dans le menu, false sinon
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function in_menu($LSobject,$topDn=NULL) {
|
2008-06-21 18:16:15 +02:00
|
|
|
|
if (!$topDn) {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
$topDn=self :: $topDn;
|
2008-06-21 18:16:15 +02:00
|
|
|
|
}
|
2009-01-24 18:45:14 +01:00
|
|
|
|
return isset(self :: $LSaccess[$topDn][$LSobject]);
|
2008-06-21 18:16:15 +02:00
|
|
|
|
}
|
2008-07-05 22:28:49 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Indique si le serveur LDAP courant a des subDn
|
|
|
|
|
*
|
|
|
|
|
* @retval boolean true si le serveur LDAP courant a des subDn, false sinon
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function haveSubDn() {
|
|
|
|
|
return (is_array(self :: $ldapServer['subDn']));
|
2008-07-05 22:28:49 +02:00
|
|
|
|
}
|
2008-09-09 17:48:07 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Ajoute une information à afficher
|
|
|
|
|
*
|
|
|
|
|
* @param[in] $msg string Le message à afficher
|
|
|
|
|
*
|
|
|
|
|
* @retval void
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function addInfo($msg) {
|
2008-09-09 17:48:07 +02:00
|
|
|
|
$_SESSION['LSsession_infos'][]=$msg;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Redirection de l'utilisateur vers une autre URL
|
|
|
|
|
*
|
|
|
|
|
* @param[in] $url string L'URL
|
|
|
|
|
* @param[in] $exit boolean Si true, l'execution script s'arrête après la redirection
|
|
|
|
|
*
|
|
|
|
|
* @retval void
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function redirect($url,$exit=true) {
|
2008-09-09 17:48:07 +02:00
|
|
|
|
$GLOBALS['Smarty'] -> assign('url',$url);
|
|
|
|
|
$GLOBALS['Smarty'] -> display('redirect.tpl');
|
|
|
|
|
if ($exit) {
|
|
|
|
|
exit();
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-09-25 17:15:33 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Retourne l'adresse mail d'emission configurée pour le serveur courant
|
|
|
|
|
*
|
|
|
|
|
* @retval string Adresse mail d'emission
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function getEmailSender() {
|
|
|
|
|
return self :: $ldapServer['emailSender'];
|
2008-09-25 17:15:33 +02:00
|
|
|
|
}
|
2008-11-10 03:10:42 +01:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Ajout d'une information d'aide
|
|
|
|
|
*
|
|
|
|
|
* @param[in] $group string Le nom du groupe d'infos dans lequels ajouter
|
|
|
|
|
* celle-ci
|
|
|
|
|
* @param[in] $infos array Tableau array(name => value) des infos
|
|
|
|
|
*
|
|
|
|
|
* @retval void
|
|
|
|
|
*/
|
2009-01-24 18:45:14 +01:00
|
|
|
|
public static function addHelpInfos($group,$infos) {
|
2008-11-10 03:10:42 +01:00
|
|
|
|
if (is_array($infos)) {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
if (is_array(self :: $_JSconfigParams['helpInfos'][$group])) {
|
|
|
|
|
self :: $_JSconfigParams['helpInfos'][$group] = array_merge(self :: $_JSconfigParams['helpInfos'][$group],$infos);
|
2008-11-10 03:10:42 +01:00
|
|
|
|
}
|
|
|
|
|
else {
|
2009-01-24 18:45:14 +01:00
|
|
|
|
self :: $_JSconfigParams['helpInfos'][$group] = $infos;
|
2008-11-10 03:10:42 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-01-25 15:37:03 +01:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Défini les codes erreur relative à la classe LSsession
|
|
|
|
|
*
|
|
|
|
|
* @retval void
|
|
|
|
|
*/
|
|
|
|
|
private static function defineLSerrors() {
|
|
|
|
|
/*
|
|
|
|
|
* Error Codes
|
|
|
|
|
*/
|
|
|
|
|
LSerror :: defineError('LSsession_01',
|
|
|
|
|
_("LSsession : The constant %{const} is not defined.")
|
|
|
|
|
);
|
|
|
|
|
LSerror :: defineError('LSsession_02',
|
|
|
|
|
_("LSsession : The %{addon} support is uncertain. Verify system compatibility and the add-on configuration.")
|
|
|
|
|
);
|
|
|
|
|
LSerror :: defineError('LSsession_03',
|
|
|
|
|
_("LSsession : LDAP server's configuration data are invalid. Impossible d'établir une connexion.")
|
|
|
|
|
);
|
|
|
|
|
LSerror :: defineError('LSsession_04',
|
|
|
|
|
_("LSsession : Failed to load LSobject type %{type} : unknon type.")
|
|
|
|
|
);
|
|
|
|
|
// no longer used
|
|
|
|
|
/*LSerror :: defineError(1005,
|
|
|
|
|
_("LSsession : Object type use for authentication is unknow (%{type}).")
|
|
|
|
|
);*/
|
|
|
|
|
LSerror :: defineError('LSsession_06',
|
|
|
|
|
_("LSsession : Login or password incorrect.")
|
|
|
|
|
);
|
|
|
|
|
LSerror :: defineError('LSsession_07',
|
|
|
|
|
_("LSsession : Impossible to identify you : Duplication of identities.")
|
|
|
|
|
);
|
|
|
|
|
LSerror :: defineError('LSsession_08',
|
|
|
|
|
_("LSsession : Can't load Smarty template engine.")
|
|
|
|
|
);
|
|
|
|
|
LSerror :: defineError('LSsession_09',
|
|
|
|
|
_("LSsession : Can't connect to LDAP server.")
|
|
|
|
|
);
|
|
|
|
|
LSerror :: defineError('LSsession_10',
|
|
|
|
|
_("LSsession : Impossible to load authentification objects's class.")
|
|
|
|
|
);
|
|
|
|
|
LSerror :: defineError('LSsession_11',
|
|
|
|
|
_("LSsession : Your are not authorized to do this action.")
|
|
|
|
|
);
|
|
|
|
|
LSerror :: defineError('LSsession_12',
|
|
|
|
|
_("LSsession : Some informations are missing to display this page.")
|
|
|
|
|
);
|
|
|
|
|
// 13 -> 16 : not yet used
|
|
|
|
|
LSerror :: defineError('LSsession_17',
|
|
|
|
|
_("LSsession : Error during creation of list of levels. Contact administrators. (Code : %{code})")
|
|
|
|
|
);
|
|
|
|
|
LSerror :: defineError('LSsession_18',
|
|
|
|
|
_("LSsession : The password recovery is disabled for this LDAP server.")
|
|
|
|
|
);
|
|
|
|
|
LSerror :: defineError('LSsession_19',
|
|
|
|
|
_("LSsession : Some informations are missing to recover your password. Contact administrators.")
|
|
|
|
|
);
|
|
|
|
|
LSerror :: defineError('LSsession_20',
|
|
|
|
|
_("LSsession : Error during password recovery. Contact administrators.(Step : %{step})")
|
|
|
|
|
);
|
|
|
|
|
// 21 : not yet used
|
|
|
|
|
LSerror :: defineError('LSsession_22',
|
|
|
|
|
_("LSsession : problem during initialisation.")
|
|
|
|
|
);
|
2008-02-05 17:11:21 +01:00
|
|
|
|
|
2009-01-02 17:00:25 +01:00
|
|
|
|
|
2009-01-25 15:37:03 +01:00
|
|
|
|
// LSrelations
|
|
|
|
|
LSerror :: defineError('LSrelations_01',
|
|
|
|
|
_("LSrelations : The listing function for the relation %{relation} is unknow.")
|
|
|
|
|
);
|
|
|
|
|
LSerror :: defineError('LSrelations_02',
|
|
|
|
|
_("LSrelations : The update function of the relation %{relation} is unknow.")
|
|
|
|
|
);
|
|
|
|
|
LSerror :: defineError('LSrelations_03',
|
|
|
|
|
_("LSrelations : Error during relation update of the relation %{relation}.")
|
|
|
|
|
);
|
|
|
|
|
LSerror :: defineError('LSrelations_04',
|
|
|
|
|
_("LSrelations : Object type %{LSobject} unknow (Relation : %{relation}).")
|
|
|
|
|
);
|
|
|
|
|
LSerror :: defineError('LSrelations_05',
|
|
|
|
|
_("LSrelation : Some parameters are missing in the invocation of the methods of handling relations standard (Methode : %{meth}).")
|
|
|
|
|
);
|
|
|
|
|
}
|
2009-02-20 15:05:22 +01:00
|
|
|
|
|
|
|
|
|
public static function ajax_onLdapServerChangedLogin(&$data) {
|
|
|
|
|
if ( isset($_REQUEST['server']) ) {
|
|
|
|
|
self :: setLdapServer($_REQUEST['server']);
|
|
|
|
|
$data = array();
|
|
|
|
|
if ( self :: LSldapConnect() ) {
|
|
|
|
|
session_start();
|
|
|
|
|
if (isset($_SESSION['LSsession_topDn'])) {
|
|
|
|
|
$sel = $_SESSION['LSsession_topDn'];
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$sel = NULL;
|
|
|
|
|
}
|
|
|
|
|
$list = self :: getSubDnLdapServerOptions($sel);
|
|
|
|
|
if (is_string($list)) {
|
|
|
|
|
$data['list_topDn'] = "<select name='LSsession_topDn' id='LSsession_topDn'>".$list."</select>";
|
|
|
|
|
$data['subDnLabel'] = self :: getSubDnLabel();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$data['recoverPassword'] = isset(self :: $ldapServer['recoverPassword']);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function ajax_onLdapServerChangedRecoverPassword(&$data) {
|
|
|
|
|
if ( isset($_REQUEST['server']) ) {
|
|
|
|
|
self :: setLdapServer($_REQUEST['server']);
|
|
|
|
|
$data=array('recoverPassword' => isset(self :: $ldapServer['recoverPassword']));
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-01-25 15:37:03 +01:00
|
|
|
|
}
|
2009-01-02 17:00:25 +01:00
|
|
|
|
|
2008-02-05 17:11:21 +01:00
|
|
|
|
?>
|