2004-02-02 23:34:39 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once('../inc/util.inc');
|
2007-10-27 20:38:12 +00:00
|
|
|
require_once('../inc/boinc_db.inc');
|
2004-02-02 23:34:39 +00:00
|
|
|
|
|
|
|
// database-related functions.
|
|
|
|
// Presentation code (HTML) shouldn't be here
|
|
|
|
|
2007-03-14 18:05:30 +00:00
|
|
|
function db_init_aux($try_replica=false) {
|
2004-06-30 18:53:35 +00:00
|
|
|
$config = get_config();
|
|
|
|
$user = parse_config($config, "<db_user>");
|
|
|
|
$pass = parse_config($config, "<db_passwd>");
|
2007-03-14 18:05:30 +00:00
|
|
|
$host = null;
|
|
|
|
if ($try_replica == true) {
|
|
|
|
$host = parse_config($config, "<replica_db_host>");
|
|
|
|
}
|
|
|
|
if ($host == null) {
|
|
|
|
$host = parse_config($config, "<db_host>");
|
|
|
|
}
|
2004-06-30 18:53:35 +00:00
|
|
|
if ($host == null) {
|
|
|
|
$host = "localhost";
|
|
|
|
}
|
2007-10-25 21:34:13 +00:00
|
|
|
$link = mysql_pconnect($host, $user, $pass);
|
|
|
|
if (!$link) {
|
2004-09-14 20:45:17 +00:00
|
|
|
return 1;
|
2004-02-02 23:34:39 +00:00
|
|
|
}
|
2004-06-30 18:53:35 +00:00
|
|
|
$db_name = parse_config($config, "<db_name>");
|
2007-10-25 21:34:13 +00:00
|
|
|
if (!mysql_select_db($db_name, $link)) {
|
|
|
|
echo "selecting $db_name\n";
|
2004-09-14 20:45:17 +00:00
|
|
|
return 2;
|
2004-02-02 23:34:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-09-21 21:56:10 +00:00
|
|
|
function lookup_user_auth($auth) {
|
2007-10-29 16:38:25 +00:00
|
|
|
return BoincUser::lookup("authenticator='$auth'");
|
2004-09-21 21:56:10 +00:00
|
|
|
}
|
|
|
|
|
2004-02-02 23:34:39 +00:00
|
|
|
function lookup_user_id($id) {
|
2007-10-29 16:38:25 +00:00
|
|
|
return BoincUser::lookup_id($id);
|
2004-02-02 23:34:39 +00:00
|
|
|
}
|
|
|
|
|
2005-02-25 00:41:22 +00:00
|
|
|
function lookup_user_email_addr($email_addr) {
|
2007-10-29 16:38:25 +00:00
|
|
|
return BoincUser::lookup("email_addr='$email_addr'");
|
2005-02-25 00:41:22 +00:00
|
|
|
}
|
|
|
|
|
2007-04-29 14:22:28 +00:00
|
|
|
function lookup_user_name($name) {
|
2007-10-31 23:50:21 +00:00
|
|
|
$users = BoincUser::enum("name='".boinc_real_escape_string($name)."'");
|
|
|
|
if (sizeof($users)==1) {
|
|
|
|
return $users[0];
|
2007-04-29 14:22:28 +00:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2004-02-02 23:34:39 +00:00
|
|
|
function lookup_host($id) {
|
2007-10-29 16:38:25 +00:00
|
|
|
return BoincHost::lookup_id($id);
|
2004-02-02 23:34:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function lookup_team($id) {
|
2007-10-29 16:38:25 +00:00
|
|
|
return BoincTeam::lookup_id($id);
|
2004-02-02 23:34:39 +00:00
|
|
|
}
|
|
|
|
|
2006-10-30 09:03:52 +00:00
|
|
|
function lookup_team_founder($id) {
|
2007-10-29 16:38:25 +00:00
|
|
|
return BoincTeam::lookup("userid=$id");
|
2006-10-30 09:03:52 +00:00
|
|
|
}
|
|
|
|
|
2007-07-25 03:17:31 +00:00
|
|
|
function lookup_team_name($name) {
|
2007-10-29 16:38:25 +00:00
|
|
|
return BoincTeam::lookup("name='$name'");
|
2007-07-25 03:17:31 +00:00
|
|
|
}
|
|
|
|
|
2004-02-02 23:34:39 +00:00
|
|
|
function lookup_wu($id) {
|
|
|
|
$result = mysql_query("select * from workunit where id=$id");
|
|
|
|
if ($result) {
|
|
|
|
$wu = mysql_fetch_object($result);
|
|
|
|
mysql_free_result($result);
|
|
|
|
return $wu;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2005-02-15 22:29:32 +00:00
|
|
|
function lookup_result($id) {
|
|
|
|
$result = mysql_query("select * from result where id=$id");
|
|
|
|
if ($result) {
|
|
|
|
$r = mysql_fetch_object($result);
|
|
|
|
mysql_free_result($result);
|
|
|
|
return $r;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2004-02-02 23:34:39 +00:00
|
|
|
function lookup_app($id) {
|
|
|
|
$result = mysql_query("select * from app where id=$id");
|
|
|
|
if ($result) {
|
|
|
|
$app = mysql_fetch_object($result);
|
|
|
|
mysql_free_result($result);
|
|
|
|
return $app;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2004-12-27 03:42:11 +00:00
|
|
|
// apply this to any user-supplied strings used in queries
|
|
|
|
//
|
|
|
|
function boinc_real_escape_string($x) {
|
2005-02-23 00:42:14 +00:00
|
|
|
if (version_compare(phpversion(),"4.3.0")>=0) {
|
2007-10-27 20:38:12 +00:00
|
|
|
return BoincDb::escape_string($x);
|
2005-02-23 00:42:14 +00:00
|
|
|
} else {
|
|
|
|
$x = str_replace("'", "\'", $x);
|
|
|
|
$x = str_replace("\"", "\\\"", $x);
|
|
|
|
return $x;
|
|
|
|
}
|
2004-12-27 03:42:11 +00:00
|
|
|
}
|
|
|
|
|
2005-02-22 19:37:55 +00:00
|
|
|
// Process user-supplied text prior to using in query;
|
|
|
|
// trims whitespace and escapes quotes.
|
|
|
|
// Does NOT remove HTML tags.
|
2004-12-27 03:42:11 +00:00
|
|
|
//
|
|
|
|
function process_user_text($value) {
|
|
|
|
$value = trim($value);
|
|
|
|
if (get_magic_quotes_gpc()) {
|
|
|
|
$value = stripslashes($value);
|
|
|
|
}
|
|
|
|
return boinc_real_escape_string($value);
|
|
|
|
}
|
|
|
|
|
2004-08-06 12:12:26 +00:00
|
|
|
// escape a string for MySQL "like"
|
|
|
|
//
|
|
|
|
function escape_pattern($str) {
|
|
|
|
$str = str_replace('_', '\\\\_', $str);
|
|
|
|
$str = str_replace('%', '\\\\%', $str);
|
|
|
|
return $str;
|
|
|
|
}
|
|
|
|
|
2004-02-02 23:34:39 +00:00
|
|
|
?>
|