48 public $errors = array();
53 public $server = array();
58 public $connectedServer;
79 public $ldapProtocolVersion;
105 public $searchPassword;
120 public $ldapErrorCode;
125 public $ldapErrorText;
140 public $filtermember;
150 public $attr_sambalogin;
160 public $attr_firstname;
241 public $ldapcharset =
'UTF-8';
256 const SYNCHRO_NONE = 0;
261 const SYNCHRO_DOLIBARR_TO_LDAP = 1;
266 const SYNCHRO_LDAP_TO_DOLIBARR = 2;
319 global $dolibarr_main_auth_ldap_debug;
324 $this->connectedServer =
'';
326 $ldapdebug = !((empty($dolibarr_main_auth_ldap_debug) || $dolibarr_main_auth_ldap_debug ==
"false"));
330 print
"DEBUG: connectBind<br>\n";
334 if (count($this->server) == 0 || empty($this->server[0])) {
335 $this->error =
'LDAP setup (file conf.php) is not complete';
336 dol_syslog(get_class($this).
"::connectBind ".$this->error, LOG_WARNING);
340 if (!function_exists(
"ldap_connect")) {
341 $this->error =
'LDAPFunctionsNotAvailableOnPHP';
342 dol_syslog(get_class($this).
"::connectBind ".$this->error, LOG_WARNING);
346 if (empty($this->error)) {
348 foreach ($this->server as $host) {
356 if ($this->
serverPing($host, $this->serverPort)) {
358 dol_syslog(get_class($this).
"::connectBind serverPing true, we try ldap_connect to ".$host, LOG_DEBUG);
360 if (version_compare(PHP_VERSION,
'8.3.0',
'>=')) {
364 $uri = preg_match(
'/^ldaps?:\/\//i', $host) ? $host :
'ldap://'.$host.
':'.$this->serverPort;
365 $this->connection = ldap_connect($uri);
367 $this->connection = ldap_connect($host, $this->serverPort);
370 if (preg_match(
'/^ldaps/i', $host)) {
374 dol_syslog(get_class($this).
"::connectBind serverPing false, we try ldap_connect to ".$host, LOG_DEBUG);
376 if (version_compare(PHP_VERSION,
'8.3.0',
'>=')) {
377 $uri = preg_match(
'/^ldaps?:\/\//i', $host) ? $host :
'ldap://'.$host.
':'.$this->serverPort;
378 $this->connection = ldap_connect($uri);
380 $this->connection = ldap_connect($host, $this->serverPort);
384 dol_syslog(get_class($this).
"::connectBind serverPing false, no ldap_connect ".$host, LOG_DEBUG);
390 if (is_resource($this->connection) || is_object($this->connection)) {
392 dol_syslog(get_class($this).
"::connectBind this->connection is ok", LOG_DEBUG);
402 $resulttls = ldap_start_tls($this->connection);
404 dol_syslog(get_class($this).
"::connectBind failed to start tls", LOG_WARNING);
405 $this->error =
'ldap_start_tls Failed to start TLS '.ldap_errno($this->connection).
' '.ldap_error($this->connection);
415 if ($this->serverType ==
"activedirectory") {
417 dol_syslog(get_class($this).
"::connectBind try bindauth for activedirectory on ".$host.
" user=".$this->searchUser.
" password=".preg_replace(
'/./',
'*', $this->searchPassword), LOG_DEBUG);
418 $this->result = $this->
bindauth($this->searchUser, $this->searchPassword);
420 $this->
bind = $this->result;
422 $this->connectedServer = $host;
425 $this->error = ldap_errno($this->connection).
' '.ldap_error($this->connection);
429 if ($this->searchUser && $this->searchPassword) {
430 dol_syslog(get_class($this).
"::connectBind try bindauth on ".$host.
" user=".$this->searchUser.
" password=".preg_replace(
'/./',
'*', $this->searchPassword), LOG_DEBUG);
431 $this->result = $this->
bindauth($this->searchUser, $this->searchPassword);
433 $this->
bind = $this->result;
435 $this->connectedServer = $host;
438 $this->error = ldap_errno($this->connection).
' '.ldap_error($this->connection);
443 dol_syslog(get_class($this).
"::connectBind try bind anonymously on ".$host, LOG_DEBUG);
444 $result = $this->
bind();
446 $this->
bind = $this->result;
448 $this->connectedServer = $host;
451 $this->error = ldap_errno($this->connection).
' '.ldap_error($this->connection);
464 dol_syslog(get_class($this).
"::connectBind ".$connected, LOG_DEBUG);
467 $this->error =
'Failed to connect to LDAP'.($this->error ?
': '.$this->error :
'');
468 dol_syslog(get_class($this).
"::connectBind ".$this->error, LOG_WARNING);
494 if (!$this->result = @ldap_bind($this->connection)) {
495 $this->ldapErrorCode = ldap_errno($this->connection);
496 $this->ldapErrorText = ldap_error($this->connection);
497 $this->error = $this->ldapErrorCode.
" ".$this->ldapErrorText;
516 if (!$this->result = @ldap_bind($this->connection, $bindDn, $pass)) {
517 $this->ldapErrorCode = ldap_errno($this->connection);
518 $this->ldapErrorText = ldap_error($this->connection);
519 $this->error = $this->ldapErrorCode.
" ".$this->ldapErrorText;
534 $this->result =
true;
535 if (version_compare(PHP_VERSION,
'8.1.0',
'>=')) {
536 if (is_object($this->connection)) {
538 $this->result = ldap_unbind($this->connection);
539 }
catch (Throwable $exception) {
540 $this->error =
'Failed to unbind LDAP connection: '.$exception;
541 $this->result =
false;
542 dol_syslog(get_class($this).
'::unbind - '.$this->error, LOG_WARNING);
546 if (is_resource($this->connection)) {
548 $this->result = @ldap_unbind($this->connection);
566 @ldap_get_option($this->connection, LDAP_OPT_PROTOCOL_VERSION, $version);
578 return ldap_set_option($this->connection, LDAP_OPT_PROTOCOL_VERSION, $this->ldapProtocolVersion);
588 return ldap_set_option($this->connection, LDAP_OPT_SIZELIMIT, 0);
599 return ldap_set_option($this->connection, LDAP_OPT_REFERRALS, 0);
612 public function add($dn, $info, $user)
614 dol_syslog(get_class($this).
"::add dn=".$dn.
" info=".print_r($info,
true));
617 if (!$this->connection) {
618 $this->error =
"NotConnected";
622 $this->error =
"NotConnected";
628 foreach ($info as $key => $val) {
629 if (!is_array($val)) {
634 $this->
dump($dn, $info);
637 $result = @ldap_add($this->connection, $dn, $info);
640 dol_syslog(get_class($this).
"::add successful", LOG_DEBUG);
643 $this->ldapErrorCode = @ldap_errno($this->connection);
644 $this->ldapErrorText = @ldap_error($this->connection);
645 $this->error = $this->ldapErrorCode.
" ".$this->ldapErrorText;
646 dol_syslog(get_class($this).
"::add failed: ".$this->error, LOG_ERR);
660 public function modify($dn, $info, $user)
662 dol_syslog(get_class($this).
"::modify dn=".$dn.
" info=".print_r($info,
true));
665 if (!$this->connection) {
666 $this->error =
"NotConnected";
670 $this->error =
"NotConnected";
676 foreach ($info as $key => $val) {
677 if (!is_array($val)) {
682 $this->
dump($dn, $info);
687 if ($this->serverType ==
"activedirectory") {
691 if (isset($info[
'unicodePwd'])) {
692 $info[
'unicodePwd'] = mb_convert_encoding(
"\"".$info[
'unicodePwd'].
"\"",
"UTF-16LE",
"UTF-8");
695 $result = @ldap_mod_replace($this->connection, $dn, $info);
698 dol_syslog(get_class($this).
"::modify successful", LOG_DEBUG);
701 $this->error = @ldap_error($this->connection);
702 dol_syslog(get_class($this).
"::modify failed: ".$this->error, LOG_ERR);
718 public function rename($dn, $newrdn, $newparent, $user, $deleteoldrdn =
true)
720 dol_syslog(get_class($this).
"::modify dn=".$dn.
" newrdn=".$newrdn.
" newparent=".$newparent.
" deleteoldrdn=".($deleteoldrdn ? 1 : 0));
723 if (!$this->connection) {
724 $this->error =
"NotConnected";
728 $this->error =
"NotConnected";
738 $result = @ldap_rename($this->connection, $dn, $newrdn, $newparent, $deleteoldrdn);
741 dol_syslog(get_class($this).
"::rename successful", LOG_DEBUG);
744 $this->error = @ldap_error($this->connection);
745 dol_syslog(get_class($this).
"::rename failed: ".$this->error, LOG_ERR);
762 public function update($dn, $info, $user, $olddn, $newrdn =
'', $newparent =
'')
764 dol_syslog(get_class($this).
"::update dn=".$dn.
" olddn=".$olddn);
767 if (!$this->connection) {
768 $this->error =
"NotConnected";
772 $this->error =
"NotConnected";
776 if (!$olddn || $olddn != $dn) {
777 if (!empty($olddn) && !empty($newrdn) && !empty($newparent) && $this->ldapProtocolVersion ===
'3') {
779 $result = $this->
rename($olddn, $newrdn, $newparent, $user,
true);
780 $result = $this->
modify($dn, $info, $user);
783 $result = $this->
add($dn, $info, $user);
784 if ($result > 0 && $olddn && $olddn != $dn) {
785 $result = $this->
delete($olddn);
790 $result = $this->
add($dn, $info, $user);
791 $result = $this->
modify($dn, $info, $user);
794 $this->error = ldap_error($this->connection).
' (Code '.ldap_errno($this->connection).
") ".$this->error;
795 dol_syslog(get_class($this).
"::update ".$this->error, LOG_ERR);
799 dol_syslog(get_class($this).
"::update done successfully");
812 public function delete($dn)
814 dol_syslog(get_class($this).
"::delete Delete LDAP entry dn=".$dn);
817 if (!$this->connection) {
818 $this->error =
"NotConnected";
822 $this->error =
"NotConnected";
829 $result = @ldap_delete($this->connection, $dn);
850 if (preg_match(
'/^ldap/', $this->server[0])) {
851 $target =
"-H ".implode(
',', $this->server);
853 $target =
"-h ".implode(
',', $this->server).
" -p ".$this->serverPort;
855 $content .=
"# ldapadd $target -c -v -D ".$this->searchUser.
" -W -f ldapinput.in\n";
856 $content .=
"# ldapmodify $target -c -v -D ".$this->searchUser.
" -W -f ldapinput.in\n";
857 $content .=
"# ldapdelete $target -c -v -D ".$this->searchUser.
" -W -f ldapinput.in\n";
858 if (in_array(
'localhost', $this->server)) {
859 $content .=
"# If commands fails to connect, try without -h and -p\n";
861 $content .=
"dn: ".$dn.
"\n";
862 foreach ($info as $key => $value) {
863 if (!is_array($value)) {
864 $content .=
"$key: $value\n";
866 foreach ($value as $valuevalue) {
867 $content .=
"$key: $valuevalue\n";
881 public function dump($dn, $info)
884 $ldapDirTemp =
$conf->ldap->dir_temp;
891 $outputfile = $ldapDirTemp.
'/ldapinput.in';
892 $fp = fopen($outputfile,
"w");
894 fwrite($fp, $content);
917 if (preg_match(
'/^ldaps:\/\/([^\/]+)\/?$/', $host, $regs)) {
919 $host =
'ssl://'.$regs[1];
920 } elseif (preg_match(
'/^ldap:\/\/([^\/]+)\/?$/', $host, $regs)) {
929 $errno = $errstr = 0;
938 $op = @fsockopen($host, $port, $errno, $errstr, $timeout);
963 dol_syslog(get_class($this).
"::addAttribute dn=".$dn.
" info=".implode(
',', $info));
966 if (!$this->connection) {
967 $this->error =
"NotConnected";
971 $this->error =
"NotConnected";
977 foreach ($info as $key => $val) {
978 if (!is_array($val)) {
983 $this->
dump($dn, $info);
986 $result = @ldap_mod_add($this->connection, $dn, $info);
989 dol_syslog(get_class($this).
"::add_attribute successful", LOG_DEBUG);
992 $this->error = @ldap_error($this->connection);
993 dol_syslog(get_class($this).
"::add_attribute failed: ".$this->error, LOG_ERR);
1009 dol_syslog(get_class($this).
"::updateAttribute dn=".$dn.
" info=".implode(
',', $info));
1012 if (!$this->connection) {
1013 $this->error =
"NotConnected";
1017 $this->error =
"NotConnected";
1023 foreach ($info as $key => $val) {
1024 if (!is_array($val)) {
1029 $this->
dump($dn, $info);
1032 $result = @ldap_mod_replace($this->connection, $dn, $info);
1035 dol_syslog(get_class($this).
"::updateAttribute successful", LOG_DEBUG);
1038 $this->error = @ldap_error($this->connection);
1039 dol_syslog(get_class($this).
"::updateAttribute failed: ".$this->error, LOG_ERR);
1055 dol_syslog(get_class($this).
"::deleteAttribute dn=".$dn.
" info=".implode(
',', $info));
1058 if (!$this->connection) {
1059 $this->error =
"NotConnected";
1063 $this->error =
"NotConnected";
1069 foreach ($info as $key => $val) {
1070 if (!is_array($val)) {
1075 $this->
dump($dn, $info);
1078 $result = @ldap_mod_del($this->connection, $dn, $info);
1081 dol_syslog(get_class($this).
"::deleteAttribute successful", LOG_DEBUG);
1084 $this->error = @ldap_error($this->connection);
1085 dol_syslog(get_class($this).
"::deleteAttribute failed: ".$this->error, LOG_ERR);
1102 if (!$this->connection) {
1103 $this->error =
"NotConnected";
1107 $this->error =
"NotConnected";
1111 $search = @ldap_search($this->connection, $dn, $filter);
1114 $entry = @ldap_first_entry($this->connection, $search);
1117 $this->ldapErrorCode = -1;
1118 $this->ldapErrorText =
"Couldn't find entry";
1123 if (!($values = ldap_get_attributes($this->connection, $entry))) {
1124 $this->ldapErrorCode = ldap_errno($this->connection);
1125 $this->ldapErrorText = ldap_error($this->connection);
1142 $attributes = array();
1143 $attributes[0] = $attribute;
1146 $this->result = @ldap_search($this->connection, $this->people, $filterrecord, $attributes);
1152 $entry = ldap_first_entry($this->connection, $this->result);
1155 $this->ldapErrorCode = -1;
1156 $this->ldapErrorText =
"Couldn't find user";
1161 if (!$values = @ldap_get_values_len($this->connection, $entry, $attribute)) {
1162 $this->ldapErrorCode = ldap_errno($this->connection);
1163 $this->ldapErrorText = ldap_error($this->connection);
1183 public function getRecords($search, $userDn, $useridentifier, $attributeArray, $activefilter = 0, $attributeAsArray = array())
1185 $fulllist = array();
1187 dol_syslog(get_class($this).
"::getRecords search=".$search.
" userDn=".$userDn.
" useridentifier=".$useridentifier.
" attributeArray=array(".implode(
',', $attributeArray).
") activefilter=".$activefilter);
1190 if ($this->serverType ==
"activedirectory") {
1191 $this->
bindauth($this->searchUser, $this->searchPassword);
1192 dol_syslog(get_class($this).
"::bindauth serverType=activedirectory searchUser=".$this->searchUser);
1196 if (!empty($activefilter)) {
1197 if (((
string) $activefilter ==
'1' || (
string) $activefilter ==
'user') && $this->filter) {
1198 $filter =
'('.$this->filter.
')';
1199 } elseif (((
string) $activefilter ==
'group') && $this->filtergroup) {
1200 $filter =
'('.$this->filtergroup.
')';
1201 } elseif (((
string) $activefilter ==
'member') && $this->filter) {
1202 $filter =
'('.$this->filtermember.
')';
1205 $filter =
'('.ldap_escape($useridentifier,
'', LDAP_ESCAPE_FILTER).
'=*)';
1208 $filter =
'('.ldap_escape($useridentifier,
'', LDAP_ESCAPE_FILTER).
'='.ldap_escape($search,
'', LDAP_ESCAPE_FILTER).
')';
1211 if (is_array($attributeArray)) {
1213 $attributeArray = array_values($attributeArray);
1214 dol_syslog(get_class($this).
"::getRecords connection=".$this->connectedServer.
":".$this->serverPort.
" userDn=".$userDn.
" filter=".$filter.
" attributeArray=(".implode(
',', $attributeArray).
")");
1216 $this->result = @ldap_search($this->connection, $userDn, $filter, $attributeArray);
1219 dol_syslog(get_class($this).
"::getRecords connection=".$this->connectedServer.
":".$this->serverPort.
" userDn=".$userDn.
" filter=".$filter);
1220 $this->result = @ldap_search($this->connection, $userDn, $filter);
1222 if (!$this->result) {
1223 $this->error =
'LDAP search failed: '.ldap_errno($this->connection).
" ".ldap_error($this->connection);
1227 $info = @ldap_get_entries($this->connection, $this->result);
1233 for ($i = 0; $i < $info[
"count"]; $i++) {
1234 $recordid = $this->
convToOutputCharset($info[$i][strtolower($useridentifier)][0], $this->ldapcharset);
1237 $fulllist[$recordid][$useridentifier] = $recordid;
1240 $num = count($attributeArray);
1241 for ($j = 0; $j < $num; $j++) {
1242 $keyattributelower = strtolower($attributeArray[$j]);
1246 if ($this->serverType ==
"activedirectory" && $keyattributelower ==
"objectsid") {
1248 $fulllist[$recordid][$attributeArray[$j]] = $objectsid;
1250 if (in_array($attributeArray[$j], $attributeAsArray) && is_array($info[$i][$keyattributelower])) {
1251 $valueTab = array();
1252 foreach ($info[$i][$keyattributelower] as $key => $value) {
1255 $fulllist[$recordid][$attributeArray[$j]] = $valueTab;
1257 $fulllist[$recordid][$attributeArray[$j]] = $this->
convToOutputCharset($info[$i][$keyattributelower][0], $this->ldapcharset);
1278 for ($x =
dol_strlen($hex) - 2; $x >= 0; $x -= 2) {
1279 $result .= substr($hex, $x, 2);
1294 $criteria =
'('.$this->getUserIdentifier().
'='.$ldapUser.
')';
1295 $justthese = array(
"objectsid");
1298 if ($this->serverType ==
"activedirectory") {
1299 $this->
bindauth($this->searchUser, $this->searchPassword);
1304 $searchDN = $this->people;
1307 $ldapSearchResult = @ldap_search($this->connection, $searchDN, $criteria, $justthese);
1309 if (!$ldapSearchResult) {
1310 $this->error = ldap_errno($this->connection).
" ".ldap_error($this->connection);
1314 $entry = ldap_first_entry($this->connection, $ldapSearchResult);
1318 $searchDN = $this->domain;
1327 $ldapBinary = ldap_get_values_len($this->connection, $entry,
"objectsid");
1331 $this->error = ldap_errno($this->connection).
" ".ldap_error($this->connection);
1345 $hex_sid = bin2hex($binsid);
1346 $rev = hexdec(substr($hex_sid, 0, 2));
1347 $subcount = hexdec(substr($hex_sid, 2, 2));
1348 $auth = hexdec(substr($hex_sid, 4, 12));
1349 $result =
"$rev-$auth";
1350 for ($x = 0; $x < $subcount; $x++) {
1351 $result .=
"-".hexdec($this->
littleEndian(substr($hex_sid, 16 + ($x * 8), 8)));
1372 dol_syslog(get_class($this).
"::search checkDn=".$checkDn.
" filter=".$filter);
1378 if ($this->serverType ==
"activedirectory") {
1379 $this->
bindauth($this->searchUser, $this->searchPassword);
1382 $this->result = @ldap_search($this->connection, $checkDn, $filter);
1384 $result = @ldap_get_entries($this->connection, $this->result);
1386 $this->error = ldap_errno($this->connection).
" ".ldap_error($this->connection);
1389 ldap_free_result($this->result);
1408 if ($this->serverType ==
"activedirectory") {
1409 $this->
bindauth($this->searchUser, $this->searchPassword);
1412 $searchDN = $this->people;
1417 dol_syslog(get_class($this).
"::fetch search with searchDN=".$searchDN.
" filter=".$filter);
1418 $this->result = @ldap_search($this->connection, $searchDN, $filter);
1419 if ($this->result) {
1420 $result = @ldap_get_entries($this->connection, $this->result);
1421 if ($result[
'count'] > 0) {
1422 dol_syslog(
'Ldap::fetch search found '.$result[
'count'].
' records');
1424 dol_syslog(
'Ldap::fetch search returns but found no records');
1428 $this->error = ldap_errno($this->connection).
" ".ldap_error($this->connection);
1429 dol_syslog(get_class($this).
"::fetch search fails");
1435 $searchDN = $this->domain;
1443 $this->error = ldap_errno($this->connection).
" ".ldap_error($this->connection);
1447 $this->firstname = $this->
convToOutputCharset($result[0][$this->attr_firstname][0], $this->ldapcharset);
1448 $this->login = $this->
convToOutputCharset($result[0][$this->attr_login][0], $this->ldapcharset);
1449 $this->phone = $this->
convToOutputCharset($result[0][$this->attr_phone][0], $this->ldapcharset);
1450 $this->fax = $this->
convToOutputCharset($result[0][$this->attr_fax][0], $this->ldapcharset);
1451 $this->mail = $this->
convToOutputCharset($result[0][$this->attr_mail][0], $this->ldapcharset);
1452 $this->mobile = $this->
convToOutputCharset($result[0][$this->attr_mobile][0], $this->ldapcharset);
1455 if (isset($result[0][
"pwdlastset"][0])) {
1456 $this->pwdlastset = ($result[0][
"pwdlastset"][0] != 0) ? $this->
convertTime($this->
convToOutputCharset($result[0][
"pwdlastset"][0], $this->ldapcharset)) : 0;
1458 $this->pwdlastset = -1;
1460 if (!$this->
name && !$this->login) {
1461 $this->pwdlastset = -1;
1466 $domain = str_replace(
'dc=',
'', $this->domain);
1467 $domain = str_replace(
',',
'.', $domain);
1468 $this->domainFQDN = $domain;
1472 $this->ldapUserDN = $result[0][
'dn'];
1474 ldap_free_result($this->result);
1489 if ($this->serverType ==
"activedirectory") {
1490 return $this->attr_sambalogin;
1492 return $this->attr_login;
1506 "TRUSTED_TO_AUTH_FOR_DELEGATION" => 16777216,
1507 "PASSWORD_EXPIRED" => 8388608,
1508 "DONT_REQ_PREAUTH" => 4194304,
1509 "USE_DES_KEY_ONLY" => 2097152,
1510 "NOT_DELEGATED" => 1048576,
1511 "TRUSTED_FOR_DELEGATION" => 524288,
1512 "SMARTCARD_REQUIRED" => 262144,
1513 "MNS_LOGON_ACCOUNT" => 131072,
1514 "DONT_EXPIRE_PASSWORD" => 65536,
1515 "SERVER_TRUST_ACCOUNT" => 8192,
1516 "WORKSTATION_TRUST_ACCOUNT" => 4096,
1517 "INTERDOMAIN_TRUST_ACCOUNT" => 2048,
1518 "NORMAL_ACCOUNT" => 512,
1519 "TEMP_DUPLICATE_ACCOUNT" => 256,
1520 "ENCRYPTED_TEXT_PWD_ALLOWED" => 128,
1521 "PASSWD_CANT_CHANGE" => 64,
1522 "PASSWD_NOTREQD" => 32,
1524 "HOMEDIR_REQUIRED" => 8,
1525 "ACCOUNTDISABLE" => 2,
1532 foreach ($flags as $flag => $val) {
1533 if ($uacf >= $val) {
1535 $retval[$val] = $flag;
1552 805306368 =>
"NORMAL_ACCOUNT",
1553 805306369 =>
"WORKSTATION_TRUST",
1554 805306370 =>
"INTERDOMAIN_TRUST",
1555 268435456 =>
"SECURITY_GLOBAL_GROUP",
1556 268435457 =>
"DISTRIBUTION_GROUP",
1557 536870912 =>
"SECURITY_LOCAL_GROUP",
1558 536870913 =>
"DISTRIBUTION_LOCAL_GROUP"
1562 foreach ($stypes as $sat => $val) {
1563 if ($samtype == $sat) {
1568 if (empty($retval)) {
1569 $retval =
"UNKNOWN_TYPE_".$samtype;
1583 $dateLargeInt = $value;
1584 if (PHP_INT_SIZE < 8) {
1586 $secsAfterADEpoch = (float) $dateLargeInt / (10000000.);
1589 $secsAfterADEpoch = (int) $dateLargeInt / (10000000);
1591 $ADToUnixConvertor = ((1970 - 1601) * 365.242190) * 86400;
1592 $unixTimeStamp = intval($secsAfterADEpoch - $ADToUnixConvertor);
1593 return $unixTimeStamp;
1607 if ($pagecodefrom ==
'ISO-8859-1' &&
$conf->file->character_set_client ==
'UTF-8') {
1608 $str = mb_convert_encoding($str,
'UTF-8',
'ISO-8859-1');
1610 if ($pagecodefrom ==
'UTF-8' &&
$conf->file->character_set_client ==
'ISO-8859-1') {
1611 $str = mb_convert_encoding($str,
'ISO-8859-1');
1626 if ($pagecodeto ==
'ISO-8859-1' &&
$conf->file->character_set_client ==
'UTF-8') {
1627 $str = mb_convert_encoding($str,
'ISO-8859-1');
1629 if ($pagecodeto ==
'UTF-8' &&
$conf->file->character_set_client ==
'ISO-8859-1') {
1630 $str = mb_convert_encoding($str,
'UTF-8',
'ISO-8859-1');
1645 if (empty($keygroup)) {
1646 $keygroup =
'LDAP_KEY_GROUPS';
1650 $result = $this->
search($this->groups, $search);
1652 $c = $result[
'count'];
1654 for ($i = 0; $i <
$c; $i++) {
1655 $gids[] = $result[$i][
'gidnumber'][0];
1659 return $gids[0] + 1;
Class to manage LDAP features.
add($dn, $info, $user)
Add an LDAP entry LDAP object connect and bind must have been done.
convertTime($value)
Converts ActiveDirectory time to Unix timestamp.
modify($dn, $info, $user)
Modify an LDAP entry LDAP object connect and bind must have been done.
deleteAttribute($dn, $info, $user)
Delete an LDAP attribute in entry LDAP object connect and bind must have been done.
setVersion()
Set LDAP protocol version.
convToOutputCharset($str, $pagecodefrom='UTF-8')
Convert a string into output/memory charset.
littleEndian($hex)
Converts a little-endian hex-number to one, that 'hexdec' can convert Required by Active Directory.
fetch($user, $filter)
Load all attributes of an LDAP user.
update($dn, $info, $user, $olddn, $newrdn='', $newparent='')
Modify an LDAP entry (to use if dn != olddn) LDAP object connect and bind must have been done.
getObjectSid($ldapUser)
Gets LDAP user SID.
updateAttribute($dn, $info, $user)
Update an LDAP attribute in entry LDAP object connect and bind must have been done.
getUserIdentifier()
Returns the correct user identifier to use, based on the LDAP server type.
getAttribute($dn, $filter)
Returns an array containing attributes and values for first record.
close()
Simply closes the connection set up earlier.
parseSAT($samtype)
SamAccountType value to text.
rename($dn, $newrdn, $newparent, $user, $deleteoldrdn=true)
Rename an LDAP entry LDAP object connect and bind must have been done.
getNextGroupGid($keygroup='LDAP_KEY_GROUPS')
Return available value of group GID.
setSizeLimit()
Set LDAP size limit.
binSIDtoText($binsid)
Returns the textual SID Required by Active Directory.
connectBind()
Connect and bind Use this->server, this->serverPort, this->ldapProtocolVersion, this->serverType,...
setReferrals()
Set LDAP referrals.
search($checkDn, $filter)
Search method with filter this->connection must be defined.
getRecords($search, $userDn, $useridentifier, $attributeArray, $activefilter=0, $attributeAsArray=array())
Returns an array containing a details or list of LDAP record(s).
getVersion()
Verify LDAP server version.
dumpContent($dn, $info)
Build an LDAP message.
getAttributeValues($filterrecord, $attribute)
Returns an array containing values for an attribute and for first record matching filterrecord.
parseUACF($uacf)
UserAccountControl Flags to more human understandable form...
__construct()
Constructor.
convFromOutputCharset($str, $pagecodeto='UTF-8')
Convert a string from output/memory charset.
serverPing($host, $port=389, $timeout=1)
Ping a server before ldap_connect for avoid waiting.
bind()
Anonymously binds to the connection.
unbind()
Unbind of LDAP server (close connection).
bindauth($bindDn, $pass)
Binds as an authenticated user, which usually allows for write access.
dump($dn, $info)
Dump an LDAP message to ldapinput.in file.
addAttribute($dn, $info, $user)
Add an LDAP attribute in entry LDAP object connect and bind must have been done.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
dolChmod($filepath, $newmask='')
Change mod of a file.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
$conf db name
Only used if Module[ID]Name translation string is not found.