]> git.mxchange.org Git - friendica.git/blob - include/dba.php
you and me babe
[friendica.git] / include / dba.php
1 <?php
2
3 // MySQL database class
4 //
5 // For debugging, insert 'dbg(x);' anywhere in the program flow.
6 // x = 1: display db success/failure following content
7 // x = 2: display full queries following content
8 // x = 3: display full queries using echo; which will mess up display
9 //        really bad but will return output in stubborn cases.
10  
11 if(! class_exists('dba')) { 
12 class dba {
13
14         private $debug = 0;
15         private $db;
16
17         function __construct($server,$user,$pass,$db,$install = false) {
18                 $this->db = @new mysqli($server,$user,$pass,$db);
19                 if((mysqli_connect_errno()) && (! install))
20                         system_unavailable();    
21         }
22
23         public function getdb() {
24                 return $this->db;
25         }
26
27         public function q($sql) {
28                 global $debug_text;
29                 
30                 if(! $this->db )
31                         return false;
32                 
33                 $result = @$this->db->query($sql);
34
35                 if($this->debug) {
36
37                         $mesg = '';
38
39                         if($this->db->mysqli->errno)
40                                 $debug_text .=  $this->db->mysqli->error . EOL;
41
42                         if($result === false)
43                                 $mesg = 'false';
44                         elseif($result === true)
45                                 $mesg = 'true';
46                         else
47                                 $mesg = $result->num_rows.' results' . EOL;
48         
49                         $str =  'SQL = ' . printable($sql) . EOL . 'SQL returned ' . $mesg . EOL;
50
51                         switch($this->debug) {
52                                 case 3:
53                                         echo $str;
54                                         break;
55                                 default:
56                                         $debug_text .= $str;
57                                         break;
58                         }
59                 }
60
61                 if(($result === true) || ($result === false))
62                         return $result;
63
64                 $r = array();
65                 if($result->num_rows) {
66                         while($x = $result->fetch_array(MYSQL_ASSOC))
67                                 $r[] = $x;
68                         $result->free_result();
69                 }
70     
71                 if($this->debug == 2)
72                         $debug_text .= printable(print_r($r, true). EOL);
73                 elseif($this->debug == 3)
74                         echo printable(print_r($r, true) . EOL) ;
75
76                 return($r);
77         }
78
79         public function dbg($dbg) {
80                 $this->debug = $dbg;
81         }
82
83         public function escape($str) {
84                 return @$this->db->real_escape_string($str);
85         }
86
87         function __destruct() {
88                 @$this->db->close();
89         }
90 }}
91
92 if(! function_exists('printable')) {
93 function printable($s) {
94         $s = preg_replace("~([\x01-\x08\x0E-\x0F\x10-\x1F\x7F-\xFF])~",".", $s);
95         $s = str_replace("\x00",'.',$s);
96         if(x($_SERVER,'SERVER_NAME'))
97                 $s = escape_tags($s);
98         return $s;
99 }}
100
101 // Procedural functions
102 if(! function_exists('dbg')) { 
103 function dbg($state) {
104         global $db;
105         $db->dbg($state);
106 }}
107
108 if(! function_exists('dbesc')) { 
109 function dbesc($str) {
110         global $db;
111         return($db->escape($str));
112 }}
113
114
115 // Function: q($sql,$args);
116 // Description: execute SQL query with printf style args.
117 // Example: $r = q("SELECT * FROM `%s` WHERE `uid` = %d",
118 //                   'user', 1);
119
120 if(! function_exists('q')) { 
121 function q($sql) {
122
123         global $db;
124         $args = func_get_args();
125         unset($args[0]);
126         $ret = $db->q(vsprintf($sql,$args));
127         return $ret;
128 }}
129
130
131 // Caller is responsible for ensuring that any integer arguments to 
132 // dbesc_array are actually integers and not malformed strings containing
133 // SQL injection vectors. All integer array elements should be specifically 
134 // cast to int to avoid trouble. 
135
136
137 if(! function_exists('dbesc_array_cb')) {
138 function dbesc_array_cb(&$item, $key) {
139         if(is_string($item))
140                 $item = dbesc($item);
141 }}
142
143
144 if(! function_exists('dbesc_array')) {
145 function dbesc_array(&$arr) {
146         if(is_array($arr) && count($arr)) {
147                 array_walk($arr,'dbesc_array_cb');
148         }
149 }}