2007-10-02 03:19:03 +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/>.
|
2007-10-02 03:19:03 +00:00
|
|
|
|
2007-11-12 22:28:17 +00:00
|
|
|
require_once("../inc/boinc_db.inc");
|
2007-10-02 03:19:03 +00:00
|
|
|
require_once("../inc/util.inc");
|
|
|
|
require_once("../inc/email.inc");
|
|
|
|
|
|
|
|
function send_validate_email() {
|
|
|
|
global $master_url;
|
|
|
|
$user = get_logged_in_user();
|
2008-08-13 02:53:43 +00:00
|
|
|
$x2 = uniqid(rand(), true);
|
|
|
|
$user->update("signature='$x2'");
|
2007-10-02 03:19:03 +00:00
|
|
|
send_email(
|
|
|
|
$user,
|
|
|
|
"Validate BOINC email address",
|
|
|
|
"Please visit the following link to validate the email address\n"
|
|
|
|
."of your ".PROJECT." account:\n"
|
|
|
|
.$master_url."validate_email_addr.php?validate=1&u=$user->id&x=$x2"
|
|
|
|
);
|
|
|
|
page_head("Validate email sent");
|
|
|
|
echo "
|
|
|
|
An email has been sent to $user->email_addr.
|
|
|
|
Visit the link it contains to validate your email address.
|
|
|
|
";
|
|
|
|
page_tail();
|
|
|
|
}
|
|
|
|
|
|
|
|
function validate() {
|
2008-06-11 19:36:10 +00:00
|
|
|
$x = get_str("x");
|
|
|
|
$u = get_int("u");
|
2007-10-02 03:19:03 +00:00
|
|
|
$user = lookup_user_id($u);
|
|
|
|
if (!$user) {
|
|
|
|
error_page("No such user.\n");
|
|
|
|
}
|
|
|
|
|
2008-08-13 02:53:43 +00:00
|
|
|
$x2 = $user->signature;
|
2007-10-02 03:19:03 +00:00
|
|
|
if ($x2 != $x) {
|
|
|
|
error_page("Error in URL data - can't validate email address");
|
|
|
|
}
|
|
|
|
|
2007-11-12 22:28:17 +00:00
|
|
|
$result = $user->update("email_validated=1");
|
2007-10-02 03:19:03 +00:00
|
|
|
if (!$result) {
|
|
|
|
error_page("Database update failed - please try again later.");
|
|
|
|
}
|
|
|
|
|
|
|
|
page_head("Validate email address");
|
|
|
|
echo "
|
|
|
|
The email address of your account has been validated.
|
|
|
|
";
|
|
|
|
page_tail();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($_GET['validate']) {
|
|
|
|
validate();
|
|
|
|
} else {
|
|
|
|
send_validate_email();
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|