2010-07-01 23:48:07 +00:00
|
|
|
<?php
|
2016-07-02 07:31:28 +00:00
|
|
|
require_once("dbm.php");
|
2012-03-19 05:12:36 +00:00
|
|
|
require_once('include/datetime.php');
|
|
|
|
|
2010-12-08 03:40:12 +00:00
|
|
|
/**
|
2015-12-25 22:17:34 +00:00
|
|
|
* @class MySQL database class
|
2010-12-08 03:40:12 +00:00
|
|
|
*
|
|
|
|
* For debugging, insert 'dbg(1);' anywhere in the program flow.
|
|
|
|
* dbg(0); will turn it off. Logging is performed at LOGGER_DATA level.
|
2014-09-07 15:28:38 +00:00
|
|
|
* When logging, all binary info is converted to text and html entities are escaped so that
|
2012-04-12 13:50:11 +00:00
|
|
|
* the debugging stream is safe to view within both terminals and web pages.
|
2010-12-08 03:40:12 +00:00
|
|
|
*
|
|
|
|
*/
|
2014-09-07 15:28:38 +00:00
|
|
|
|
2012-04-12 13:50:11 +00:00
|
|
|
class dba {
|
|
|
|
|
|
|
|
private $debug = 0;
|
|
|
|
private $db;
|
2014-03-09 08:19:14 +00:00
|
|
|
private $result;
|
2017-03-05 21:56:50 +00:00
|
|
|
private $driver;
|
2012-04-12 13:50:11 +00:00
|
|
|
public $connected = false;
|
|
|
|
public $error = false;
|
|
|
|
|
2016-10-23 22:12:45 +00:00
|
|
|
function __construct($server, $user, $pass, $db, $install = false) {
|
2016-12-13 09:16:36 +00:00
|
|
|
$a = get_app();
|
2013-01-26 17:35:39 +00:00
|
|
|
|
|
|
|
$stamp1 = microtime(true);
|
2012-04-12 13:50:11 +00:00
|
|
|
|
|
|
|
$server = trim($server);
|
|
|
|
$user = trim($user);
|
|
|
|
$pass = trim($pass);
|
|
|
|
$db = trim($db);
|
|
|
|
|
2016-10-22 10:14:41 +00:00
|
|
|
if (!(strlen($server) && strlen($user))) {
|
2012-04-12 13:50:11 +00:00
|
|
|
$this->connected = false;
|
|
|
|
$this->db = null;
|
2012-05-19 22:11:32 +00:00
|
|
|
return;
|
2012-04-12 13:50:11 +00:00
|
|
|
}
|
2012-05-19 22:11:32 +00:00
|
|
|
|
2016-10-22 10:14:41 +00:00
|
|
|
if ($install) {
|
|
|
|
if (strlen($server) && ($server !== 'localhost') && ($server !== '127.0.0.1')) {
|
|
|
|
if (! dns_get_record($server, DNS_A + DNS_CNAME + DNS_PTR)) {
|
2017-03-05 21:56:50 +00:00
|
|
|
$this->error = sprintf(t('Cannot locate DNS info for database server \'%s\''), $server);
|
2012-04-12 13:50:11 +00:00
|
|
|
$this->connected = false;
|
|
|
|
$this->db = null;
|
|
|
|
return;
|
2012-04-08 22:45:10 +00:00
|
|
|
}
|
2011-11-26 06:41:50 +00:00
|
|
|
}
|
2012-04-12 13:50:11 +00:00
|
|
|
}
|
2012-04-08 22:45:10 +00:00
|
|
|
|
2017-03-05 21:56:50 +00:00
|
|
|
if (class_exists('\PDO') && in_array('mysql', PDO::getAvailableDrivers())) {
|
|
|
|
$this->driver = 'pdo';
|
|
|
|
$connect = "mysql:host=".$server.";dbname=".$db;
|
|
|
|
if (isset($a->config["system"]["db_charset"])) {
|
|
|
|
$connect .= ";charset=".$a->config["system"]["db_charset"];
|
|
|
|
}
|
|
|
|
$this->db = @new PDO($connect, $user, $pass);
|
|
|
|
if (!$this->db->errorCode()) {
|
|
|
|
$this->connected = true;
|
|
|
|
}
|
|
|
|
} elseif (class_exists('mysqli')) {
|
|
|
|
$this->driver = 'mysqli';
|
2012-04-12 13:50:11 +00:00
|
|
|
$this->db = @new mysqli($server,$user,$pass,$db);
|
2017-03-05 21:56:50 +00:00
|
|
|
if (!mysqli_connect_errno()) {
|
2012-04-12 13:50:11 +00:00
|
|
|
$this->connected = true;
|
2017-03-06 10:10:22 +00:00
|
|
|
|
|
|
|
if (isset($a->config["system"]["db_charset"])) {
|
|
|
|
$this->db->set_charset($a->config["system"]["db_charset"]);
|
|
|
|
}
|
2016-10-22 10:14:41 +00:00
|
|
|
}
|
2017-03-05 21:56:50 +00:00
|
|
|
} elseif (function_exists('mysql_connect')) {
|
|
|
|
$this->driver = 'mysql';
|
2012-04-12 13:50:11 +00:00
|
|
|
$this->db = mysql_connect($server,$user,$pass);
|
2016-10-22 10:14:41 +00:00
|
|
|
if ($this->db && mysql_select_db($db,$this->db)) {
|
2012-04-12 13:50:11 +00:00
|
|
|
$this->connected = true;
|
2017-03-06 10:10:22 +00:00
|
|
|
|
|
|
|
if (isset($a->config["system"]["db_charset"])) {
|
|
|
|
mysql_set_charset($a->config["system"]["db_charset"], $this->db);
|
|
|
|
}
|
2012-04-12 13:50:11 +00:00
|
|
|
}
|
2017-03-05 21:56:50 +00:00
|
|
|
} else {
|
|
|
|
// No suitable SQL driver was found.
|
|
|
|
if (!$install) {
|
|
|
|
system_unavailable();
|
|
|
|
}
|
2012-04-09 12:04:49 +00:00
|
|
|
}
|
2017-03-05 21:56:50 +00:00
|
|
|
|
2016-10-22 10:14:41 +00:00
|
|
|
if (!$this->connected) {
|
2012-04-12 13:50:11 +00:00
|
|
|
$this->db = null;
|
2016-10-23 22:12:45 +00:00
|
|
|
if (!$install) {
|
2012-04-12 13:50:11 +00:00
|
|
|
system_unavailable();
|
2016-10-23 22:12:45 +00:00
|
|
|
}
|
2011-03-02 00:24:22 +00:00
|
|
|
}
|
2013-01-26 17:35:39 +00:00
|
|
|
$a->save_timestamp($stamp1, "network");
|
2012-04-12 13:50:11 +00:00
|
|
|
}
|
2010-07-01 23:48:07 +00:00
|
|
|
|
2016-10-07 12:33:13 +00:00
|
|
|
/**
|
|
|
|
* @brief Returns the MySQL server version string
|
|
|
|
*
|
2016-10-05 03:43:44 +00:00
|
|
|
* This function discriminate between the deprecated mysql API and the current
|
|
|
|
* object-oriented mysqli API. Example of returned string: 5.5.46-0+deb8u1
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function server_info() {
|
2017-03-05 21:56:50 +00:00
|
|
|
switch ($this->driver) {
|
|
|
|
case 'pdo':
|
|
|
|
$version = $this->db->getAttribute(PDO::ATTR_SERVER_VERSION);
|
|
|
|
break;
|
|
|
|
case 'mysqli':
|
|
|
|
$version = $this->db->server_info;
|
|
|
|
break;
|
|
|
|
case 'mysql':
|
|
|
|
$version = mysql_get_server_info($this->db);
|
|
|
|
break;
|
2016-10-05 03:43:44 +00:00
|
|
|
}
|
2017-03-05 21:56:50 +00:00
|
|
|
return $version;
|
2016-10-05 03:43:44 +00:00
|
|
|
}
|
|
|
|
|
2016-11-22 16:47:08 +00:00
|
|
|
/**
|
|
|
|
* @brief Returns the selected database name
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function database_name() {
|
|
|
|
$r = $this->q("SELECT DATABASE() AS `db`");
|
|
|
|
|
|
|
|
return $r[0]['db'];
|
|
|
|
}
|
|
|
|
|
2016-10-20 22:05:21 +00:00
|
|
|
/**
|
|
|
|
* @brief Returns the number of rows
|
|
|
|
*
|
2016-10-22 10:14:41 +00:00
|
|
|
* @return integer
|
2016-10-20 22:05:21 +00:00
|
|
|
*/
|
|
|
|
public function num_rows() {
|
2016-10-23 22:12:45 +00:00
|
|
|
if (!$this->result) {
|
2016-10-20 22:05:21 +00:00
|
|
|
return 0;
|
2016-10-23 22:12:45 +00:00
|
|
|
}
|
2016-10-20 22:05:21 +00:00
|
|
|
|
2017-03-05 21:56:50 +00:00
|
|
|
switch ($this->driver) {
|
|
|
|
case 'pdo':
|
|
|
|
$rows = $this->result->rowCount();
|
|
|
|
break;
|
|
|
|
case 'mysqli':
|
|
|
|
$rows = $this->result->num_rows;
|
|
|
|
break;
|
|
|
|
case 'mysql':
|
|
|
|
$rows = mysql_num_rows($this->result);
|
|
|
|
break;
|
2016-10-20 22:05:21 +00:00
|
|
|
}
|
2017-03-05 21:56:50 +00:00
|
|
|
return $rows;
|
2016-10-20 22:05:21 +00:00
|
|
|
}
|
|
|
|
|
2017-01-21 20:15:49 +00:00
|
|
|
/**
|
|
|
|
* @brief Analyze a database query and log this if some conditions are met.
|
|
|
|
*
|
|
|
|
* @param string $query The database query that will be analyzed
|
|
|
|
*/
|
2017-01-13 07:46:47 +00:00
|
|
|
public function log_index($query) {
|
|
|
|
$a = get_app();
|
|
|
|
|
2017-01-14 21:36:34 +00:00
|
|
|
if ($a->config["system"]["db_log_index"] == "") {
|
2017-01-13 07:46:47 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-14 21:36:34 +00:00
|
|
|
// Don't explain an explain statement
|
2017-01-13 07:46:47 +00:00
|
|
|
if (strtolower(substr($query, 0, 7)) == "explain") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-14 21:36:34 +00:00
|
|
|
// Only do the explain on "select", "update" and "delete"
|
|
|
|
if (!in_array(strtolower(substr($query, 0, 6)), array("select", "update", "delete"))) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-13 07:46:47 +00:00
|
|
|
$r = $this->q("EXPLAIN ".$query);
|
|
|
|
if (!dbm::is_result($r)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$watchlist = explode(',', $a->config["system"]["db_log_index_watch"]);
|
2017-01-14 21:36:34 +00:00
|
|
|
$blacklist = explode(',', $a->config["system"]["db_log_index_blacklist"]);
|
2017-01-13 07:46:47 +00:00
|
|
|
|
|
|
|
foreach ($r AS $row) {
|
2017-01-14 21:36:34 +00:00
|
|
|
if ((intval($a->config["system"]["db_loglimit_index"]) > 0)) {
|
|
|
|
$log = (in_array($row['key'], $watchlist) AND
|
|
|
|
($row['rows'] >= intval($a->config["system"]["db_loglimit_index"])));
|
2017-03-05 21:56:50 +00:00
|
|
|
} else {
|
2017-01-14 21:36:34 +00:00
|
|
|
$log = false;
|
2017-03-05 21:56:50 +00:00
|
|
|
}
|
2017-01-14 21:36:34 +00:00
|
|
|
|
|
|
|
if ((intval($a->config["system"]["db_loglimit_index_high"]) > 0) AND ($row['rows'] >= intval($a->config["system"]["db_loglimit_index_high"]))) {
|
|
|
|
$log = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (in_array($row['key'], $blacklist) OR ($row['key'] == "")) {
|
|
|
|
$log = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($log) {
|
2017-01-13 07:46:47 +00:00
|
|
|
$backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
|
|
|
|
@file_put_contents($a->config["system"]["db_log_index"], datetime_convert()."\t".
|
2017-01-15 12:36:06 +00:00
|
|
|
$row['key']."\t".$row['rows']."\t".$row['Extra']."\t".
|
2017-01-13 07:46:47 +00:00
|
|
|
basename($backtrace[1]["file"])."\t".
|
|
|
|
$backtrace[1]["line"]."\t".$backtrace[2]["function"]."\t".
|
|
|
|
substr($query, 0, 2000)."\n", FILE_APPEND);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-09 08:19:14 +00:00
|
|
|
public function q($sql, $onlyquery = false) {
|
2016-12-13 09:16:36 +00:00
|
|
|
$a = get_app();
|
2012-05-19 22:11:32 +00:00
|
|
|
|
2016-10-23 22:12:45 +00:00
|
|
|
if (!$this->db || !$this->connected) {
|
2012-04-12 13:50:11 +00:00
|
|
|
return false;
|
2016-10-23 22:12:45 +00:00
|
|
|
}
|
2012-05-19 22:11:32 +00:00
|
|
|
|
2012-04-30 02:41:17 +00:00
|
|
|
$this->error = '';
|
|
|
|
|
2016-09-01 03:50:41 +00:00
|
|
|
// Check the connection (This can reconnect the connection - if configured)
|
2017-03-05 21:56:50 +00:00
|
|
|
switch ($this->driver) {
|
|
|
|
case 'pdo':
|
|
|
|
// Not sure if this really is working like expected
|
|
|
|
$connected = ($this->db->getAttribute(PDO::ATTR_CONNECTION_STATUS) != "");
|
|
|
|
break;
|
|
|
|
case 'mysqli':
|
|
|
|
$connected = $this->db->ping();
|
|
|
|
break;
|
|
|
|
case 'mysql':
|
|
|
|
$connected = mysql_ping($this->db);
|
|
|
|
break;
|
2016-10-22 10:14:41 +00:00
|
|
|
}
|
2017-03-05 21:56:50 +00:00
|
|
|
|
2016-10-23 22:12:45 +00:00
|
|
|
$connstr = ($connected ? "Connected" : "Disonnected");
|
2016-09-01 03:50:41 +00:00
|
|
|
|
2013-01-26 15:46:43 +00:00
|
|
|
$stamp1 = microtime(true);
|
2012-05-19 22:11:32 +00:00
|
|
|
|
2016-10-21 23:42:45 +00:00
|
|
|
$orig_sql = $sql;
|
|
|
|
|
2016-10-23 22:12:45 +00:00
|
|
|
if (x($a->config,'system') && x($a->config['system'], 'db_callstack')) {
|
2016-10-21 23:42:45 +00:00
|
|
|
$sql = "/*".$a->callstack()." */ ".$sql;
|
|
|
|
}
|
2016-10-20 22:05:21 +00:00
|
|
|
|
2017-03-07 17:16:17 +00:00
|
|
|
$columns = 0;
|
|
|
|
|
2017-03-05 21:56:50 +00:00
|
|
|
switch ($this->driver) {
|
|
|
|
case 'pdo':
|
|
|
|
$result = @$this->db->query($sql);
|
2017-03-07 17:16:17 +00:00
|
|
|
// Is used to separate between queries that returning data - or not
|
|
|
|
$columns = $result->columnCount();
|
2017-03-05 21:56:50 +00:00
|
|
|
break;
|
|
|
|
case 'mysqli':
|
|
|
|
$result = @$this->db->query($sql);
|
|
|
|
break;
|
|
|
|
case 'mysql':
|
|
|
|
$result = @mysql_query($sql,$this->db);
|
|
|
|
break;
|
2016-10-22 10:14:41 +00:00
|
|
|
}
|
2013-01-26 15:46:43 +00:00
|
|
|
$stamp2 = microtime(true);
|
|
|
|
$duration = (float)($stamp2-$stamp1);
|
|
|
|
|
2013-09-15 08:40:58 +00:00
|
|
|
$a->save_timestamp($stamp1, "database");
|
|
|
|
|
2016-10-22 10:21:43 +00:00
|
|
|
if (strtolower(substr($orig_sql, 0, 6)) != "select") {
|
2016-08-08 05:14:40 +00:00
|
|
|
$a->save_timestamp($stamp1, "database_write");
|
2016-10-22 10:21:43 +00:00
|
|
|
}
|
2016-10-22 10:14:41 +00:00
|
|
|
if (x($a->config,'system') && x($a->config['system'],'db_log')) {
|
2013-01-13 16:13:01 +00:00
|
|
|
if (($duration > $a->config["system"]["db_loglimit"])) {
|
2013-01-26 15:46:43 +00:00
|
|
|
$duration = round($duration, 3);
|
2012-07-08 19:27:20 +00:00
|
|
|
$backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
|
2014-01-13 00:34:54 +00:00
|
|
|
@file_put_contents($a->config["system"]["db_log"], datetime_convert()."\t".$duration."\t".
|
2012-07-08 19:27:20 +00:00
|
|
|
basename($backtrace[1]["file"])."\t".
|
|
|
|
$backtrace[1]["line"]."\t".$backtrace[2]["function"]."\t".
|
|
|
|
substr($sql, 0, 2000)."\n", FILE_APPEND);
|
|
|
|
}
|
|
|
|
}
|
2012-05-19 22:11:32 +00:00
|
|
|
|
2017-03-05 21:56:50 +00:00
|
|
|
switch ($this->driver) {
|
|
|
|
case 'pdo':
|
|
|
|
$errorInfo = $this->db->errorInfo();
|
|
|
|
if ($errorInfo) {
|
|
|
|
$this->error = $errorInfo[2];
|
|
|
|
$this->errorno = $errorInfo[1];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'mysqli':
|
|
|
|
if ($this->db->errno) {
|
|
|
|
$this->error = $this->db->error;
|
|
|
|
$this->errorno = $this->db->errno;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'mysql':
|
|
|
|
if (mysql_errno($this->db)) {
|
|
|
|
$this->error = mysql_error($this->db);
|
|
|
|
$this->errorno = mysql_errno($this->db);
|
|
|
|
}
|
|
|
|
break;
|
2012-04-30 00:34:54 +00:00
|
|
|
}
|
2016-10-22 10:14:41 +00:00
|
|
|
if (strlen($this->error)) {
|
2016-09-01 03:50:41 +00:00
|
|
|
logger('DB Error ('.$connstr.') '.$this->errorno.': '.$this->error);
|
2012-04-30 00:34:54 +00:00
|
|
|
}
|
|
|
|
|
2016-10-22 10:14:41 +00:00
|
|
|
if ($this->debug) {
|
2010-07-01 23:48:07 +00:00
|
|
|
|
2012-04-12 13:50:11 +00:00
|
|
|
$mesg = '';
|
2012-04-08 22:45:10 +00:00
|
|
|
|
2016-10-22 10:14:41 +00:00
|
|
|
if ($result === false) {
|
2012-04-12 13:50:11 +00:00
|
|
|
$mesg = 'false';
|
2016-10-22 10:14:41 +00:00
|
|
|
} elseif ($result === true) {
|
2012-04-12 13:50:11 +00:00
|
|
|
$mesg = 'true';
|
2016-10-22 10:14:41 +00:00
|
|
|
} else {
|
2017-03-05 21:56:50 +00:00
|
|
|
switch ($this->driver) {
|
|
|
|
case 'pdo':
|
|
|
|
$mesg = $result->rowCount().' results'.EOL;
|
|
|
|
break;
|
|
|
|
case 'mysqli':
|
|
|
|
$mesg = $result->num_rows.' results'.EOL;
|
|
|
|
break;
|
|
|
|
case 'mysql':
|
|
|
|
$mesg = mysql_num_rows($result).' results'.EOL;
|
|
|
|
break;
|
2016-10-22 10:14:41 +00:00
|
|
|
}
|
2011-11-28 01:41:23 +00:00
|
|
|
}
|
2012-05-19 22:11:32 +00:00
|
|
|
|
|
|
|
$str = 'SQL = ' . printable($sql) . EOL . 'SQL returned ' . $mesg
|
2012-04-30 00:34:54 +00:00
|
|
|
. (($this->error) ? ' error: ' . $this->error : '')
|
|
|
|
. EOL;
|
2010-07-01 23:48:07 +00:00
|
|
|
|
2012-04-12 13:50:11 +00:00
|
|
|
logger('dba: ' . $str );
|
|
|
|
}
|
2010-12-08 03:40:12 +00:00
|
|
|
|
2012-04-12 13:50:11 +00: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-12-08 03:40:12 +00:00
|
|
|
|
2016-10-22 10:14:41 +00:00
|
|
|
if ($result === false) {
|
2012-04-30 02:41:17 +00:00
|
|
|
logger('dba: ' . printable($sql) . ' returned false.' . "\n" . $this->error);
|
2016-10-23 23:14:35 +00:00
|
|
|
if (file_exists('dbfail.out')) {
|
2012-04-30 00:34:54 +00:00
|
|
|
file_put_contents('dbfail.out', datetime_convert() . "\n" . printable($sql) . ' returned false' . "\n" . $this->error . "\n", FILE_APPEND);
|
2016-10-23 23:14:35 +00:00
|
|
|
}
|
2010-10-07 01:14:11 +00:00
|
|
|
}
|
2010-07-01 23:48:07 +00:00
|
|
|
|
2016-10-23 23:14:35 +00:00
|
|
|
if (($result === true) || ($result === false)) {
|
2012-04-12 13:50:11 +00:00
|
|
|
return $result;
|
2016-10-23 23:14:35 +00:00
|
|
|
}
|
2014-03-09 08:19:14 +00:00
|
|
|
if ($onlyquery) {
|
|
|
|
$this->result = $result;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-04-12 13:50:11 +00:00
|
|
|
$r = array();
|
2017-03-05 21:56:50 +00:00
|
|
|
switch ($this->driver) {
|
|
|
|
case 'pdo':
|
2017-03-07 17:16:17 +00:00
|
|
|
while ($x = $result->fetch(PDO::FETCH_ASSOC)) {
|
|
|
|
$r[] = $x;
|
2017-03-05 21:56:50 +00:00
|
|
|
}
|
2017-03-07 17:16:17 +00:00
|
|
|
$result->closeCursor();
|
2017-03-05 21:56:50 +00:00
|
|
|
break;
|
|
|
|
case 'mysqli':
|
2017-03-07 17:16:17 +00:00
|
|
|
while ($x = $result->fetch_array(MYSQLI_ASSOC)) {
|
|
|
|
$r[] = $x;
|
2017-03-05 21:56:50 +00:00
|
|
|
}
|
2017-03-07 17:16:17 +00:00
|
|
|
$result->free_result();
|
2017-03-05 21:56:50 +00:00
|
|
|
break;
|
|
|
|
case 'mysql':
|
2017-03-07 17:16:17 +00:00
|
|
|
while ($x = mysql_fetch_array($result, MYSQL_ASSOC)) {
|
|
|
|
$r[] = $x;
|
2017-03-05 21:56:50 +00:00
|
|
|
}
|
2017-03-07 17:16:17 +00:00
|
|
|
mysql_free_result($result);
|
2017-03-05 21:56:50 +00:00
|
|
|
break;
|
2011-11-28 01:41:23 +00:00
|
|
|
}
|
2010-07-01 23:48:07 +00:00
|
|
|
|
2017-03-07 17:16:17 +00:00
|
|
|
// PDO doesn't return "true" on successful operations - like mysqli does
|
|
|
|
// Emulate this behaviour by checking if the query returned data and had columns
|
|
|
|
// This should be reliable enough
|
|
|
|
if (($this->driver == 'pdo') AND (count($r) == 0) AND ($columns == 0)) {
|
|
|
|
return true;
|
2017-03-06 10:10:22 +00:00
|
|
|
}
|
|
|
|
|
2013-09-15 08:40:58 +00:00
|
|
|
//$a->save_timestamp($stamp1, "database");
|
2012-05-19 22:11:32 +00:00
|
|
|
|
2016-10-23 23:14:35 +00:00
|
|
|
if ($this->debug) {
|
2012-04-12 13:50:11 +00:00
|
|
|
logger('dba: ' . printable(print_r($r, true)));
|
2016-10-23 23:14:35 +00:00
|
|
|
}
|
2012-04-12 13:50:11 +00:00
|
|
|
return($r);
|
2010-07-01 23:48:07 +00:00
|
|
|
}
|
|
|
|
|
2014-03-09 08:19:14 +00:00
|
|
|
public function qfetch() {
|
|
|
|
$x = false;
|
|
|
|
|
2016-10-23 22:12:45 +00:00
|
|
|
if ($this->result) {
|
2017-03-05 21:56:50 +00:00
|
|
|
switch ($this->driver) {
|
|
|
|
case 'pdo':
|
2017-03-07 17:16:17 +00:00
|
|
|
$x = $this->result->fetch(PDO::FETCH_ASSOC);
|
2017-03-05 21:56:50 +00:00
|
|
|
break;
|
|
|
|
case 'mysqli':
|
2017-03-07 17:16:17 +00:00
|
|
|
$x = $this->result->fetch_array(MYSQLI_ASSOC);
|
2017-03-05 21:56:50 +00:00
|
|
|
break;
|
|
|
|
case 'mysql':
|
2017-03-07 17:16:17 +00:00
|
|
|
$x = mysql_fetch_array($this->result, MYSQL_ASSOC);
|
2017-03-05 21:56:50 +00:00
|
|
|
break;
|
2014-03-09 08:19:14 +00:00
|
|
|
}
|
2016-10-23 22:12:45 +00:00
|
|
|
}
|
2014-03-09 08:19:14 +00:00
|
|
|
return($x);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function qclose() {
|
2016-10-23 22:12:45 +00:00
|
|
|
if ($this->result) {
|
2017-03-05 21:56:50 +00:00
|
|
|
switch ($this->driver) {
|
|
|
|
case 'pdo':
|
|
|
|
$this->result->closeCursor();
|
|
|
|
break;
|
|
|
|
case 'mysqli':
|
|
|
|
$this->result->free_result();
|
|
|
|
break;
|
|
|
|
case 'mysql':
|
|
|
|
mysql_free_result($this->result);
|
|
|
|
break;
|
2014-03-09 08:19:14 +00:00
|
|
|
}
|
2016-10-23 22:12:45 +00:00
|
|
|
}
|
2014-03-09 08:19:14 +00:00
|
|
|
}
|
|
|
|
|
2012-04-12 13:50:11 +00:00
|
|
|
public function dbg($dbg) {
|
|
|
|
$this->debug = $dbg;
|
2012-04-08 22:45:10 +00:00
|
|
|
}
|
2010-08-12 05:24:08 +00:00
|
|
|
|
2012-04-12 13:50:11 +00:00
|
|
|
public function escape($str) {
|
2016-10-22 10:14:41 +00:00
|
|
|
if ($this->db && $this->connected) {
|
2017-03-05 21:56:50 +00:00
|
|
|
switch ($this->driver) {
|
|
|
|
case 'pdo':
|
|
|
|
return substr(@$this->db->quote($str, PDO::PARAM_STR), 1, -1);
|
|
|
|
case 'mysqli':
|
|
|
|
return @$this->db->real_escape_string($str);
|
|
|
|
case 'mysql':
|
|
|
|
return @mysql_real_escape_string($str,$this->db);
|
2016-10-22 10:14:41 +00:00
|
|
|
}
|
2011-11-28 01:41:23 +00:00
|
|
|
}
|
2012-04-08 22:45:10 +00:00
|
|
|
}
|
2010-07-01 23:48:07 +00:00
|
|
|
|
2016-09-22 02:57:40 +00:00
|
|
|
function connected() {
|
2017-03-05 21:56:50 +00:00
|
|
|
switch ($this->driver) {
|
|
|
|
case 'pdo':
|
|
|
|
// Not sure if this really is working like expected
|
|
|
|
$connected = ($this->db->getAttribute(PDO::ATTR_CONNECTION_STATUS) != "");
|
|
|
|
break;
|
|
|
|
case 'mysqli':
|
|
|
|
$connected = $this->db->ping();
|
|
|
|
break;
|
|
|
|
case 'mysql':
|
|
|
|
$connected = mysql_ping($this->db);
|
|
|
|
break;
|
2016-10-22 10:14:41 +00:00
|
|
|
}
|
2016-09-22 02:57:40 +00:00
|
|
|
return $connected;
|
|
|
|
}
|
|
|
|
|
2017-03-05 21:56:50 +00:00
|
|
|
function insert_id() {
|
|
|
|
switch ($this->driver) {
|
|
|
|
case 'pdo':
|
|
|
|
$id = $this->db->lastInsertId();
|
|
|
|
break;
|
|
|
|
case 'mysqli':
|
|
|
|
$id = $this->db->insert_id;
|
|
|
|
break;
|
|
|
|
case 'mysql':
|
|
|
|
$id = mysql_insert_id($this->db);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return $id;
|
|
|
|
}
|
|
|
|
|
2012-04-12 13:50:11 +00:00
|
|
|
function __destruct() {
|
2016-10-22 10:14:41 +00:00
|
|
|
if ($this->db) {
|
2017-03-05 21:56:50 +00:00
|
|
|
switch ($this->driver) {
|
|
|
|
case 'pdo':
|
|
|
|
$this->db = null;
|
|
|
|
break;
|
|
|
|
case 'mysqli':
|
|
|
|
$this->db->close();
|
|
|
|
break;
|
|
|
|
case 'mysql':
|
|
|
|
mysql_close($this->db);
|
|
|
|
break;
|
2016-10-22 10:14:41 +00:00
|
|
|
}
|
|
|
|
}
|
2012-04-08 22:45:10 +00:00
|
|
|
}
|
2017-03-05 21:56:50 +00:00
|
|
|
}
|
2010-07-01 23:48:07 +00:00
|
|
|
|
2012-04-12 13:50:11 +00:00
|
|
|
function printable($s) {
|
|
|
|
$s = preg_replace("~([\x01-\x08\x0E-\x0F\x10-\x1F\x7F-\xFF])~",".", $s);
|
|
|
|
$s = str_replace("\x00",'.',$s);
|
2016-10-23 23:14:35 +00:00
|
|
|
if (x($_SERVER,'SERVER_NAME')) {
|
2012-04-12 13:50:11 +00:00
|
|
|
$s = escape_tags($s);
|
2016-10-23 23:14:35 +00:00
|
|
|
}
|
2012-04-12 13:50:11 +00:00
|
|
|
return $s;
|
2017-03-05 21:56:50 +00:00
|
|
|
}
|
2010-08-12 05:24:08 +00:00
|
|
|
|
2010-07-01 23:48:07 +00:00
|
|
|
// Procedural functions
|
2012-04-12 13:50:11 +00:00
|
|
|
function dbg($state) {
|
|
|
|
global $db;
|
2017-03-05 21:56:50 +00:00
|
|
|
|
2016-10-23 23:14:35 +00:00
|
|
|
if ($db) {
|
|
|
|
$db->dbg($state);
|
|
|
|
}
|
2017-03-05 21:56:50 +00:00
|
|
|
}
|
2010-07-01 23:48:07 +00:00
|
|
|
|
2012-04-12 13:50:11 +00:00
|
|
|
function dbesc($str) {
|
|
|
|
global $db;
|
2017-03-05 21:56:50 +00:00
|
|
|
|
2016-10-22 10:14:41 +00:00
|
|
|
if ($db && $db->connected) {
|
2012-04-12 13:50:11 +00:00
|
|
|
return($db->escape($str));
|
2016-10-22 10:14:41 +00:00
|
|
|
} else {
|
2012-04-12 13:50:11 +00:00
|
|
|
return(str_replace("'","\\'",$str));
|
2016-10-22 10:14:41 +00:00
|
|
|
}
|
2017-03-05 21:56:50 +00:00
|
|
|
}
|
2012-01-02 19:10:23 +00:00
|
|
|
|
2010-07-01 23:48:07 +00:00
|
|
|
// Function: q($sql,$args);
|
|
|
|
// Description: execute SQL query with printf style args.
|
|
|
|
// Example: $r = q("SELECT * FROM `%s` WHERE `uid` = %d",
|
|
|
|
// 'user', 1);
|
2012-04-12 13:50:11 +00:00
|
|
|
function q($sql) {
|
|
|
|
global $db;
|
|
|
|
$args = func_get_args();
|
|
|
|
unset($args[0]);
|
2011-01-11 04:14:19 +00:00
|
|
|
|
2016-10-22 10:14:41 +00:00
|
|
|
if ($db && $db->connected) {
|
2012-11-10 22:19:32 +00:00
|
|
|
$stmt = @vsprintf($sql,$args); // Disabled warnings
|
2012-10-31 16:13:45 +00:00
|
|
|
//logger("dba: q: $stmt", LOGGER_ALL);
|
2016-10-22 10:14:41 +00:00
|
|
|
if ($stmt === false)
|
2012-10-17 15:13:01 +00:00
|
|
|
logger('dba: vsprintf error: ' . print_r(debug_backtrace(),true), LOGGER_DEBUG);
|
2017-01-13 07:46:47 +00:00
|
|
|
|
|
|
|
$db->log_index($stmt);
|
|
|
|
|
2012-04-12 13:50:11 +00:00
|
|
|
return $db->q($stmt);
|
|
|
|
}
|
2011-01-11 04:14:19 +00:00
|
|
|
|
2012-04-12 13:50:11 +00:00
|
|
|
/**
|
|
|
|
*
|
2014-09-07 15:28:38 +00:00
|
|
|
* This will happen occasionally trying to store the
|
|
|
|
* session data after abnormal program termination
|
2012-04-12 13:50:11 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
logger('dba: no database: ' . print_r($args,true));
|
2014-09-07 15:28:38 +00:00
|
|
|
return false;
|
2017-03-05 21:56:50 +00:00
|
|
|
}
|
2010-07-01 23:48:07 +00:00
|
|
|
|
2016-10-14 05:45:32 +00:00
|
|
|
/**
|
|
|
|
* @brief Performs a query with "dirty reads"
|
|
|
|
*
|
|
|
|
* By doing dirty reads (reading uncommitted data) no locks are performed
|
|
|
|
* This function can be used to fetch data that doesn't need to be reliable.
|
|
|
|
*
|
|
|
|
* @param $args Query parameters (1 to N parameters of different types)
|
|
|
|
* @return array Query array
|
|
|
|
*/
|
|
|
|
function qu($sql) {
|
|
|
|
global $db;
|
2017-03-05 21:56:50 +00:00
|
|
|
|
2016-10-14 05:45:32 +00:00
|
|
|
$args = func_get_args();
|
|
|
|
unset($args[0]);
|
|
|
|
|
2016-10-22 10:14:41 +00:00
|
|
|
if ($db && $db->connected) {
|
2016-10-14 05:45:32 +00:00
|
|
|
$stmt = @vsprintf($sql,$args); // Disabled warnings
|
2016-10-22 10:14:41 +00:00
|
|
|
if ($stmt === false)
|
2016-10-14 05:45:32 +00:00
|
|
|
logger('dba: vsprintf error: ' . print_r(debug_backtrace(),true), LOGGER_DEBUG);
|
2017-01-13 07:46:47 +00:00
|
|
|
|
|
|
|
$db->log_index($stmt);
|
|
|
|
|
2016-10-28 09:08:13 +00:00
|
|
|
$db->q("SET SESSION TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;");
|
2016-10-14 05:45:32 +00:00
|
|
|
$retval = $db->q($stmt);
|
2016-10-28 09:08:13 +00:00
|
|
|
$db->q("SET SESSION TRANSACTION ISOLATION LEVEL REPEATABLE READ;");
|
2016-10-14 05:45:32 +00:00
|
|
|
return $retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* This will happen occasionally trying to store the
|
|
|
|
* session data after abnormal program termination
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
logger('dba: no database: ' . print_r($args,true));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-01-11 04:14:19 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Raw db query, no arguments
|
|
|
|
*
|
|
|
|
*/
|
2012-04-12 13:50:11 +00:00
|
|
|
function dbq($sql) {
|
|
|
|
global $db;
|
2017-03-05 21:56:50 +00:00
|
|
|
|
2016-10-22 10:14:41 +00:00
|
|
|
if ($db && $db->connected) {
|
2012-04-12 13:50:11 +00:00
|
|
|
$ret = $db->q($sql);
|
2016-10-22 10:14:41 +00:00
|
|
|
} else {
|
2012-04-12 13:50:11 +00:00
|
|
|
$ret = false;
|
2016-10-22 10:14:41 +00:00
|
|
|
}
|
2012-04-12 13:50:11 +00:00
|
|
|
return $ret;
|
2017-03-05 21:56:50 +00:00
|
|
|
}
|
2010-07-01 23:48:07 +00:00
|
|
|
|
2014-09-07 15:28:38 +00:00
|
|
|
// Caller is responsible for ensuring that any integer arguments to
|
2010-07-01 23:48:07 +00:00
|
|
|
// dbesc_array are actually integers and not malformed strings containing
|
2014-09-07 15:28:38 +00:00
|
|
|
// SQL injection vectors. All integer array elements should be specifically
|
|
|
|
// cast to int to avoid trouble.
|
2012-04-12 13:50:11 +00:00
|
|
|
function dbesc_array_cb(&$item, $key) {
|
2016-10-22 10:14:41 +00:00
|
|
|
if (is_string($item))
|
2012-04-12 13:50:11 +00:00
|
|
|
$item = dbesc($item);
|
2017-03-05 21:56:50 +00:00
|
|
|
}
|
2010-07-01 23:48:07 +00:00
|
|
|
|
2012-04-12 13:50:11 +00:00
|
|
|
function dbesc_array(&$arr) {
|
2016-10-22 10:14:41 +00:00
|
|
|
if (is_array($arr) && count($arr)) {
|
2012-04-12 13:50:11 +00:00
|
|
|
array_walk($arr,'dbesc_array_cb');
|
2010-07-01 23:48:07 +00:00
|
|
|
}
|
2017-03-05 21:56:50 +00:00
|
|
|
}
|
2012-07-05 03:37:15 +00:00
|
|
|
|
|
|
|
function dba_timer() {
|
|
|
|
return microtime(true);
|
|
|
|
}
|