Skip to content
Snippets Groups Projects
Select Git revision
  • c026d9eaa8ce64813d86b3a1157f0e9bf0c0ab96
  • 3.9 default
  • develop
  • 6.0
  • 5.0
  • 4.0
  • scrutinizer-patch-4
  • scrutinizer-patch-3
  • scrutinizer-patch-2
  • scrutinizer-patch-1
  • 3.7
  • 3.8
  • 3.6
  • 3.9_backported
  • 3.8_backported
  • 3.7_backported
  • 3.5
  • 3.6_backported
  • 3.5_backported
  • 3.4
  • 3.3_backported
  • 6.0.4
  • 6.0.3
  • 5.0.7
  • 6.0.2
  • 6.0.1
  • 5.0.6
  • 6.0.0
  • 5.0.5
  • 6.0.0-rc
  • 5.0.4
  • 6.0.0-beta
  • 5.0.3
  • 4.0.6
  • 5.0.2
  • 5.0.1
  • 4.0.5
  • 5.0.0
  • 4.0.4
  • 5.0.0-rc2
  • 5.0.0-rc1
41 results

ldap_groups.php

Blame
  • user avatar
    Regis Houssin authored
    c026d9ea
    History
    ldap_groups.php 8.80 KiB
    <?php
    /* Copyright (C) 2004      Rodolphe Quiedeville <rodolphe@quiedeville.org>
     * Copyright (C) 2004      Sebastien Di Cintio  <sdicintio@ressource-toi.org>
     * Copyright (C) 2004      Benoit Mortier       <benoit.mortier@opensides.be>
     * Copyright (C) 2005      Regis Houssin        <regis@dolibarr.fr>
     * Copyright (C) 2006-2007 Laurent Destailleur  <eldy@users.sourceforge.net>
     *
     * 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");
    $langs->load("errors");
    
    if (!$user->admin)
      accessforbidden();
    
    
    /*
     * Actions
     */
    
    if ($_GET["action"] == 'setvalue' && $user->admin)
    {
    	$error=0;
    	if (! dolibarr_set_const($db, 'LDAP_KEY_GROUPS',$_POST["key"],'chaine',0,'',$conf->entity)) $error++;
    
    	if (! dolibarr_set_const($db, 'LDAP_GROUP_DN',$_POST["group"],'chaine',0,'',$conf->entity)) $error++;
    	if (! dolibarr_set_const($db, 'LDAP_GROUP_OBJECT_CLASS',$_POST["objectclass"],'chaine',0,'',$conf->entity)) $error++;
    
    	if (! dolibarr_set_const($db, 'LDAP_GROUP_FIELD_FULLNAME',$_POST["fieldfullname"],'chaine',0,'',$conf->entity)) $error++;
    	if (! dolibarr_set_const($db, 'LDAP_GROUP_FIELD_NAME',$_POST["fieldname"],'chaine',0,'',$conf->entity)) $error++;
    	if (! dolibarr_set_const($db, 'LDAP_GROUP_FIELD_DESCRIPTION',$_POST["fielddescription"],'chaine',0,'',$conf->entity)) $error++;
    	if (! dolibarr_set_const($db, 'LDAP_GROUP_FIELD_GROUPMEMBERS',$_POST["fieldgroupmembers"],'chaine',0,'',$conf->entity)) $error++;
    
    	if ($error)
    	{
    		dol_print_error($db->error());
    	}
    }
    
    
    
    /*
     * View
     */
    
    llxHeader('',$langs->trans("LDAPSetup"),'EN:Module_LDAP_En|FR:Module_LDAP|ES:M&oacute;dulo_LDAP');
    
    $head = ldap_prepare_head();
    
    // Test si fonction LDAP actives
    if (! function_exists("ldap_connect"))
    {
    	$mesg=$langs->trans("LDAPFunctionsNotAvailableOnPHP");
    }
    
    if ($mesg) print '<div class="error">'.$mesg.'</div>';
    
    
    dol_fiche_head($head, 'groups', $langs->trans("LDAPSetup"));
    
    
    print $langs->trans("LDAPDescGroups").'<br>';
    print '<br>';
    
    
    print '<form method="post" action="'.$_SERVER["PHP_SELF"].'?action=setvalue">';
    print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
    
    $html=new Form($db);
    
    print '<table class="noborder" width="100%">';
    $var=true;
    
    print '<tr class="liste_titre">';
    print '<td colspan="4">'.$langs->trans("LDAPSynchronizeGroups").'</td>';
    print "</tr>\n";
    
    // DN pour les groupes
    $var=!$var;
    print '<tr '.$bc[$var].'><td width="25%"><b>'.$langs->trans("LDAPGroupDn").picto_required().'</b></td><td>';
    print '<input size="48" type="text" name="group" value="'.$conf->global->LDAP_GROUP_DN.'">';
    print '</td><td>'.$langs->trans("LDAPGroupDnExample").'</td>';
    print '<td>&nbsp;</td>';
    print '</tr>';
    
    // List of object class used to define attributes in structure
    $var=!$var;
    print '<tr '.$bc[$var].'><td width="25%"><b>'.$langs->trans("LDAPGroupObjectClassList").picto_required().'</b></td><td>';
    print '<input size="48" type="text" name="objectclass" value="'.$conf->global->LDAP_GROUP_OBJECT_CLASS.'">';
    print '</td><td>'.$langs->trans("LDAPGroupObjectClassListExample").'</td>';
    print '<td>&nbsp;</td>';
    print '</tr>';
    
    print '</table>';
    print '<br>';
    print '<table class="noborder" width="100%">';
    $var=true;
    
    print '<tr class="liste_titre">';
    print '<td width="25%">'.$langs->trans("LDAPDolibarrMapping").'</td>';
    print '<td colspan="2">'.$langs->trans("LDAPLdapMapping").'</td>';
    print '<td align="right">'.$langs->trans("LDAPNamingAttribute").'</td>';
    print "</tr>\n";
    
    // Filtre
    /*
    $var=!$var;
    print '<tr '.$bc[$var].'><td><b>'.$langs->trans("LDAPFilterConnection").picto_required().'</b></td><td>';
    print '<input size="38" type="text" name="filterconnection" value="'.$conf->global->LDAP_FILTER_CONNECTION.'">';
    print '</td><td>'.$langs->trans("LDAPFilterConnectionExample").'</td>';
    print '</tr>';
    */
    
    // Common name
    $var=!$var;
    print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPFieldCommonName").'</td><td>';
    print '<input size="25" type="text" name="fieldfullname" value="'.$conf->global->LDAP_GROUP_FIELD_FULLNAME.'">';
    print '</td><td>'.$langs->trans("LDAPFieldCommonNameExample").'</td>';
    print '<td align="right"><input type="radio" name="key" value="'.$conf->global->LDAP_GROUP_FIELD_FULLNAME.'"'.($conf->global->LDAP_KEY_GROUPS==$conf->global->LDAP_GROUP_FIELD_FULLNAME?' checked="true"':'')."></td>";
    print '</tr>';
    
    // Name
    $var=!$var;
    print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPFieldName").'</td><td>';
    print '<input size="25" type="text" name="fieldname" value="'.$conf->global->LDAP_GROUP_FIELD_NAME.'">';
    print '</td><td>'.$langs->trans("LDAPFieldNameExample").'</td>';
    print '<td align="right"><input type="radio" name="key" value="'.$conf->global->LDAP_GROUP_FIELD_NAME.'"'.($conf->global->LDAP_KEY_GROUPS==$conf->global->LDAP_GROUP_FIELD_NAME?' checked="true"':'')."></td>";
    print '</tr>';
    
    // Description
    $var=!$var;
    print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPFieldDescription").'</td><td>';
    print '<input size="25" type="text" name="fielddescription" value="'.$conf->global->LDAP_GROUP_FIELD_DESCRIPTION.'">';
    print '</td><td>'.$langs->trans("LDAPFieldDescriptionExample").'</td>';
    print '<td align="right"><input type="radio" name="key" value="'.$conf->global->LDAP_GROUP_FIELD_DESCRIPTION.'"'.($conf->global->LDAP_KEY_GROUPS==$conf->global->LDAP_GROUP_FIELD_DESCRIPTION?' checked="true"':'')."></td>";
    print '</tr>';
    
    // User group
    $var=!$var;
    print '<tr '.$bc[$var].'><td>'.$langs->trans("LDAPFieldGroupMembers").'</td><td>';
    print '<input size="25" type="text" name="fieldgroupmembers" value="'.$conf->global->LDAP_GROUP_FIELD_GROUPMEMBERS.'">';
    print '</td><td>'.$langs->trans("LDAPFieldGroupMembersExample").'</td>';
    print '<td align="right"><input type="radio" name="key" value="'.$conf->global->LDAP_GROUP_FIELD_GROUPMEMBERS.'"'.($conf->global->LDAP_KEY_GROUPS==$conf->global->LDAP_GROUP_FIELD_GROUPMEMBERS?' checked="true"':'')."></td>";
    print '</tr>';
    
    
    $var=!$var;
    print '<tr '.$bc[$var].'><td colspan="4" align="center"><input type="submit" class="button" value="'.$langs->trans("Modify").'"></td></tr>';
    print '</table>';
    
    print '</form>';
    
    print '</div>';
    
    print info_admin($langs->trans("LDAPDescValues"));
    
    /*
     * Test de la connexion
     */
    if ($conf->global->LDAP_SYNCHRO_ACTIVE == 'dolibarr2ldap')
    {
    	$butlabel=$langs->trans("LDAPTestSynchroGroup");
    	$testlabel='testgroup';
    	$key=$conf->global->LDAP_KEY_GROUPS;
    	$dn=$conf->global->LDAP_GROUP_DN;
    	$objectclass=$conf->global->LDAP_GROUP_OBJECT_CLASS;
    
    	show_ldap_test_button($butlabel,$testlabel,$key,$dn,$objectclass);
    }
    
    if (function_exists("ldap_connect"))
    {
    	if ($_GET["action"] == 'testgroup')
    	{
    		// Creation objet
    		$object=new UserGroup($db);
    		$object->initAsSpecimen();
    
    		// Test synchro
    		$ldap=new Ldap();
    		$result=$ldap->connect_bind();
    
    		if ($result > 0)
    		{
    			$info=$object->_load_ldap_info();
    			$dn=$object->_load_ldap_dn($info);
    
    			$result1=$ldap->delete($dn);			// To be sure to delete existing records
    			$result2=$ldap->add($dn,$info,$user);	// Now the test
    			$result3=$ldap->delete($dn);			// Clean what we did
    
    			if ($result2 > 0)
    			{
    				print img_picto('','info').' ';
    				print '<font class="ok">'.$langs->trans("LDAPSynchroOK").'</font><br>';
    			}
    			else
    			{
    				print img_picto('','error').' ';
    				print '<font class="error">'.$langs->trans("LDAPSynchroKOMayBePermissions");
    				print ': '.$ldap->error;
    				print '</font><br>';
    				print $langs->trans("ErrorLDAPMakeManualTest",$conf->ldap->dir_temp).'<br>';
    			}
    
    			print "<br>\n";
    			print "LDAP input file used for test:<br><br>\n";
    			print nl2br($ldap->dump_content($dn,$info));
    			print "\n<br>";
    		}
    		else
    		{
    			print img_picto('','error').' ';
    			print '<font class="error">'.$langs->trans("LDAPSynchroKO");
    			print ': '.$ldap->error;
    			print '</font><br>';
    			print $langs->trans("ErrorLDAPMakeManualTest",$conf->ldap->dir_temp).'<br>';
    		}
    	}
    }
    
    $db->close();
    
    llxFooter('$Date$ - $Revision$');
    ?>