boinc/html/ops/create_account_action.php

59 lines
1.7 KiB
PHP
Raw Normal View History

<?php
$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit
// create an account with given email address
//
function create_account($email_addr, $user_name, $munge) {
$user = array();
$user->authenticator = random_string();
$user->name = $user_name;
if ($munge) {
$email_addr = munge_email_addr($email_addr, $user->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/email.inc");
admin_page_head("Create User Account");
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($user, true, false);
admin_page_tail();
?>