egroupware_official/preferences/inc/class.preferences_password.inc.php

94 lines
2.3 KiB
PHP
Raw Normal View History

<?php
/**
* EGroupware preferences
*
* @package preferences
* @link http://www.egroupware.org
* @author Joseph Engo <jengo@phpgroupware.org>
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @version $Id$
*/
2014-04-17 09:37:21 +02:00
class preferences_password
{
var $public_functions = array(
'change' => True
);
2015-03-12 17:58:01 +01:00
/**
* Change password function
* process change password form
*
* @param type $content
*/
function change($content = null)
{
2015-03-12 17:58:01 +01:00
if ($GLOBALS['egw']->acl->check('nopasswordchange', 1))
{
2015-03-12 17:58:01 +01:00
egw_framework::window_close('There was no password change!');
}
2015-03-12 17:58:01 +01:00
if (!is_array($content))
{
2015-03-12 17:58:01 +01:00
$content= array();
}
else
{
if ($content['button']['change'])
{
2015-03-12 17:58:01 +01:00
$o_passwd = $GLOBALS['egw_info']['user']['passwd'];
if($o_passwd != $content['o_passwd_2'])
{
$errors[] = lang('The old password is not correct');
}
if($content['n_passwd'] != $content['n_passwd_2'])
{
$errors[] = lang('The two passwords are not the same');
}
2015-03-12 17:58:01 +01:00
if($o_passwd == $content['n_passwd'])
{
$errors[] = lang('Old password and new password are the same. This is invalid. You must enter a new password');
}
2015-03-12 17:58:01 +01:00
if(!$content['n_passwd'])
{
$errors[] = lang('You must enter a password');
}
2015-03-12 17:58:01 +01:00
// allow auth backends or configured password strenght to throw exceptions and display there message
if (!$errors)
{
try {
$passwd_changed = $GLOBALS['egw']->auth->change_password($o_passwd, $content['n_passwd'],
$GLOBALS['egw_info']['user']['account_id']);
}
catch (Exception $e) {
$errors[] = $e->getMessage();
}
}
2015-03-12 17:58:01 +01:00
if(!$passwd_changed)
{
if (!$errors) // if we have no specific error, add general message
{
$errors[] = lang('Failed to change password.');
}
egw_framework::message(implode("\n", $errors), 'error');
$content = array();
}
2015-03-12 17:58:01 +01:00
else
{
2015-03-12 17:58:01 +01:00
egw_framework::refresh_opener(lang('Password changed'), 'preferences');
egw_framework::window_close();
}
2015-03-12 17:58:01 +01:00
}
}
2015-03-12 17:58:01 +01:00
$GLOBALS['egw_info']['flags']['app_header'] = lang('Change your password');
2015-03-12 17:58:01 +01:00
$tmpl = new etemplate_new('preferences.password');
2015-03-12 17:58:01 +01:00
$tmpl->exec('preferences.preferences_password.change', $content,array(),array(),array(),2);
}
}