2 require_once("dbm.php");
4 # if PDO is avaible for mysql, use the new database abstraction
5 # TODO: PDO is disabled for release 3.3. We need to investigate why
6 # the update from 3.2 fails with pdo
8 if (class_exists('\PDO') && in_array('mysql', PDO::getAvailableDrivers())) {
9 require_once("library/dddbl2/dddbl.php");
10 require_once("include/dba_pdo.php");
15 require_once('include/datetime.php');
18 * @class MySQL database class
20 * For debugging, insert 'dbg(1);' anywhere in the program flow.
21 * dbg(0); will turn it off. Logging is performed at LOGGER_DATA level.
22 * When logging, all binary info is converted to text and html entities are escaped so that
23 * the debugging stream is safe to view within both terminals and web pages.
27 if (! class_exists('dba')) {
33 public $mysqli = true;
34 public $connected = false;
35 public $error = false;
37 function __construct($server, $user, $pass, $db, $install = false) {
40 $stamp1 = microtime(true);
42 $server = trim($server);
47 if (!(strlen($server) && strlen($user))) {
48 $this->connected = false;
54 if (strlen($server) && ($server !== 'localhost') && ($server !== '127.0.0.1')) {
55 if (! dns_get_record($server, DNS_A + DNS_CNAME + DNS_PTR)) {
56 $this->error = sprintf( t('Cannot locate DNS info for database server \'%s\''), $server);
57 $this->connected = false;
64 if (class_exists('mysqli')) {
65 $this->db = @new mysqli($server,$user,$pass,$db);
66 if (! mysqli_connect_errno()) {
67 $this->connected = true;
69 if (isset($a->config["system"]["db_charset"])) {
70 $this->db->set_charset($a->config["system"]["db_charset"]);
73 $this->mysqli = false;
74 $this->db = mysql_connect($server,$user,$pass);
75 if ($this->db && mysql_select_db($db,$this->db)) {
76 $this->connected = true;
78 if (isset($a->config["system"]["db_charset"]))
79 mysql_set_charset($a->config["system"]["db_charset"], $this->db);
81 if (!$this->connected) {
88 $a->save_timestamp($stamp1, "network");
91 public function getdb() {
96 * @brief Returns the MySQL server version string
98 * This function discriminate between the deprecated mysql API and the current
99 * object-oriented mysqli API. Example of returned string: 5.5.46-0+deb8u1
103 public function server_info() {
105 $return = $this->db->server_info;
107 $return = mysql_get_server_info($this->db);
113 * @brief Returns the selected database name
117 public function database_name() {
118 $r = $this->q("SELECT DATABASE() AS `db`");
124 * @brief Returns the number of rows
128 public function num_rows() {
129 if (!$this->result) {
134 $return = $this->result->num_rows;
136 $return = mysql_num_rows($this->result);
141 public function q($sql, $onlyquery = false) {
144 if (!$this->db || !$this->connected) {
150 // Check the connection (This can reconnect the connection - if configured)
152 $connected = $this->db->ping();
154 $connected = mysql_ping($this->db);
156 $connstr = ($connected ? "Connected" : "Disonnected");
158 $stamp1 = microtime(true);
162 if (x($a->config,'system') && x($a->config['system'], 'db_callstack')) {
163 $sql = "/*".$a->callstack()." */ ".$sql;
167 $result = @$this->db->query($sql);
169 $result = @mysql_query($sql,$this->db);
171 $stamp2 = microtime(true);
172 $duration = (float)($stamp2-$stamp1);
174 $a->save_timestamp($stamp1, "database");
176 if (strtolower(substr($orig_sql, 0, 6)) != "select") {
177 $a->save_timestamp($stamp1, "database_write");
179 if (x($a->config,'system') && x($a->config['system'],'db_log')) {
180 if (($duration > $a->config["system"]["db_loglimit"])) {
181 $duration = round($duration, 3);
182 $backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
183 @file_put_contents($a->config["system"]["db_log"], datetime_convert()."\t".$duration."\t".
184 basename($backtrace[1]["file"])."\t".
185 $backtrace[1]["line"]."\t".$backtrace[2]["function"]."\t".
186 substr($sql, 0, 2000)."\n", FILE_APPEND);
191 if ($this->db->errno) {
192 $this->error = $this->db->error;
193 $this->errorno = $this->db->errno;
195 } elseif (mysql_errno($this->db)) {
196 $this->error = mysql_error($this->db);
197 $this->errorno = mysql_errno($this->db);
200 if (strlen($this->error)) {
201 logger('DB Error ('.$connstr.') '.$this->errorno.': '.$this->error);
208 if ($result === false) {
210 } elseif ($result === true) {
214 $mesg = $result->num_rows . ' results' . EOL;
216 $mesg = mysql_num_rows($result) . ' results' . EOL;
220 $str = 'SQL = ' . printable($sql) . EOL . 'SQL returned ' . $mesg
221 . (($this->error) ? ' error: ' . $this->error : '')
224 logger('dba: ' . $str );
228 * If dbfail.out exists, we will write any failed calls directly to it,
229 * regardless of any logging that may or may nor be in effect.
230 * These usually indicate SQL syntax errors that need to be resolved.
233 if ($result === false) {
234 logger('dba: ' . printable($sql) . ' returned false.' . "\n" . $this->error);
235 if (file_exists('dbfail.out')) {
236 file_put_contents('dbfail.out', datetime_convert() . "\n" . printable($sql) . ' returned false' . "\n" . $this->error . "\n", FILE_APPEND);
240 if (($result === true) || ($result === false)) {
244 $this->result = $result;
250 if ($result->num_rows) {
251 while($x = $result->fetch_array(MYSQLI_ASSOC))
253 $result->free_result();
256 if (mysql_num_rows($result)) {
257 while($x = mysql_fetch_array($result, MYSQL_ASSOC))
259 mysql_free_result($result);
263 //$a->save_timestamp($stamp1, "database");
266 logger('dba: ' . printable(print_r($r, true)));
271 public function qfetch() {
276 if ($this->result->num_rows)
277 $x = $this->result->fetch_array(MYSQLI_ASSOC);
279 if (mysql_num_rows($this->result))
280 $x = mysql_fetch_array($this->result, MYSQL_ASSOC);
286 public function qclose() {
289 $this->result->free_result();
291 mysql_free_result($this->result);
296 public function dbg($dbg) {
300 public function escape($str) {
301 if ($this->db && $this->connected) {
303 return @$this->db->real_escape_string($str);
305 return @mysql_real_escape_string($str,$this->db);
310 function connected() {
312 $connected = $this->db->ping();
314 $connected = mysql_ping($this->db);
319 function __destruct() {
324 mysql_close($this->db);
330 if (! function_exists('printable')) {
331 function printable($s) {
332 $s = preg_replace("~([\x01-\x08\x0E-\x0F\x10-\x1F\x7F-\xFF])~",".", $s);
333 $s = str_replace("\x00",'.',$s);
334 if (x($_SERVER,'SERVER_NAME')) {
335 $s = escape_tags($s);
340 // Procedural functions
341 if (! function_exists('dbg')) {
342 function dbg($state) {
349 if (! function_exists('dbesc')) {
350 function dbesc($str) {
352 if ($db && $db->connected) {
353 return($db->escape($str));
355 return(str_replace("'","\\'",$str));
361 // Function: q($sql,$args);
362 // Description: execute SQL query with printf style args.
363 // Example: $r = q("SELECT * FROM `%s` WHERE `uid` = %d",
366 if (! function_exists('q')) {
370 $args = func_get_args();
373 if ($db && $db->connected) {
374 $stmt = @vsprintf($sql,$args); // Disabled warnings
375 //logger("dba: q: $stmt", LOGGER_ALL);
377 logger('dba: vsprintf error: ' . print_r(debug_backtrace(),true), LOGGER_DEBUG);
378 return $db->q($stmt);
383 * This will happen occasionally trying to store the
384 * session data after abnormal program termination
387 logger('dba: no database: ' . print_r($args,true));
393 * @brief Performs a query with "dirty reads"
395 * By doing dirty reads (reading uncommitted data) no locks are performed
396 * This function can be used to fetch data that doesn't need to be reliable.
398 * @param $args Query parameters (1 to N parameters of different types)
399 * @return array Query array
404 $args = func_get_args();
407 if ($db && $db->connected) {
408 $stmt = @vsprintf($sql,$args); // Disabled warnings
410 logger('dba: vsprintf error: ' . print_r(debug_backtrace(),true), LOGGER_DEBUG);
411 $db->q("SET SESSION TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;");
412 $retval = $db->q($stmt);
413 $db->q("SET SESSION TRANSACTION ISOLATION LEVEL REPEATABLE READ;");
419 * This will happen occasionally trying to store the
420 * session data after abnormal program termination
423 logger('dba: no database: ' . print_r($args,true));
430 * Raw db query, no arguments
434 if (! function_exists('dbq')) {
438 if ($db && $db->connected) {
447 // Caller is responsible for ensuring that any integer arguments to
448 // dbesc_array are actually integers and not malformed strings containing
449 // SQL injection vectors. All integer array elements should be specifically
450 // cast to int to avoid trouble.
453 if (! function_exists('dbesc_array_cb')) {
454 function dbesc_array_cb(&$item, $key) {
455 if (is_string($item))
456 $item = dbesc($item);
460 if (! function_exists('dbesc_array')) {
461 function dbesc_array(&$arr) {
462 if (is_array($arr) && count($arr)) {
463 array_walk($arr,'dbesc_array_cb');
468 function dba_timer() {
469 return microtime(true);