2003-02-19 20:34:33 +00:00
|
|
|
<?php
|
2008-08-05 22:43:14 +00:00
|
|
|
// This file is part of BOINC.
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2008 University of California
|
|
|
|
//
|
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// BOINC 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 Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2003-02-19 20:34:33 +00:00
|
|
|
|
2007-11-12 22:28:17 +00:00
|
|
|
require_once("../inc/boinc_db.inc");
|
2005-02-13 06:13:33 +00:00
|
|
|
require_once("../inc/util.inc");
|
|
|
|
require_once("../inc/email.inc");
|
|
|
|
require_once("../inc/user.inc");
|
2003-02-19 20:34:33 +00:00
|
|
|
|
2005-02-15 22:29:32 +00:00
|
|
|
$user = get_logged_in_user();
|
2003-02-19 20:34:33 +00:00
|
|
|
|
2008-06-11 19:36:10 +00:00
|
|
|
$email_addr = strtolower(post_str("email_addr"));
|
|
|
|
$passwd = post_str("passwd", true);
|
2005-08-27 20:49:05 +00:00
|
|
|
|
|
|
|
page_head("Change email address of account");
|
2003-02-19 20:34:33 +00:00
|
|
|
|
2005-08-07 01:33:15 +00:00
|
|
|
if (!is_valid_email_addr($email_addr)) {
|
2005-08-27 20:49:05 +00:00
|
|
|
echo "New email address '$email_addr' is invalid";
|
2005-02-15 22:29:32 +00:00
|
|
|
} else if ($email_addr == $user->email_addr) {
|
2005-08-27 20:49:05 +00:00
|
|
|
echo "New email address is same as existing address; no change.";
|
2005-02-15 22:29:32 +00:00
|
|
|
} else {
|
2005-08-07 01:33:15 +00:00
|
|
|
$existing = lookup_user_email_addr($email_addr);
|
2005-02-15 22:29:32 +00:00
|
|
|
if ($existing) {
|
|
|
|
echo "There's already an account with that email address";
|
2003-02-19 20:34:33 +00:00
|
|
|
} else {
|
2005-08-27 20:49:05 +00:00
|
|
|
$passwd_hash = md5($passwd.$user->email_addr);
|
2005-10-03 22:16:32 +00:00
|
|
|
|
|
|
|
// deal with the case where user hasn't set passwd
|
|
|
|
// (i.e. passwd is account key)
|
|
|
|
//
|
|
|
|
if ($passwd_hash != $user->passwd_hash) {
|
|
|
|
$passwd = $user->authenticator;
|
|
|
|
$passwd_hash = md5($passwd.$user->email_addr);
|
|
|
|
}
|
2005-08-27 20:49:05 +00:00
|
|
|
if ($passwd_hash != $user->passwd_hash) {
|
|
|
|
echo "Invalid password.";
|
2003-02-19 20:34:33 +00:00
|
|
|
} else {
|
2005-08-27 20:49:05 +00:00
|
|
|
$passwd_hash = md5($passwd.$email_addr);
|
2008-12-14 22:18:49 +00:00
|
|
|
$email_addr = BoincDb::escape_string($email_addr);
|
2008-06-11 19:36:10 +00:00
|
|
|
$result = $user->update(
|
|
|
|
"email_addr='$email_addr', passwd_hash='$passwd_hash', email_validated=0"
|
|
|
|
);
|
2005-08-27 20:49:05 +00:00
|
|
|
if ($result) {
|
|
|
|
echo "
|
2006-12-27 18:22:17 +00:00
|
|
|
The email address of your account is now $email_addr.
|
2005-08-27 20:49:05 +00:00
|
|
|
";
|
|
|
|
} else {
|
|
|
|
echo "
|
|
|
|
We can't update your email address
|
|
|
|
due to a database problem. Please try again later.
|
|
|
|
";
|
|
|
|
}
|
2003-02-19 20:34:33 +00:00
|
|
|
}
|
|
|
|
}
|
2005-02-15 22:29:32 +00:00
|
|
|
}
|
2003-02-19 20:34:33 +00:00
|
|
|
|
2005-02-15 22:29:32 +00:00
|
|
|
page_tail();
|
2003-02-19 20:34:33 +00:00
|
|
|
?>
|