mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 18:09:06 +01:00
Compare commits
4 commits
c4e9a33d2d
...
fd81cb496f
Author | SHA1 | Date | |
---|---|---|---|
|
fd81cb496f | ||
|
4ae9e304ad | ||
|
c657e318dd | ||
|
38d5fd5094 |
6 changed files with 2694 additions and 3166 deletions
|
@ -317,10 +317,13 @@ class LScli extends LSlog_staticLoggerClass {
|
|||
* @param[in] $command string|array The command. It's could be an array of the command with its arguments.
|
||||
* @param[in] $data_stdin string|null The command arguments (optional, default: null)
|
||||
* @param[in] $escape_command_args boolean If true, the command will be escaped (optional, default: true)
|
||||
* @param[in] $cwd string|null The initial working dir for the command
|
||||
* (optional, default: null = use current PHP
|
||||
* process working directory)
|
||||
*
|
||||
* @retval false|array An array of return code, stdout and stderr result or False in case of fatal error
|
||||
**/
|
||||
public static function run_external_command($command, $data_stdin=null, $escape_command_args=true) {
|
||||
public static function run_external_command($command, $data_stdin=null, $escape_command_args=true, $cwd=null) {
|
||||
if (array($command))
|
||||
$command = implode(' ', $command);
|
||||
if ($escape_command_args)
|
||||
|
@ -331,7 +334,7 @@ class LScli extends LSlog_staticLoggerClass {
|
|||
1 => array("pipe", "w"), // stdout
|
||||
2 => array("pipe", "w"), // stderr
|
||||
);
|
||||
$process = proc_open($command, $descriptorspec, $pipes);
|
||||
$process = proc_open($command, $descriptorspec, $pipes, $cwd);
|
||||
|
||||
if (!is_resource($process)) {
|
||||
self :: log_error("Fail to run external command: '$command'");
|
||||
|
|
|
@ -1059,9 +1059,10 @@ function cli_generate_ldapsaisie_pot($command_args) {
|
|||
|
||||
// List PHP files to parse
|
||||
$php_files = LScli :: run_external_command(
|
||||
array('find', escapeshellarg(LS_ROOT_DIR), '-name', "'*.php'"),
|
||||
array('find', '-name', "'*.php'"),
|
||||
null, // no STDIN data
|
||||
false // do not escape command args (already done)
|
||||
false, // do not escape command args (already done)
|
||||
LS_ROOT_DIR // run in LdapSaisie root directory to retreive relative paths
|
||||
);
|
||||
if (!is_array($php_files) || $php_files[0] != 0) {
|
||||
$LSlang_cli_logger -> fatal("Fail to list PHP files.");
|
||||
|
@ -1079,7 +1080,9 @@ function cli_generate_ldapsaisie_pot($command_args) {
|
|||
"--keyword=___", // Handle custom ___() translation function
|
||||
"--files=-" // Read files to parse from STDIN
|
||||
),
|
||||
$php_files[1] // Pass PHP files list via STDIN
|
||||
$php_files[1], // Pass PHP files list via STDIN
|
||||
true, // Escape parameters
|
||||
LS_ROOT_DIR // Run in LdapSaisie root directory
|
||||
);
|
||||
if (!is_array($result) || $result[0] != 0)
|
||||
$LSlang_cli_logger -> fatal("Fail to extract messages from PHP files using xgettext.");
|
||||
|
|
|
@ -271,6 +271,44 @@ class LSldap extends LSlog_staticLoggerClass {
|
|||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return a attribute value
|
||||
*
|
||||
* It performs a case-insensitive search.
|
||||
*
|
||||
* @author Emmanuel Saracco <esaracco@easter-eggs.com>
|
||||
*
|
||||
* @param[in] $attrs array Array of LDAP attributes
|
||||
* @param[in] $name array Name of a attribute
|
||||
*
|
||||
* @retval boolean true if found
|
||||
*/
|
||||
public static function attrExists($attrs, $name) {
|
||||
return array_key_exists(strtolower($name), array_change_key_case($attrs));
|
||||
}
|
||||
|
||||
/**
|
||||
* Return a attribute value
|
||||
*
|
||||
* It performs a case-insensitive search.
|
||||
*
|
||||
* @author Emmanuel Saracco <esaracco@easter-eggs.com>
|
||||
*
|
||||
* @param[in] $attrs array Array of LDAP attributes
|
||||
* @param[in] $name array Name of a attribute
|
||||
*
|
||||
* @retval mixed Found value or null
|
||||
*/
|
||||
public static function getAttr($attrs, $name) {
|
||||
$name = strtolower($name);
|
||||
foreach ($attrs as $k => $v) {
|
||||
if (strtolower($k) === $name) {
|
||||
return $v;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return an existing or new LDAP entry
|
||||
*
|
||||
|
@ -423,8 +461,17 @@ class LSldap extends LSlog_staticLoggerClass {
|
|||
// Set an error flag to false
|
||||
$error = false;
|
||||
|
||||
// Handle special case: user password change
|
||||
if ($changed_attrs && self :: attrExists($changed_attrs, 'userPassword')) {
|
||||
$changed_attrs = self :: updateUserPassword($object_type, $changed_attrs, $dn);
|
||||
if ($changed_attrs === false) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// Handle attributes changes (if need)
|
||||
if ($changed_attrs) {
|
||||
|
||||
$entry -> replace($changed_attrs);
|
||||
if ($entry -> isNew()) {
|
||||
self :: log_debug("update($object_type, $dn): add new entry");
|
||||
|
@ -607,6 +654,56 @@ class LSldap extends LSlog_staticLoggerClass {
|
|||
}
|
||||
return;
|
||||
}
|
||||
/**
|
||||
* Update userPassword attribute
|
||||
*
|
||||
* This method uses LDAP controls when possible (Net_LDAP2 does not).
|
||||
*
|
||||
* @param[in] $object_type string The object type
|
||||
* @param[in] $changed_attrs array Array of changed attributes
|
||||
* @param[in] $dn string DN of the LDAP object
|
||||
*
|
||||
* @author Emmanuel Saracco <esaracco@easter-eggs.com>
|
||||
*
|
||||
* @retval mixed New array of changed attributes or false
|
||||
**/
|
||||
private static function updateUserPassword($object_type, $changed_attrs, $dn) {
|
||||
if (self :: getConfig('version') < 3 || !function_exists('ldap_mod_replace_ext')) {
|
||||
return $changed_attrs;
|
||||
}
|
||||
$ppolicyErrorMsg = array(
|
||||
_('The password expired'),
|
||||
_('The account is locked'),
|
||||
_('The password was reset and must be changed'),
|
||||
_('It is not possible to modify the password'),
|
||||
_('The old password must be supplied'),
|
||||
_('The password does not meet the quality requirements'),
|
||||
_('The password is too short'),
|
||||
_('It is too soon to change the password'),
|
||||
_('This password was recently used and cannot be used again'),
|
||||
);
|
||||
self :: log_debug("update($object_type, $dn): update entry for userPassword");
|
||||
$ldap = self :: $cnx->getLink();
|
||||
$attr = array('userPassword' => self :: getAttr($changed_attrs, 'userPassword'));
|
||||
$ctrlRequest = array(array('oid' => LDAP_CONTROL_PASSWORDPOLICYREQUEST));
|
||||
$r = ldap_mod_replace_ext($ldap, $dn, $attr, $ctrlRequest);
|
||||
if ($r && ldap_parse_result($ldap, $r, $errcode, $matcheddn, $errmsg, $ref, $ctrlResponse)) {
|
||||
if ($errcode !== 0 && isset($ctrlResponse[LDAP_CONTROL_PASSWORDPOLICYRESPONSE])) {
|
||||
LSerror :: addErrorCode('LSldap_10', $ppolicyErrorMsg[$ctrlResponse[LDAP_CONTROL_PASSWORDPOLICYRESPONSE]['value']['error']]);
|
||||
return false;
|
||||
}
|
||||
// If everything OK, remove userPassword to prevent it from being processed by Net_LDAP2
|
||||
unset($changed_attrs['userPassword']);
|
||||
} else {
|
||||
if (ldap_errno($ldap) !== 0) {
|
||||
LSerror :: addErrorCode('LSldap_10', ldap_error($ldap));
|
||||
} else {
|
||||
LSerror :: addErrorCode('LSldap_11');
|
||||
}
|
||||
return false;
|
||||
}
|
||||
return $changed_attrs;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return a configuration parameter (or default value)
|
||||
|
@ -652,3 +749,9 @@ LSerror :: defineError('LSldap_08',
|
|||
LSerror :: defineError('LSldap_09',
|
||||
___("LSldap: Fail to set authz proxy option on LDAP server connection.")
|
||||
);
|
||||
LSerror :: defineError('LSldap_10',
|
||||
___("LSldap: Error while changing the user password: %{msg}.")
|
||||
);
|
||||
LSerror :: defineError('LSldap_11',
|
||||
___("LSldap: Unknown LDAP error while updating user password")
|
||||
);
|
||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue