2012-05-16 07:31:36 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// MySQL database class
|
|
|
|
//
|
|
|
|
// For debugging, insert 'dbg(x);' anywhere in the program flow.
|
|
|
|
// x = 1: display db success/failure following content
|
|
|
|
// x = 2: display full queries following content
|
|
|
|
// x = 3: display full queries using echo; which will mess up display
|
|
|
|
// really bad but will return output in stubborn cases.
|
|
|
|
|
2017-04-21 01:59:57 +02:00
|
|
|
class dba
|
|
|
|
{
|
2012-05-16 07:31:36 +02:00
|
|
|
private $debug = 0;
|
|
|
|
public $db;
|
|
|
|
|
2017-04-21 01:59:57 +02:00
|
|
|
public function __construct($server, $user, $pass, $db, $install = false)
|
|
|
|
{
|
|
|
|
$this->db = @new mysqli($server, $user, $pass, $db);
|
|
|
|
if ((mysqli_connect_errno()) && (! install)) {
|
|
|
|
system_unavailable();
|
|
|
|
}
|
2012-05-16 07:31:36 +02:00
|
|
|
}
|
|
|
|
|
2017-04-21 01:59:57 +02:00
|
|
|
public function getdb()
|
|
|
|
{
|
2012-05-16 07:31:36 +02:00
|
|
|
return $this->db;
|
|
|
|
}
|
|
|
|
|
2017-04-21 01:59:57 +02:00
|
|
|
public function q($sql)
|
|
|
|
{
|
2012-05-16 07:31:36 +02:00
|
|
|
global $debug_text;
|
2017-04-21 01:59:57 +02:00
|
|
|
|
|
|
|
if (! $this->db) {
|
2012-05-16 07:31:36 +02:00
|
|
|
return false;
|
2017-04-21 01:59:57 +02:00
|
|
|
}
|
2012-05-16 07:31:36 +02:00
|
|
|
|
2017-04-21 01:59:57 +02:00
|
|
|
$result = @$this->db->query($sql);
|
2012-05-16 07:31:36 +02:00
|
|
|
|
2017-04-21 01:59:57 +02:00
|
|
|
if ($this->debug) {
|
2012-05-16 07:31:36 +02:00
|
|
|
$mesg = '';
|
|
|
|
|
2017-04-21 01:59:57 +02:00
|
|
|
if ($this->db->mysqli->errno) {
|
2012-05-16 07:31:36 +02:00
|
|
|
$debug_text .= $this->db->mysqli->error . EOL;
|
2017-04-21 01:59:57 +02:00
|
|
|
}
|
2012-05-16 07:31:36 +02:00
|
|
|
|
2017-04-21 01:59:57 +02:00
|
|
|
if ($result === false) {
|
2012-05-16 07:31:36 +02:00
|
|
|
$mesg = 'false';
|
2017-04-21 01:59:57 +02:00
|
|
|
} elseif ($result === true) {
|
2012-05-16 07:31:36 +02:00
|
|
|
$mesg = 'true';
|
2017-04-21 01:59:57 +02:00
|
|
|
} else {
|
2012-05-16 07:31:36 +02:00
|
|
|
$mesg = $result->num_rows.' results' . EOL;
|
2017-04-21 01:59:57 +02:00
|
|
|
}
|
|
|
|
|
2012-05-16 07:31:36 +02:00
|
|
|
$str = 'SQL = ' . printable($sql) . EOL . 'SQL returned ' . $mesg . EOL;
|
|
|
|
|
2017-04-21 01:59:57 +02:00
|
|
|
switch ($this->debug) {
|
|
|
|
case 3:
|
|
|
|
echo $str;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$debug_text .= $str;
|
|
|
|
break;
|
|
|
|
}
|
2012-05-16 07:31:36 +02:00
|
|
|
}
|
|
|
|
|
2017-04-21 01:59:57 +02:00
|
|
|
if (($result === true) || ($result === false)) {
|
2012-05-16 07:31:36 +02:00
|
|
|
return $result;
|
2017-04-21 01:59:57 +02:00
|
|
|
}
|
2012-05-16 07:31:36 +02:00
|
|
|
|
|
|
|
$r = array();
|
2017-04-21 01:59:57 +02:00
|
|
|
if ($result->num_rows) {
|
|
|
|
while ($x = $result->fetch_array(MYSQL_ASSOC)) {
|
2012-05-16 07:31:36 +02:00
|
|
|
$r[] = $x;
|
2017-04-21 01:59:57 +02:00
|
|
|
}
|
2012-05-16 07:31:36 +02:00
|
|
|
$result->free_result();
|
|
|
|
}
|
2017-04-21 01:59:57 +02:00
|
|
|
|
|
|
|
if ($this->debug == 2) {
|
2012-05-16 07:31:36 +02:00
|
|
|
$debug_text .= printable(print_r($r, true). EOL);
|
2017-04-21 01:59:57 +02:00
|
|
|
} elseif ($this->debug == 3) {
|
2012-05-16 07:31:36 +02:00
|
|
|
echo printable(print_r($r, true) . EOL) ;
|
2017-04-21 01:59:57 +02:00
|
|
|
}
|
2012-05-16 07:31:36 +02:00
|
|
|
|
2017-04-21 01:59:57 +02:00
|
|
|
return $r;
|
2012-05-16 07:31:36 +02:00
|
|
|
}
|
|
|
|
|
2017-04-21 01:59:57 +02:00
|
|
|
public function dbg($dbg)
|
|
|
|
{
|
2012-05-16 07:31:36 +02:00
|
|
|
$this->debug = $dbg;
|
|
|
|
}
|
|
|
|
|
2017-04-21 01:59:57 +02:00
|
|
|
public function escape($str)
|
|
|
|
{
|
2012-05-16 07:31:36 +02:00
|
|
|
return @$this->db->real_escape_string($str);
|
|
|
|
}
|
|
|
|
|
2017-04-21 01:59:57 +02:00
|
|
|
public function __destruct()
|
|
|
|
{
|
2012-05-16 07:31:36 +02:00
|
|
|
@$this->db->close();
|
|
|
|
}
|
2017-04-21 01:59:57 +02:00
|
|
|
}
|
2012-05-16 07:31:36 +02:00
|
|
|
|
2017-04-21 01:59:57 +02:00
|
|
|
if (! function_exists('printable')) {
|
2017-04-21 03:41:47 +02:00
|
|
|
function printable($s)
|
|
|
|
{
|
|
|
|
$s = preg_replace("~([\x01-\x08\x0E-\x0F\x10-\x1F\x7F-\xFF])~", ".", $s);
|
|
|
|
$s = str_replace("\x00", '.', $s);
|
|
|
|
if (x($_SERVER, 'SERVER_NAME')) {
|
|
|
|
$s = escape_tags($s);
|
|
|
|
}
|
|
|
|
return $s;
|
|
|
|
}
|
2017-04-21 01:59:57 +02:00
|
|
|
}
|
2012-05-16 07:31:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
// Procedural functions
|
2017-04-21 01:59:57 +02:00
|
|
|
if (! function_exists('dbg')) {
|
2017-04-21 03:41:47 +02:00
|
|
|
function dbg($state)
|
|
|
|
{
|
|
|
|
global $db;
|
|
|
|
$db->dbg($state);
|
|
|
|
}
|
2017-04-21 01:59:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (! function_exists('dbesc')) {
|
2017-04-21 03:41:47 +02:00
|
|
|
function dbesc($str)
|
|
|
|
{
|
|
|
|
global $db;
|
|
|
|
if ($db) {
|
|
|
|
return($db->escape($str));
|
|
|
|
}
|
|
|
|
}
|
2017-04-21 01:59:57 +02:00
|
|
|
}
|
2012-05-16 07:31:36 +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);
|
|
|
|
|
2017-04-21 01:59:57 +02:00
|
|
|
if (! function_exists('q')) {
|
2017-04-21 03:41:47 +02:00
|
|
|
function q($sql)
|
|
|
|
{
|
|
|
|
global $db;
|
|
|
|
$args = func_get_args();
|
|
|
|
unset($args[0]);
|
|
|
|
if ($db) {
|
|
|
|
$ret = $db->q(vsprintf($sql, $args));
|
|
|
|
}
|
|
|
|
if ($db->db->errno) {
|
|
|
|
logger('dba: ' . $db->db->error);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return $ret;
|
|
|
|
}
|
2017-04-21 01:59:57 +02:00
|
|
|
}
|
2012-05-16 07:31:36 +02:00
|
|
|
|
|
|
|
|
2017-04-21 01:59:57 +02:00
|
|
|
// Caller is responsible for ensuring that any integer arguments to
|
2012-05-16 07:31:36 +02:00
|
|
|
// dbesc_array are actually integers and not malformed strings containing
|
2017-04-21 01:59:57 +02:00
|
|
|
// SQL injection vectors. All integer array elements should be specifically
|
|
|
|
// cast to int to avoid trouble.
|
|
|
|
|
|
|
|
|
|
|
|
if (! function_exists('dbesc_array_cb')) {
|
2017-04-21 03:41:47 +02:00
|
|
|
function dbesc_array_cb(&$item, $key)
|
|
|
|
{
|
|
|
|
if (is_string($item)) {
|
|
|
|
$item = dbesc($item);
|
|
|
|
}
|
|
|
|
}
|
2017-04-21 01:59:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (! function_exists('dbesc_array')) {
|
2017-04-21 03:41:47 +02:00
|
|
|
function dbesc_array(&$arr)
|
|
|
|
{
|
|
|
|
if (is_array($arr) && count($arr)) {
|
|
|
|
array_walk($arr, 'dbesc_array_cb');
|
|
|
|
}
|
|
|
|
}
|
2017-04-21 01:59:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (! function_exists('closedb')) {
|
2017-04-21 03:41:47 +02:00
|
|
|
function closedb()
|
|
|
|
{
|
|
|
|
global $db;
|
2012-05-16 07:31:36 +02:00
|
|
|
// $db->close();
|
2017-04-21 03:41:47 +02:00
|
|
|
}
|
2017-04-21 01:59:57 +02:00
|
|
|
}
|