2000-08-18 05:24:22 +02:00
|
|
|
<?php
|
2001-03-10 09:16:33 +01:00
|
|
|
/**************************************************************************\
|
2004-08-09 15:46:03 +02:00
|
|
|
* eGroupWare - preferences *
|
|
|
|
* http://www.egroupware.org *
|
2001-03-10 09:16:33 +01:00
|
|
|
* Written by Joseph Engo <jengo@phpgroupware.org> *
|
|
|
|
* -------------------------------------------- *
|
|
|
|
* This program is free software; you can redistribute it and/or modify it *
|
|
|
|
* under the terms of the GNU General Public License as published by the *
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
|
|
* option) any later version. *
|
|
|
|
\**************************************************************************/
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2001-03-10 09:16:33 +01:00
|
|
|
/* $Id$ */
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2001-08-31 18:32:05 +02:00
|
|
|
$GLOBALS['phpgw_info']['flags'] = array(
|
2001-03-10 09:16:33 +01:00
|
|
|
'noheader' => True,
|
|
|
|
'nonavbar' => True,
|
|
|
|
'currentapp' => 'preferences'
|
|
|
|
);
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2001-03-10 09:16:33 +01:00
|
|
|
include('../header.inc.php');
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2003-08-28 16:31:11 +02:00
|
|
|
$n_passwd = $_POST['n_passwd'];
|
|
|
|
$n_passwd_2 = $_POST['n_passwd_2'];
|
2001-08-31 18:32:05 +02:00
|
|
|
|
2004-01-21 23:56:52 +01:00
|
|
|
if(!$GLOBALS['phpgw']->acl->check('changepassword', 1) || $_POST['cancel'])
|
2001-03-10 09:16:33 +01:00
|
|
|
{
|
2003-04-20 22:47:50 +02:00
|
|
|
$GLOBALS['phpgw']->redirect_link('/preferences/index.php');
|
2003-08-28 16:31:11 +02:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
2001-07-18 22:34:11 +02:00
|
|
|
}
|
2000-12-13 11:26:44 +01:00
|
|
|
|
2001-08-31 18:32:05 +02:00
|
|
|
$GLOBALS['phpgw']->template->set_file(array(
|
2001-04-17 20:09:13 +02:00
|
|
|
'form' => 'changepassword.tpl'
|
|
|
|
));
|
2001-08-31 18:32:05 +02:00
|
|
|
$GLOBALS['phpgw']->template->set_var('lang_enter_password',lang('Enter your new password'));
|
|
|
|
$GLOBALS['phpgw']->template->set_var('lang_reenter_password',lang('Re-enter your password'));
|
|
|
|
$GLOBALS['phpgw']->template->set_var('lang_change',lang('Change'));
|
2003-04-20 22:47:50 +02:00
|
|
|
$GLOBALS['phpgw']->template->set_var('lang_cancel',lang('Cancel'));
|
2001-08-31 18:32:05 +02:00
|
|
|
$GLOBALS['phpgw']->template->set_var('form_action',$GLOBALS['phpgw']->link('/preferences/changepassword.php'));
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2003-08-28 16:31:11 +02:00
|
|
|
if ($GLOBALS['phpgw_info']['server']['auth_type'] != 'ldap')
|
2001-04-17 20:09:13 +02:00
|
|
|
{
|
2003-08-28 16:31:11 +02:00
|
|
|
$GLOBALS['phpgw']->template->set_var('sql_message',lang('note: This feature does *not* change your email password. This will '
|
2001-07-18 22:34:11 +02:00
|
|
|
. 'need to be done manually.'));
|
2001-03-10 09:16:33 +01:00
|
|
|
}
|
2001-04-17 20:09:13 +02:00
|
|
|
|
2003-08-28 16:31:11 +02:00
|
|
|
if ($_POST['change'])
|
2001-03-10 09:16:33 +01:00
|
|
|
{
|
2003-08-28 16:31:11 +02:00
|
|
|
if ($n_passwd != $n_passwd_2)
|
2001-03-10 09:16:33 +01:00
|
|
|
{
|
2003-08-28 16:31:11 +02:00
|
|
|
$errors[] = lang('The two passwords are not the same');
|
2001-03-10 09:16:33 +01:00
|
|
|
}
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2003-08-28 16:31:11 +02:00
|
|
|
if (! $n_passwd)
|
2001-03-10 09:16:33 +01:00
|
|
|
{
|
2003-08-28 16:31:11 +02:00
|
|
|
$errors[] = lang('You must enter a password');
|
2001-03-10 09:16:33 +01:00
|
|
|
}
|
2003-08-28 16:31:11 +02:00
|
|
|
|
2004-01-21 23:56:52 +01:00
|
|
|
if(is_array($errors))
|
2001-03-10 09:16:33 +01:00
|
|
|
{
|
2001-08-31 18:32:05 +02:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_header();
|
2003-08-28 16:31:11 +02:00
|
|
|
echo parse_navbar();
|
|
|
|
$GLOBALS['phpgw']->template->set_var('messages',$GLOBALS['phpgw']->common->error_list($errors));
|
2001-08-31 18:32:05 +02:00
|
|
|
$GLOBALS['phpgw']->template->pfp('out','form');
|
2003-08-28 16:31:11 +02:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
|
|
|
}
|
|
|
|
|
|
|
|
$o_passwd = $GLOBALS['phpgw_info']['user']['passwd'];
|
|
|
|
$passwd_changed = $GLOBALS['phpgw']->auth->change_password($o_passwd, $n_passwd);
|
2004-01-21 23:56:52 +01:00
|
|
|
if(!$passwd_changed)
|
2003-08-28 16:31:11 +02:00
|
|
|
{
|
2004-01-21 23:56:52 +01:00
|
|
|
$errors[] = lang('Failed to change password. Please contact your administrator.');
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_header();
|
|
|
|
echo parse_navbar();
|
|
|
|
$GLOBALS['phpgw']->template->set_var('messages',$GLOBALS['phpgw']->common->error_list($errors));
|
|
|
|
$GLOBALS['phpgw']->template->pfp('out','form');
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
2001-03-10 09:16:33 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-09-11 07:50:22 +02:00
|
|
|
$GLOBALS['phpgw']->session->appsession('password','phpgwapi',base64_encode($n_passwd));
|
2004-09-11 15:33:41 +02:00
|
|
|
$GLOBALS['phpgw_info']['user']['passwd'] = $n_passwd;
|
2003-08-28 16:31:11 +02:00
|
|
|
$GLOBALS['hook_values']['account_id'] = $GLOBALS['phpgw_info']['user']['account_id'];
|
|
|
|
$GLOBALS['hook_values']['old_passwd'] = $o_passwd;
|
|
|
|
$GLOBALS['hook_values']['new_passwd'] = $n_passwd;
|
|
|
|
$GLOBALS['phpgw']->hooks->process('changepassword');
|
|
|
|
$GLOBALS['phpgw']->redirect_link('/preferences/index.php','cd=18');
|
2001-03-10 09:16:33 +01:00
|
|
|
}
|
2001-04-17 20:09:13 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-04-20 22:47:50 +02:00
|
|
|
$GLOBALS['phpgw_info']['flags']['app_header'] = lang('Change your password');
|
2001-08-31 18:32:05 +02:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_header();
|
2003-08-28 16:31:11 +02:00
|
|
|
echo parse_navbar();
|
|
|
|
|
|
|
|
$GLOBALS['phpgw']->template->pfp('out','form');
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_footer();
|
2001-03-10 09:16:33 +01:00
|
|
|
}
|
2001-04-17 18:46:14 +02:00
|
|
|
?>
|