mirror of https://github.com/BOINC/boinc.git
72 lines
1.9 KiB
PHP
72 lines
1.9 KiB
PHP
<?php
|
|
|
|
// create an account with given email address
|
|
//
|
|
function add_account($email_addr, $user_name, $munge) {
|
|
$user.authenticator = random_string();
|
|
$user.name = $user_name;
|
|
if ($munge) {
|
|
$email_addr = munge_email_addr($email_addr, $authenticator);
|
|
}
|
|
$user.email_addr = $email_addr;
|
|
$user.cross_project_id = random_string();
|
|
$t = time();
|
|
$query = "insert into user (create_time, email_addr, name, authenticator, cross_project_id) values ($t, '$user.email_addr', '$user.name', '$user.authenticator', '$user.cross_project_id')";
|
|
$result = mysql_query($query);
|
|
if ($result) return user;
|
|
return false;
|
|
}
|
|
|
|
require_once("../inc/util_ops.inc");
|
|
require_once("../inc/util.inc");
|
|
|
|
db_init();
|
|
$email_addr = trim($_GET["email_addr"]);
|
|
$email_addr = strtolower($email_addr);
|
|
|
|
// see if email address is taken
|
|
$query = "select * from user where email_addr='$email_addr'";
|
|
$result = mysql_query($query);
|
|
$user = mysql_fetch_object($result);
|
|
if ($user) {
|
|
echo "That email address ($email_addr) is taken";
|
|
exit();
|
|
}
|
|
$user_name = $_GET["user_name"];
|
|
$user = create_account($email_addr, $user_name, true);
|
|
if (!$user) {
|
|
echo "couldn't create account:".mysql_error();
|
|
exit();
|
|
}
|
|
|
|
$url = URL_BASE."/account_created.php?email_addr=".urlencode($email_addr);
|
|
echo "
|
|
<h2>Account created for:<br/>
|
|
$user_name<br/>
|
|
at email address:<br/>
|
|
$email_addr</h2><br/>
|
|
Note: The user (not YOU, the admin) must confirm by visiting:<br/>
|
|
<a href=\"$url\"> $url </a>
|
|
";
|
|
|
|
send_auth_email($email_addr, $user.authenticator);
|
|
|
|
mail($email_addr, PROJECT. " account created",
|
|
"This email confirms the creation of your ".PROJECT." account.
|
|
|
|
".PROJECT." URL: ".MASTER_URL."
|
|
|
|
Your account ID: $authenticator\n
|
|
|
|
Please save this email.
|
|
You will need your account Id to log in to the ".PROJECT." web site.
|
|
|
|
To finish registration, you must confirm. Please go to:
|
|
$url
|
|
"
|
|
);
|
|
|
|
|
|
|
|
?>
|