dolibarr 19.0.3
type_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 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 */
18
25// Load Dolibarr environment
26require '../main.inc.php';
27require_once DOL_DOCUMENT_ROOT.'/core/lib/member.lib.php';
28require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
29require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent_type.class.php';
30require_once DOL_DOCUMENT_ROOT.'/core/class/ldap.class.php';
31require_once DOL_DOCUMENT_ROOT.'/core/lib/ldap.lib.php';
32
33// Load translation files required by the page
34$langs->loadLangs(array("admin", "members", "ldap"));
35
36$id = GETPOST('rowid', 'int');
37$action = GETPOST('action', 'aZ09');
38
39// Security check
40$result = restrictedArea($user, 'adherent', $id, 'adherent_type');
41
42$object = new AdherentType($db);
43$object->fetch($id);
44
45// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
46$hookmanager->initHooks(array('membertypeldapcard', 'globalcard'));
47
48/*
49 * Actions
50 */
51
52
53$parameters = array();
54$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
55if ($reshook < 0) {
56 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
57}
58
59if (empty($reshook)) {
60 if ($action == 'dolibarr2ldap') {
61 $ldap = new Ldap();
62 $result = $ldap->connect_bind();
63
64 if ($result > 0) {
65 $object->listMembersForMemberType('', 1);
66
67 $info = $object->_load_ldap_info();
68 $dn = $object->_load_ldap_dn($info);
69 $olddn = $dn; // We can say that old dn = dn as we force synchro
70
71 $result = $ldap->update($dn, $info, $user, $olddn);
72 }
73
74 if ($result >= 0) {
75 setEventMessages($langs->trans("MemberTypeSynchronized"), null, 'mesgs');
76 } else {
77 setEventMessages($ldap->error, $ldap->errors, 'errors');
78 }
79 }
80}
81
82/*
83 * View
84 */
85
86llxHeader();
87
88$form = new Form($db);
89
90$head = member_type_prepare_head($object);
91
92print dol_get_fiche_head($head, 'ldap', $langs->trans("MemberType"), -1, 'group');
93
94$linkback = '<a href="'.DOL_URL_ROOT.'/adherents/type.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
95
96dol_banner_tab($object, 'rowid', $linkback);
97
98print '<div class="fichecenter">';
99print '<div class="underbanner clearboth"></div>';
100
101print '<table class="border centpercent">';
102
103// LDAP DN
104print '<tr><td>LDAP '.$langs->trans("LDAPMemberTypeDn").'</td><td class="valeur">' . getDolGlobalString('LDAP_MEMBER_TYPE_DN')."</td></tr>\n";
105
106// LDAP Cle
107print '<tr><td>LDAP '.$langs->trans("LDAPNamingAttribute").'</td><td class="valeur">' . getDolGlobalString('LDAP_KEY_MEMBERS_TYPES')."</td></tr>\n";
108
109// LDAP Server
110print '<tr><td>LDAP '.$langs->trans("Type").'</td><td class="valeur">' . getDolGlobalString('LDAP_SERVER_TYPE')."</td></tr>\n";
111print '<tr><td>LDAP '.$langs->trans("Version").'</td><td class="valeur">' . getDolGlobalString('LDAP_SERVER_PROTOCOLVERSION')."</td></tr>\n";
112print '<tr><td>LDAP '.$langs->trans("LDAPPrimaryServer").'</td><td class="valeur">' . getDolGlobalString('LDAP_SERVER_HOST')."</td></tr>\n";
113print '<tr><td>LDAP '.$langs->trans("LDAPSecondaryServer").'</td><td class="valeur">' . getDolGlobalString('LDAP_SERVER_HOST_SLAVE')."</td></tr>\n";
114print '<tr><td>LDAP '.$langs->trans("LDAPServerPort").'</td><td class="valeur">' . getDolGlobalString('LDAP_SERVER_PORT')."</td></tr>\n";
115
116print '</table>';
117
118print '</div>';
119
120print dol_get_fiche_end();
121
122/*
123 * Action bar
124 */
125
126print '<div class="tabsAction">';
127
128if (getDolGlobalInt('LDAP_MEMBER_TYPE_ACTIVE') === Ldap::SYNCHRO_DOLIBARR_TO_LDAP) {
129 print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?rowid='.$object->id.'&action=dolibarr2ldap">'.$langs->trans("ForceSynchronize").'</a>';
130}
131
132print "</div>\n";
133
134if (getDolGlobalInt('LDAP_MEMBER_TYPE_ACTIVE') === Ldap::SYNCHRO_DOLIBARR_TO_LDAP) {
135 print "<br>\n";
136}
137
138
139
140// Display LDAP attributes
141print load_fiche_titre($langs->trans("LDAPInformationsForThisMemberType"));
142
143print '<table width="100%" class="noborder">';
144
145print '<tr class="liste_titre">';
146print '<td>'.$langs->trans("LDAPAttributes").'</td>';
147print '<td>'.$langs->trans("Value").'</td>';
148print '</tr>';
149
150// LDAP reading
151$ldap = new Ldap();
152$result = $ldap->connect_bind();
153if ($result > 0) {
154 $info = $object->_load_ldap_info();
155 $dn = $object->_load_ldap_dn($info, 1);
156 $search = "(".$object->_load_ldap_dn($info, 2).")";
157
158 $records = $ldap->getAttribute($dn, $search);
159
160 //print_r($records);
161
162 // Show tree
163 if (((!is_numeric($records)) || $records != 0) && (!isset($records['count']) || $records['count'] > 0)) {
164 if (!is_array($records)) {
165 print '<tr class="oddeven"><td colspan="2"><span class="error">'.$langs->trans("ErrorFailedToReadLDAP").'</span></td></tr>';
166 } else {
167 $result = show_ldap_content($records, 0, $records['count'], true);
168 }
169 } else {
170 print '<tr class="oddeven"><td colspan="2">'.$langs->trans("LDAPRecordNotFound").' (dn='.dol_escape_htmltag($dn).' - search='.dol_escape_htmltag($search).')</td></tr>';
171 }
172
173 $ldap->unbind();
174} else {
175 setEventMessages($ldap->error, $ldap->errors, 'errors');
176}
177
178print '</table>';
179
180// End of page
181llxFooter();
182$db->close();
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:55
llxFooter()
Empty footer.
Definition wrapper.php:69
Class to manage members type.
Class to manage generation of HTML components Only common components must be here.
Class to manage LDAP features.
const SYNCHRO_DOLIBARR_TO_LDAP
Dolibarr to Ldap synchronization.
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='', $dragdropfile=0)
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
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
member_type_prepare_head(AdherentType $object)
Return array head with list of tabs to view object informations.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.