From: hickert Date: Thu, 9 Sep 2010 08:16:59 +0000 (+0000) Subject: Updated password method X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=ae0ee7dd4a7e7bae3a748c1d72ee92990e2e1b2c;p=gosa.git Updated password method git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19576 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/functions.inc b/gosa-core/include/functions.inc index d72ba01a1..b830351f6 100644 --- a/gosa-core/include/functions.inc +++ b/gosa-core/include/functions.inc @@ -3093,18 +3093,20 @@ function change_password ($dn, $password, $mode=FALSE, $hash= "", $old_password // Check if everythin went fine and then call the post event hooks. // If an error occures, then try to rollback the complete actions done. - $postRollback = FALSE; + $preRollback = FALSE; $ldapRollback = FALSE; $success = TRUE; if (!$ldap->success()) { new log("modify","users/passwordMethod",$dn,array(),"Password change - ldap modifications! - FAILED"); $success =FALSE; $message = msgPool::ldaperror($ldap->get_error(), $dn, LDAP_MOD); + $preRollback =TRUE; } else { // Now call the passwordMethod change mechanism. if(!$test->set_password($password)){ $ldapRollback = TRUE; + $preRollback =TRUE; $success = FALSE; new log("modify","users/passwordMethod",$dn,array(),"Password change - set_password! - FAILED"); $message = _("Password change failed!"); @@ -3114,20 +3116,23 @@ function change_password ($dn, $password, $mode=FALSE, $hash= "", $old_password plugin::callHook($passwordPlugin, 'POSTMODIFY', $attrs, $output,$retCode,$error, $directlyPrintError = FALSE); if($retCode === 0){ if(count($output)){ + new log("modify","users/passwordMethod",$dn,array(),"Password change - Post mdoify hook reported! - FAILED!"); $attrs = array(); $attrs['userPassword'] = escapeshellarg($password); $attrs['current_password'] = escapeshellarg($password); $attrs['old_password'] = escapeshellarg($old_password); $message = sprintf(_("Post-event hook reported a problem: %s. Password change canceled!"),implode($output)); $ldapRollback = TRUE; + $preRollback = TRUE; $success = FALSE; }else{ #new log("modify","users/passwordMethod",$dn,array(),"Password change - successfull!"); } }else{ $ldapRollback = TRUE; + $preRollback = TRUE; $success = FALSE; - new log("modify","users/passwordMethod",$dn,array(),"Password change - postmodify hook! - FAILED"); + new log("modify","users/passwordMethod",$dn,array(),"Password change - postmodify hook execution! - FAILED"); new log("modify","users/passwordMethod",$dn,array(),$error); // Call password method again and send in old password to @@ -3141,8 +3146,8 @@ function change_password ($dn, $password, $mode=FALSE, $hash= "", $old_password // the plugins post-event hook, using switched passwords new/old password. // This ensures that passwords which were set outside of GOsa, will be reset to its // starting value. - if($postRollback && !empty($old_password)){ - new log("modify","users/passwordMethod",$dn,array(),"Rollback postmodify hook!"); + if($preRollback && !empty($old_password)){ + new log("modify","users/passwordMethod",$dn,array(),"Rolling back postmodify hook!"); $attrs = array(); $attrs['current_password'] = escapeshellarg($password); $attrs['new_password'] = escapeshellarg($old_password);