mirror of https://github.com/BOINC/boinc.git
45 lines
991 B
PHP
45 lines
991 B
PHP
<?php
|
|
|
|
require_once('util.inc');
|
|
|
|
// database-related functions.
|
|
// Presentation code (HTML) shouldn't be here
|
|
|
|
function db_init($pathMod='') {
|
|
$retval = mysql_connect();
|
|
if (!$retval) {
|
|
echo "Unable to connect to database - please try again later";
|
|
exit();
|
|
}
|
|
$db_name = parse_config("<db_name>", $pathMod);
|
|
if(!mysql_select_db($db_name)) {
|
|
echo "Unable to select database - please try again later";
|
|
exit();
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
function lookup_user_auth($auth) {
|
|
$result = mysql_query("select * from user where authenticator='$auth'");
|
|
if ($result) {
|
|
$user = mysql_fetch_object($result);
|
|
mysql_free_result($result);
|
|
return $user;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
function lookup_user_id($id) {
|
|
$result = mysql_query("select * from user where id='$id'");
|
|
if ($result) {
|
|
$user = mysql_fetch_object($result);
|
|
mysql_free_result($result);
|
|
return $user;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
|
|
?>
|