dolibarr 18.0.6
sync_members_dolibarr2ldap.php
Go to the documentation of this file.
1#!/usr/bin/env php
2<?php
27if (!defined('NOSESSION')) {
28 define('NOSESSION', '1');
29}
30
31$sapi_type = php_sapi_name();
32$script_file = basename(__FILE__);
33$path = __DIR__.'/';
34
35// Test if batch mode
36if (substr($sapi_type, 0, 3) == 'cgi') {
37 echo "Error: You are using PHP for CGI. To execute ".$script_file." from command line, you must use PHP for CLI mode.\n";
38 exit(-1);
39}
40
41require_once $path."../../htdocs/master.inc.php";
42require_once DOL_DOCUMENT_ROOT."/core/class/ldap.class.php";
43require_once DOL_DOCUMENT_ROOT."/adherents/class/adherent.class.php";
44
45$langs->load("main");
46
47// Global variables
48$version = constant('DOL_VERSION');
49$error = 0;
50$confirmed = 0;
51
52/*
53 * Main
54 */
55
56@set_time_limit(0);
57print "***** ".$script_file." (".$version.") pid=".dol_getmypid()." *****\n";
58dol_syslog($script_file." launched with arg ".join(',', $argv));
59
60if (!isset($argv[1]) || !$argv[1]) {
61 print "Usage: $script_file now [-y]\n";
62 exit(-1);
63}
64
65foreach ($argv as $key => $val) {
66 if (preg_match('/-y$/', $val, $reg)) {
67 $confirmed = 1;
68 }
69}
70
71if (!empty($dolibarr_main_db_readonly)) {
72 print "Error: instance in read-onyl mode\n";
73 exit(-1);
74}
75
76$now = $argv[1];
77
78print "Mails sending disabled (useless in batch mode)\n";
79$conf->global->MAIN_DISABLE_ALL_MAILS = 1; // On bloque les mails
80print "\n";
81print "----- Synchronize all records from Dolibarr database:\n";
82print "type=".$conf->db->type."\n";
83print "host=".$conf->db->host."\n";
84print "port=".$conf->db->port."\n";
85print "login=".$conf->db->user."\n";
86// print "pass=".preg_replace('/./i','*',$conf->db->password)."\n"; // Not defined for security reasons
87print "database=".$conf->db->name."\n";
88print "\n";
89print "----- To LDAP database:\n";
90print "host=".$conf->global->LDAP_SERVER_HOST."\n";
91print "port=".$conf->global->LDAP_SERVER_PORT."\n";
92print "login=".$conf->global->LDAP_ADMIN_DN."\n";
93print "pass=".preg_replace('/./i', '*', $conf->global->LDAP_ADMIN_PASS)."\n";
94print "DN target=".$conf->global->LDAP_MEMBER_DN."\n";
95print "\n";
96
97if (!$confirmed) {
98 print "Press a key to confirm...\n";
99 $input = trim(fgets(STDIN));
100 print "Warning, this operation may result in data loss if it failed.\n";
101 print "Be sure to have a backup of your LDAP database (With OpenLDAP: slapcat > save.ldif).\n";
102 print "Hit Enter to continue or CTRL+C to stop...\n";
103 $input = trim(fgets(STDIN));
104}
105
106/*
107 * if (! $conf->global->LDAP_MEMBER_ACTIVE)
108 * {
109 * print $langs->trans("LDAPSynchronizationNotSetupInDolibarr");
110 * exit(-1);
111 * }
112 */
113
114$sql = "SELECT rowid";
115$sql .= " FROM ".MAIN_DB_PREFIX."adherent";
116
117$resql = $db->query($sql);
118if ($resql) {
119 $num = $db->num_rows($resql);
120 $i = 0;
121
122 $ldap = new Ldap();
123 $ldap->connect_bind();
124
125 while ($i < $num) {
126 $ldap->error = "";
127
128 $obj = $db->fetch_object($resql);
129
130 $member = new Adherent($db);
131 $result = $member->fetch($obj->rowid);
132 if ($result < 0) {
133 dol_print_error($db, $member->error);
134 exit(-1);
135 }
136 $result = $member->fetch_subscriptions();
137 if ($result < 0) {
138 dol_print_error($db, $member->error);
139 exit(-1);
140 }
141
142 print $langs->transnoentities("UpdateMember")." rowid=".$member->id." ".$member->getFullName($langs);
143
144 $oldobject = $member;
145
146 $oldinfo = $oldobject->_load_ldap_info();
147 $olddn = $oldobject->_load_ldap_dn($oldinfo);
148
149 $info = $member->_load_ldap_info();
150 $dn = $member->_load_ldap_dn($info);
151
152 $result = $ldap->add($dn, $info, $user); // Wil fail if already exists
153 $result = $ldap->update($dn, $info, $user, $olddn);
154 if ($result > 0) {
155 print " - ".$langs->transnoentities("OK");
156 } else {
157 $error++;
158 print " - ".$langs->transnoentities("KO").' - '.$ldap->error;
159 }
160 print "\n";
161
162 $i++;
163 }
164
165 $ldap->unbind();
166} else {
167 dol_print_error($db);
168}
169
170exit($error);
Class to manage members of a foundation.
Class to manage LDAP features.
dol_getmypid()
Return getmypid() or random PID when function is disabled Some web hosts disable this php function fo...
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.