egroupware/preferences/changepassword.php

91 lines
3.2 KiB
PHP
Raw Normal View History

2000-08-18 05:24:22 +02:00
<?php
2001-03-10 09:16:33 +01:00
/**************************************************************************\
* phpGroupWare - preferences *
* http://www.phpgroupware.org *
* 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
2001-08-31 18:32:05 +02:00
$n_passwd = $GLOBALS['HTTP_POST_VARS']['n_passwd'];
$n_passwd_2 = $GLOBALS['HTTP_POST_VARS']['n_passwd_2'];
if (! $GLOBALS['phpgw']->acl->check('changepassword', 1))
2001-03-10 09:16:33 +01:00
{
2001-08-31 18:32:05 +02:00
Header('Location: ' . $GLOBALS['phpgw']->link('/preferences/index.php/'));
$GLOBALS['phpgw']->common->phpgw_exit();
2001-07-18 22:34:11 +02:00
}
2001-08-31 18:32:05 +02:00
$GLOBALS['phpgw']->template->set_file(array(
'form' => 'changepassword.tpl'
));
2001-08-31 18:32:05 +02:00
$GLOBALS['phpgw']->template->set_var('lang_changepassword',lang('Change your password'));
$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'));
$GLOBALS['phpgw']->template->set_var('form_action',$GLOBALS['phpgw']->link('/preferences/changepassword.php'));
2000-08-18 05:24:22 +02:00
2001-08-31 18:32:05 +02:00
if ($GLOBALS['phpgw_info']['server']['auth_type'] != 'ldap')
{
2001-08-31 18:32:05 +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-08-31 18:32:05 +02:00
if ($GLOBALS['HTTP_POST_VARS']['submit'])
2001-03-10 09:16:33 +01:00
{
if ($n_passwd != $n_passwd_2)
{
$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
2001-03-10 09:16:33 +01:00
if (! $n_passwd)
{
$errors[] = lang('You must enter a password');
2001-03-10 09:16:33 +01:00
}
2000-08-18 05:24:22 +02: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();
2001-03-10 09:16:33 +01:00
echo parse_navbar();
2001-08-31 18:32:05 +02:00
$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
}
2000-08-18 05:24:22 +02:00
2001-08-31 18:32:05 +02:00
$o_passwd = $GLOBALS['phpgw_info']['user']['passwd'];
$passwd_changed = $GLOBALS['phpgw']->auth->change_password($o_passwd, $n_passwd);
2001-03-10 09:16:33 +01:00
if (! $passwd_changed)
{
// This need to be changed to show a different message based on the result
2001-08-31 18:32:05 +02:00
Header('Location: ' . $GLOBALS['phpgw']->link('/preferences/index.php','cd=38'));
2001-03-10 09:16:33 +01:00
}
else
{
2001-08-31 18:32:05 +02:00
$GLOBALS['phpgw_info']['user']['passwd'] = $GLOBALS['phpgw']->auth->change_password($o_passwd, $n_passwd);
Header('Location: ' . $GLOBALS['phpgw']->link('/preferences/index.php','cd=18'));
2001-03-10 09:16:33 +01:00
}
}
else
{
2001-08-31 18:32:05 +02:00
$GLOBALS['phpgw']->common->phpgw_header();
echo parse_navbar();
2001-08-31 18:32:05 +02:00
$GLOBALS['phpgw']->template->pfp('out','form');
$GLOBALS['phpgw']->common->phpgw_footer();
2001-03-10 09:16:33 +01:00
}
?>