3 require_once('include/datetime.php');
9 * For debugging, insert 'dbg(1);' anywhere in the program flow.
10 * dbg(0); will turn it off. Logging is performed at LOGGER_DATA level.
11 * When logging, all binary info is converted to text and html entities are escaped so that
12 * the debugging stream is safe to view within both terminals and web pages.
16 if(! class_exists('dba')) {
21 public $mysqli = true;
22 public $connected = false;
23 public $error = false;
25 function __construct($server,$user,$pass,$db,$install = false) {
27 $server = trim($server);
32 if (!(strlen($server) && strlen($user))){
33 $this->connected = false;
39 if(strlen($server) && ($server !== 'localhost') && ($server !== '127.0.0.1')) {
40 if(! dns_get_record($server, DNS_A + DNS_CNAME + DNS_PTR)) {
41 $this->error = sprintf( t('Cannot locate DNS info for database server \'%s\''), $server);
42 $this->connected = false;
49 if(class_exists('mysqli')) {
50 $this->db = @new mysqli($server,$user,$pass,$db);
51 if(! mysqli_connect_errno()) {
52 $this->connected = true;
56 $this->mysqli = false;
57 $this->db = mysql_connect($server,$user,$pass);
58 if($this->db && mysql_select_db($db,$this->db)) {
59 $this->connected = true;
62 if(! $this->connected) {
69 public function getdb() {
73 public function q($sql) {
75 if((! $this->db) || (! $this->connected))
79 $result = @$this->db->query($sql);
81 $result = @mysql_query($sql,$this->db);
89 logger('dba: ' . $this->db->error);
91 elseif(mysql_errno($this->db))
92 logger('dba: ' . mysql_error($this->db));
96 elseif($result === true)
100 $mesg = $result->num_rows . ' results' . EOL;
102 $mesg = mysql_num_rows($result) . ' results' . EOL;
105 $str = 'SQL = ' . printable($sql) . EOL . 'SQL returned ' . $mesg . EOL;
107 logger('dba: ' . $str );
111 * If dbfail.out exists, we will write any failed calls directly to it,
112 * regardless of any logging that may or may nor be in effect.
113 * These usually indicate SQL syntax errors that need to be resolved.
116 if($result === false) {
117 logger('dba: ' . printable($sql) . ' returned false.');
118 if(file_exists('dbfail.out'))
119 file_put_contents('dbfail.out', datetime_convert() . "\n" . printable($sql) . ' returned false' . "\n", FILE_APPEND);
122 if(($result === true) || ($result === false))
127 if($result->num_rows) {
128 while($x = $result->fetch_array(MYSQLI_ASSOC))
130 $result->free_result();
134 if(mysql_num_rows($result)) {
135 while($x = mysql_fetch_array($result, MYSQL_ASSOC))
137 mysql_free_result($result);
143 logger('dba: ' . printable(print_r($r, true)));
147 public function dbg($dbg) {
151 public function escape($str) {
152 if($this->db && $this->connected) {
154 return @$this->db->real_escape_string($str);
156 return @mysql_real_escape_string($str,$this->db);
160 function __destruct() {
165 mysql_close($this->db);
169 if(! function_exists('printable')) {
170 function printable($s) {
171 $s = preg_replace("~([\x01-\x08\x0E-\x0F\x10-\x1F\x7F-\xFF])~",".", $s);
172 $s = str_replace("\x00",'.',$s);
173 if(x($_SERVER,'SERVER_NAME'))
174 $s = escape_tags($s);
178 // Procedural functions
179 if(! function_exists('dbg')) {
180 function dbg($state) {
186 if(! function_exists('dbesc')) {
187 function dbesc($str) {
189 if($db && $db->connected)
190 return($db->escape($str));
192 return(str_replace("'","\\'",$str));
197 // Function: q($sql,$args);
198 // Description: execute SQL query with printf style args.
199 // Example: $r = q("SELECT * FROM `%s` WHERE `uid` = %d",
202 if(! function_exists('q')) {
206 $args = func_get_args();
209 if($db && $db->connected) {
210 $stmt = vsprintf($sql,$args);
212 logger('dba: vsprintf error: ' . print_r(debug_backtrace(),true));
213 return $db->q($stmt);
218 * This will happen occasionally trying to store the
219 * session data after abnormal program termination
222 logger('dba: no database: ' . print_r($args,true));
229 * Raw db query, no arguments
233 if(! function_exists('dbq')) {
237 if($db && $db->connected)
245 // Caller is responsible for ensuring that any integer arguments to
246 // dbesc_array are actually integers and not malformed strings containing
247 // SQL injection vectors. All integer array elements should be specifically
248 // cast to int to avoid trouble.
251 if(! function_exists('dbesc_array_cb')) {
252 function dbesc_array_cb(&$item, $key) {
254 $item = dbesc($item);
258 if(! function_exists('dbesc_array')) {
259 function dbesc_array(&$arr) {
260 if(is_array($arr) && count($arr)) {
261 array_walk($arr,'dbesc_array_cb');