* Copyright (C) 2006 Regis Houssin * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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. * * $Id$ * $Source$ */ /** \file htdocs/user/ldap.php \ingroup ldap \brief Page fiche LDAP utilisateur \version $Revision$ */ require("./pre.inc.php"); require_once(DOL_DOCUMENT_ROOT."/lib/usergroups.lib.php"); require_once(DOL_DOCUMENT_ROOT."/lib/ldap.class.php"); $user->getrights('commercial'); $langs->load("users"); $langs->load("admin"); $langs->load("companies"); $langs->load("ldap"); // Protection quand utilisateur externe $contactid = isset($_GET["id"])?$_GET["id"]:''; $socid=0; if ($user->societe_id > 0) { $socid = $user->societe_id; } $fuser = new User($db, $_GET["id"]); $fuser->fetch(); $fuser->getrights(); /* * Actions */ if ($_GET["action"] == 'dolibarr2ldap') { $message=""; $db->begin(); $ldap=new Ldap(); $result=$ldap->connect_bind(); $info=$fuser->_load_ldap_info(); $dn=$fuser->_load_ldap_dn($info); $result=$ldap->update($dn,$info,$user); // Marche en creation LDAP et mise a jour if ($result >= 0) { $message.='
'.$langs->trans("UserSynchronized").'
'; $db->commit(); } else { $message.='
'.$ldap->error.'
'; $db->rollback(); } } /* * Affichage page */ llxHeader(); $form = new Form($db); /* * Affichage onglets */ $head = user_prepare_head($fuser); dolibarr_fiche_head($head, 'ldap', $langs->trans("User").": ".$fuser->fullname); /* * Fiche en mode visu */ print ''; // Ref print ''; print ''; print ''; // Nom print ''; print ''; print "\n"; // Prenom print ''; print ''; print "\n"; // Login print ''; if ($fuser->ldap_sid) { print ''; } else { print ''; } print ''; if ($conf->global->LDAP_SERVER_TYPE == "activedirectory") { $ldap = new Ldap(); $result = $ldap->connect_bind(); if ($result > 0) { $userSID = $ldap->getObjectSid($fuser->login); } print ''; print ''; print "\n"; } // LDAP DN print '\n"; // LDAP Clé print '\n"; // LDAP Server print '\n"; print '\n"; print '\n"; print '\n"; print '\n"; print '
'.$langs->trans("Ref").''.$fuser->id.'
'.$langs->trans("Lastname").''.$fuser->nom.'
'.$langs->trans("Firstname").''.$fuser->prenom.'
'.$langs->trans("Login").''.$langs->trans("LoginAccountDisableInDolibarr").''.$fuser->login.'
'.$langs->trans("SID").''.$userSID.'
LDAP '.$langs->trans("LDAPUserDn").''.$conf->global->LDAP_USER_DN."
LDAP '.$langs->trans("LDAPNamingAttribute").''.$conf->global->LDAP_KEY_USERS."
LDAP '.$langs->trans("Type").''.$conf->global->LDAP_SERVER_TYPE."
LDAP '.$langs->trans("Version").''.$conf->global->LDAP_SERVER_PROTOCOLVERSION."
LDAP '.$langs->trans("LDAPPrimaryServer").''.$conf->global->LDAP_SERVER_HOST."
LDAP '.$langs->trans("LDAPSecondaryServer").''.$conf->global->LDAP_SERVER_HOST_SLAVE."
LDAP '.$langs->trans("LDAPServerPort").''.$conf->global->LDAP_SERVER_PORT."
'; print ''; if ($message) { print $message; } /* * Barre d'actions */ print '
'; if ($conf->global->LDAP_SYNCHRO_ACTIVE == 'dolibarr2ldap') { print ''.$langs->trans("ForceSynchronize").''; } print "
\n"; if ($conf->global->LDAP_SYNCHRO_ACTIVE == 'dolibarr2ldap') print "
\n"; // Affichage attributs LDAP print_titre($langs->trans("LDAPInformationsForThisUser")); print ''; print ''; print ''; print ''; print ''; // Lecture LDAP $ldap=new Ldap(); $result=$ldap->connect_bind(); if ($result > 0) { $info=$fuser->_load_ldap_info(); $dn=$fuser->_load_ldap_dn($info,1); $search = "(".$fuser->_load_ldap_dn($info,2).")"; $records=$ldap->search($dn,$search); //print_r($records); // Affichage arbre if (sizeof($records) && (! isset($records['count']) || $records['count'] > 0)) { if (! is_array($records)) { print ''; } else { $html=new Form($db); $result=$html->show_ldap_content($records,0,0,true); } } else { print ''; } $ldap->unbind(); $ldap->close(); } else { dolibarr_print_error('',$ldap->error); } print '
'.$langs->trans("LDAPAttributes").''.$langs->trans("Value").'
'.$langs->trans("ErrorFailedToReadLDAP").'
'.$langs->trans("LDAPRecordNotFound").' (dn='.$dn.' - search='.$search.')
'; $db->close(); llxFooter('$Date$ - $Revision$'); ?>