dolibarr  17.0.4
ldap.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2006-2012 Laurent Destailleur <eldy@users.sourceforge.net>
3  * Copyright (C) 2006-2017 Regis Houssin <regis.houssin@inodbox.com>
4  * Copyright (C) 2019 Frédéric France <frederic.france@netlogic.fr>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see <https://www.gnu.org/licenses/>.
18  */
19 
26 // Load Dolibarr environment
27 require '../../main.inc.php';
28 require_once DOL_DOCUMENT_ROOT.'/user/class/usergroup.class.php';
29 require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
30 require_once DOL_DOCUMENT_ROOT.'/core/lib/usergroups.lib.php';
31 require_once DOL_DOCUMENT_ROOT.'/core/class/ldap.class.php';
32 require_once DOL_DOCUMENT_ROOT.'/core/lib/ldap.lib.php';
33 
34 // Load translation files required by page
35 $langs->loadLangs(array('companies', 'ldap', 'users', 'admin'));
36 
37 $id = GETPOST('id', 'int');
38 $action = GETPOST('action', 'aZ09');
39 
40 $socid = 0;
41 if ($user->socid > 0) {
42  $socid = $user->socid;
43 }
44 
45 $object = new Usergroup($db);
46 $object->fetch($id);
47 $object->getrights();
48 
49 // Users/Groups management only in master entity if transverse mode
50 if (isModEnabled('multicompany') && $conf->entity > 1 && !empty($conf->global->MULTICOMPANY_TRANSVERSE_MODE)) {
52 }
53 
54 $canreadperms = true;
55 if (!empty($conf->global->MAIN_USE_ADVANCED_PERMS)) {
56  $canreadperms = (!empty($user->admin) || !empty($user->rights->user->group_advance->read));
57 }
58 
59 
60 /*
61  * Actions
62  */
63 
64 if ($action == 'dolibarr2ldap') {
65  $ldap = new Ldap();
66  $result = $ldap->connect_bind();
67 
68  if ($result > 0) {
69  $info = $object->_load_ldap_info();
70 
71  // Get a gid number for objectclass PosixGroup if none was provided
72  if (empty($info[$conf->global->LDAP_GROUP_FIELD_GROUPID]) && in_array('posixGroup', $info['objectclass'])) {
73  $info['gidNumber'] = $ldap->getNextGroupGid('LDAP_KEY_GROUPS');
74  }
75 
76  $dn = $object->_load_ldap_dn($info);
77  $olddn = $dn; // We can say that old dn = dn as we force synchro
78 
79  $result = $ldap->update($dn, $info, $user, $olddn);
80  }
81 
82  if ($result >= 0) {
83  setEventMessages($langs->trans("GroupSynchronized"), null, 'mesgs');
84  } else {
85  setEventMessages($ldap->error, $ldap->errors, 'errors');
86  }
87 }
88 
89 
90 /*
91  * View
92  */
93 
94 $form = new Form($db);
95 
96 $title = $object->name." - ".$langs->trans('LDAP');
97 $help_url = '';
98 llxHeader('', $title, $help_url);
99 
100 $head = group_prepare_head($object);
101 
102 print dol_get_fiche_head($head, 'ldap', $langs->trans("Group"), -1, 'group');
103 
104 $linkback = '<a href="'.DOL_URL_ROOT.'/user/group/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
105 
106 dol_banner_tab($object, 'id', $linkback, (!empty($user->rights->user->user->lire) || !empty($user->admin)));
107 
108 print '<div class="fichecenter">';
109 print '<div class="underbanner clearboth"></div>';
110 
111 print '<table class="border centpercent tableforfield">';
112 
113 // Name (already in dol_banner, we keep it to have the GlobalGroup picto, but we should move it in dol_banner)
114 if (!empty($conf->mutlicompany->enabled)) {
115  print '<tr><td class="titlefield">'.$langs->trans("Name").'</td>';
116  print '<td class="valeur">'.$object->name;
117  if (!$object->entity) {
118  print img_picto($langs->trans("GlobalGroup"), 'redstar');
119  }
120  print "</td></tr>\n";
121 }
122 
123 // Note
124 print '<tr><td class="tdtop">'.$langs->trans("Description").'</td>';
125 print '<td class="valeur sensiblehtmlcontent">';
127 print '</td>';
128 print "</tr>\n";
129 
130 // LDAP DN
131 print '<tr><td>LDAP '.$langs->trans("LDAPGroupDn").'</td><td class="valeur">'.getDolGlobalString('LDAP_GROUP_DN')."</td></tr>\n";
132 
133 // LDAP Cle
134 print '<tr><td>LDAP '.$langs->trans("LDAPNamingAttribute").'</td><td class="valeur">'.getDolGlobalString('LDAP_KEY_GROUPS')."</td></tr>\n";
135 
136 // LDAP Server
137 print '<tr><td>LDAP '.$langs->trans("LDAPPrimaryServer").'</td><td class="valeur">'.getDolGlobalString('LDAP_SERVER_HOST')."</td></tr>\n";
138 print '<tr><td>LDAP '.$langs->trans("LDAPSecondaryServer").'</td><td class="valeur">'.getDolGlobalString('LDAP_SERVER_HOST_SLAVE')."</td></tr>\n";
139 print '<tr><td>LDAP '.$langs->trans("LDAPServerPort").'</td><td class="valeur">'.getDolGlobalString('LDAP_SERVER_PORT')."</td></tr>\n";
140 
141 print "</table>\n";
142 
143 print '</div>';
144 
145 print dol_get_fiche_end();
146 
147 
148 /*
149  * Action bar
150  */
151 print '<div class="tabsAction">';
152 
153 if (getDolGlobalInt('LDAP_SYNCHRO_ACTIVE') === Ldap::SYNCHRO_DOLIBARR_TO_LDAP) {
154  print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&amp;action=dolibarr2ldap">'.$langs->trans("ForceSynchronize").'</a>';
155 }
156 
157 print "</div>\n";
158 
159 if (getDolGlobalInt('LDAP_SYNCHRO_ACTIVE') === Ldap::SYNCHRO_DOLIBARR_TO_LDAP) {
160  print "<br>\n";
161 }
162 
163 
164 
165 // Affichage attributs LDAP
166 print load_fiche_titre($langs->trans("LDAPInformationsForThisGroup"));
167 
168 print '<table class="noborder centpercent">';
169 
170 print '<tr class="liste_titre">';
171 print '<td>'.$langs->trans("LDAPAttributes").'</td>';
172 print '<td>'.$langs->trans("Value").'</td>';
173 print '</tr>';
174 
175 // Lecture LDAP
176 $ldap = new Ldap();
177 $result = $ldap->connect_bind();
178 if ($result > 0) {
179  $info = $object->_load_ldap_info();
180  $dn = $object->_load_ldap_dn($info, 1);
181  $search = "(".$object->_load_ldap_dn($info, 2).")";
182 
183  $records = $ldap->getAttribute($dn, $search);
184 
185  //var_dump($records);
186 
187  // Show tree
188  if (((!is_numeric($records)) || $records != 0) && (!isset($records['count']) || $records['count'] > 0)) {
189  if (!is_array($records)) {
190  print '<tr class="oddeven"><td colspan="2"><span class="error">'.$langs->trans("ErrorFailedToReadLDAP").'</span></td></tr>';
191  } else {
192  $result = show_ldap_content($records, 0, $records['count'], true);
193  }
194  } else {
195  print '<tr class="oddeven"><td colspan="2">'.$langs->trans("LDAPRecordNotFound").' (dn='.dol_escape_htmltag($dn).' - search='.dol_escape_htmltag($search).')</td></tr>';
196  }
197  $ldap->unbind();
198 } else {
199  setEventMessages($ldap->error, $ldap->errors, 'errors');
200 }
201 
202 print '</table>';
203 
204 // End of page
205 llxFooter();
206 $db->close();
if(GETPOST('button_removefilter_x', 'alpha')||GETPOST('button_removefilter.x', 'alpha')||GETPOST('button_removefilter', 'alpha')) if(GETPOST('button_search_x', 'alpha')||GETPOST('button_search.x', 'alpha')||GETPOST('button_search', 'alpha')) if($action=="save" &&empty($cancel)) $help_url
View.
Definition: agenda.php:118
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:56
llxFooter()
Empty footer.
Definition: wrapper.php:70
Class to manage generation of HTML components Only common components must be here.
Class to manage LDAP features.
Definition: ldap.class.php:35
const SYNCHRO_DOLIBARR_TO_LDAP
Dolibarr to Ldap synchronization.
Definition: ldap.class.php:133
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:143
dol_banner_tab($object, $paramid, $morehtml='', $shownav=1, $fieldid='rowid', $fieldref='ref', $morehtmlref='', $moreparam='', $nodbprefix=0, $morehtmlleft='', $morehtmlstatus='', $onlybanner=0, $morehtmlright='')
Show tab footer of a card.
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0)
Returns text escaped for inclusion in HTML alt or title tags, or into values of HTML input fields.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
getDolGlobalInt($key, $default=0)
Return dolibarr global constant int value.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
dol_string_onlythesehtmltags($stringtoclean, $cleanalsosomestyles=1, $removeclassattribute=1, $cleanalsojavascript=0, $allowiframe=0, $allowed_tags=array())
Clean a string to keep only desirable HTML tags.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
if(!function_exists('utf8_encode')) if(!function_exists('utf8_decode')) getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_htmlentitiesbr($stringtoencode, $nl2brmode=0, $pagecodefrom='UTF-8', $removelasteolbr=1)
This function is called to encode a string into a HTML string but differs from htmlentities because a...
isModEnabled($module)
Is Dolibarr module enabled.
show_ldap_content($result, $level, $count, $var, $hide=0, $subcount=0)
Show a LDAP array into an HTML output array.
Definition: ldap.lib.php:132
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.
group_prepare_head($object)
Prepare array with list of tabs.