2005-09-18 02:29:49 +02:00
|
|
|
<?php
|
|
|
|
// +-----------------------------------------------------------------------+
|
2008-04-05 00:57:23 +02:00
|
|
|
// | Piwigo - a PHP based picture gallery |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2009-01-05 00:09:15 +01:00
|
|
|
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
|
2008-04-05 00:57:23 +02:00
|
|
|
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
|
|
|
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | 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 |
|
|
|
|
// | |
|
|
|
|
// | This program is distributed in the hope that it will be useful, but |
|
|
|
|
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
|
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
|
|
|
// | General Public License for more details. |
|
|
|
|
// | |
|
2005-09-18 02:29:49 +02:00
|
|
|
// | You should have received a copy of the GNU General Public License |
|
|
|
|
// | along with this program; if not, write to the Free Software |
|
|
|
|
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
|
|
|
// | USA. |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | initialization |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
define('PHPWG_ROOT_PATH','./');
|
|
|
|
include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
|
2006-02-01 00:38:48 +01:00
|
|
|
include_once(PHPWG_ROOT_PATH.'include/functions_mail.inc.php');
|
2005-09-18 02:29:49 +02:00
|
|
|
|
2007-02-22 21:20:30 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | Check Access and exit when user status is not ok |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2008-05-02 23:56:21 +02:00
|
|
|
check_status(ACCESS_FREE);
|
2007-02-22 21:20:30 +01:00
|
|
|
|
2005-09-18 02:29:49 +02:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | send a new password |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
$page['errors'] = array();
|
|
|
|
$page['infos'] = array();
|
|
|
|
|
|
|
|
if (isset($_POST['submit']))
|
|
|
|
{
|
|
|
|
$mailto =
|
2006-08-10 00:10:12 +02:00
|
|
|
'<a href="mailto:'.get_webmaster_mail_address().'">'
|
2005-09-18 02:29:49 +02:00
|
|
|
.l10n('Contact webmaster')
|
|
|
|
.'</a>'
|
|
|
|
;
|
|
|
|
|
|
|
|
if (isset($_POST['no_mail_address']) and $_POST['no_mail_address'] == 1)
|
|
|
|
{
|
|
|
|
array_push($page['infos'], l10n('Email address is missing'));
|
|
|
|
array_push($page['infos'], $mailto);
|
|
|
|
}
|
|
|
|
else if (isset($_POST['mail_address']) and !empty($_POST['mail_address']))
|
|
|
|
{
|
2008-10-15 22:58:36 +02:00
|
|
|
$mail_address = mysql_real_escape_string($_POST['mail_address']);
|
2005-09-18 02:29:49 +02:00
|
|
|
|
|
|
|
$query = '
|
|
|
|
SELECT '.$conf['user_fields']['id'].' AS id
|
|
|
|
, '.$conf['user_fields']['username'].' AS username
|
|
|
|
, '.$conf['user_fields']['email'].' AS email
|
2006-03-09 00:14:53 +01:00
|
|
|
FROM '.USERS_TABLE.' as u
|
|
|
|
INNER JOIN '.USER_INFOS_TABLE.' AS ui
|
|
|
|
ON u.'.$conf['user_fields']['id'].' = ui.user_id
|
|
|
|
WHERE '
|
|
|
|
.$conf['user_fields']['email'].' = \''.$mail_address.'\' AND
|
2007-04-10 07:26:48 +02:00
|
|
|
(
|
|
|
|
ui.status = \'normal\' OR
|
|
|
|
(ui.status in (\'admin\', \'webmaster\') AND ui.adviser = \'true\')
|
|
|
|
)
|
2005-09-18 02:29:49 +02:00
|
|
|
;';
|
|
|
|
$result = pwg_query($query);
|
|
|
|
|
|
|
|
if (mysql_num_rows($result) > 0)
|
|
|
|
{
|
|
|
|
$error_on_mail = false;
|
|
|
|
$datas = array();
|
|
|
|
|
|
|
|
while ($row = mysql_fetch_array($result))
|
|
|
|
{
|
|
|
|
$new_password = generate_key(6);
|
|
|
|
|
|
|
|
$infos =
|
|
|
|
l10n('Username').': '.$row['username']
|
|
|
|
."\n".l10n('Password').': '.$new_password
|
|
|
|
;
|
|
|
|
|
2007-02-13 00:21:23 +01:00
|
|
|
if (pwg_mail($row['email'],
|
|
|
|
array('subject' => l10n('password updated'), 'content' => $infos)))
|
2005-09-18 02:29:49 +02:00
|
|
|
{
|
|
|
|
$data =
|
|
|
|
array(
|
|
|
|
$conf['user_fields']['id']
|
|
|
|
=> $row['id'],
|
|
|
|
|
|
|
|
$conf['user_fields']['password']
|
|
|
|
=> $conf['pass_convert']($new_password)
|
|
|
|
);
|
|
|
|
|
|
|
|
array_push($datas, $data);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$error_on_mail = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($error_on_mail)
|
|
|
|
{
|
|
|
|
array_push($page['errors'], l10n('Error sending email'));
|
|
|
|
array_push($page['errors'], $mailto);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
|
|
|
|
mass_updates(
|
|
|
|
USERS_TABLE,
|
|
|
|
array(
|
|
|
|
'primary' => array($conf['user_fields']['id']),
|
|
|
|
'update' => array($conf['user_fields']['password'])
|
|
|
|
),
|
|
|
|
$datas
|
|
|
|
);
|
|
|
|
|
|
|
|
array_push($page['infos'], l10n('New password sent by email'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
array_push($page['errors'], l10n('No user matches this email address'));
|
2007-04-08 00:31:37 +02:00
|
|
|
array_push($page['errors'], l10n('Administrator, webmaster and special user cannot use this method'));
|
2005-09-18 02:29:49 +02:00
|
|
|
array_push($page['errors'], $mailto);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | template initialization |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
$title = l10n('Forgot your password?');
|
|
|
|
$page['body_id'] = 'thePasswordPage';
|
|
|
|
|
2008-02-28 03:41:48 +01:00
|
|
|
$template->set_filenames(array('password'=>'password.tpl'));
|
|
|
|
$template->assign( array(
|
|
|
|
'F_ACTION'=> get_root_url().'password.php'
|
2005-09-18 02:29:49 +02:00
|
|
|
)
|
|
|
|
);
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | infos & errors display |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2008-02-28 03:41:48 +01:00
|
|
|
$template->assign('errors', $page['errors']);
|
|
|
|
$template->assign('infos', $page['infos']);
|
2005-09-18 02:29:49 +02:00
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | html code display |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2008-02-28 03:41:48 +01:00
|
|
|
include(PHPWG_ROOT_PATH.'include/page_header.php');
|
|
|
|
$template->pparse('password');
|
2005-09-18 02:29:49 +02:00
|
|
|
include(PHPWG_ROOT_PATH.'include/page_tail.php');
|
|
|
|
|
2007-03-13 23:44:45 +01:00
|
|
|
?>
|