* Copyright (C) 2004 Sebastien Di Cintio * Copyright (C) 2004 Benoit Mortier * Copyright (C) 2005 Regis Houssin * Copyright (C) 2006-2007 Laurent Destailleur * * 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. */ /** \file htdocs/admin/ldap_groups.php \ingroup ldap \brief Page d'administration/configuration du module Ldap \version $Id$ */ require("./pre.inc.php"); require_once(DOL_DOCUMENT_ROOT."/lib/admin.lib.php"); require_once(DOL_DOCUMENT_ROOT."/user.class.php"); require_once(DOL_DOCUMENT_ROOT."/usergroup.class.php"); require_once(DOL_DOCUMENT_ROOT."/lib/ldap.class.php"); require_once(DOL_DOCUMENT_ROOT."/lib/ldap.lib.php"); $langs->load("admin"); if (!$user->admin) accessforbidden(); /* * Actions */ if ($_GET["action"] == 'setvalue' && $user->admin) { $error=0; if (! dolibarr_set_const($db, 'LDAP_KEY_GROUPS',$_POST["key"])) $error++; if (! dolibarr_set_const($db, 'LDAP_GROUP_DN',$_POST["group"])) $error++; if (! dolibarr_set_const($db, 'LDAP_GROUP_OBJECT_CLASS',$_POST["objectclass"])) $error++; if (! dolibarr_set_const($db, 'LDAP_FIELD_FULLNAME',$_POST["fieldfullname"])) $error++; if (! dolibarr_set_const($db, 'LDAP_FIELD_NAME',$_POST["fieldname"])) $error++; if (! dolibarr_set_const($db, 'LDAP_FIELD_DESCRIPTION',$_POST["fielddescription"])) $error++; if ($error) { dolibarr_print_error($db->error()); } } /* * Visu */ llxHeader(); $head = ldap_prepare_head(); // Test si fonction LDAP actives if (! function_exists("ldap_connect")) { $mesg=$langs->trans("LDAPFunctionsNotAvailableOnPHP"); } if ($mesg) print '
'.$mesg.'
'; dolibarr_fiche_head($head, 'groups', $langs->trans("LDAPSetup")); print $langs->trans("LDAPDescGroups").'
'; print '
'; print '
'; $html=new Form($db); print ''; $var=true; print ''; print ''; print "\n"; // DN pour les groupes $var=!$var; print ''; print ''; print ''; // List of object class used to define attributes in structure $var=!$var; print ''; print ''; print ''; print '
'.$langs->trans("LDAPSynchronizeUsers").'
'.$langs->trans("LDAPGroupDn").picto_required().''; print ''; print ''.$langs->trans("LDAPGroupDnExample").' 
'.$langs->trans("LDAPGroupObjectClassList").picto_required().''; print ''; print ''.$langs->trans("LDAPGroupObjectClassListExample").' 
'; print '
'; print ''; $var=true; print ''; print ''; print ''; print ''; print "\n"; // Filtre /* $var=!$var; print ''; print ''; */ // Common name $var=!$var; print ''; print '"; print ''; // Name $var=!$var; print ''; print '"; print ''; // Description $var=!$var; print ''; print '"; print ''; $var=!$var; print ''; print '
'.$langs->trans("LDAPDolibarrMapping").''.$langs->trans("LDAPLdapMapping").''.$langs->trans("LDAPNamingAttribute").'
'.$langs->trans("LDAPFilterConnection").picto_required().''; print ''; print ''.$langs->trans("LDAPFilterConnectionExample").'
'.$langs->trans("LDAPFieldCommonName").''; print ''; print ''.$langs->trans("LDAPFieldCommonNameExample").'global->LDAP_KEY_GROUPS==$conf->global->LDAP_FIELD_FULLNAME?' checked="true"':'').">
'.$langs->trans("LDAPFieldName").''; print ''; print ''.$langs->trans("LDAPFieldNameExample").'global->LDAP_KEY_GROUPS==$conf->global->LDAP_FIELD_NAME?' checked="true"':'').">
'.$langs->trans("LDAPFieldDescription").''; print ''; print ''.$langs->trans("LDAPFieldDescriptionExample").'global->LDAP_KEY_GROUPS==$conf->global->LDAP_FIELD_DESCRIPTION?' checked="true"':'').">
'; print '
'; print ''; print info_admin($langs->trans("LDAPDescValues")); /* * Test de la connexion */ print '
'; if ($conf->global->LDAP_SYNCHRO_ACTIVE == 'dolibarr2ldap') { if (! function_exists("ldap_connect")) { print ''.$langs->trans("LDAPTestSynchroGroup").''; } else if (empty($conf->global->LDAP_SERVER_HOST)) { print ''.$langs->trans("LDAPTestSynchroGroup").''; } else print ''.$langs->trans("LDAPTestSynchroGroup").''; print '

'; } if (function_exists("ldap_connect")) { if ($_GET["action"] == 'testgroup') { // Creation objet $fgroup=new UserGroup($db); $fgroup->initAsSpecimen(); // Test synchro $ldap=new Ldap(); $result=$ldap->connect_bind(); if ($result > 0) { $info=$fgroup->_load_ldap_info(); $dn=$fgroup->_load_ldap_dn($info); $result2=$ldap->update($dn,$info,$user); $result3=$ldap->delete($dn); if ($result2 > 0) { print img_picto('','info').' '; print ''.$langs->trans("LDAPSynchroOK").'
'; } else { print img_picto('','error').' '; print ''.$langs->trans("LDAPSynchroKOMayBePermissions"); print ': '.$ldap->error; print '
'; } } else { print img_picto('','error').' '; print ''.$langs->trans("LDAPSynchroKO"); print ': '.$ldap->error; print '
'; } } } $db->close(); llxFooter('$Date$ - $Revision$'); ?>