- LSsearch/LSsearchEntry : Added a new classes to doing and exploit ldap object search

-> view/select => change to use it (php+template+js)
  -> LSattr_html_select_object/LSattr_html_select_list => change to use it
  -> LSldapObject :
    -> change listObjectsName() / searchObject() / getSelectArray() / listObjects()
    -> comment search() function
    -> Add triggers to clean cache
  -> LSpeople : Update search config
  -> LSsession  : Change function to use it :
    - getSubDnLdapServer()
    - loadLSprofiles()
- LSrelation : Deplace error codes declaration from LSsession in class file
- LSldapObject :
  -> change getObjectFilter() / getLabel() / getSubDnValue() / getSubDnName() for can call then staticaly
  -> Add afterModify() function and trigger
  -> Change getObjectFilter() / listObjectsInRelation() to use Net_LDAP2_Filter
  -> Add __get() function
  -> Move one LSerror code for LSrelation function from LSsession class file
  -> Add a global variable to save cached data ($cache)
  -> Change subDn and subDnName access methods
- LSauth : Move LSsession auth procedure in a dedicated class
  -> LSsession : Change startLSsession() to use it
- LSsession :
  -> Add getRootDn() function
  -> Fix getTopDn() to return root DN if no topDn is currently defined
  -> Create dedicated functions to support recoveryPassword mecanism :
    - recoverPasswd()
    - recoverPasswdSendMail()
    - recoverPasswdFirstStep()
    - recoverPasswdSecondStep
  -> Customize LSdebug return and display (php+js)
  -> Clean unused error codes
  -> Move LSrelation error codes
  -> Comment ajax method
This commit is contained in:
Benjamin Renard 2009-10-30 00:03:17 +00:00
parent aaf0845323
commit 3e823a2b22
17 changed files with 2206 additions and 961 deletions

View file

@ -115,7 +115,9 @@ $GLOBALS['LSobjects']['LSpeople'] = array (
'uid', 'uid',
'mail' 'mail'
), ),
'params' => array (
'recursive' => true 'recursive' => true
)
), ),
// Attributes // Attributes

View file

@ -65,7 +65,7 @@ $GLOBALS['LSconfig'] = array(
'basedn' => 'ou=people,o=ls' 'basedn' => 'ou=people,o=ls'
), ),
'LSgroup' => array ( 'LSgroup' => array (
'filter' => 'lsGodfatherDn=%{dn}' 'filter' => '(lsGodfatherDn=%{dn})'
) )
) )
) )

View file

@ -94,36 +94,36 @@ class LSattr_html_select_list extends LSattr_html{
LSerror :: addErrorCode('LSattr_html_select_list_01',$this -> name); LSerror :: addErrorCode('LSattr_html_select_list_01',$this -> name);
break; break;
} }
if (!LSsession :: loadLSobject($val['object_type'])) { if (!LSsession :: loadLSclass('LSsearch')) {
return; return;
} }
$obj = new $val['object_type']();
if($val['scope']) {
$param=array('scope' => $val['scope']);
}
else {
$param=array();
}
$param['attributes'] = getFieldInFormat($val['display_name_format']); $param=array(
'filter' => $val['filter'],
'basedn' => $val['basedn'],
'scope' => $val['scope'],
'displayFormat' => $val['display_name_format'],
);
if ($val['value_attribute']!='dn') { if ($val['value_attribute']!='dn') {
$param['attributes'][] = $val['value_attribute']; $param['attributes'][] = $val['value_attribute'];
} }
$list = $obj -> search($val['filter'],$val['basedn'],$param); $LSsearch = new LSsearch($val['object_type'],'LSattr_html_select_list',$param,true);
$LSsearch -> run();
if(($val['value_attribute']=='dn')||($val['value_attribute']=='%{dn}')) { if(($val['value_attribute']=='dn')||($val['value_attribute']=='%{dn}')) {
for($i=0;$i<count($list);$i++) { $retInfos = $LSsearch -> listObjectsName();
$retInfos[$list[$i]['dn']]=getFData($val['display_name_format'],$list[$i]['attrs']);
}
} }
else { else {
for($i=0;$i<count($list);$i++) { $list = $LSsearch -> getSearchEntries();
$key = $list[$i]['attrs'][$val['value_attribute']]; foreach($list as $entry) {
$key = $entry -> get($val['value_attribute']);
if(is_array($key)) { if(is_array($key)) {
$key = $key[0]; $key = $key[0];
} }
$retInfos[$key]=getFData($val['display_name_format'],$list[$i]['attrs']); $retInfos[$key]=$entry -> displayName;
} }
} }
} }

View file

@ -148,14 +148,15 @@ class LSattr_html_select_object extends LSattr_html{
} }
} }
else { else {
$filter=''; $filters=array();
foreach($values as $val) { foreach($values as $val) {
if (!empty($val)) { if (!empty($val)) {
$filter.='('.$conf['value_attribute'].'='.$val.')'; $filters[]=Net_LDAP2_Filter::create($conf['value_attribute'],'equals',$val);
} }
} }
if ($filter!='') { if (!empty($filters)) {
$filter='(|'.$filter.')'; $filter=LSldap::combineFilters('or',$filters);
if ($filter) {
$obj = new $conf['object_type'](); $obj = new $conf['object_type']();
$listobj = $obj -> listObjectsName($filter,NULL,array(),$conf['display_name_format']); $listobj = $obj -> listObjectsName($filter,NULL,array(),$conf['display_name_format']);
foreach($listobj as $dn => $name) { foreach($listobj as $dn => $name) {
@ -165,6 +166,7 @@ class LSattr_html_select_object extends LSattr_html{
} }
} }
} }
}
else { else {
return false; return false;
} }

View file

@ -0,0 +1,102 @@
<?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.
******************************************************************************/
/**
* Gestion de l'authentification d'un utilisateur
*
* Cette classe gere l'authentification des utilisateurs à l'interface
*
* @author Benjamin Renard <brenard@easter-eggs.com>
*/
class LSauth {
/**
* Check user login
*
* @param[in] $username The username
* @param[in] $password The password
*
* @retval LSldapObject|false The LSldapObject of the user authificated or false
*/
public static function authenticate($username,$password) {
if (LSsession :: loadLSobject(LSsession :: $ldapServer['authObjectType'])) {
$authobject = new LSsession :: $ldapServer['authObjectType']();
$result = $authobject -> searchObject(
$username,
LSsession :: getTopDn(),
LSsession :: $ldapServer['authObjectFilter']
);
$nbresult=count($result);
if ($nbresult==0) {
// identifiant incorrect
LSdebug('identifiant incorrect');
LSerror :: addErrorCode('LSauth_01');
}
else if ($nbresult>1) {
// duplication d'authentité
LSerror :: addErrorCode('LSauth_02');
}
elseif ( self :: checkUserPwd($result[0],$password) ) {
// Authentication succeeded
return $result[0];
}
else {
LSerror :: addErrorCode('LSauth_01');
LSdebug('mdp incorrect');
}
}
else {
LSerror :: addErrorCode('LSauth_03');
}
return;
}
/**
* 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
* @param[in] string Le mot de passe à tester
*
* @retval boolean True si l'authentification à réussi, false sinon.
*/
public static function checkUserPwd($object,$pwd) {
return LSldap :: checkBind($object -> getValue('dn'),$pwd);
}
}
/*
* Error Codes
*/
LSerror :: defineError('LSauth_01',
_("LSauth : Login or password incorrect.")
);
LSerror :: defineError('LSauth_02',
_("LSauth : Impossible to identify you : Duplication of identities.")
);
LSerror :: defineError('LSauth_03',
_("LSsession : Could not load type of identifiable objects.")
);
?>

View file

@ -41,12 +41,13 @@ class LSldapObject {
var $other_values=array(); var $other_values=array();
var $submitError=true; var $submitError=true;
var $_whoami=NULL; var $_whoami=NULL;
var $_subDn_value=NULL;
var $_LSrelationsCache=array(); var $_LSrelationsCache=array();
var $_events=array(); var $_events=array();
var $_objectEvents=array(); var $_objectEvents=array();
var $cache=array();
/** /**
* Constructeur * Constructeur
* *
@ -149,7 +150,7 @@ class LSldapObject {
} }
$val = $this -> getFData($spe,&$this -> attrs,'getDisplayValue'); $val = $this -> getFData($spe,&$this -> attrs,'getDisplayValue');
if (LSsession :: haveSubDn() && $full) { if (LSsession :: haveSubDn() && $full) {
$val.=' ('.$this -> getSubDnName().')'; $val.=' ('.$this -> subDnName.')';
} }
return $val; return $val;
} }
@ -626,17 +627,27 @@ class LSldapObject {
* *
* @retval string le filtre ldap correspondant au type de l'objet * @retval string le filtre ldap correspondant au type de l'objet
*/ */
function getObjectFilter() { function getObjectFilter($type=null) {
if(!isset($this -> config['objectclass'])) return; if (is_null($type)) {
$filter="(&"; $type = $this -> type_name;
foreach ($this -> config['objectclass'] as $class) {
$filter.='(objectClass='.$class.')';
} }
$filter.=')'; $oc=LSconfig::get("LSobjects.$type.objectclass");
if ($this -> config['filter']) { if(!is_array($oc)) return;
$filter="(&(".$this -> config['filter'].")$filter)"; $filters=array();
foreach ($oc as $class) {
$filters[]=Net_LDAP2_Filter::create('objectClass','equals',$class);
} }
$filter=LSconfig::get("LSobjects.$type.filter");
if ($filter) {
$filters[]=$filter;
}
$filter = LSldap::combineFilters('and',$filters,true);
if ($filter)
return $filter; return $filter;
LSerror :: addErrorCode('LSldapObject_30',$type);
return;
} }
/** /**
@ -691,17 +702,34 @@ class LSldapObject {
* @retval array Tableau d'objets correspondant au resultat de la recherche * @retval array Tableau d'objets correspondant au resultat de la recherche
*/ */
function listObjects($filter=NULL,$basedn=NULL,$params=array()) { function listObjects($filter=NULL,$basedn=NULL,$params=array()) {
$retInfos=array(); if (!LSsession :: loadLSclass('LSsearch')) {
LSerror::addErrorCode('LSsession_05','LSsearch');
return;
}
$ret = $this -> search($filter,$basedn,$params); $sparams = array(
'basedn' => $basedn,
'filter' => $filter,
'attributes' => array('dn')
);
// Création d'un tableau d'objet correspondant au valeur retourné if (is_array($params)) {
$sparams=array_merge($sparams,$params);
}
$LSsearch = new LSsearch($this -> type_name,'LSldapObjet::listObjects',$sparams,true);
$LSsearch -> run();
return $LSsearch -> listObjects();
/*
for($i=0;$i<count($ret);$i++) { for($i=0;$i<count($ret);$i++) {
$retInfos[$i] = new $this -> type_name($this -> config); $retInfos[$i] = new $this -> type_name($this -> config);
$retInfos[$i] -> loadData($ret[$i]['dn']); $retInfos[$i] -> loadData($ret[$i]['dn']);
} }
return $retInfos; return $retInfos;
*/
} }
/** /**
@ -719,6 +747,7 @@ class LSldapObject {
* *
* @retval array Tableau d'objets correspondant au resultat de la recherche * @retval array Tableau d'objets correspondant au resultat de la recherche
*/ */
/*
function search($filter='',$basedn=NULL,$params=array()) { function search($filter='',$basedn=NULL,$params=array()) {
$retInfos=array(); $retInfos=array();
$attrs=false; $attrs=false;
@ -901,6 +930,7 @@ class LSldapObject {
} }
return $ret; return $ret;
} }
*/
/** /**
* Retourne une liste d'objet du même type et retourne leur noms * Retourne une liste d'objet du même type et retourne leur noms
@ -917,31 +947,31 @@ class LSldapObject {
* *
* @retval array Tableau dn => name correspondant au resultat de la recherche * @retval array Tableau dn => name correspondant au resultat de la recherche
*/ */
function listObjectsName($filter=NULL,$sbasedn=NULL,$sparams=array(),$displayFormat=false) { function listObjectsName($filter=NULL,$sbasedn=NULL,$sparams=array(),$displayFormat=false,$cache=true) {
$retInfos=array(); if (!LSsession :: loadLSclass('LSsearch')) {
LSerror::addErrorCode('LSsession_05','LSsearch');
return;
}
if (!$displayFormat) { if (!$displayFormat) {
$displayFormat = $this -> getDisplayNameFormat(); $displayFormat = $this -> getDisplayNameFormat();
} }
// Attributes
$attrs = getFieldInFormat($displayFormat); $params = array(
if(!empty($attrs)) { 'displayFormat' => $displayFormat,
$sparams['attributes'] = $attrs; 'basedn' => $sbasedn,
'filter' => $filter
);
if (is_array($sparams)) {
$params=array_merge($sparams,$params);
} }
// Lancement de la recherche $LSsearch = new LSsearch($this -> type_name,'LSldapObject::listObjectsName',$params,true);
$ret=$this -> search ($filter,$sbasedn,$sparams);
if (is_array($ret)) { $LSsearch -> run($cache);
foreach($ret as $obj) {
if (in_array('subDnName',$attrs)) {
$obj['attrs']['subDnName']=$this -> getSubDnName($obj['dn']);
}
$retInfos[$obj['dn']] = getFData($displayFormat,$obj['attrs']);
}
}
return $retInfos; return $LSsearch -> listObjectsName();
} }
@ -955,17 +985,18 @@ class LSldapObject {
* @param[in] $name string Valeur de son RDN ou de la valeur pour composer le filtre * @param[in] $name string Valeur de son RDN ou de la valeur pour composer le filtre
* @param[in] $basedn string Le DN de base de la recherche * @param[in] $basedn string Le DN de base de la recherche
* @param[in] $filter string Le filtre de recherche de l'objet * @param[in] $filter string Le filtre de recherche de l'objet
* @param[in] $params array Tableau de paramètres
* *
* @retval array Tableau d'objets correspondant au resultat de la recherche * @retval array Tableau d'objets correspondant au resultat de la recherche
*/ */
function searchObject($name,$basedn=NULL,$filter=NULL) { function searchObject($name,$basedn=NULL,$filter=NULL,$params=NULL) {
if (!$filter) { if (!$filter) {
$filter = $this -> config['rdn'].'='.$name; $filter = '('.$this -> config['rdn'].'='.$name.')';
} }
else { else {
$filter = getFData($filter,$name); $filter = getFData($filter,$name);
} }
return $this -> listObjects($filter,$basedn); return $this -> listObjects($filter,$basedn,$params);
} }
/** /**
@ -993,10 +1024,10 @@ class LSldapObject {
return $this -> attrs[ $this -> config['rdn'] ] -> getValue(); return $this -> attrs[ $this -> config['rdn'] ] -> getValue();
} }
else if(($val=='subDn')||($val=='%{subDn}')) { else if(($val=='subDn')||($val=='%{subDn}')) {
return $this -> getSubDnValue(); return $this -> subDnValue;
} }
else if(($val=='subDnName')||($val=='%{subDnName}')) { else if(($val=='subDnName')||($val=='%{subDnName}')) {
return $this -> getSubDnName(); return $this -> subDnName;
} }
else if(isset($this -> attrs[$val])){ else if(isset($this -> attrs[$val])){
if (method_exists($this -> attrs[$val],'getValue')) if (method_exists($this -> attrs[$val],'getValue'))
@ -1019,9 +1050,8 @@ class LSldapObject {
* *
* @retval array('dn' => 'display') * @retval array('dn' => 'display')
*/ */
function getSelectArray($pattern=NULL,$topDn=NULL,$displayFormat=NULL,$approx=false) { function getSelectArray($pattern=NULL,$topDn=NULL,$displayFormat=NULL,$approx=false,$cache=true) {
$filter=$this -> getPatternFilter($pattern,$approx); return $this -> listObjectsName($filter,$topDn,array('pattern' => $pattern),$displayFormat,$cache);
return $this -> listObjectsName($filter,$topDn,array(),$displayFormat);
} }
/** /**
@ -1089,8 +1119,11 @@ class LSldapObject {
* *
* @retval string Le label de l'objet ($this -> config['label']) * @retval string Le label de l'objet ($this -> config['label'])
*/ */
function getLabel() { function getLabel($type=null) {
return __($this -> config['label']); if (is_null($type)) {
$type = $this -> type_name;
}
return __(LSconfig::get("LSobjects.$type.label"));
} }
@ -1134,13 +1167,7 @@ class LSldapObject {
* *
* @return string La valeur du subDn de l'object * @return string La valeur du subDn de l'object
*/ */
function getSubDnValue($dn=NULL) { public static function getSubDnValue($dn) {
if (!$dn) {
$dn = $this -> getValue('dn');
}
if ($this -> _subDn_value[$dn]) {
return $this -> _subDn_value[$dn];
}
$subDn_value=''; $subDn_value='';
$subDnLdapServer = LSsession :: getSortSubDnLdapServer(); $subDnLdapServer = LSsession :: getSortSubDnLdapServer();
foreach ($subDnLdapServer as $subDn => $subDn_name) { foreach ($subDnLdapServer as $subDn => $subDn_name) {
@ -1149,7 +1176,6 @@ class LSldapObject {
break; break;
} }
} }
$this -> _subDn_value[$dn] = $subDn_value;
return $subDn_value; return $subDn_value;
} }
@ -1160,9 +1186,9 @@ class LSldapObject {
* *
* @return string Le nom du subDn de l'object * @return string Le nom du subDn de l'object
*/ */
function getSubDnName($dn=NULL) { public static function getSubDnName($dn) {
$subDnLdapServer = LSsession :: getSortSubDnLdapServer(); $subDnLdapServer = LSsession :: getSortSubDnLdapServer();
return $subDnLdapServer[$this -> getSubDnValue($dn)]; return $subDnLdapServer[self :: getSubDnValue($dn)];
} }
/** /**
@ -1318,6 +1344,11 @@ class LSldapObject {
} }
} }
// LSsearch : Purge LSobject cache
if (LSsession :: loadLSclass('LSsearch')) {
LSsearch :: purgeCache($this -> type_name);
}
return !$error; return !$error;
} }
@ -1361,6 +1392,31 @@ class LSldapObject {
} }
} }
// LSsearch : Purge LSobject cache
if (LSsession :: loadLSclass('LSsearch')) {
LSsearch :: purgeCache($this -> type_name);
}
return !$error;
}
/**
* Methode executant les actions nécéssaires après la modification de
* l'objet.
*
* Cette méthode n'est qu'un exemple et elle doit être certainement réécrite
* pour les objets plus complexe.
*
* @retval True en cas de cas ce succès, False sinon.
*/
function afterModify() {
$error = 0;
// LSsearch : Purge LSobject cache
if (LSsession :: loadLSclass('LSsearch')) {
LSsearch :: purgeCache($this -> type_name);
}
return !$error; return !$error;
} }
@ -1422,9 +1478,8 @@ class LSldapObject {
$val = $val[0]; $val = $val[0];
} }
if ($val) { if ($val) {
$filter = $this -> getObjectFilter(); $filter = Net_LDAP2_Filter::create($attr,'equals',$val);
$filter = '(&'.$filter.'('.$attr.'='.$val.'))'; return $this -> listObjects($filter,LSsession :: getRootDn(),array('scope' => 'sub','recursive' => true,'withoutCache'=>true));
return $this -> listObjects($filter,LSsession :: $ldapServer['ldap_config']['basedn'],array('scope' => 'sub'));
} }
return; return;
} }
@ -1814,7 +1869,7 @@ class LSldapObject {
* @param[in] $event string Le nom de l'événement * @param[in] $event string Le nom de l'événement
* *
* @retval boolean True si tout c'est bien passé, false sinon * @retval boolean True si tout c'est bien passé, false sinon
*/ **/
function fireObjectEvent($event) { function fireObjectEvent($event) {
switch($event) { switch($event) {
case 'after_create': case 'after_create':
@ -1823,10 +1878,8 @@ class LSldapObject {
return $this -> afterDelete(); return $this -> afterDelete();
case 'after_rename': case 'after_rename':
return $this -> afterRename(); return $this -> afterRename();
/*
case 'after_modify': case 'after_modify':
return $this -> afterModify(); return $this -> afterModify();
*/
/* /*
case 'before_create': case 'before_create':
return $this -> beforeCreate(); return $this -> beforeCreate();
@ -1843,6 +1896,30 @@ class LSldapObject {
return true; return true;
} }
/**
* Access to infos of the object
*
* @param[in] $key string The name of the value
*
* @retval mixed The value
**/
function __get($key) {
if ($key=='subDnValue') {
if ($this -> cache['subDnValue']) {
return $this -> cache['subDnValue'];
}
$this -> cache['subDnValue'] = self :: getSubDnValue($this -> dn);
return $this -> cache['subDnValue'];
}
if ($key=='subDnName') {
if ($this -> cache['subDnName']) {
return $this -> cache['subDnName'];
}
$this -> cache['subDnName'] = self :: getSubDnName($this -> dn);
return $this -> cache['subDnName'];
}
}
} }
/** /**
@ -1944,5 +2021,13 @@ _("LSldapObject : %{meth} method, to be executed on object event %{event}, doesn
LSerror :: defineError('LSldapObject_29', LSerror :: defineError('LSldapObject_29',
_("LSldapObject : Error during execution of %{meth} method on object event %{event}.") _("LSldapObject : Error during execution of %{meth} method on object event %{event}.")
); );
LSerror :: defineError('LSldapObject_30',
_("LSldapObject : Error during generate LDAP filter for %{LSobject}.")
);
// LSrelation
LSerror :: defineError('LSrelations_05',
_("LSrelation : Some parameters are missing in the call of methods to handle standard relations (Method : %{meth}).")
);
?> ?>

View file

@ -295,4 +295,20 @@ class LSrelation {
} }
} }
/**
* Error Codes
**/
LSerror :: defineError('LSrelations_01',
_("LSrelation : The listing function for the relation %{relation} is unknow.")
);
LSerror :: defineError('LSrelations_02',
_("LSrelation : The update function of the relation %{relation} is unknow.")
);
LSerror :: defineError('LSrelations_03',
_("LSrelation : Error during relation update of the relation %{relation}.")
);
LSerror :: defineError('LSrelations_04',
_("LSrelation : Object type %{LSobject} unknow (Relation : %{relation}).")
);
?> ?>

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,184 @@
<?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.
******************************************************************************/
/**
* Object LSsearchEntry
*
* @author Benjamin Renard <brenard@easter-eggs.com>
*/
class LSsearchEntry {
// The LSsearch object
private $LSsearch=NULL;
// The LdapObject type of search
private $LSobject=NULL;
// DN
private $dn;
// The parameters of the search
private $params=array ();
// The hash of the search parameters
private $hash = NULL;
// The attributes values
private $attrs=array();
// Cache
private $cache=array();
/**
* Constructor
*
* @param[in] $LSobject string The LdapObject type of search
* @param[in] $params array Parameters of search
* @param[in] $hash array Parameters of search
* @param[in] $resultEntry array The data of the result entry
*
**/
function LSsearchEntry(&$LSsearch,$LSobject,$params,$hash,&$result,$id) {
if (!LSsession :: loadLSobject($LSobject)) {
return;
}
$this -> LSsearch = $LSsearch;
$this -> LSobject = $LSobject;
$this -> params = $params;
$this -> id = $id;
$this -> dn =& $result[$id]['dn'];
$this -> attrs =& $result[$id]['attrs'];
$this -> cache =& $result[$id]['cache'];
}
/**
* Get text value of entry
*
* @param[in] $key string The name of the value
*
* @retval mixed The value
**/
public function get($key) {
if (in_array($key,array_keys($this -> attrs))) {
return $this -> attrs[$key];
}
elseif ($key=='subDn' || $key=='subDnName') {
return $this -> subDn;
}
}
/**
* Get formated text value of entry
*
* @param[in] $format string The format of the value
*
* @retval mixed The formated value
**/
public function getFData($format) {
return getFData($format,$this,'get');
}
/**
* Access to infos of the entry
*
* @param[in] $key string The name of the value
*
* @retval mixed The value
**/
public function __get($key) {
if ($key=='displayName') {
if (isset($this -> cache['displayName'])) {
return $this -> cache['displayName'];
}
$this -> cache['displayName'] = $this -> getFData($this -> params['displayFormat']);
return $this -> cache['displayName'];
}
elseif ($key=='dn') {
return $this -> dn;
}
elseif ($key=='subDn' || $key=='subDnName') {
if ($this -> cache['subDn']) {
return $this -> cache['subDn'];
}
if ($this -> LSsearch -> displaySubDn) {
$this -> cache['subDn'] = LSldapObject::getSubDnName($this -> dn);
return $this -> cache['subDn'];
}
}
elseif ($key=='actions') {
if (isset($this -> cache['actions'])) {
return $this -> cache['actions'];
}
$this -> cache['actions'] = array (
array(
'label' => _('View'),
'url' =>'view.php?LSobject='.$this -> LSobject.'&amp;dn='.$this -> dn,
'action' => 'view'
)
);
if (LSsession :: canEdit($this -> LSobject,$this -> dn)) {
$this -> cache['actions'][]=array(
'label' => _('Modify'),
'url' => 'modify.php?LSobject='.$this -> LSobject.'&amp;dn='.$this -> dn,
'action' => 'modify'
);
}
if ($this -> LSsearch -> canCopy) {
$this -> cache['actions'][] = array(
'label' => _('Copy'),
'url' =>'create.php?LSobject='.$this -> LSobject.'&amp;load='.$this -> dn,
'action' => 'copy'
);
}
if (LSsession :: canRemove($this -> LSobject,$this -> dn)) {
$this -> cache['actions'][] = array (
'label' => _('Delete'),
'url' => 'remove.php?LSobject='.$this -> LSobject.'&amp;dn='.$this -> dn,
'action' => 'delete'
);
}
$this -> LSsearch -> addResultToCache();
return $this -> cache['actions'];
}
elseif ($key=='LSselect') {
if (is_array($_SESSION['LSselect'][$this -> LSobject])) {
if(in_array($this -> dn,$_SESSION['LSselect'][$this -> LSobject])) {
return true;
}
}
return;
}
elseif (in_array($key,array_keys($this -> attrs))) {
return $this -> attrs[$key];
}
else {
return __("Unknown property !");
}
}
}
?>

View file

@ -161,8 +161,24 @@ class LSsession {
* @retval string le topDn de la session * @retval string le topDn de la session
*/ */
public static function getTopDn() { public static function getTopDn() {
if (!is_null(self :: $topDn)) {
return self :: $topDn; return self :: $topDn;
} }
else {
return self :: getRootDn();
}
}
/**
* Retourne le rootDn de la session
*
* @author Benjamin Renard <brenard@easter-eggs.com>
*
* @retval string le rootDn de la session
*/
public static function getRootDn() {
return self :: $ldapServer['ldap_config']['basedn'];
}
/** /**
* Initialisation de la gestion des erreurs * Initialisation de la gestion des erreurs
@ -493,8 +509,6 @@ class LSsession {
} }
else { else {
// Session inexistante // Session inexistante
$recoveryPasswordInfos=array();
if (isset($_POST['LSsession_user'])) { if (isset($_POST['LSsession_user'])) {
if (isset($_POST['LSsession_ldapserver'])) { if (isset($_POST['LSsession_ldapserver'])) {
self :: setLdapServer($_POST['LSsession_ldapserver']); self :: setLdapServer($_POST['LSsession_ldapserver']);
@ -515,191 +529,33 @@ class LSsession {
} }
$_SESSION['LSsession_topDn']=self :: $topDn; $_SESSION['LSsession_topDn']=self :: $topDn;
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;
}
}
if ($find) {
$result = $authobject -> searchObject($_POST['LSsession_user'],self :: $topDn,self :: $ldapServer['authObjectFilter']);
$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');
}
else {
if (isset($_GET['LSsession_recoverPassword'])) { if (isset($_GET['LSsession_recoverPassword'])) {
LSdebug('Recover : Id trouvé'); $recoveryPasswordInfos = self :: recoverPasswd(
if (self :: $ldapServer['recoverPassword']) { $_REQUEST['LSsession_user'],
if (self :: loadLSaddon('mail')) { $_GET['recoveryHash']
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 { else {
$recovery_url='http://'; if (self :: loadLSclass('LSauth')) {
} $LSuserObject = LSauth :: authenticate(
$recovery_url .= $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'].'&recoveryHash='.$recovery_hash; $_REQUEST['LSsession_user'],
$_REQUEST['LSsession_pwd']
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);
}
}
// 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);
$lostPasswdForm = $user -> getForm('lostPassword');
$lostPasswdForm -> setPostData(
array(
self :: $ldapServer['recoverPassword']['recoveryHashAttr'] => array(''),
self :: $ldapServer['authObjectTypeAttrPwd'] => array($mdp)
)
,true
); );
if($lostPasswdForm -> validate()) { if ($LSuserObject) {
if ($user -> updateData('lostPassword')) {
if (
sendMail(
$emailAddress,
self :: $ldapServer['recoverPassword']['newPasswordMail']['subject'],
getFData(self :: $ldapServer['recoverPassword']['newPasswordMail']['msg'],$mdp),
$sendParams
)
){
// Mail a bien été envoyé
$recoveryPasswordInfos['newPasswordMail']=$emailAddress;
}
else {
// Problème durant l'envoie du mail
LSdebug("Problème durant l'envoie du mail");
LSerror :: addErrorCode('LSsession_20',4);
}
}
else {
// Erreur durant la mise à jour de l'objet
LSdebug("Erreur durant la mise à jour de l'objet");
LSerror :: addErrorCode('LSsession_20',3);
}
}
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',2);
}
}
else {
// l'attribut password n'existe pas
LSdebug("L'attribut password n'existe pas");
LSerror :: addErrorCode('LSsession_20',1);
}
}
}
else {
LSerror :: addErrorCode('LSsession_19');
}
}
}
else {
LSerror :: addErrorCode('LSsession_18');
}
}
else {
if ( self :: checkUserPwd($result[0],$_POST['LSsession_pwd']) ) {
// Authentification réussi // Authentification réussi
self :: $LSuserObject = $result[0]; self :: $LSuserObject = $LSuserObject;
self :: $dn = $result[0]->getValue('dn'); self :: $dn = $LSuserObject->getValue('dn');
self :: $rdn = $result[0]->getValue('rdn'); self :: $rdn = $LSuserObject->getValue('rdn');
self :: loadLSprofiles(); self :: loadLSprofiles();
self :: loadLSaccess(); self :: loadLSaccess();
$GLOBALS['Smarty'] -> assign('LSsession_username',self :: getLSuserObject() -> getDisplayName()); $GLOBALS['Smarty'] -> assign('LSsession_username',self :: getLSuserObject() -> getDisplayName());
$_SESSION['LSsession']=self :: getContextInfos(); $_SESSION['LSsession']=self :: getContextInfos();
return true; return true;
} }
else {
LSerror :: addErrorCode('LSsession_06');
LSdebug('mdp incorrect');
} }
} }
} }
}
else {
LSerror :: addErrorCode('LSsession_10');
}
}
else { else {
LSerror :: addErrorCode('LSsession_09'); LSerror :: addErrorCode('LSsession_09');
} }
@ -718,6 +574,227 @@ class LSsession {
} }
} }
/**
* Do recover password
*
* @param[in] $username string The submited username
* @param[in] $recoveryHash string The submited recoveryHash
*
* @retval array The recoveryPassword infos for template
**/
private static function recoverPasswd($username,$recoveryHash) {
$recoveryPasswordInfos=array();
if ( self :: loadLSobject(self :: $ldapServer['authObjectType']) ) {
$authobject = new self :: $ldapServer['authObjectType']();
if (!empty($recoveryHash)) {
$filter=Net_LDAP2_Filter::create(
self :: $ldapServer['recoverPassword']['recoveryHashAttr'],
'equals',
$recoveryHash
);
$result = $authobject -> listObjects($filter,self :: $topDn);
}
else {
$result = $authobject -> searchObject(
$username,
self :: $topDn,
self :: $ldapServer['authObjectFilter']
);
}
$nbresult=count($result);
if ($nbresult==0) {
LSdebug('hash/username incorrect');
LSerror :: addErrorCode('LSsession_06');
}
elseif ($nbresult>1) {
LSerror :: addErrorCode('LSsession_07');
}
else {
$rdn = $result[0] -> getValue('rdn');
$username = $rdn[0];
LSdebug('Recover : Id trouvé : '.$username);
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];
if (checkEmail($emailAddress)) {
LSdebug('Email : '.$emailAddress);
self :: $dn = $user -> getDn();
// 1ère étape : envoie du recoveryHash
if (empty($recoveryHash)) {
$hash=self :: recoverPasswdFirstStep($user);
if ($hash) {
if (self :: recoverPasswdSendMail($emailAddress,1,$hash)) {
// Mail a bien été envoyé
$recoveryPasswordInfos['recoveryHashMail']=$emailAddress;
}
}
}
// 2nd étape : génération du mot de passe + envoie par mail
else {
$pwd=self :: recoverPasswdSecondStep($user);
if ($pwd) {
if (self :: recoverPasswdSendMail($emailAddress,2,$pwd)){
// Mail a bien été envoyé
$recoveryPasswordInfos['newPasswordMail']=$emailAddress;
}
}
}
}
else {
LSerror :: addErrorCode('LSsession_19');
}
}
}
else {
LSerror :: addErrorCode('LSsession_18');
}
}
}
return $recoveryPasswordInfos;
}
/**
* Send recover password mail
*
* @param[in] $mail string The user's mail
* @param[in] $step integer The step
* @param[in] $info string The info for formatted message
*
* @retval boolean True on success or False
**/
private static function recoverPasswdSendMail($mail,$step,$info) {
// Header des mails
$sendParams=array();
if (self :: $ldapServer['recoverPassword']['recoveryEmailSender']) {
$sendParams['From']=self :: $ldapServer['recoverPassword']['recoveryEmailSender'];
}
if ($step==1) {
if ($_SERVER['HTTPS']=='on') {
$recovery_url='https://';
}
else {
$recovery_url='http://';
}
$recovery_url .= $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'].'&recoveryHash='.$info;
$subject = self :: $ldapServer['recoverPassword']['recoveryHashMail']['subject'];
$msg = getFData(
self :: $ldapServer['recoverPassword']['recoveryHashMail']['msg'],
$recovery_url
);
}
else {
$subject = self :: $ldapServer['recoverPassword']['newPasswordMail']['subject'];
$msg = getFData(
self :: $ldapServer['recoverPassword']['newPasswordMail']['msg'],
$info
);
}
if (!sendMail($mail,$subject,$msg,$sendParams)) {
LSdebug("Problème durant l'envoie du mail");
LSerror :: addErrorCode('LSsession_20',4);
return;
}
return true;
}
/**
* Do first step of recovering password
*
* @param[in] $user LSldapObject The LSldapObject of the user
*
* @retval string|False The recory hash on success or False
**/
private static function recoverPasswdFirstStep($user) {
// 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
return $recovery_hash;
}
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);
}
return;
}
/**
* Do second step of recovering password
*
* @param[in] $user LSldapObject The LSldapObject of the user
*
* @retval string|False The new password on success or False
**/
private static function recoverPasswdSecondStep($user) {
$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);
$lostPasswdForm = $user -> getForm('lostPassword');
$lostPasswdForm -> setPostData(
array(
self :: $ldapServer['recoverPassword']['recoveryHashAttr'] => array(''),
self :: $ldapServer['authObjectTypeAttrPwd'] => array($mdp)
)
,true
);
if($lostPasswdForm -> validate()) {
if ($user -> updateData('lostPassword')) {
return $mdp;
}
else {
// Erreur durant la mise à jour de l'objet
LSdebug("Erreur durant la mise à jour de l'objet");
LSerror :: addErrorCode('LSsession_20',3);
}
}
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',2);
}
}
else {
// l'attribut password n'existe pas
LSdebug("L'attribut password n'existe pas");
LSerror :: addErrorCode('LSsession_20',1);
}
return;
}
/** /**
* Retourne les informations du contexte * Retourne les informations du contexte
* *
@ -885,7 +962,7 @@ class LSsession {
$basedn = $LSoject_config['basedn']; $basedn = $LSoject_config['basedn'];
} }
else { else {
$basedn = NULL; $basedn = self::getRootDn();
} }
if ($LSoject_config['displayName']) { if ($LSoject_config['displayName']) {
$displayName = $LSoject_config['displayName']; $displayName = $LSoject_config['displayName'];
@ -1312,7 +1389,7 @@ class LSsession {
} }
if (LSdebugDefined()) { if (LSdebugDefined()) {
$data['LSdebug'] = LSdebug_print(true); $data['LSdebug'] = LSdebug_print(true,false);
} }
echo json_encode($data); echo json_encode($data);
@ -1350,22 +1427,27 @@ class LSsession {
if ($topDn == 'LSobjects') { if ($topDn == 'LSobjects') {
if (is_array($rightsInfos)) { if (is_array($rightsInfos)) {
foreach ($rightsInfos as $LSobject => $listInfos) { foreach ($rightsInfos as $LSobject => $listInfos) {
if (self :: loadLSobject($LSobject)) { if (self :: loadLSclass('LSsearch')) {
if ($object = new $LSobject()) {
if ($listInfos['filter']) { if ($listInfos['filter']) {
$filter = self :: getLSuserObject() -> getFData($listInfos['filter']); $filter = self :: getLSuserObject() -> getFData($listInfos['filter']);
} }
else { else {
$filter = $listInfos['attr'].'='.self :: getLSuserObject() -> getFData($listInfos['attr_value']); $filter = '('.$listInfos['attr'].'='.self :: getLSuserObject() -> getFData($listInfos['attr_value']).')';
} }
$list = $object -> search($filter,$listInfos['basedn'],$listInfos['params']);
foreach($list as $obj) { $params = array (
self :: $LSprofiles[$profile][] = $obj['dn']; 'basedn' => $listInfos['basedn'],
} 'filter' => $filter
} );
else {
LSdebug('Impossible de créer l\'objet de type : '.$LSobject); if (is_array($listInfos['params'])) {
$params = array_merge($listInfos['params'],$params);
} }
$LSsearch = new LSsearch($LSobject,'LSsession :: loadLSprofiles',$params,true);
$LSsearch -> run(false);
$LSprofiles[$profile] = $LSsearch -> listObjectsDn();
} }
} }
} }
@ -1438,7 +1520,7 @@ class LSsession {
foreach($config as $objectType => $objectConf) { foreach($config as $objectType => $objectConf) {
if (self :: loadLSobject($objectType)) { if (self :: loadLSobject($objectType)) {
if ($subdnobject = new $objectType()) { if ($subdnobject = new $objectType()) {
$tbl = $subdnobject -> getSelectArray(); $tbl = $subdnobject -> getSelectArray(NULL,self::getRootDn(),NULL,NULL,false);
if (is_array($tbl)) { if (is_array($tbl)) {
// Définition des accès // Définition des accès
$access=array(); $access=array();
@ -1572,7 +1654,7 @@ class LSsession {
else { else {
$obj = new $LSobject(); $obj = new $LSobject();
$obj -> dn = $dn; $obj -> dn = $dn;
if (!self :: in_menu($LSobject,$obj -> getSubDnValue())) { if (!self :: in_menu($LSobject,$obj -> subDnValue)) {
return; return;
} }
} }
@ -2006,15 +2088,11 @@ class LSsession {
LSerror :: defineError('LSsession_07', LSerror :: defineError('LSsession_07',
_("LSsession : Impossible to identify you : Duplication of identities.") _("LSsession : Impossible to identify you : Duplication of identities.")
); );
LSerror :: defineError('LSsession_08', // 08
_("LSsession : Can't load Smarty template engine.")
);
LSerror :: defineError('LSsession_09', LSerror :: defineError('LSsession_09',
_("LSsession : Can't connect to LDAP server.") _("LSsession : Can't connect to LDAP server.")
); );
LSerror :: defineError('LSsession_10', // 10
_("LSsession : Could not load type of identifiable objects.")
);
LSerror :: defineError('LSsession_11', LSerror :: defineError('LSsession_11',
_("LSsession : Your are not authorized to do this action.") _("LSsession : Your are not authorized to do this action.")
); );
@ -2038,26 +2116,15 @@ class LSsession {
LSerror :: defineError('LSsession_22', LSerror :: defineError('LSsession_22',
_("LSsession : problem during initialisation.") _("LSsession : problem during initialisation.")
); );
// LSrelations
LSerror :: defineError('LSrelations_01',
_("LSrelation : The listing function for the relation %{relation} is unknow.")
);
LSerror :: defineError('LSrelations_02',
_("LSrelation : The update function of the relation %{relation} is unknow.")
);
LSerror :: defineError('LSrelations_03',
_("LSrelation : Error during relation update of the relation %{relation}.")
);
LSerror :: defineError('LSrelations_04',
_("LSrelation : Object type %{LSobject} unknow (Relation : %{relation}).")
);
LSerror :: defineError('LSrelations_05',
_("LSrelation : Some parameters are missing in the call of methods to handle standard relations (Method : %{meth}).")
);
} }
/**
* Ajax method when change ldapserver on login form
*
* @param[in] $data array The return data address
*
* @retval void
**/
public static function ajax_onLdapServerChangedLogin(&$data) { public static function ajax_onLdapServerChangedLogin(&$data) {
if ( isset($_REQUEST['server']) ) { if ( isset($_REQUEST['server']) ) {
self :: setLdapServer($_REQUEST['server']); self :: setLdapServer($_REQUEST['server']);
@ -2080,6 +2147,13 @@ class LSsession {
} }
} }
/**
* Ajax method when change ldapserver on recoverPassword form
*
* @param[in] $data array The return data address
*
* @retval void
**/
public static function ajax_onLdapServerChangedRecoverPassword(&$data) { public static function ajax_onLdapServerChangedRecoverPassword(&$data) {
if ( isset($_REQUEST['server']) ) { if ( isset($_REQUEST['server']) ) {
self :: setLdapServer($_REQUEST['server']); self :: setLdapServer($_REQUEST['server']);

View file

@ -137,7 +137,7 @@ var LSselect = new Class({
sortBy: function(value) { sortBy: function(value) {
this.tempInput['sortBy'] = new Element('input'); this.tempInput['sortBy'] = new Element('input');
this.tempInput['sortBy'].setProperty('name','orderby'); this.tempInput['sortBy'].setProperty('name','sortBy');
this.tempInput['sortBy'].setProperty('type','hidden'); this.tempInput['sortBy'].setProperty('type','hidden');
this.tempInput['sortBy'].setProperty('value',value); this.tempInput['sortBy'].setProperty('value',value);
this.tempInput['sortBy'].injectInside(this.LSselect_search_form); this.tempInput['sortBy'].injectInside(this.LSselect_search_form);

View file

@ -27,291 +27,75 @@ if(LSsession :: startLSsession()) {
$LSobject = $_REQUEST['LSobject']; $LSobject = $_REQUEST['LSobject'];
if ( LSsession ::loadLSobject($LSobject) ) { if ( LSsession ::loadLSobject($LSobject) ) {
$objectList=array(); if (LSsession :: loadLSclass('LSsearch')) {
$object = new $LSobject(); $object = new $LSobject();
$GLOBALS['Smarty']->assign('pagetitle',$object -> getLabel()); $GLOBALS['Smarty']->assign('pagetitle',$object -> getLabel());
$GLOBALS['Smarty']->assign('LSobject_list_objectname',$object -> getLabel());
if (isset($_SESSION['LSsession']['LSsearch'][$LSobject])) { $LSsearch = new LSsearch($LSobject,'LSselect');
$filter = $_SESSION['LSsession']['LSsearch'][$LSobject]['filter']; $LSsearch -> setParamsFormPostData();
if (isCompatibleDNs($_SESSION['LSsession']['LSsearch'][$LSobject]['topDn'],LSsession :: getTopDn())) { $LSsearch -> setParam('nbObjectsByPage',NB_LSOBJECT_LIST_SELECT);
$topDn = $_SESSION['LSsession']['LSsearch'][$LSobject]['topDn'];
if (isset($_SESSION['LSsession']['LSsearch'][$LSobject]['selectedTopDn'])) {
$selectedTopDn = $_SESSION['LSsession']['LSsearch'][$LSobject]['selectedTopDn'];
}
else {
$selectedTopDn = LSsession :: getTopDn();
}
}
else {
$selectedTopDn = LSsession :: getTopDn();
$topDn = $object -> config['container_dn'].','.LSsession :: getTopDn();
}
$params = $_SESSION['LSsession']['LSsearch'][$LSobject]['params'];
$pattern = $_SESSION['LSsession']['LSsearch'][$LSobject]['pattern'];
$recur = $_SESSION['LSsession']['LSsearch'][$LSobject]['recur'];
$approx = $_SESSION['LSsession']['LSsearch'][$LSobject]['approx'];
$orderby = $_SESSION['LSsession']['LSsearch'][$LSobject]['orderby'];
$ordersense = $_SESSION['LSsession']['LSsearch'][$LSobject]['ordersense'];
$doSubDn = $_SESSION['LSsession']['LSsearch'][$LSobject]['doSubDn'];
}
else {
$filter = NULL;
$topDn = $object -> config['container_dn'].','.LSsession :: getTopDn();
$params = array('scope' => 'one');
$pattern = false;
$recur = LSconfig :: get("LSobjects.$LSobject.LSsearch.recursive");
$approx = false;
$selectedTopDn = LSsession :: getTopDn();
$orderby = false;
$_REQUEST['orderby']=LSconfig :: get("LSobjects.$LSobject.orderby");
$ordersense = 'ASC';
$subDnLdapServer = LSsession :: getSubDnLdapServer();
$doSubDn = (($subDnLdapServer)&&(!LSsession :: isSubDnLSobject($LSobject)));
}
if (isset($_REQUEST['LSview_search_submit'])) { $multiple = ((isset($_REQUEST['multiple']))?1:0);
if ( $_REQUEST['LSview_pattern']!=$pattern ) {
$pattern = $_REQUEST['LSview_pattern'];
}
$approx = (isset($_REQUEST['LSview_approx'])); $searchForm = array (
'action' => $_SERVER['PHP_SELF'],
if ($pattern && $pattern!='') { 'recursive' => (! LSsession :: isSubDnLSobject($LSobject) ),
$filter=$object -> getPatternFilter($pattern,$approx); 'multiple' => $multiple,
} 'labels' => array (
else { 'submit' => _('Search'),
$filter = NULL; 'approx' => _('Approximative search'),
} 'recursive' => _('Recursive search'),
'level' => _('Level')
if (isset($_REQUEST['LSview_recur'])) { ),
$recur = true; 'values' => array (
} 'pattern' => $LSsearch->getParam('pattern'),
else { 'approx' => $LSsearch->getParam('approx'),
$recur = false; 'recursive' => $LSsearch->getParam('recursive'),
} 'basedn' => $LSsearch->getParam('basedn')
} ),
'names' => array (
if ($recur) { 'submit' => 'LSsearch_submit'
$params['scope'] = 'sub'; ),
if (LSsession :: validSubDnLdapServer($_REQUEST['LSselect_topDn'])) { 'hiddenFields' => array_merge(
$topDn = $_REQUEST['LSselect_topDn']; $LSsearch -> getHiddenFieldForm(),
$selectedTopDn = $topDn; array(
}
else {
$topDn = LSsession :: getTopDn();
$selectedTopDn = $topDn;
}
}
else {
$params['scope'] = 'one';
if (LSsession :: validSubDnLdapServer($_REQUEST['LSselect_topDn'])) {
$topDn = $object -> config['container_dn'].','.$_REQUEST['LSselect_topDn'];
$selectedTopDn = $_REQUEST['LSselect_topDn'];
}
else {
$topDn = $object -> config['container_dn'].','.LSsession :: getTopDn();
$selectedTopDn = LSsession :: getTopDn();
}
}
$sort=false;
if ((isset($_REQUEST['orderby']))) {
$possible_values= array('displayName','subDn');
if (in_array($_REQUEST['orderby'],$possible_values)) {
$sort=true;
if ($orderby==$_REQUEST['orderby']) {
$ordersense = ($ordersense=='ASC')?'DESC':'ASC';
}
else {
$ordersense = 'ASC';
}
$orderby=$_REQUEST['orderby'];
}
}
$GLOBALS['Smarty']->assign('LSobject_list_subDn',$doSubDn);
// Sauvegarde en Session
$_SESSION['LSsession']['LSsearch'][$LSobject] = array(
'filter' => $filter,
'topDn' => $topDn,
'params' => $params,
'pattern' => $pattern,
'recur' => $recur,
'approx' => $approx,
'selectedTopDn' => $selectedTopDn,
'orderby' => $orderby,
'ordersense' => $ordersense,
'doSubDn' => $doSubDn
);
$GLOBALS['Smarty']->assign('LSview_search_pattern',$pattern);
if ($recur) {
$GLOBALS['Smarty']->assign('LSview_search_recur',true);
}
if ($approx) {
$GLOBALS['Smarty']->assign('LSview_search_approx',true);
}
$GLOBALS['Smarty']->assign('LSselect_topDn',$selectedTopDn);
$multiple = (isset($_REQUEST['multiple']))?1:0;
// Hidden fields
$GLOBALS['Smarty']->assign('LSview_search_hidden_fields',array(
'LSobject' => $LSobject,
'LSview_search_submit' => 1,
'ajax' => 1, 'ajax' => 1,
'multiple' => $multiple 'multiple' => $multiple
)); )
// Hash de la recherche déterminer à partir des paramètres de la recherche
$hash = mhash (MHASH_MD5,
print_r(
array(
'LSobject' => $LSobject,
'filter' => $filter,
'topDn' => $topDn,
'params' => $params
),
true
) )
); );
$GLOBALS['Smarty']->assign('searchForm',$searchForm);
if ((LSsession :: cacheSearch()) && isset($_SESSION['LSsession']['LSsearch'][$hash]) && (!isset($_REQUEST['refresh']))) { $LSview_actions=array(
// On affiche à partir du cache array (
$searchData=$_SESSION['LSsession']['LSsearch'][$hash]; 'label' => 'Refresh',
LSdebug('From cache');
}
else {
LSdebug('Load');
$LSview_actions[] = array (
'label' => _('Refresh'),
'url' => 'view.php?LSobject='.$LSobject.'&amp;refresh', 'url' => 'view.php?LSobject='.$LSobject.'&amp;refresh',
'action' => 'refresh' 'action' => 'refresh'
)
); );
$GLOBALS['Smarty']->assign('LSview_actions',$LSview_actions);
$list=$object -> listObjectsName($filter,$topDn,$params); $LSsearch -> run();
$nbObjects=count($list); $page=(int)$_REQUEST['page'];
$searchData['LSobject_list_nbresult']=$nbObjects; $page = $LSsearch -> getPage($page);
$GLOBALS['Smarty']->assign('page',$page);
$GLOBALS['Smarty']->assign('LSsearch',$LSsearch);
$c=0; $GLOBALS['Smarty']->assign('LSobject_list_objectname',$object -> getLabel());
foreach($list as $objDn => $objName) {
if (LSsession :: canAccess($LSobject,$objDn)) {
$c++;
unset($actions);
$subDn_name=false;
if ($doSubDn) {
$subDn_name = $object -> getSubDnName($objDn);
}
$objectList[]=array(
'dn' => $objDn,
'displayName' => $objName,
'subDn' => $subDn_name
);
}
else {
LSdebug($dn);
}
}
$searchData['objectList']=$objectList;
$searchData['LSview_actions'] = $LSview_actions;
if (LSsession :: cacheSearch()) {
$_SESSION['LSsession']['LSsearch'][$hash]=$searchData;
}
if ($orderby) {
$sort=true;
}
}
$GLOBALS['Smarty']->assign('LSobject_list_nbresult',$searchData['LSobject_list_nbresult']);
// Order by if $sort
if ($sort) {
function sortBy($a,$b) {
global $ordersense;
global $orderby;
if ($ordersense=='ASC') {
$sense = -1;
}
else {
$sense = 1;
}
if ($a == $b) return 0;
$sort = array($a[$orderby],$b[$orderby]);
sort($sort);
if ($sort[0]==$a[$orderby])
return 1*$sense;
return -1*$sense;
}
if (!uasort($searchData['objectList'],'sortBy')) {
LSdebug('Erreur durant le trie.');
}
$_SESSION['LSsession']['LSsearch'][$hash]=$searchData;
}
$GLOBALS['Smarty']->assign('LSobject_list_orderby',$orderby);
$GLOBALS['Smarty']->assign('LSobject_list_ordersense',$ordersense);
// Pagination
if ($searchData['LSobject_list_nbresult'] > NB_LSOBJECT_LIST_SELECT) {
if (isset($_REQUEST['page'])) {
$searchData['objectList'] = array_slice($searchData['objectList'], ($_REQUEST['page']) * NB_LSOBJECT_LIST_SELECT, NB_LSOBJECT_LIST_SELECT);
$GLOBALS['Smarty']->assign('LSobject_list_currentpage',$_REQUEST['page']);
}
else {
$searchData['objectList'] = array_slice($searchData['objectList'], 0, NB_LSOBJECT_LIST_SELECT);
$GLOBALS['Smarty']->assign('LSobject_list_currentpage',0);
}
$searchData['LSobject_list_nbpage']=ceil($searchData['LSobject_list_nbresult'] / NB_LSOBJECT_LIST_SELECT);
$GLOBALS['Smarty']->assign('LSobject_list_nbpage',$searchData['LSobject_list_nbpage']);
}
// Select/Pas Select
for($i=0;$i<count($searchData['objectList']);$i++) {
if (is_array($_SESSION['LSselect'][$LSobject])) {
if(in_array($searchData['objectList'][$i]['dn'],$_SESSION['LSselect'][$LSobject])) {
$select = true;
}
else {
$select = false;
}
}
else {
$select = false;
}
$searchData['objectList'][$i]['select']=$select;
}
$GLOBALS['Smarty']->assign('LSview_search',array(
'action' => $_SERVER['PHP_SELF'],
'submit' => _('Search'),
'LSobject' => $LSobject
));
$GLOBALS['Smarty']->assign('LSview_search_recur_label',_('Recursive search'));
$GLOBALS['Smarty']->assign('LSview_search_approx_label',_('Approximative search'));
$GLOBALS['Smarty']->assign('LSobject_list_without_result_label',_("This search didn't get any result."));
$GLOBALS['Smarty']->assign('LSobject_list',$searchData['objectList']);
$GLOBALS['Smarty']->assign('LSobject_list_objecttype',$LSobject);
$GLOBALS['Smarty'] -> assign('LSview_actions',$searchData['LSview_actions']);
$GLOBALS['Smarty'] -> assign('LSselect_multiple',$multiple);
if (isset($_REQUEST['ajax'])) { if (isset($_REQUEST['ajax'])) {
LSsession :: setTemplate('select_table.tpl'); LSsession :: setTemplate('select_table.tpl');
} }
else { else {
LSsession :: setTemplate('select.tpl'); LSsession :: setTemplate('select.tpl');
} }
LSsession :: setAjaxDisplay(); LSsession :: setAjaxDisplay();
} }
else {
LSsession :: addErrorCode('LSsession_05','LSsearch');
}
}
} }
else { else {
LSerror :: addErrorCode('LSsession_12'); LSerror :: addErrorCode('LSsession_12');
@ -323,4 +107,8 @@ else {
// Affichage des retours d'erreurs // Affichage des retours d'erreurs
LSsession :: displayTemplate(); LSsession :: displayTemplate();
if (isset($LSsearch)) {
$LSsearch->afterUsingResult();
}
?> ?>

View file

@ -3,25 +3,25 @@
{$pagetitle} {$pagetitle}
</h1> </h1>
<form action='{$LSview_search.action}' method='post' class='LSview_search LSselect_search btn' id='LSselect_search_form'> <form action='{$searchForm.action}' method='post' class='LSview_search LSselect_search btn' id='LSselect_search_form'>
{foreach from=$LSview_search_hidden_fields item=field_value key=field_name} {foreach from=$searchForm.hiddenFields item=field_value key=field_name}
<input type='hidden' name='{$field_name}' value='{$field_value}' /> <input type='hidden' name='{$field_name}' value='{$field_value}' />
{/foreach} {/foreach}
{if $LSsession_subDn!=""} {if $LSsession_subDn!=""}
<label id='LSselect_topDn_label'>{$label_level} <label id='LSselect_topDn_label'>{$searchForm.labels.level}
<select name='LSselect_topDn' id='LSselect_topDn'> <select name='subDn' id='LSselect_topDn'>
{html_options values=$LSsession_subDn_indexes output=$LSsession_subDn_names selected=$LSselect_topDn} {html_options values=$LSsession_subDn_indexes output=$LSsession_subDn_names selected=$searchForm.values.basedn}
</select> </select>
</label> </label>
{/if} {/if}
<div class='LSselect_search'> <div class='LSselect_search'>
<input type='text' name='LSview_pattern' class='LSview_search' value="{$LSview_search_pattern}"/> <input type='text' name='pattern' class='LSview_search' value="{$searchForm.values.pattern}"/>
<input type='submit' value='{$LSview_search.submit}' name='LSview_search_submit' class='LSview_search' /> <input type='submit' value='{$searchForm.labels.submit}' name='{$searchForm.names.submit}' class='LSview_search' />
<img src='{$LS_IMAGES_DIR}/refresh.png' alt='{$_refresh}' title='{$_refresh}' id='LSselect_refresh_btn' /> <img src='{$LS_IMAGES_DIR}/refresh.png' alt='{$searchForm.labels.refresh}' title='{$searchForm.labels.refresh}' id='LSselect_refresh_btn' />
<p id='LSview_search_param'> <p id='LSview_search_param'>
<label class='LSview_search'>{$LSview_search_approx_label} : <input type='checkbox' name='LSview_approx' class='LSview_search' {if $LSview_search_approx!=''}checked="true"{/if} /></label> <label class='LSview_search'>{$searchForm.labels.approx} : <input type='checkbox' name='approx' class='LSview_search' {if $searchForm.values.approx!=''}checked="true"{/if} /></label>
{if $LSsession_subDn!=""}<label class='LSview_search'>{$LSview_search_recur_label} : <input type='checkbox' name='LSview_recur' class='LSview_search' {if $LSview_search_recur!=''}checked="true"{/if}/></label>{/if} {if $searchForm.recursive}<label class='LSview_search'>{$searchForm.labels.recursive} : <input type='checkbox' name='recursive' class='LSview_search' {if $searchForm.values.recursive!=''}checked="true"{/if}/></label>{/if}
</p> </p>
</div> </div>
</form> </form>
@ -30,6 +30,6 @@
</div> </div>
</div> </div>
<script type='text/javascript'> <script type='text/javascript'>
LSselect_multiple = {$LSselect_multiple}; LSselect_multiple = {$searchForm.multiple};
varLSselect = new LSselect(); varLSselect = new LSselect();
</script> </script>

View file

@ -1,32 +1,78 @@
<table class='LSobject-list' id='LSselect-object' caption='{$LSobject_list_objecttype}'> <table class='LSobject-list' id='LSselect-object' caption='{$LSsearch->LSobject}'>
<tr class='LSobject-list'> <tr class='LSobject-list'>
<th class='LSobject-list LSobject-select-check'></th> <th class='LSobject-list LSobject-select-check'></th>
<th class='LSobject-list sortBy_displayName'>{if $LSobject_list_orderby == 'displayName'}<strong>{$LSobject_list_objectname}</strong><img src='{$LS_IMAGES_DIR}/{$LSobject_list_ordersense}.png' class='LSobject-list-ordersense' alt='{$LSobject_list_ordersense}'/>{else}{$LSobject_list_objectname}{/if}</th> <th class='LSobject-list{if $LSsearch->sort} sortBy_displayName{/if}'>
{if $LSobject_list_subDn}<th class='LSobject-list LSobject-list-subdn sortBy_subDn'>{if $LSobject_list_orderby == 'subDn'}<strong>{$label_level}</strong><img src='{$LS_IMAGES_DIR}/{$LSobject_list_ordersense}.png' class='LSobject-list-ordersense' alt='{$LSobject_list_ordersense}'/>{else}{$label_level}{/if}</th>{/if} {if $LSsearch->sortBy == 'displayName'}
<strong>{$LSsearch->label_objectName}</strong>
<img src='{$LS_IMAGES_DIR}/{$LSsearch->sortDirection}.png' class='LSobject-list-ordersense' alt='{$LSsearch->sortDirection}'/>
{else}
{$LSsearch->label_objectName}
{/if}
</th>
{if $LSsearch->displaySubDn}
<th class='LSobject-list LSobject-list-subdn{if $LSsearch->sort} sortBy_subDn{/if}'>
{if $LSsearch->sort}
{if $LSsearch->sortBy == 'subDn'}
<strong>{$LSsearch->label_level}</strong>
<img src='{$LS_IMAGES_DIR}/{$LSsearch->sortDirection}.png' class='LSobject-list-ordersense' alt='{$LSsearch->sortDirection}'/>
{else}
{$LSsearch->label_level}
{/if}
{else}
{$LSsearch->label_level}
{/if}
</th>
{/if}
</tr> </tr>
{assign var='bis' value=false} {foreach from=$page.list item=object}
{foreach from=$LSobject_list item=object} <tr class='{cycle values="LSobject-list,LSobject-list LSobject-list-bis"}'>
<tr class='LSobject-list{if $bis} LSobject-list-bis{assign var='bis' value=false}{else}{assign var='bis' value=true}{/if}'> <td class='LSobject-list LSobject-select-check'><input type='{if $searchForm.multiple}checkbox{else}radio{/if}' name='LSobjects_selected[]' value='{$object->dn}' {if $object->LSselect}checked="true"{/if} class='LSobject-select' /></td>
<td class='LSobject-list LSobject-select-check'><input type='{if $LSselect_multiple}checkbox{else}radio{/if}' name='LSobjects_selected[]' value='{$object.dn}' {if $object.select}checked="true"{/if} class='LSobject-select' /></td> <td class='LSobject-list LSobject-select-names'>{$object->displayName}</td>
<td class='LSobject-list LSobject-select-names'>{$object.displayName}</td> {if $LSsearch->displaySubDn}
{if $LSobject_list_subDn}<td class='LSobject-list LSobject-select-level'>{$object.subDn}</td>{/if} <td class='LSobject-list LSobject-select-level'>{$object->subDn}</td>
{/if}
</tr> </tr>
{foreachelse} {foreachelse}
<tr class='LSobject-list'> <tr class='LSobject-list'>
<td colspan='3' class='LSobject-list-without-result'>{$LSobject_list_without_result_label}</td> <td colspan='3' class='LSobject-list-without-result'>{$LSsearch->label_no_result}</td>
</tr> </tr>
{/foreach} {/foreach}
</table> </table>
{if $LSobject_list_nbpage}
{if $page.nbPages > 1}
<p class='LSobject-list-page'> <p class='LSobject-list-page'>
{section name=listpage loop=$LSobject_list_nbpage step=1} {if $page.nbPages > 10}
{if $LSobject_list_currentpage == $smarty.section.listpage.index} {php}$this->assign('range', range(0,10));{/php}
<strong class='LSobject-list-page'>{$LSobject_list_currentpage+1}</strong> {if $page.nb > 5}
{if $page.nb > $page.nbPages-6}
{assign var=start value=$page.nbPages-12}
{else} {else}
<a href='select.php?LSobject={$LSobject_list_objecttype}&amp;multiple={$LSselect_multiple}&amp;page={$smarty.section.listpage.index}&amp;{$LSobject_list_filter}' class='LSobject-list-page'>{$smarty.section.listpage.index+1}</a> {assign var=start value=$page.nb-6}
{/if}
{else}
{assign var=start value=0}
{/if}
<a href='select.php?LSobject={$LSsearch->LSobject}&amp;page=0&amp;multiple={$searchForm.multiple}' class='LSobject-list-page'><</a>
{foreach from=$range item=i}
{if $page.nb==$start+$i}
<strong class='LSobject-list-page'>{$page.nb+1}</strong>
{else}
<a href='select.php?LSobject={$LSsearch->LSobject}&amp;page={$i+$start}&amp;multiple={$searchForm.multiple}' class='LSobject-list-page'>{$i+$start+1}</a>
{/if}
{/foreach}
<a href='select.php?LSobject={$LSsearch->LSobject}&amp;page={$page.nbPages-1}&amp;multiple={$searchForm.multiple}' class='LSobject-list-page'>></a>
{else}
{section name=listpage loop=$page.nbPages step=1}
{if $page.nb == $smarty.section.listpage.index}
<strong class='LSobject-list-page'>{$page.nb+1}</strong>
{else}
<a href='select.php?LSobject={$LSsearch->LSobject}&amp;page={$smarty.section.listpage.index}&amp;multiple={$searchForm.multiple}' class='LSobject-list-page'>{$smarty.section.listpage.index+1}</a>
{/if} {/if}
{/section} {/section}
{/if}
</p> </p>
{/if} {/if}
<div id='LSdebug_txt'>{$LSdebug_txt}</div>
<div id='LSerror_txt'>{$LSerror_txt}</div> <div id='LSdebug_txt_ajax' style='display: none'>{$LSdebug_txt}</div>
<div id='LSerror_txt_ajax' style='display: none'>{$LSerror_txt}</div>

View file

@ -1,64 +0,0 @@
{include file='top.tpl'}
<form action='{$LSview_search.action}' method='post' class='LSview_search'>
{foreach from=$LSview_search_hidden_fields item=value key=name}
<input type='hidden' name='{$name}' value='{$value}' />
{/foreach}
<input type='text' name='LSview_pattern' class='LSview_search' value="{$LSview_search_pattern}"/>
<input type='submit' value='{$LSview_search.submit}' name='LSview_search_submit' class='LSview_search' />
<p id='LSview_search_param'>
<label class='LSview_search'>{$LSview_search_approx_label} : <input type='checkbox' name='LSview_approx' class='LSview_search' {if $LSview_search_approx!=''}checked="true"{/if} /></label>
{if $LSobject_list_subDn}<label class='LSview_search'>{$LSview_search_recur_label} : <input type='checkbox' name='LSview_recur' class='LSview_search' {if $LSview_search_recur!=''}checked="true"{/if}/></label>{/if}
</p>
</form>
<h1>
{$pagetitle}
</h1>
{if $LSview_actions != ''}
<ul class='LSview-actions'>
{foreach from=$LSview_actions item=item}
{if is_array($item)}
<li class='LSview-actions'><a href='{$item.url}' class='LSview-actions'><img src='{$LS_IMAGES_DIR}/{$item.action}.png' alt='{php}tr('label');{/php}' title='{php}tr('label');{/php}' /> {php}tr('item','label');{/php}</a></li>
{/if}
{/foreach}
</ul>
{/if}
<table class='LSobject-list'>
<tr class='LSobject-list'>
<th class='LSobject-list'><a href='view.php?LSobject={$LSobject_list_objecttype}&amp;orderby=displayName'>{if $LSobject_list_orderby == 'displayName'}<strong>{$LSobject_list_objectname}</strong><img src='{$LS_IMAGES_DIR}/{$LSobject_list_ordersense}.png' class='LSobject-list-ordersense' alt='{$LSobject_list_ordersense}'/>{else}{$LSobject_list_objectname}{/if}</a></th>
{if $LSobject_list_subDn}<th class='LSobject-list LSobject-list-subdn'><a href='view.php?LSobject={$LSobject_list_objecttype}&amp;orderby=subDn'>{if $LSobject_list_orderby == 'subDn'}<strong>{$label_level}</strong><img src='{$LS_IMAGES_DIR}/{$LSobject_list_ordersense}.png' class='LSobject-list-ordersense' alt='{$LSobject_list_ordersense}'/>{else}{$label_level}{/if}</a></th>{/if}
<th class='LSobject-list'>{$_Actions}</th>
</tr>
{assign var='bis' value=false}
{foreach from=$LSobject_list item=object}
<tr class='LSobject-list{if $bis} LSobject-list-bis{assign var='bis' value=false}{else}{assign var='bis' value=true}{/if}'>
<td class='LSobject-list LSobject-list-names'><a href='view.php?LSobject={$LSobject_list_objecttype}&amp;dn={$object.dn}' class='LSobject-list'>{$object.displayName}</a> </td>
{if $LSobject_list_subDn}<td class='LSobject-list'>{$object.subDn}</td>{/if}
<td class='LSobject-list LSobject-list-actions'>
{if $object.actions!=''}
{foreach from=$object.actions item=item}
<a href='{$item.url}' class='LSobject-list-actions'><img src='{$LS_IMAGES_DIR}/{$item.action}.png' alt='{$item.label}' title='{$item.label}'/></a>
{/foreach}
{/if}
</td>
</tr>
{foreachelse}
<tr class='LSobject-list'>
<td colspan='3' class='LSobject-list-without-result'>{$LSobject_list_without_result_label}</td>
</tr>
{/foreach}
</table>
<span id='LSobject_list_nbresult'>{$LSobject_list_nbresult} {$pagetitle}</span>
{if $LSobject_list_nbpage}
<p class='LSobject-list-page'>
{section name=listpage loop=$LSobject_list_nbpage step=1}
{if $LSobject_list_currentpage == $smarty.section.listpage.index}
<strong class='LSobject-list-page'>{$LSobject_list_currentpage+1}</strong>
{else}
<a href='view.php?LSobject={$LSobject_list_objecttype}&amp;page={$smarty.section.listpage.index}&amp;{$LSobject_list_filter}' class='LSobject-list-page'>{$smarty.section.listpage.index+1}</a>
{/if}
{/section}
</p>
{/if}
{include file='bottom.tpl'}

View file

@ -0,0 +1,115 @@
{include file='top.tpl'}
<form action='{$searchForm.action}' method='post' class='LSview_search'>
{foreach from=$searchForm.hiddenFields item=value key=name}
<input type='hidden' name='{$name}' value='{$value}' />
{/foreach}
<input type='text' name='pattern' class='LSview_search' value="{$searchForm.values.pattern}"/>
<input type='submit' value='{$searchForm.labels.submit}' name='{$searchForm.names.submit}' class='LSview_search' />
<p id='LSview_search_param'>
<label class='LSview_search'>{$searchForm.labels.approx} : <input type='checkbox' name='approx' class='LSview_search' {if $searchForm.values.approx!=''}checked="true"{/if} /></label>
{if $searchForm.recursive}<label class='LSview_search'>{$searchForm.labels.recursive} : <input type='checkbox' name='recursive' class='LSview_search' {if $searchForm.values.recursive!=''}checked="true"{/if}/></label>{/if}
</p>
</form>
<h1>
{$pagetitle}
</h1>
{if $LSview_actions != ''}
<ul class='LSview-actions'>
{foreach from=$LSview_actions item=item}
{if is_array($item)}
<li class='LSview-actions'><a href='{$item.url}' class='LSview-actions'><img src='{$LS_IMAGES_DIR}/{$item.action}.png' alt='{php}tr('label');{/php}' title='{php}tr('label');{/php}' /> {php}tr('item','label');{/php}</a></li>
{/if}
{/foreach}
</ul>
{/if}
<table class='LSobject-list'>
<tr class='LSobject-list'>
<th class='LSobject-list'>
{if $LSsearch->sort}
<a href='view.php?LSobject={$LSsearch->LSobject}&amp;sortBy=displayName&amp;nocache={$smarty.now}'>
{if $LSsearch->sortBy == 'displayName'}
<strong>{$LSsearch->label_objectName}</strong>
<img src='{$LS_IMAGES_DIR}/{$LSsearch->sortDirection}.png' class='LSobject-list-ordersense' alt='{$LSsearch->sortDirection}'/>
{else}
{$LSsearch->label_objectName}
{/if}
</a>
{else}
{$LSsearch->label_objectName}
{/if}
</th>
{if $LSsearch->displaySubDn}
<th class='LSobject-list LSobject-list-subdn'>
{if $LSsearch->sort}
<a href='view.php?LSobject={$LSsearch->LSobject}&amp;sortBy=subDn&amp;nocache={$smarty.now}'>
{if $LSsearch->sortBy == 'subDn'}
<strong>{$LSsearch->label_level}</strong>
<img src='{$LS_IMAGES_DIR}/{$LSsearch->sortDirection}.png' class='LSobject-list-ordersense' alt='{$LSsearch->sortDirection}'/>
{else}
{$LSsearch->label_level}
{/if}
</a>
{else}
{$LSsearch->label_level}
{/if}
</th>
{/if}
<th class='LSobject-list'>{$LSsearch->label_actions}</th>
</tr>
{foreach from=$page.list item=object}
<tr class='{cycle values="LSobject-list,LSobject-list LSobject-list-bis"}'>
<td class='LSobject-list LSobject-list-names'><a href='view.php?LSobject={$LSsearch->LSobject}&amp;dn={$object->dn}' class='LSobject-list'>{$object->displayName}</a> </td>
{if $LSsearch->displaySubDn}<td class='LSobject-list'>{$object->subDn}</td>{/if}
<td class='LSobject-list LSobject-list-actions'>
{foreach from=$object->actions item=item}
<a href='{$item.url}' class='LSobject-list-actions'><img src='{$LS_IMAGES_DIR}/{$item.action}.png' alt='{$item.label}' title='{$item.label}'/></a>
{/foreach}
</td>
</tr>
{foreachelse}
<tr class='LSobject-list'>
<td colspan='3' class='LSobject-list-without-result'>{$LSsearch->label_no_result}</td>
</tr>
{/foreach}
</table>
<span id='LSobject_list_nbresult'>{$LSsearch->label_total}</span>
{if $page.nbPages > 1}
<p class='LSobject-list-page'>
{if $page.nbPages > 10}
{php}$this->assign('range', range(0,10));{/php}
{if $page.nb > 5}
{if $page.nb > $page.nbPages-6}
{assign var=start value=$page.nbPages-12}
{else}
{assign var=start value=$page.nb-6}
{/if}
{else}
{assign var=start value=0}
{/if}
<a href='view.php?LSobject={$LSsearch->LSobject}&amp;page=0' class='LSobject-list-page'><</a>
{foreach from=$range item=i}
{if $page.nb==$start+$i}
<strong class='LSobject-list-page'>{$page.nb+1}</strong>
{else}
<a href='view.php?LSobject={$LSsearch->LSobject}&amp;page={$i+$start}' class='LSobject-list-page'>{$i+$start+1}</a>
{/if}
{/foreach}
<a href='view.php?LSobject={$LSsearch->LSobject}&amp;page={$page.nbPages-1}' class='LSobject-list-page'>></a>
{else}
{section name=listpage loop=$page.nbPages step=1}
{if $page.nb == $smarty.section.listpage.index}
<strong class='LSobject-list-page'>{$page.nb+1}</strong>
{else}
<a href='view.php?LSobject={$LSsearch->LSobject}&amp;page={$smarty.section.listpage.index}' class='LSobject-list-page'>{$smarty.section.listpage.index+1}</a>
{/if}
{/section}
{/if}
</p>
{/if}
{include file='bottom.tpl'}

View file

@ -88,306 +88,67 @@ if(LSsession :: startLSsession()) {
} }
} }
// Affichage d'une liste d'un type d'objet // Affichage d'une liste d'un type d'objet
else { elseif (LSsession :: loadLSclass('LSsearch')) {
$objectList=array();
$object = new $LSobject(); $object = new $LSobject();
$GLOBALS['Smarty']->assign('pagetitle',$object -> getLabel()); $GLOBALS['Smarty']->assign('pagetitle',$object -> getLabel());
$GLOBALS['Smarty']->assign('LSobject_list_objectname',$object -> getLabel());
if (isset($_SESSION['LSsession']['LSsearch'][$LSobject])) { $LSsearch = new LSsearch($LSobject,'LSview');
$filter = $_SESSION['LSsession']['LSsearch'][$LSobject]['filter']; $LSsearch -> setParamsFormPostData();
$params = $_SESSION['LSsession']['LSsearch'][$LSobject]['params'];
$pattern = $_SESSION['LSsession']['LSsearch'][$LSobject]['pattern'];
$recur = $_SESSION['LSsession']['LSsearch'][$LSobject]['recur'];
if ($recur) {
$topDn = LSsession :: getTopDn();
}
else {
$topDn = $object -> config['container_dn'].','.LSsession :: getTopDn();
}
$approx = $_SESSION['LSsession']['LSsearch'][$LSobject]['approx'];
$orderby = $_SESSION['LSsession']['LSsearch'][$LSobject]['orderby'];
$ordersense = $_SESSION['LSsession']['LSsearch'][$LSobject]['ordersense'];
$doSubDn = $_SESSION['LSsession']['LSsearch'][$LSobject]['doSubDn'];
}
else {
$filter = NULL;
$topDn = $object -> config['container_dn'].','.LSsession :: getTopDn();
$params = array('scope' => 'one');
$pattern = false;
$recur = LSconfig :: get("LSobjects.$LSobject.LSsearch.recursive");
$approx = false;
$orderby = false;
$_REQUEST['orderby']=LSconfig :: get("LSobjects.$LSobject.orderby");
$ordersense = 'ASC';
$subDnLdapServer = LSsession :: getSubDnLdapServer();
$doSubDn = (($subDnLdapServer)&&(!LSsession :: isSubDnLSobject($LSobject)));
}
if (isset($_REQUEST['LSview_search_submit'])) { $searchForm = array (
if (isset($_REQUEST['LSview_pattern']) && ($_REQUEST['LSview_pattern']!=$pattern)) { 'action' => $_SERVER['PHP_SELF'],
$pattern = $_REQUEST['LSview_pattern']; 'recursive' => (! LSsession :: isSubDnLSobject($LSobject) ),
} 'labels' => array (
'submit' => _('Search'),
$approx = (isset($_REQUEST['LSview_approx'])); 'approx' => _('Approximative search'),
'recursive' => _('Recursive search')
if ($pattern && $pattern!='') {
$filter=$object -> getPatternFilter($pattern,$approx);
}
else {
$filter = NULL;
}
if (isset($_REQUEST['LSview_recur'])) {
$recur = true;
}
else {
$recur = false;
}
}
if ($recur) {
$params['scope'] = 'sub';
$topDn = LSsession :: getTopDn();
}
else {
$params['scope'] = 'one';
$topDn = $object -> config['container_dn'].','.LSsession :: getTopDn();
}
$sort=false;
if ((isset($_REQUEST['orderby']))) {
$possible_values= array('displayName','subDn');
if (in_array($_REQUEST['orderby'],$possible_values)) {
$sort=true;
if ($orderby==$_REQUEST['orderby']) {
$ordersense = ($ordersense=='ASC')?'DESC':'ASC';
}
else {
$ordersense = 'ASC';
}
$orderby=$_REQUEST['orderby'];
}
}
$GLOBALS['Smarty']->assign('LSobject_list_subDn',$doSubDn);
// Sauvegarde en Session
$_SESSION['LSsession']['LSsearch'][$LSobject] = array(
'filter' => $filter,
'topDn' => $topDn,
'params' => $params,
'pattern' => $pattern,
'recur' => $recur,
'approx' => $approx,
'orderby' => $orderby,
'ordersense' => $ordersense,
'doSubDn' => $doSubDn
);
$GLOBALS['Smarty']->assign('LSview_search_pattern',$pattern);
if ($recur) {
$GLOBALS['Smarty']->assign('LSview_search_recur',true);
}
if ($approx) {
$GLOBALS['Smarty']->assign('LSview_search_approx',true);
}
// Hidden fields
$GLOBALS['Smarty']->assign('LSview_search_hidden_fields',array(
'LSobject' => $LSobject,
'LSview_search_submit' => 1
));
// Hash de la recherche déterminer à partir des paramètres de la recherche
$hash = mhash (MHASH_MD5,
print_r(
array(
'LSobject' => $LSobject,
'filter' => $filter,
'topDn' => $topDn,
'params' => $params
), ),
true 'values' => array (
) 'pattern' => $LSsearch->getParam('pattern'),
'approx' => $LSsearch->getParam('approx'),
'recursive' => $LSsearch->getParam('recursive')
),
'names' => array (
'submit' => 'LSsearch_submit'
),
'hiddenFields' => $LSsearch -> getHiddenFieldForm()
); );
$GLOBALS['Smarty']->assign('searchForm',$searchForm);
if ((LSsession :: cacheSearch()) && isset($_SESSION['LSsession']['LSsearch'][$hash]) && (!isset($_REQUEST['refresh']))) { $LSview_actions=array();
// On affiche à partir du cache if(LSsession :: canCreate($LSobject)) {
$searchData=$_SESSION['LSsession']['LSsearch'][$hash];
LSdebug('Find : From cache');
if(!isset($searchData['LSview_actions']['create'])) {
LSdebug('Recherche : Check Create()');
if (LSsession :: canCreate($LSobject)) {
$searchData['LSview_actions']['create'] = array (
'label' => 'New',
'url' => 'create.php?LSobject='.$LSobject,
'action' => 'create'
);
}
else {
$searchData['LSview_actions']['create'] = false;
}
$_SESSION['LSsession']['LSsearch'][$hash]=$searchData;
}
}
else { // Load
LSdebug('Find : Load');
if (LSsession :: canCreate($LSobject)) {
$LSview_actions['create'] = array ( $LSview_actions['create'] = array (
'label' => 'New', 'label' => 'New',
'url' => 'create.php?LSobject='.$LSobject, 'url' => 'create.php?LSobject='.$LSobject,
'action' => 'create' 'action' => 'create'
); );
$canCopy=true;
}
else {
$LSview_actions['create'] = false;
} }
$LSview_actions['refresh'] = array ( $LSview_actions['refresh'] = array (
'label' => 'Refresh', 'label' => 'Refresh',
'url' => 'view.php?LSobject='.$LSobject.'&amp;refresh', 'url' => 'view.php?LSobject='.$LSobject.'&amp;refresh',
'action' => 'refresh' 'action' => 'refresh'
); );
/*$LSview_actions['purge'] = array (
$list=$object -> listObjectsName($filter,$topDn,$params); 'label' => 'Purge the cache',
'url' => 'view.php?LSobject='.$LSobject.'&amp;LSsearchPurgeSession',
$nbObjects=0;
foreach($list as $objDn => $objName) {
if (LSsession :: canAccess($LSobject,$objDn)) {
$subDn_name=false;
if ($doSubDn) {
$subDn_name = $object -> getSubDnName($objDn);
}
$nbObjects++;
$objectList[]=array(
'dn' => $objDn,
'displayName' => $objName,
'subDn' => $subDn_name
);
}
}
$searchData['LSobject_list_nbresult']=$nbObjects;
$searchData['objectList']=$objectList;
$searchData['LSview_actions'] = $LSview_actions;
if ($orderby) {
$sort=true;
}
} // Fin Load
if ((!isset($searchData['objectList'][0]['actions']))&&(!empty($searchData['objectList']))) {
LSdebug('Load actions');
for($i=0;$i<$searchData['LSobject_list_nbresult'];$i++) {
$actions=array();
$actions[] = array(
'label' => _('View'),
'url' =>'view.php?LSobject='.$LSobject.'&amp;dn='.$searchData['objectList'][$i]['dn'],
'action' => 'view'
);
if (LSsession :: canEdit($LSobject,$searchData['objectList'][$i]['dn'])) {
$actions[]=array(
'label' => _('Modify'),
'url' => 'modify.php?LSobject='.$LSobject.'&amp;dn='.$searchData['objectList'][$i]['dn'],
'action' => 'modify'
);
}
if ($canCopy) {
$actions[] = array(
'label' => _('Copy'),
'url' =>'create.php?LSobject='.$LSobject.'&amp;load='.$searchData['objectList'][$i]['dn'],
'action' => 'copy'
);
}
if (LSsession :: canRemove($LSobject,$searchData['objectList'][$i]['dn'])) {
$actions[] = array (
'label' => _('Delete'),
'url' => 'remove.php?LSobject='.$LSobject.'&amp;dn='.$searchData['objectList'][$i]['dn'],
'action' => 'delete' 'action' => 'delete'
); );*/
} $GLOBALS['Smarty']->assign('LSview_actions',$LSview_actions);
$searchData['objectList'][$i]['actions']=$actions;
}
}
$GLOBALS['Smarty']->assign('LSobject_list_nbresult',$searchData['LSobject_list_nbresult']); $LSsearch -> run();
$page=(int)$_REQUEST['page'];
// Order by if $sort $page = $LSsearch -> getPage($page);
if ($sort) { $GLOBALS['Smarty']->assign('page',$page);
function sortBy($a,$b) { $GLOBALS['Smarty']->assign('LSsearch',$LSsearch);
global $ordersense;
global $orderby;
if ($ordersense=='ASC') {
$sense = -1;
}
else {
$sense = 1;
}
if ($a == $b) return 0;
$sort = array($a[$orderby],$b[$orderby]);
sort($sort);
if ($sort[0]==$a[$orderby])
return 1*$sense;
return -1*$sense;
}
if (!uasort($searchData['objectList'],'sortBy')) {
LSdebug('Error while sorting.');
}
} // Fin Order by
$GLOBALS['Smarty']->assign('LSobject_list_orderby',$orderby);
$GLOBALS['Smarty']->assign('LSobject_list_ordersense',$ordersense);
// Mise en cache
if (LSsession :: cacheSearch()) {
$_SESSION['LSsession']['LSsearch'][$hash]=$searchData;
}
// Pagination
if ($searchData['LSobject_list_nbresult'] > NB_LSOBJECT_LIST) {
if (isset($_REQUEST['page'])) {
$searchData['objectList'] = array_slice($searchData['objectList'], ($_REQUEST['page']) * NB_LSOBJECT_LIST, NB_LSOBJECT_LIST);
$GLOBALS['Smarty']->assign('LSobject_list_currentpage',$_REQUEST['page']);
}
else {
$searchData['objectList'] = array_slice($searchData['objectList'], 0, NB_LSOBJECT_LIST);
$GLOBALS['Smarty']->assign('LSobject_list_currentpage',0);
}
$searchData['LSobject_list_nbpage']=ceil($searchData['LSobject_list_nbresult'] / NB_LSOBJECT_LIST);
$GLOBALS['Smarty']->assign('LSobject_list_nbpage',$searchData['LSobject_list_nbpage']);
} // Fin Pagination
if (LSsession :: loadLSclass('LSform')) { if (LSsession :: loadLSclass('LSform')) {
LSform :: loadDependenciesDisplayView(); LSform :: loadDependenciesDisplayView();
} }
$GLOBALS['Smarty']->assign('LSview_search',array( LSsession :: setTemplate('viewSearch.tpl');
'action' => $_SERVER['PHP_SELF'], }
'submit' => _('Search'), else {
'LSobject' => $LSobject LSsession :: addErrorCode('LSsession_05','LSsearch');
));
$GLOBALS['Smarty']->assign('LSview_search_recur_label',_('Recursive search'));
$GLOBALS['Smarty']->assign('LSview_search_approx_label',_('Approximative search'));
$GLOBALS['Smarty']->assign('LSobject_list_without_result_label',_("This search didn't get any result."));
$GLOBALS['Smarty']->assign('_Actions',_('Actions'));
$GLOBALS['Smarty']->assign('_Modifier',_('Modify'));
$GLOBALS['Smarty']->assign('LSobject_list',$searchData['objectList']);
$GLOBALS['Smarty']->assign('LSobject_list_objecttype',$LSobject);
$GLOBALS['Smarty'] -> assign('LSview_actions',$searchData['LSview_actions']);
LSsession :: setTemplate('viewList.tpl');
} }
} }
} }
@ -402,7 +163,11 @@ if(LSsession :: startLSsession()) {
else { else {
LSsession :: setTemplate('login.tpl'); LSsession :: setTemplate('login.tpl');
} }
// Affichage des retours d'erreurs // Affichage des retours d'erreurs
LSsession :: displayTemplate(); LSsession :: displayTemplate();
if (isset($LSsearch)) {
$LSsearch->afterUsingResult();
}
?> ?>