]> git.mxchange.org Git - friendica.git/blob - include/dba.php
675e40b055f156f3a939cc5db5bf870f252b9d2e
[friendica.git] / include / dba.php
1 <?php
2 require_once("dbm.php");
3 require_once('include/datetime.php');
4
5 /**
6  * @class MySQL database class
7  *
8  * For debugging, insert 'dbg(1);' anywhere in the program flow.
9  * dbg(0); will turn it off. Logging is performed at LOGGER_DATA level.
10  * When logging, all binary info is converted to text and html entities are escaped so that
11  * the debugging stream is safe to view within both terminals and web pages.
12  *
13  * This class is for the low level database stuff that does driver specific things.
14  */
15
16 class dba {
17
18         private $debug = 0;
19         private $db;
20         private $result;
21         private $driver;
22         public  $connected = false;
23         public  $error = false;
24         public  $errorno = 0;
25         public  $affected_rows = 0;
26         private $_server_info = '';
27         private static $in_transaction = false;
28         private static $dbo;
29         private static $relation = array();
30
31         function __construct($serveraddr, $user, $pass, $db, $install = false) {
32                 $a = get_app();
33
34                 $stamp1 = microtime(true);
35
36                 $serveraddr = trim($serveraddr);
37
38                 $serverdata = explode(':', $serveraddr);
39                 $server = $serverdata[0];
40
41                 if (count($serverdata) > 1) {
42                         $port = trim($serverdata[1]);
43                 }
44
45                 $server = trim($server);
46                 $user = trim($user);
47                 $pass = trim($pass);
48                 $db = trim($db);
49
50                 if (!(strlen($server) && strlen($user))) {
51                         $this->connected = false;
52                         $this->db = null;
53                         return;
54                 }
55
56                 if ($install) {
57                         if (strlen($server) && ($server !== 'localhost') && ($server !== '127.0.0.1')) {
58                                 if (! dns_get_record($server, DNS_A + DNS_CNAME + DNS_PTR)) {
59                                         $this->error = sprintf(t('Cannot locate DNS info for database server \'%s\''), $server);
60                                         $this->connected = false;
61                                         $this->db = null;
62                                         return;
63                                 }
64                         }
65                 }
66
67                 if (class_exists('\PDO') && in_array('mysql', PDO::getAvailableDrivers())) {
68                         $this->driver = 'pdo';
69                         $connect = "mysql:host=".$server.";dbname=".$db;
70
71                         if (isset($port)) {
72                                 $connect .= ";port=".$port;
73                         }
74
75                         if (isset($a->config["system"]["db_charset"])) {
76                                 $connect .= ";charset=".$a->config["system"]["db_charset"];
77                         }
78                         try {
79                                 $this->db = @new PDO($connect, $user, $pass);
80                                 $this->connected = true;
81                         } catch (PDOException $e) {
82                                 $this->connected = false;
83                         }
84                 }
85
86                 if (!$this->connected && class_exists('mysqli')) {
87                         $this->driver = 'mysqli';
88                         $this->db = @new mysqli($server, $user, $pass, $db, $port);
89                         if (!mysqli_connect_errno()) {
90                                 $this->connected = true;
91
92                                 if (isset($a->config["system"]["db_charset"])) {
93                                         $this->db->set_charset($a->config["system"]["db_charset"]);
94                                 }
95                         }
96                 }
97
98                 if (!$this->connected && function_exists('mysql_connect')) {
99                         $this->driver = 'mysql';
100                         $this->db = mysql_connect($serveraddr, $user, $pass);
101                         if ($this->db && mysql_select_db($db, $this->db)) {
102                                 $this->connected = true;
103
104                                 if (isset($a->config["system"]["db_charset"])) {
105                                         mysql_set_charset($a->config["system"]["db_charset"], $this->db);
106                                 }
107                         }
108                 }
109
110                 // No suitable SQL driver was found.
111                 if (!$this->connected) {
112                         $this->db = null;
113                         if (!$install) {
114                                 system_unavailable();
115                         }
116                 }
117                 $a->save_timestamp($stamp1, "network");
118
119                 self::$dbo = $this;
120         }
121
122         /**
123          * @brief Returns the MySQL server version string
124          *
125          * This function discriminate between the deprecated mysql API and the current
126          * object-oriented mysqli API. Example of returned string: 5.5.46-0+deb8u1
127          *
128          * @return string
129          */
130         public function server_info() {
131                 if ($this->_server_info == '') {
132                         switch ($this->driver) {
133                                 case 'pdo':
134                                         $this->_server_info = $this->db->getAttribute(PDO::ATTR_SERVER_VERSION);
135                                         break;
136                                 case 'mysqli':
137                                         $this->_server_info = $this->db->server_info;
138                                         break;
139                                 case 'mysql':
140                                         $this->_server_info = mysql_get_server_info($this->db);
141                                         break;
142                         }
143                 }
144                 return $this->_server_info;
145         }
146
147         /**
148          * @brief Returns the selected database name
149          *
150          * @return string
151          */
152         public function database_name() {
153                 $r = $this->q("SELECT DATABASE() AS `db`");
154
155                 return $r[0]['db'];
156         }
157
158         /**
159          * @brief Analyze a database query and log this if some conditions are met.
160          *
161          * @param string $query The database query that will be analyzed
162          */
163         public function log_index($query) {
164                 $a = get_app();
165
166                 if (empty($a->config["system"]["db_log_index"])) {
167                         return;
168                 }
169
170                 // Don't explain an explain statement
171                 if (strtolower(substr($query, 0, 7)) == "explain") {
172                         return;
173                 }
174
175                 // Only do the explain on "select", "update" and "delete"
176                 if (!in_array(strtolower(substr($query, 0, 6)), array("select", "update", "delete"))) {
177                         return;
178                 }
179
180                 $r = $this->q("EXPLAIN ".$query);
181                 if (!dbm::is_result($r)) {
182                         return;
183                 }
184
185                 $watchlist = explode(',', $a->config["system"]["db_log_index_watch"]);
186                 $blacklist = explode(',', $a->config["system"]["db_log_index_blacklist"]);
187
188                 foreach ($r AS $row) {
189                         if ((intval($a->config["system"]["db_loglimit_index"]) > 0)) {
190                                 $log = (in_array($row['key'], $watchlist) &&
191                                         ($row['rows'] >= intval($a->config["system"]["db_loglimit_index"])));
192                         } else {
193                                 $log = false;
194                         }
195
196                         if ((intval($a->config["system"]["db_loglimit_index_high"]) > 0) && ($row['rows'] >= intval($a->config["system"]["db_loglimit_index_high"]))) {
197                                 $log = true;
198                         }
199
200                         if (in_array($row['key'], $blacklist) || ($row['key'] == "")) {
201                                 $log = false;
202                         }
203
204                         if ($log) {
205                                 $backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
206                                 @file_put_contents($a->config["system"]["db_log_index"], datetime_convert()."\t".
207                                                 $row['key']."\t".$row['rows']."\t".$row['Extra']."\t".
208                                                 basename($backtrace[1]["file"])."\t".
209                                                 $backtrace[1]["line"]."\t".$backtrace[2]["function"]."\t".
210                                                 substr($query, 0, 2000)."\n", FILE_APPEND);
211                         }
212                 }
213         }
214
215         public function q($sql, $onlyquery = false) {
216                 $a = get_app();
217
218                 if (!$this->db || !$this->connected) {
219                         return false;
220                 }
221
222                 $this->error = '';
223
224                 $connstr = ($this->connected() ? "Connected" : "Disonnected");
225
226                 $stamp1 = microtime(true);
227
228                 $orig_sql = $sql;
229
230                 if (x($a->config,'system') && x($a->config['system'], 'db_callstack')) {
231                         $sql = "/*".$a->callstack()." */ ".$sql;
232                 }
233
234                 $columns = 0;
235
236                 switch ($this->driver) {
237                         case 'pdo':
238                                 $result = @$this->db->query($sql);
239                                 // Is used to separate between queries that returning data - or not
240                                 if (!is_bool($result)) {
241                                         $columns = $result->columnCount();
242                                 }
243                                 break;
244                         case 'mysqli':
245                                 $result = @$this->db->query($sql);
246                                 break;
247                         case 'mysql':
248                                 $result = @mysql_query($sql,$this->db);
249                                 break;
250                 }
251                 $stamp2 = microtime(true);
252                 $duration = (float)($stamp2 - $stamp1);
253
254                 $a->save_timestamp($stamp1, "database");
255
256                 if (strtolower(substr($orig_sql, 0, 6)) != "select") {
257                         $a->save_timestamp($stamp1, "database_write");
258                 }
259                 if (x($a->config,'system') && x($a->config['system'],'db_log')) {
260                         if (($duration > $a->config["system"]["db_loglimit"])) {
261                                 $duration = round($duration, 3);
262                                 $backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
263                                 @file_put_contents($a->config["system"]["db_log"], datetime_convert()."\t".$duration."\t".
264                                                 basename($backtrace[1]["file"])."\t".
265                                                 $backtrace[1]["line"]."\t".$backtrace[2]["function"]."\t".
266                                                 substr($sql, 0, 2000)."\n", FILE_APPEND);
267                         }
268                 }
269
270                 switch ($this->driver) {
271                         case 'pdo':
272                                 $errorInfo = $this->db->errorInfo();
273                                 if ($errorInfo) {
274                                         $this->error = $errorInfo[2];
275                                         $this->errorno = $errorInfo[1];
276                                 }
277                                 break;
278                         case 'mysqli':
279                                 if ($this->db->errno) {
280                                         $this->error = $this->db->error;
281                                         $this->errorno = $this->db->errno;
282                                 }
283                                 break;
284                         case 'mysql':
285                                 if (mysql_errno($this->db)) {
286                                         $this->error = mysql_error($this->db);
287                                         $this->errorno = mysql_errno($this->db);
288                                 }
289                                 break;
290                 }
291                 if (strlen($this->error)) {
292                         logger('DB Error ('.$connstr.') '.$this->errorno.': '.$this->error);
293                 }
294
295                 if ($this->debug) {
296
297                         $mesg = '';
298
299                         if ($result === false) {
300                                 $mesg = 'false';
301                         } elseif ($result === true) {
302                                 $mesg = 'true';
303                         } else {
304                                 switch ($this->driver) {
305                                         case 'pdo':
306                                                 $mesg = $result->rowCount().' results'.EOL;
307                                                 break;
308                                         case 'mysqli':
309                                                 $mesg = $result->num_rows.' results'.EOL;
310                                                 break;
311                                         case 'mysql':
312                                                 $mesg = mysql_num_rows($result).' results'.EOL;
313                                                 break;
314                                 }
315                         }
316
317                         $str =  'SQL = ' . printable($sql) . EOL . 'SQL returned ' . $mesg
318                                 . (($this->error) ? ' error: ' . $this->error : '')
319                                 . EOL;
320
321                         logger('dba: ' . $str );
322                 }
323
324                 /**
325                  * If dbfail.out exists, we will write any failed calls directly to it,
326                  * regardless of any logging that may or may nor be in effect.
327                  * These usually indicate SQL syntax errors that need to be resolved.
328                  */
329
330                 if ($result === false) {
331                         logger('dba: ' . printable($sql) . ' returned false.' . "\n" . $this->error);
332                         if (file_exists('dbfail.out')) {
333                                 file_put_contents('dbfail.out', datetime_convert() . "\n" . printable($sql) . ' returned false' . "\n" . $this->error . "\n", FILE_APPEND);
334                         }
335                 }
336
337                 if (is_bool($result)) {
338                         return $result;
339                 }
340                 if ($onlyquery) {
341                         $this->result = $result;
342                         return true;
343                 }
344
345                 $r = array();
346                 switch ($this->driver) {
347                         case 'pdo':
348                                 while ($x = $result->fetch(PDO::FETCH_ASSOC)) {
349                                         $r[] = $x;
350                                 }
351                                 $result->closeCursor();
352                                 break;
353                         case 'mysqli':
354                                 while ($x = $result->fetch_array(MYSQLI_ASSOC)) {
355                                         $r[] = $x;
356                                 }
357                                 $result->free_result();
358                                 break;
359                         case 'mysql':
360                                 while ($x = mysql_fetch_array($result, MYSQL_ASSOC)) {
361                                         $r[] = $x;
362                                 }
363                                 mysql_free_result($result);
364                                 break;
365                 }
366
367                 // PDO doesn't return "true" on successful operations - like mysqli does
368                 // Emulate this behaviour by checking if the query returned data and had columns
369                 // This should be reliable enough
370                 if (($this->driver == 'pdo') && (count($r) == 0) && ($columns == 0)) {
371                         return true;
372                 }
373
374                 //$a->save_timestamp($stamp1, "database");
375
376                 if ($this->debug) {
377                         logger('dba: ' . printable(print_r($r, true)));
378                 }
379                 return($r);
380         }
381
382         public function dbg($dbg) {
383                 $this->debug = $dbg;
384         }
385
386         public function escape($str) {
387                 if ($this->db && $this->connected) {
388                         switch ($this->driver) {
389                                 case 'pdo':
390                                         return substr(@$this->db->quote($str, PDO::PARAM_STR), 1, -1);
391                                 case 'mysqli':
392                                         return @$this->db->real_escape_string($str);
393                                 case 'mysql':
394                                         return @mysql_real_escape_string($str,$this->db);
395                         }
396                 }
397         }
398
399         function connected() {
400                 switch ($this->driver) {
401                         case 'pdo':
402                                 // Not sure if this really is working like expected
403                                 $connected = ($this->db->getAttribute(PDO::ATTR_CONNECTION_STATUS) != "");
404                                 break;
405                         case 'mysqli':
406                                 $connected = $this->db->ping();
407                                 break;
408                         case 'mysql':
409                                 $connected = mysql_ping($this->db);
410                                 break;
411                 }
412                 return $connected;
413         }
414
415         function __destruct() {
416                 if ($this->db) {
417                         switch ($this->driver) {
418                                 case 'pdo':
419                                         $this->db = null;
420                                         break;
421                                 case 'mysqli':
422                                         $this->db->close();
423                                         break;
424                                 case 'mysql':
425                                         mysql_close($this->db);
426                                         break;
427                         }
428                 }
429         }
430
431         /**
432          * @brief Replaces ANY_VALUE() function by MIN() function,
433          *  if the database server does not support ANY_VALUE().
434          *
435          * Considerations for Standard SQL, or MySQL with ONLY_FULL_GROUP_BY (default since 5.7.5).
436          * ANY_VALUE() is available from MySQL 5.7.5 https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html
437          * A standard fall-back is to use MIN().
438          *
439          * @param string $sql An SQL string without the values
440          * @return string The input SQL string modified if necessary.
441          */
442         public function any_value_fallback($sql) {
443                 $server_info = $this->server_info();
444                 if (version_compare($server_info, '5.7.5', '<') ||
445                         (stripos($server_info, 'MariaDB') !== false)) {
446                         $sql = str_ireplace('ANY_VALUE(', 'MIN(', $sql);
447                 }
448                 return $sql;
449         }
450
451         /**
452          * @brief beautifies the query - useful for "SHOW PROCESSLIST"
453          *
454          * This is safe when we bind the parameters later.
455          * The parameter values aren't part of the SQL.
456          *
457          * @param string $sql An SQL string without the values
458          * @return string The input SQL string modified if necessary.
459          */
460         public function clean_query($sql) {
461                 $search = array("\t", "\n", "\r", "  ");
462                 $replace = array(' ', ' ', ' ', ' ');
463                 do {
464                         $oldsql = $sql;
465                         $sql = str_replace($search, $replace, $sql);
466                 } while ($oldsql != $sql);
467
468                 return $sql;
469         }
470
471
472         /**
473          * @brief Replaces the ? placeholders with the parameters in the $args array
474          *
475          * @param string $sql SQL query
476          * @param array $args The parameters that are to replace the ? placeholders
477          * @return string The replaced SQL query
478          */
479         static private function replace_parameters($sql, $args) {
480                 $offset = 0;
481                 foreach ($args AS $param => $value) {
482                         if (is_int($args[$param]) || is_float($args[$param])) {
483                                 $replace = intval($args[$param]);
484                         } else {
485                                 $replace = "'".self::$dbo->escape($args[$param])."'";
486                         }
487
488                         $pos = strpos($sql, '?', $offset);
489                         if ($pos !== false) {
490                                 $sql = substr_replace($sql, $replace, $pos, 1);
491                         }
492                         $offset = $pos + strlen($replace);
493                 }
494                 return $sql;
495         }
496
497         /**
498          * @brief Convert parameter array to an universal form
499          * @param array $args Parameter array
500          * @return array universalized parameter array
501          */
502         private static function getParam($args) {
503                 unset($args[0]);
504
505                 // When the second function parameter is an array then use this as the parameter array
506                 if ((count($args) > 0) && (is_array($args[1]))) {
507                         return $args[1];
508                 } else {
509                         return $args;
510                 }
511         }
512
513         /**
514          * @brief Executes a prepared statement that returns data
515          * @usage Example: $r = p("SELECT * FROM `item` WHERE `guid` = ?", $guid);
516          * @param string $sql SQL statement
517          * @return object statement object
518          */
519         static public function p($sql) {
520                 $a = get_app();
521
522                 $stamp1 = microtime(true);
523
524                 $params = self::getParam(func_get_args());
525
526                 // Renumber the array keys to be sure that they fit
527                 $i = 0;
528                 $args = array();
529                 foreach ($params AS $param) {
530                         // Avoid problems with some MySQL servers and boolean values. See issue #3645
531                         if (is_bool($param)) {
532                                 $param = (int)$param;
533                         }
534                         $args[++$i] = $param;
535                 }
536
537                 if (!self::$dbo || !self::$dbo->connected) {
538                         return false;
539                 }
540
541                 if (substr_count($sql, '?') != count($args)) {
542                         // Question: Should we continue or stop the query here?
543                         logger('Parameter mismatch. Query "'.$sql.'" - Parameters '.print_r($args, true), LOGGER_DEBUG);
544                 }
545
546                 $sql = self::$dbo->clean_query($sql);
547                 $sql = self::$dbo->any_value_fallback($sql);
548
549                 $orig_sql = $sql;
550
551                 if (x($a->config,'system') && x($a->config['system'], 'db_callstack')) {
552                         $sql = "/*".$a->callstack()." */ ".$sql;
553                 }
554
555                 self::$dbo->error = '';
556                 self::$dbo->errorno = 0;
557                 self::$dbo->affected_rows = 0;
558
559                 // We have to make some things different if this function is called from "e"
560                 $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 2);
561
562                 if (isset($trace[1])) {
563                         $called_from = $trace[1];
564                 } else {
565                         // We use just something that is defined to avoid warnings
566                         $called_from = $trace[0];
567                 }
568                 // We are having an own error logging in the function "e"
569                 $called_from_e = ($called_from['function'] == 'e');
570
571                 switch (self::$dbo->driver) {
572                         case 'pdo':
573                                 if (!$stmt = self::$dbo->db->prepare($sql)) {
574                                         $errorInfo = self::$dbo->db->errorInfo();
575                                         self::$dbo->error = $errorInfo[2];
576                                         self::$dbo->errorno = $errorInfo[1];
577                                         $retval = false;
578                                         break;
579                                 }
580
581                                 foreach ($args AS $param => $value) {
582                                         $stmt->bindParam($param, $args[$param]);
583                                 }
584
585                                 if (!$stmt->execute()) {
586                                         $errorInfo = $stmt->errorInfo();
587                                         self::$dbo->error = $errorInfo[2];
588                                         self::$dbo->errorno = $errorInfo[1];
589                                         $retval = false;
590                                 } else {
591                                         $retval = $stmt;
592                                         self::$dbo->affected_rows = $retval->rowCount();
593                                 }
594                                 break;
595                         case 'mysqli':
596                                 // There are SQL statements that cannot be executed with a prepared statement
597                                 $parts = explode(' ', $orig_sql);
598                                 $command = strtolower($parts[0]);
599                                 $can_be_prepared = in_array($command, array('select', 'update', 'insert', 'delete'));
600
601                                 // The fallback routine currently only works with statements that doesn't return values
602                                 if (!$can_be_prepared && $called_from_e) {
603                                         $retval = self::$dbo->db->query(self::replace_parameters($sql, $args));
604                                         if (self::$dbo->db->errno) {
605                                                 self::$dbo->error = self::$dbo->db->error;
606                                                 self::$dbo->errorno = self::$dbo->db->errno;
607                                                 $retval = false;
608                                         } else {
609                                                 if (isset($retval->num_rows)) {
610                                                         self::$dbo->affected_rows = $retval->num_rows;
611                                                 } else {
612                                                         self::$dbo->affected_rows = self::$dbo->db->affected_rows;
613                                                 }
614                                         }
615                                         break;
616                                 }
617
618                                 $stmt = self::$dbo->db->stmt_init();
619
620                                 if (!$stmt->prepare($sql)) {
621                                         self::$dbo->error = $stmt->error;
622                                         self::$dbo->errorno = $stmt->errno;
623                                         $retval = false;
624                                         break;
625                                 }
626
627                                 $params = '';
628                                 $values = array();
629                                 foreach ($args AS $param => $value) {
630                                         if (is_int($args[$param])) {
631                                                 $params .= 'i';
632                                         } elseif (is_float($args[$param])) {
633                                                 $params .= 'd';
634                                         } elseif (is_string($args[$param])) {
635                                                 $params .= 's';
636                                         } else {
637                                                 $params .= 'b';
638                                         }
639                                         $values[] = &$args[$param];
640                                 }
641
642                                 if (count($values) > 0) {
643                                         array_unshift($values, $params);
644                                         call_user_func_array(array($stmt, 'bind_param'), $values);
645                                 }
646
647                                 if (!$stmt->execute()) {
648                                         self::$dbo->error = self::$dbo->db->error;
649                                         self::$dbo->errorno = self::$dbo->db->errno;
650                                         $retval = false;
651                                 } else {
652                                         $stmt->store_result();
653                                         $retval = $stmt;
654                                         self::$dbo->affected_rows = $retval->affected_rows;
655                                 }
656                                 break;
657                         case 'mysql':
658                                 // For the old "mysql" functions we cannot use prepared statements
659                                 $retval = mysql_query(self::replace_parameters($sql, $args), self::$dbo->db);
660                                 if (mysql_errno(self::$dbo->db)) {
661                                         self::$dbo->error = mysql_error(self::$dbo->db);
662                                         self::$dbo->errorno = mysql_errno(self::$dbo->db);
663                                 } else {
664                                         self::$dbo->affected_rows = mysql_affected_rows($retval);
665
666                                         // Due to missing mysql_* support this here wasn't tested at all
667                                         // See here: http://php.net/manual/en/function.mysql-num-rows.php
668                                         if (self::$dbo->affected_rows <= 0) {
669                                                 self::$dbo->affected_rows = mysql_num_rows($retval);
670                                         }
671                                 }
672                                 break;
673                 }
674
675                 // We are having an own error logging in the function "e"
676                 if ((self::$dbo->errorno != 0) && !$called_from_e) {
677                         // We have to preserve the error code, somewhere in the logging it get lost
678                         $error = self::$dbo->error;
679                         $errorno = self::$dbo->errorno;
680
681                         logger('DB Error '.self::$dbo->errorno.': '.self::$dbo->error."\n".
682                                 $a->callstack(8)."\n".self::replace_parameters($sql, $params));
683
684                         self::$dbo->error = $error;
685                         self::$dbo->errorno = $errorno;
686                 }
687
688                 $a->save_timestamp($stamp1, 'database');
689
690                 if (x($a->config,'system') && x($a->config['system'], 'db_log')) {
691
692                         $stamp2 = microtime(true);
693                         $duration = (float)($stamp2 - $stamp1);
694
695                         if (($duration > $a->config["system"]["db_loglimit"])) {
696                                 $duration = round($duration, 3);
697                                 $backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
698
699                                 @file_put_contents($a->config["system"]["db_log"], datetime_convert()."\t".$duration."\t".
700                                                 basename($backtrace[1]["file"])."\t".
701                                                 $backtrace[1]["line"]."\t".$backtrace[2]["function"]."\t".
702                                                 substr(self::replace_parameters($sql, $args), 0, 2000)."\n", FILE_APPEND);
703                         }
704                 }
705                 return $retval;
706         }
707
708         /**
709          * @brief Executes a prepared statement like UPDATE or INSERT that doesn't return data
710          *
711          * @param string $sql SQL statement
712          * @return boolean Was the query successfull? False is returned only if an error occurred
713          */
714         static public function e($sql) {
715                 $a = get_app();
716
717                 $stamp = microtime(true);
718
719                 $params = self::getParam(func_get_args());
720
721                 // In a case of a deadlock we are repeating the query 20 times
722                 $timeout = 20;
723
724                 do {
725                         $stmt = self::p($sql, $params);
726
727                         if (is_bool($stmt)) {
728                                 $retval = $stmt;
729                         } elseif (is_object($stmt)) {
730                                 $retval = true;
731                         } else {
732                                 $retval = false;
733                         }
734
735                         self::close($stmt);
736
737                 } while ((self::$dbo->errorno == 1213) && (--$timeout > 0));
738
739                 if (self::$dbo->errorno != 0) {
740                         // We have to preserve the error code, somewhere in the logging it get lost
741                         $error = self::$dbo->error;
742                         $errorno = self::$dbo->errorno;
743
744                         logger('DB Error '.self::$dbo->errorno.': '.self::$dbo->error."\n".
745                                 $a->callstack(8)."\n".self::replace_parameters($sql, $params));
746
747                         self::$dbo->error = $error;
748                         self::$dbo->errorno = $errorno;
749                 }
750
751                 $a->save_timestamp($stamp, "database_write");
752
753                 return $retval;
754         }
755
756         /**
757          * @brief Check if data exists
758          *
759          * @param string $table Table name
760          * @param array $condition array of fields for condition
761          *
762          * @return boolean Are there rows for that condition?
763          */
764         static public function exists($table, $condition) {
765                 if (empty($table)) {
766                         return false;
767                 }
768
769                 $fields = array();
770
771                 $array_element = each($condition);
772                 $array_key = $array_element['key'];
773                 if (!is_int($array_key)) {
774                         $fields = array($array_key);
775                 }
776
777                 $stmt = self::select($table, $fields, $condition, array('limit' => 1, 'only_query' => true));
778
779                 if (is_bool($stmt)) {
780                         $retval = $stmt;
781                 } else {
782                         $retval = (self::num_rows($stmt) > 0);
783                 }
784
785                 self::close($stmt);
786
787                 return $retval;
788         }
789
790         /**
791          * @brief Fetches the first row
792          *
793          * @param string $sql SQL statement
794          * @return array first row of query
795          */
796         static public function fetch_first($sql) {
797                 $params = self::getParam(func_get_args());
798
799                 $stmt = self::p($sql, $params);
800
801                 if (is_bool($stmt)) {
802                         $retval = $stmt;
803                 } else {
804                         $retval = self::fetch($stmt);
805                 }
806
807                 self::close($stmt);
808
809                 return $retval;
810         }
811
812         /**
813          * @brief Returns the number of affected rows of the last statement
814          *
815          * @return int Number of rows
816          */
817         static public function affected_rows() {
818                 return self::$dbo->affected_rows;
819         }
820
821         /**
822          * @brief Returns the number of rows of a statement
823          *
824          * @param object Statement object
825          * @return int Number of rows
826          */
827         static public function num_rows($stmt) {
828                 if (!is_object($stmt)) {
829                         return 0;
830                 }
831                 switch (self::$dbo->driver) {
832                         case 'pdo':
833                                 return $stmt->rowCount();
834                         case 'mysqli':
835                                 return $stmt->num_rows;
836                         case 'mysql':
837                                 return mysql_num_rows($stmt);
838                 }
839                 return 0;
840         }
841
842         /**
843          * @brief Fetch a single row
844          *
845          * @param object $stmt statement object
846          * @return array current row
847          */
848         static public function fetch($stmt) {
849                 if (!is_object($stmt)) {
850                         return false;
851                 }
852
853                 switch (self::$dbo->driver) {
854                         case 'pdo':
855                                 return $stmt->fetch(PDO::FETCH_ASSOC);
856                         case 'mysqli':
857                                 // This code works, but is slow
858
859                                 // Bind the result to a result array
860                                 $cols = array();
861
862                                 $cols_num = array();
863                                 for ($x = 0; $x < $stmt->field_count; $x++) {
864                                         $cols[] = &$cols_num[$x];
865                                 }
866
867                                 call_user_func_array(array($stmt, 'bind_result'), $cols);
868
869                                 if (!$stmt->fetch()) {
870                                         return false;
871                                 }
872
873                                 // The slow part:
874                                 // We need to get the field names for the array keys
875                                 // It seems that there is no better way to do this.
876                                 $result = $stmt->result_metadata();
877                                 $fields = $result->fetch_fields();
878
879                                 $columns = array();
880                                 foreach ($cols_num AS $param => $col) {
881                                         $columns[$fields[$param]->name] = $col;
882                                 }
883                                 return $columns;
884                         case 'mysql':
885                                 return mysql_fetch_array(self::$dbo->result, MYSQL_ASSOC);
886                 }
887         }
888
889         /**
890          * @brief Insert a row into a table
891          *
892          * @param string $table Table name
893          * @param array $param parameter array
894          * @param bool $on_duplicate_update Do an update on a duplicate entry
895          *
896          * @return boolean was the insert successfull?
897          */
898         static public function insert($table, $param, $on_duplicate_update = false) {
899                 $sql = "INSERT INTO `".self::$dbo->escape($table)."` (`".implode("`, `", array_keys($param))."`) VALUES (".
900                         substr(str_repeat("?, ", count($param)), 0, -2).")";
901
902                 if ($on_duplicate_update) {
903                         $sql .= " ON DUPLICATE KEY UPDATE `".implode("` = ?, `", array_keys($param))."` = ?";
904
905                         $values = array_values($param);
906                         $param = array_merge_recursive($values, $values);
907                 }
908
909                 return self::e($sql, $param);
910         }
911
912         /**
913          * @brief Fetch the id of the last insert command
914          *
915          * @return integer Last inserted id
916          */
917         function lastInsertId() {
918                 switch (self::$dbo->driver) {
919                         case 'pdo':
920                                 $id = self::$dbo->db->lastInsertId();
921                                 break;
922                         case 'mysqli':
923                                 $id = self::$dbo->db->insert_id;
924                                 break;
925                         case 'mysql':
926                                 $id = mysql_insert_id(self::$dbo);
927                                 break;
928                 }
929                 return $id;
930         }
931
932         /**
933          * @brief Locks a table for exclusive write access
934          *
935          * This function can be extended in the future to accept a table array as well.
936          *
937          * @param string $table Table name
938          *
939          * @return boolean was the lock successful?
940          */
941         static public function lock($table) {
942                 // See here: https://dev.mysql.com/doc/refman/5.7/en/lock-tables-and-transactions.html
943                 self::e("SET autocommit=0");
944                 $success = self::e("LOCK TABLES `".self::$dbo->escape($table)."` WRITE");
945                 if (!$success) {
946                         self::e("SET autocommit=1");
947                 } else {
948                         self::$in_transaction = true;
949                 }
950                 return $success;
951         }
952
953         /**
954          * @brief Unlocks all locked tables
955          *
956          * @return boolean was the unlock successful?
957          */
958         static public function unlock() {
959                 // See here: https://dev.mysql.com/doc/refman/5.7/en/lock-tables-and-transactions.html
960                 self::e("COMMIT");
961                 $success = self::e("UNLOCK TABLES");
962                 self::e("SET autocommit=1");
963                 self::$in_transaction = false;
964                 return $success;
965         }
966
967         /**
968          * @brief Starts a transaction
969          *
970          * @return boolean Was the command executed successfully?
971          */
972         static public function transaction() {
973                 if (!self::e('COMMIT')) {
974                         return false;
975                 }
976                 if (!self::e('START TRANSACTION')) {
977                         return false;
978                 }
979                 self::$in_transaction = true;
980                 return true;
981         }
982
983         /**
984          * @brief Does a commit
985          *
986          * @return boolean Was the command executed successfully?
987          */
988         static public function commit() {
989                 if (!self::e('COMMIT')) {
990                         return false;
991                 }
992                 self::$in_transaction = false;
993                 return true;
994         }
995
996         /**
997          * @brief Does a rollback
998          *
999          * @return boolean Was the command executed successfully?
1000          */
1001         static public function rollback() {
1002                 if (!self::e('ROLLBACK')) {
1003                         return false;
1004                 }
1005                 self::$in_transaction = false;
1006                 return true;
1007         }
1008
1009         /**
1010          * @brief Build the array with the table relations
1011          *
1012          * The array is build from the database definitions in dbstructure.php
1013          *
1014          * This process must only be started once, since the value is cached.
1015          */
1016         static private function build_relation_data() {
1017                 $definition = db_definition();
1018
1019                 foreach ($definition AS $table => $structure) {
1020                         foreach ($structure['fields'] AS $field => $field_struct) {
1021                                 if (isset($field_struct['relation'])) {
1022                                         foreach ($field_struct['relation'] AS $rel_table => $rel_field) {
1023                                                 self::$relation[$rel_table][$rel_field][$table][] = $field;
1024                                         }
1025                                 }
1026                         }
1027                 }
1028         }
1029
1030         /**
1031          * @brief Delete a row from a table
1032          *
1033          * @param string $table Table name
1034          * @param array $param parameter array
1035          * @param boolean $in_process Internal use: Only do a commit after the last delete
1036          * @param array $callstack Internal use: prevent endless loops
1037          *
1038          * @return boolean|array was the delete successfull? When $in_process is set: deletion data
1039          */
1040         static public function delete($table, $param, $in_process = false, &$callstack = array()) {
1041
1042                 $commands = array();
1043
1044                 // Create a key for the loop prevention
1045                 $key = $table.':'.implode(':', array_keys($param)).':'.implode(':', $param);
1046
1047                 // We quit when this key already exists in the callstack.
1048                 if (isset($callstack[$key])) {
1049                         return $commands;
1050                 }
1051
1052                 $callstack[$key] = true;
1053
1054                 $table = self::$dbo->escape($table);
1055
1056                 $commands[$key] = array('table' => $table, 'param' => $param);
1057
1058                 // To speed up the whole process we cache the table relations
1059                 if (count(self::$relation) == 0) {
1060                         self::build_relation_data();
1061                 }
1062
1063                 // Is there a relation entry for the table?
1064                 if (isset(self::$relation[$table])) {
1065                         // We only allow a simple "one field" relation.
1066                         $field = array_keys(self::$relation[$table])[0];
1067                         $rel_def = array_values(self::$relation[$table])[0];
1068
1069                         // Create a key for preventing double queries
1070                         $qkey = $field.'-'.$table.':'.implode(':', array_keys($param)).':'.implode(':', $param);
1071
1072                         // When the search field is the relation field, we don't need to fetch the rows
1073                         // This is useful when the leading record is already deleted in the frontend but the rest is done in the backend
1074                         if ((count($param) == 1) && ($field == array_keys($param)[0])) {
1075                                 foreach ($rel_def AS $rel_table => $rel_fields) {
1076                                         foreach ($rel_fields AS $rel_field) {
1077                                                 $retval = self::delete($rel_table, array($rel_field => array_values($param)[0]), true, $callstack);
1078                                                 $commands = array_merge($commands, $retval);
1079                                         }
1080                                 }
1081                         // We quit when this key already exists in the callstack.
1082                         } elseif (!isset($callstack[$qkey])) {
1083
1084                                 $callstack[$qkey] = true;
1085
1086                                 // Fetch all rows that are to be deleted
1087                                 $data = self::select($table, array($field), $param);
1088
1089                                 while ($row = self::fetch($data)) {
1090                                         // Now we accumulate the delete commands
1091                                         $retval = self::delete($table, array($field => $row[$field]), true, $callstack);
1092                                         $commands = array_merge($commands, $retval);
1093                                 }
1094
1095                                 self::close($data);
1096
1097                                 // Since we had split the delete command we don't need the original command anymore
1098                                 unset($commands[$key]);
1099                         }
1100                 }
1101
1102                 if (!$in_process) {
1103                         // Now we finalize the process
1104                         $do_transaction = !self::$in_transaction;
1105
1106                         if ($do_transaction) {
1107                                 self::transaction();
1108                         }
1109
1110                         $compacted = array();
1111                         $counter = array();
1112
1113                         foreach ($commands AS $command) {
1114                                 $condition = $command['param'];
1115                                 $array_element = each($condition);
1116                                 $array_key = $array_element['key'];
1117                                 if (is_int($array_key)) {
1118                                         $condition_string = " WHERE ".array_shift($condition);
1119                                 } else {
1120                                         $condition_string = " WHERE `".implode("` = ? AND `", array_keys($condition))."` = ?";
1121                                 }
1122
1123                                 if ((count($command['param']) > 1) || is_int($array_key)) {
1124                                         $sql = "DELETE FROM `".$command['table']."`".$condition_string;
1125                                         logger(self::replace_parameters($sql, $condition), LOGGER_DATA);
1126
1127                                         if (!self::e($sql, $condition)) {
1128                                                 if ($do_transaction) {
1129                                                         self::rollback();
1130                                                 }
1131                                                 return false;
1132                                         }
1133                                 } else {
1134                                         $key_table = $command['table'];
1135                                         $key_param = array_keys($command['param'])[0];
1136                                         $value = array_values($command['param'])[0];
1137
1138                                         // Split the SQL queries in chunks of 100 values
1139                                         // We do the $i stuff here to make the code better readable
1140                                         $i = $counter[$key_table][$key_param];
1141                                         if (count($compacted[$key_table][$key_param][$i]) > 100) {
1142                                                 ++$i;
1143                                         }
1144
1145                                         $compacted[$key_table][$key_param][$i][$value] = $value;
1146                                         $counter[$key_table][$key_param] = $i;
1147                                 }
1148                         }
1149                         foreach ($compacted AS $table => $values) {
1150                                 foreach ($values AS $field => $field_value_list) {
1151                                         foreach ($field_value_list AS $field_values) {
1152                                                 $sql = "DELETE FROM `".$table."` WHERE `".$field."` IN (".
1153                                                         substr(str_repeat("?, ", count($field_values)), 0, -2).");";
1154
1155                                                 logger(self::replace_parameters($sql, $field_values), LOGGER_DATA);
1156
1157                                                 if (!self::e($sql, $field_values)) {
1158                                                         if ($do_transaction) {
1159                                                                 self::rollback();
1160                                                         }
1161                                                         return false;
1162                                                 }
1163                                         }
1164                                 }
1165                         }
1166                         if ($do_transaction) {
1167                                 self::commit();
1168                         }
1169                         return true;
1170                 }
1171
1172                 return $commands;
1173         }
1174
1175         /**
1176          * @brief Updates rows
1177          *
1178          * Updates rows in the database. When $old_fields is set to an array,
1179          * the system will only do an update if the fields in that array changed.
1180          *
1181          * Attention:
1182          * Only the values in $old_fields are compared.
1183          * This is an intentional behaviour.
1184          *
1185          * Example:
1186          * We include the timestamp field in $fields but not in $old_fields.
1187          * Then the row will only get the new timestamp when the other fields had changed.
1188          *
1189          * When $old_fields is set to a boolean value the system will do this compare itself.
1190          * When $old_fields is set to "true" the system will do an insert if the row doesn't exists.
1191          *
1192          * Attention:
1193          * Only set $old_fields to a boolean value when you are sure that you will update a single row.
1194          * When you set $old_fields to "true" then $fields must contain all relevant fields!
1195          *
1196          * @param string $table Table name
1197          * @param array $fields contains the fields that are updated
1198          * @param array $condition condition array with the key values
1199          * @param array|boolean $old_fields array with the old field values that are about to be replaced (true = update on duplicate)
1200          *
1201          * @return boolean was the update successfull?
1202          */
1203         static public function update($table, $fields, $condition, $old_fields = array()) {
1204
1205                 $table = self::$dbo->escape($table);
1206
1207                 if (count($condition) > 0) {
1208                         $array_element = each($condition);
1209                         $array_key = $array_element['key'];
1210                         if (is_int($array_key)) {
1211                                 $condition_string = " WHERE ".array_shift($condition);
1212                         } else {
1213                                 $condition_string = " WHERE `".implode("` = ? AND `", array_keys($condition))."` = ?";
1214                         }
1215                 } else {
1216                         $condition_string = "";
1217                 }
1218
1219                 if (is_bool($old_fields)) {
1220                         $do_insert = $old_fields;
1221
1222                         $old_fields = self::select($table, array(), $condition, array('limit' => 1));
1223
1224                         if (is_bool($old_fields)) {
1225                                 if ($do_insert) {
1226                                         $values = array_merge($condition, $fields);
1227                                         return self::insert($table, $values, $do_insert);
1228                                 }
1229                                 $old_fields = array();
1230                         }
1231                 }
1232
1233                 $do_update = (count($old_fields) == 0);
1234
1235                 foreach ($old_fields AS $fieldname => $content) {
1236                         if (isset($fields[$fieldname])) {
1237                                 if ($fields[$fieldname] == $content) {
1238                                         unset($fields[$fieldname]);
1239                                 } else {
1240                                         $do_update = true;
1241                                 }
1242                         }
1243                 }
1244
1245                 if (!$do_update || (count($fields) == 0)) {
1246                         return true;
1247                 }
1248
1249                 $sql = "UPDATE `".$table."` SET `".
1250                         implode("` = ?, `", array_keys($fields))."` = ?".$condition_string;
1251
1252                 $params1 = array_values($fields);
1253                 $params2 = array_values($condition);
1254                 $params = array_merge_recursive($params1, $params2);
1255
1256                 return self::e($sql, $params);
1257         }
1258
1259         /**
1260          * @brief Select rows from a table
1261          *
1262          * @param string $table Table name
1263          * @param array $fields array of selected fields
1264          * @param array $condition array of fields for condition
1265          * @param array $params array of several parameters
1266          *
1267          * @return boolean|object If "limit" is equal "1" only a single row is returned, else a query object is returned
1268          *
1269          * Example:
1270          * $table = "item";
1271          * $fields = array("id", "uri", "uid", "network");
1272          * $condition = array("uid" => 1, "network" => 'dspr');
1273          * $params = array("order" => array("id", "received" => true), "limit" => 1);
1274          *
1275          * $data = dba::select($table, $fields, $condition, $params);
1276          */
1277         static public function select($table, $fields = array(), $condition = array(), $params = array()) {
1278                 if ($table == '') {
1279                         return false;
1280                 }
1281
1282                 if (count($fields) > 0) {
1283                         $select_fields = "`".implode("`, `", array_values($fields))."`";
1284                 } else {
1285                         $select_fields = "*";
1286                 }
1287
1288                 if (count($condition) > 0) {
1289                         $array_element = each($condition);
1290                         $array_key = $array_element['key'];
1291                         if (is_int($array_key)) {
1292                                 $condition_string = " WHERE ".array_shift($condition);
1293                         } else {
1294                                 $condition_string = " WHERE `".implode("` = ? AND `", array_keys($condition))."` = ?";
1295                         }
1296                 } else {
1297                         $condition_string = "";
1298                 }
1299
1300                 $param_string = '';
1301                 $single_row = false;
1302
1303                 if (isset($params['order'])) {
1304                         $param_string .= " ORDER BY ";
1305                         foreach ($params['order'] AS $fields => $order) {
1306                                 if (!is_int($fields)) {
1307                                         $param_string .= "`".$fields."` ".($order ? "DESC" : "ASC").", ";
1308                                 } else {
1309                                         $param_string .= "`".$order."`, ";
1310                                 }
1311                         }
1312                         $param_string = substr($param_string, 0, -2);
1313                 }
1314
1315                 if (isset($params['limit']) && is_int($params['limit'])) {
1316                         $param_string .= " LIMIT ".$params['limit'];
1317                         $single_row = ($params['limit'] == 1);
1318                 }
1319
1320                 if (isset($params['only_query']) && $params['only_query']) {
1321                         $single_row = !$params['only_query'];
1322                 }
1323
1324                 $sql = "SELECT ".$select_fields." FROM `".$table."`".$condition_string.$param_string;
1325
1326                 $result = self::p($sql, $condition);
1327
1328                 if (is_bool($result) || !$single_row) {
1329                         return $result;
1330                 } else {
1331                         $row = self::fetch($result);
1332                         self::close($result);
1333                         return $row;
1334                 }
1335         }
1336
1337
1338         /**
1339          * @brief Fills an array with data from a query
1340          *
1341          * @param object $stmt statement object
1342          * @return array Data array
1343          */
1344         static public function inArray($stmt, $do_close = true) {
1345                 if (is_bool($stmt)) {
1346                         return $stmt;
1347                 }
1348
1349                 $data = array();
1350                 while ($row = self::fetch($stmt)) {
1351                         $data[] = $row;
1352                 }
1353                 if ($do_close) {
1354                         self::close($stmt);
1355                 }
1356                 return $data;
1357         }
1358
1359         /**
1360          * @brief Closes the current statement
1361          *
1362          * @param object $stmt statement object
1363          * @return boolean was the close successfull?
1364          */
1365         static public function close($stmt) {
1366                 if (!is_object($stmt)) {
1367                         return false;
1368                 }
1369
1370                 switch (self::$dbo->driver) {
1371                         case 'pdo':
1372                                 return $stmt->closeCursor();
1373                         case 'mysqli':
1374                                 return $stmt->free_result();
1375                                 return $stmt->close();
1376                         case 'mysql':
1377                                 return mysql_free_result($stmt);
1378                 }
1379         }
1380 }
1381
1382 function printable($s) {
1383         $s = preg_replace("~([\x01-\x08\x0E-\x0F\x10-\x1F\x7F-\xFF])~",".", $s);
1384         $s = str_replace("\x00",'.',$s);
1385         if (x($_SERVER,'SERVER_NAME')) {
1386                 $s = escape_tags($s);
1387         }
1388         return $s;
1389 }
1390
1391 // Procedural functions
1392 function dbg($state) {
1393         global $db;
1394
1395         if ($db) {
1396                 $db->dbg($state);
1397         }
1398 }
1399
1400 function dbesc($str) {
1401         global $db;
1402
1403         if ($db && $db->connected) {
1404                 return($db->escape($str));
1405         } else {
1406                 return(str_replace("'","\\'",$str));
1407         }
1408 }
1409
1410 // Function: q($sql,$args);
1411 // Description: execute SQL query with printf style args.
1412 // Example: $r = q("SELECT * FROM `%s` WHERE `uid` = %d",
1413 //                   'user', 1);
1414 function q($sql) {
1415         global $db;
1416         $args = func_get_args();
1417         unset($args[0]);
1418
1419         if ($db && $db->connected) {
1420                 $sql = $db->clean_query($sql);
1421                 $sql = $db->any_value_fallback($sql);
1422                 $stmt = @vsprintf($sql,$args); // Disabled warnings
1423                 //logger("dba: q: $stmt", LOGGER_ALL);
1424                 if ($stmt === false)
1425                         logger('dba: vsprintf error: ' . print_r(debug_backtrace(),true), LOGGER_DEBUG);
1426
1427                 $db->log_index($stmt);
1428
1429                 return $db->q($stmt);
1430         }
1431
1432         /**
1433          *
1434          * This will happen occasionally trying to store the
1435          * session data after abnormal program termination
1436          *
1437          */
1438         logger('dba: no database: ' . print_r($args,true));
1439         return false;
1440 }
1441
1442 /**
1443  * @brief Performs a query with "dirty reads"
1444  *
1445  * By doing dirty reads (reading uncommitted data) no locks are performed
1446  * This function can be used to fetch data that doesn't need to be reliable.
1447  *
1448  * @param $args Query parameters (1 to N parameters of different types)
1449  * @return array Query array
1450  */
1451 function qu($sql) {
1452         global $db;
1453
1454         $args = func_get_args();
1455         unset($args[0]);
1456
1457         if ($db && $db->connected) {
1458                 $sql = $db->clean_query($sql);
1459                 $sql = $db->any_value_fallback($sql);
1460                 $stmt = @vsprintf($sql,$args); // Disabled warnings
1461                 if ($stmt === false)
1462                         logger('dba: vsprintf error: ' . print_r(debug_backtrace(),true), LOGGER_DEBUG);
1463
1464                 $db->log_index($stmt);
1465
1466                 $db->q("SET SESSION TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;");
1467                 $retval = $db->q($stmt);
1468                 $db->q("SET SESSION TRANSACTION ISOLATION LEVEL REPEATABLE READ;");
1469                 return $retval;
1470         }
1471
1472         /**
1473          *
1474          * This will happen occasionally trying to store the
1475          * session data after abnormal program termination
1476          *
1477          */
1478         logger('dba: no database: ' . print_r($args,true));
1479         return false;
1480 }
1481
1482 /**
1483  *
1484  * Raw db query, no arguments
1485  *
1486  */
1487 function dbq($sql) {
1488         global $db;
1489
1490         if ($db && $db->connected) {
1491                 $ret = $db->q($sql);
1492         } else {
1493                 $ret = false;
1494         }
1495         return $ret;
1496 }
1497
1498 // Caller is responsible for ensuring that any integer arguments to
1499 // dbesc_array are actually integers and not malformed strings containing
1500 // SQL injection vectors. All integer array elements should be specifically
1501 // cast to int to avoid trouble.
1502 function dbesc_array_cb(&$item, $key) {
1503         if (is_string($item))
1504                 $item = dbesc($item);
1505 }
1506
1507 function dbesc_array(&$arr) {
1508         if (is_array($arr) && count($arr)) {
1509                 array_walk($arr,'dbesc_array_cb');
1510         }
1511 }
1512
1513 function dba_timer() {
1514         return microtime(true);
1515 }