dolibarr 19.0.3
sync_users_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
41if (!isset($argv[1]) || !$argv[1]) {
42 print "Usage: $script_file now\n";
43 exit(-1);
44}
45$now = $argv[1];
46
47require_once $path."../../htdocs/master.inc.php";
48require_once DOL_DOCUMENT_ROOT."/core/class/ldap.class.php";
49require_once DOL_DOCUMENT_ROOT."/user/class/user.class.php";
50
51// Global variables
52$version = DOL_VERSION;
53$error = 0;
54
55/*
56 * Main
57 */
58
59@set_time_limit(0);
60print "***** ".$script_file." (".$version.") pid=".dol_getmypid()." *****\n";
61dol_syslog($script_file." launched with arg ".join(',', $argv));
62
63/*
64 * if (! getDolGlobalString('LDAP_SYNCHRO_ACTIVE')) {
65 * print $langs->trans("LDAPSynchronizationNotSetupInDolibarr");
66 * exit(-1);
67 * }
68 */
69
70$sql = "SELECT rowid";
71$sql .= " FROM ".MAIN_DB_PREFIX."user";
72
73$resql = $db->query($sql);
74if ($resql) {
75 $num = $db->num_rows($resql);
76 $i = 0;
77
78 $ldap = new Ldap();
79 $ldap->connect_bind();
80
81 while ($i < $num) {
82 $ldap->error = "";
83
84 $obj = $db->fetch_object($resql);
85
86 $fuser = new User($db);
87 $fuser->fetch($obj->rowid);
88
89 print $langs->trans("UpdateUser")." rowid=".$fuser->id." ".$fuser->getFullName($langs);
90
91 $oldobject = $fuser;
92
93 $oldinfo = $oldobject->_load_ldap_info();
94 $olddn = $oldobject->_load_ldap_dn($oldinfo);
95
96 $info = $fuser->_load_ldap_info();
97 $dn = $fuser->_load_ldap_dn($info);
98
99 $result = $ldap->add($dn, $info, $user); // Wil fail if already exists
100 $result = $ldap->update($dn, $info, $user, $olddn);
101 if ($result > 0) {
102 print " - ".$langs->trans("OK");
103 } else {
104 $error++;
105 print " - ".$langs->trans("KO").' - '.$ldap->error;
106 }
107 print "\n";
108
109 $i++;
110 }
111
112 $ldap->unbind();
113} else {
114 dol_print_error($db);
115}
116
117exit($error);
Class to manage LDAP features.
Class to manage Dolibarr users.
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.