2010-07-02 01:48:07 +02:00
|
|
|
<?php
|
|
|
|
|
2010-12-08 04:40:12 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* MySQL database class
|
|
|
|
*
|
|
|
|
* For debugging, insert 'dbg(1);' anywhere in the program flow.
|
|
|
|
* dbg(0); will turn it off. Logging is performed at LOGGER_DATA level.
|
|
|
|
* When logging, all binary info is converted to text and html entities are escaped so that
|
|
|
|
* the debugging stream is safe to view within both terminals and web pages.
|
|
|
|
*
|
|
|
|
*/
|
2010-07-02 01:48:07 +02:00
|
|
|
|
|
|
|
if(! class_exists('dba')) {
|
|
|
|
class dba {
|
|
|
|
|
|
|
|
private $debug = 0;
|
|
|
|
private $db;
|
2011-03-02 01:24:22 +01:00
|
|
|
public $connected = false;
|
2010-07-02 01:48:07 +02:00
|
|
|
|
|
|
|
function __construct($server,$user,$pass,$db,$install = false) {
|
2011-03-14 03:12:46 +01:00
|
|
|
|
2011-03-14 00:47:41 +01:00
|
|
|
$server = trim($server);
|
|
|
|
$user = trim($user);
|
|
|
|
$pass = trim($pass);
|
|
|
|
$db = trim($db);
|
|
|
|
|
|
|
|
if($install) {
|
|
|
|
if(strlen($server) && ($server !== 'localhost') && ($server !== '127.0.0.1')) {
|
|
|
|
if(! dns_get_record($server, DNS_A + DNS_CNAME + DNS_PTR)) {
|
2011-03-21 11:33:58 +01:00
|
|
|
notice( sprintf( t('Cannot locate DNS info for database server \'%s\''), $server));
|
2011-03-14 00:47:41 +01:00
|
|
|
$this->connected = false;
|
|
|
|
$this->db = null;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-02 01:48:07 +02:00
|
|
|
$this->db = @new mysqli($server,$user,$pass,$db);
|
2011-03-04 00:47:13 +01:00
|
|
|
if(! mysqli_connect_errno()) {
|
2011-03-04 00:41:08 +01:00
|
|
|
$this->connected = true;
|
|
|
|
}
|
|
|
|
else {
|
2011-03-02 01:24:22 +01:00
|
|
|
$this->db = null;
|
2011-03-04 00:41:08 +01:00
|
|
|
if(! $install)
|
|
|
|
system_unavailable();
|
2011-03-02 01:24:22 +01:00
|
|
|
}
|
2010-07-02 01:48:07 +02:00
|
|
|
}
|
|
|
|
|
2010-08-16 06:49:29 +02:00
|
|
|
public function getdb() {
|
|
|
|
return $this->db;
|
|
|
|
}
|
|
|
|
|
2010-07-02 01:48:07 +02:00
|
|
|
public function q($sql) {
|
|
|
|
|
2011-03-04 00:41:08 +01:00
|
|
|
if((! $this->db) || (! $this->connected))
|
2010-07-02 01:48:07 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
$result = @$this->db->query($sql);
|
|
|
|
|
|
|
|
if($this->debug) {
|
|
|
|
|
|
|
|
$mesg = '';
|
|
|
|
|
2010-10-30 22:25:37 +02:00
|
|
|
if($this->db->errno)
|
2010-11-10 03:24:35 +01:00
|
|
|
logger('dba: ' . $this->db->error);
|
2010-07-02 01:48:07 +02:00
|
|
|
|
|
|
|
if($result === false)
|
|
|
|
$mesg = 'false';
|
|
|
|
elseif($result === true)
|
|
|
|
$mesg = 'true';
|
|
|
|
else
|
2011-01-11 05:14:19 +01:00
|
|
|
$mesg = $result->num_rows . ' results' . EOL;
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2010-08-18 03:44:13 +02:00
|
|
|
$str = 'SQL = ' . printable($sql) . EOL . 'SQL returned ' . $mesg . EOL;
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2010-11-10 03:24:35 +01:00
|
|
|
logger('dba: ' . $str );
|
2010-07-02 01:48:07 +02:00
|
|
|
}
|
2010-10-07 03:14:11 +02:00
|
|
|
else {
|
2010-12-08 04:40:12 +01:00
|
|
|
|
2011-03-14 03:12:46 +01:00
|
|
|
/**
|
2010-12-08 04:40:12 +01:00
|
|
|
* If dbfail.out exists, we will write any failed calls directly to it,
|
|
|
|
* regardless of any logging that may or may nor be in effect.
|
|
|
|
* These usually indicate SQL syntax errors that need to be resolved.
|
|
|
|
*/
|
|
|
|
|
2010-10-27 07:09:13 +02:00
|
|
|
if($result === false) {
|
|
|
|
logger('dba: ' . printable($sql) . ' returned false.');
|
|
|
|
if(file_exists('dbfail.out'))
|
|
|
|
file_put_contents('dbfail.out', printable($sql) . ' returned false' . "\n", FILE_APPEND);
|
|
|
|
}
|
2010-10-07 03:14:11 +02:00
|
|
|
}
|
2010-07-02 01:48:07 +02:00
|
|
|
|
|
|
|
if(($result === true) || ($result === false))
|
|
|
|
return $result;
|
|
|
|
|
|
|
|
$r = array();
|
|
|
|
if($result->num_rows) {
|
|
|
|
while($x = $result->fetch_array(MYSQL_ASSOC))
|
|
|
|
$r[] = $x;
|
|
|
|
$result->free_result();
|
|
|
|
}
|
|
|
|
|
2010-11-10 03:24:35 +01:00
|
|
|
if($this->debug)
|
|
|
|
logger('dba: ' . printable(print_r($r, true)), LOGGER_DATA);
|
2010-07-02 01:48:07 +02:00
|
|
|
return($r);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dbg($dbg) {
|
|
|
|
$this->debug = $dbg;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function escape($str) {
|
2011-03-04 00:41:08 +01:00
|
|
|
if($this->db && $this->connected)
|
|
|
|
return @$this->db->real_escape_string($str);
|
2010-07-02 01:48:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function __destruct() {
|
|
|
|
@$this->db->close();
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
|
2010-08-12 07:24:08 +02:00
|
|
|
if(! function_exists('printable')) {
|
|
|
|
function printable($s) {
|
|
|
|
$s = preg_replace("~([\x01-\x08\x0E-\x0F\x10-\x1F\x7F-\xFF])~",".", $s);
|
2010-08-15 04:48:32 +02:00
|
|
|
$s = str_replace("\x00",'.',$s);
|
|
|
|
if(x($_SERVER,'SERVER_NAME'))
|
|
|
|
$s = escape_tags($s);
|
|
|
|
return $s;
|
2010-08-12 07:24:08 +02:00
|
|
|
}}
|
|
|
|
|
2010-07-02 01:48:07 +02:00
|
|
|
// Procedural functions
|
|
|
|
if(! function_exists('dbg')) {
|
|
|
|
function dbg($state) {
|
|
|
|
global $db;
|
2011-03-02 12:25:12 +01:00
|
|
|
if($db)
|
2010-07-02 01:48:07 +02:00
|
|
|
$db->dbg($state);
|
|
|
|
}}
|
|
|
|
|
|
|
|
if(! function_exists('dbesc')) {
|
|
|
|
function dbesc($str) {
|
|
|
|
global $db;
|
2011-03-02 12:25:12 +01:00
|
|
|
if($db && $db->connected)
|
2011-01-10 22:57:59 +01:00
|
|
|
return($db->escape($str));
|
|
|
|
else
|
|
|
|
return(str_replace("'","\\'",$str));
|
2010-07-02 01:48:07 +02:00
|
|
|
}}
|
|
|
|
|
|
|
|
|
|
|
|
// Function: q($sql,$args);
|
|
|
|
// Description: execute SQL query with printf style args.
|
|
|
|
// Example: $r = q("SELECT * FROM `%s` WHERE `uid` = %d",
|
|
|
|
// 'user', 1);
|
|
|
|
|
|
|
|
if(! function_exists('q')) {
|
|
|
|
function q($sql) {
|
|
|
|
|
|
|
|
global $db;
|
|
|
|
$args = func_get_args();
|
|
|
|
unset($args[0]);
|
2011-01-11 05:14:19 +01:00
|
|
|
|
2011-03-02 12:25:12 +01:00
|
|
|
if($db && $db->connected) {
|
2011-01-11 05:14:19 +01:00
|
|
|
$ret = $db->q(vsprintf($sql,$args));
|
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* This will happen occasionally trying to store the
|
|
|
|
* session data after abnormal program termination
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
logger('dba: no database: ' . print_r($args,true));
|
|
|
|
return false;
|
|
|
|
|
2010-07-02 01:48:07 +02:00
|
|
|
}}
|
|
|
|
|
2011-01-11 05:14:19 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Raw db query, no arguments
|
|
|
|
*
|
|
|
|
*/
|
2010-11-10 00:11:47 +01:00
|
|
|
|
|
|
|
if(! function_exists('dbq')) {
|
|
|
|
function dbq($sql) {
|
|
|
|
|
|
|
|
global $db;
|
2011-03-02 12:25:12 +01:00
|
|
|
if($db && $db->connected)
|
2011-03-02 01:24:22 +01:00
|
|
|
$ret = $db->q($sql);
|
|
|
|
else
|
|
|
|
$ret = false;
|
2010-11-10 00:11:47 +01:00
|
|
|
return $ret;
|
|
|
|
}}
|
|
|
|
|
2010-07-02 01:48:07 +02:00
|
|
|
|
|
|
|
// Caller is responsible for ensuring that any integer arguments to
|
|
|
|
// dbesc_array are actually integers and not malformed strings containing
|
|
|
|
// SQL injection vectors. All integer array elements should be specifically
|
|
|
|
// cast to int to avoid trouble.
|
|
|
|
|
|
|
|
|
|
|
|
if(! function_exists('dbesc_array_cb')) {
|
|
|
|
function dbesc_array_cb(&$item, $key) {
|
|
|
|
if(is_string($item))
|
|
|
|
$item = dbesc($item);
|
|
|
|
}}
|
|
|
|
|
|
|
|
|
|
|
|
if(! function_exists('dbesc_array')) {
|
2010-07-16 10:26:42 +02:00
|
|
|
function dbesc_array(&$arr) {
|
|
|
|
if(is_array($arr) && count($arr)) {
|
|
|
|
array_walk($arr,'dbesc_array_cb');
|
2010-07-02 01:48:07 +02:00
|
|
|
}
|
2011-07-06 02:45:33 +02:00
|
|
|
}}
|
|
|
|
|
|
|
|
|