JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
CHANGED db.php API so it doesn't append WHERE for you
[wfpl.git] / db.php
1 <?php
2
3 #  Copyright (C) 2006 Jason Woofenden
4 #
5 #  This file is part of wfpl.
6 #
7 #  wfpl is free software; you can redistribute it and/or modify it under the
8 #  terms of the GNU Lesser General Public License as published by the Free
9 #  Software Foundation; either version 2.1 of the License, or (at your option)
10 #  any later version.
11 #
12 #  wfpl is distributed in the hope that it will be useful, but WITHOUT ANY
13 #  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 #  FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for
15 #  more details.
16 #
17 #  You should have received a copy of the GNU Lesser General Public License
18 #  along with wfpl; if not, write to the Free Software Foundation, Inc., 51
19 #  Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
20
21
22 require_once('code/wfpl/encode.php');
23 require_once('code/wfpl/format.php');
24
25 # db_connect() -- connect to a mysql database
26 #
27 # PARAMETERS:
28 #
29 #   database: the name of the database you want to connect to. Defaults to the
30 #   second-to-last part of the domain name. eg for foo.example.com it would be
31 #   "example".
32
33 #   user: username for connecting to the database. Defaults to
34 #   $GLOBALS['db_username'] or (if that's not set) "www".
35
36 #   password: password for connecting to the database. Defaults to
37 #   $GLOBALS['db_password'] or (if that's not set "".
38 #
39 # RETURNS:
40 #
41 #   the database connection handle. You'll only need this if you want to have
42 #   multiple databases open at once.
43
44 function db_connect($database = 'auto', $user = 'auto', $pass = 'auto', $host = 'localhost') {
45         if($database == 'auto') {
46                 if(isset($GLOBALS['db_name'])) {
47                         $database = $GLOBALS['db_name'];
48                 } else {
49                         $host = $_SERVER['SERVER_NAME'];
50                         $host = explode('.', $host);
51                         array_pop($host);
52                         $database = array_pop($host);
53                         unset($host);
54                 }
55         }
56
57         if($user == 'auto') {
58                 if(isset($GLOBALS['db_username'])) {
59                         $user = $GLOBALS['db_username'];
60                 } else {
61                         $user = 'www';
62                 }
63         }
64
65         if($pass == 'auto') {
66                 if(isset($GLOBALS['db_password'])) {
67                         $pass = $GLOBALS['db_password'];
68                 } else {
69                         $pass = '';
70                 }
71         }
72
73         $GLOBALS['wfpl_db_handle'] = mysql_connect($host, $user, $pass);
74         if(!$GLOBALS['wfpl_db_handle']) {
75                 die('Could not connect to the database: ' . mysql_error());
76         }
77
78         if(!mysql_select_db($database, $GLOBALS['wfpl_db_handle'])) {
79                 die("Couldn not access database \"$database\": " . mysql_error($GLOBALS['wfpl_db_handle']));
80         }
81
82         return $GLOBALS['wfpl_db_handle'];
83 }
84
85 # Unless you're doing something unusual like an ALTER TABLE don't call this directly
86 function db_send_query($sql) {
87         #echo("Sending query: " . enc_html($sql) . "<br>\n");
88         $result = mysql_query($sql, $GLOBALS['wfpl_db_handle']);
89         if(!$result) {
90                 die(enc_html('DATABASE ERROR: ' . mysql_error($GLOBALS['wfpl_db_handle']) . ' in the following query: ' . $sql));
91         }
92
93         return $result;
94 }
95
96 # All select queries use this to generate the where clause, so they can work
97 # like printf. Currently three % codes are supported:
98 #
99 # %%  put a % in the output
100 # %i  put an integer in the output (strips non-numeric digits, and puts in 0 if blank)
101 # %"  output double quotes, surrounding the variable which is encoded to be in there.
102 # %s  output encoded to be in double quotes, but don't output the quotes
103 #
104 # complex example: db_get_rows('mytable', 'id', 'where name=%" or company like "%%%s%%"', $name, $company_partial);
105
106 function db_printf($str) {
107         $args = func_get_args();
108         $args = array_slice($args, 1);
109         return _db_printf($str, $args);
110 }
111
112 # This function does the work, but takes the parameters in an array
113 function _db_printf($str, $args) {
114         $args = array_reverse($args); # because array_pop() takes from the end
115         $out = '';
116         while($str) {
117                 $pos = strpos($str, '%');
118                 if($pos === false) { # not found
119                         # we hit the end.
120                         return $out . $str;
121                 }
122                 # move everything up to (but not including) % to the output
123                 $out .= substr($str, 0, $pos);
124
125                 # grab the character after the %
126                 $chr = substr($str, $pos + 1, 1);
127
128                 # remove the stuff we've read from input
129                 $str = substr($str, $pos + 2);
130
131                 if($chr == '"') {
132                         $out .= '"' . enc_sql(array_pop($args)) . '"';
133                 } elseif($chr == 'i') {
134                         $int = format_int(array_pop($args));
135                         if($int == '') $int = '0';
136                         $out .= $int;
137                 } else {
138                         $out .= $chr;
139                 }
140         }
141
142         return $out;
143 }
144
145
146 function db_send_get($table, $columns, $where, $args) {
147         $sql = "SELECT $columns FROM $table";
148         if($where) {
149                 $sql .= ' ' . _db_printf($where, $args);
150         }
151
152         return db_send_query($sql);
153 }
154
155
156 function db_get_rows($table, $columns, $where = '') {
157         $args = func_get_args();
158         $args = array_slice($args, 3);
159         $result = db_send_get($table, $columns, $where, $args);
160
161         $rows = array();
162         while($row = mysql_fetch_row($result)) {
163                 $rows[] = $row;
164         }
165
166         mysql_free_result($result);
167
168         return $rows;
169 }
170
171 function db_get_column($table, $columns, $where = '') {
172         $args = func_get_args();
173         $args = array_slice($args, 3);
174         $result = db_send_get($table, $columns, $where, $args);
175
176         $column = array();
177         while($row = mysql_fetch_row($result)) {
178                 $column[] = $row[0];
179         }
180
181         mysql_free_result($result);
182
183         return $column;
184 }
185
186 function db_get_row($table, $columns, $where = '') {
187         $args = func_get_args();
188         $args = array_slice($args, 3);
189         $result = db_send_get($table, $columns, $where, $args);
190
191         $row = mysql_fetch_row($result);
192
193         mysql_free_result($result);
194
195         return $row;
196 }
197
198 function db_get_value($table, $columns, $where = '') {
199         $args = func_get_args();
200         $args = array_slice($args, 3);
201         $result = db_send_get($table, $columns, $where, $args);
202
203         $value = mysql_fetch_row($result);
204         if($value !== false) {
205                 $value = $value[0];
206         }
207
208         mysql_free_result($result);
209
210         return $value;
211 }
212
213 # call either of these ways:
214 #
215 # db_insert('people', 'name,company', 'jason', 'widgets ltd');
216 # or
217 # db_insert('people', 'name,company', array('jason', 'widgets ltd'));
218 function db_insert($table, $columns, $values) {
219         if(!is_array($values)) {
220                 $values = func_get_args();
221                 $values = array_slice($values, 2);
222         }
223         
224         db_insert_ish('INSERT', $table, $columns, $values);
225 }
226 # same as above, except uses the "replace" command instead of "insert"
227 function db_replace($table, $columns, $values) {
228         if(!is_array($values)) {
229                 $values = func_get_args();
230                 $values = array_slice($values, 2);
231         }
232         
233         db_insert_ish('REPLACE', $table, $columns, $values);
234 }
235         
236 # return the value mysql made up for the auto_increment field (for the last insert)
237 function db_auto_id() {
238         return mysql_insert_id($GLOBALS['wfpl_db_handle']);
239 }
240
241
242 # used to implement db_insert() and db_replace()
243 function db_insert_ish($command, $table, $columns, $values) {
244
245         $sql = '';
246         foreach($values as $value) {
247                 if($sql) $sql .= ',';
248                 $sql .= '"' . enc_sql($value) . '"';
249         }
250
251         $sql = "$command INTO $table ($columns) values($sql)";
252
253         db_send_query($sql);
254 }
255
256 # to be consistant with the syntax of the other db functions, $values can be an
257 # array, a single value, or multiple parameters.
258 #
259 # as usual the where clause stuff is optional, but it will ofcourse update the
260 # whole table if you leave it off.
261 #
262 # examples:
263 #
264 # # name everybody Bruce
265 # db_update('users', 'name', 'Bruce');
266 #
267 # # name user #6 Bruce
268 # db_update('users', 'name', 'Bruce', 'where id=%i', 6);
269 #
270 # # update the whole bit for user #6
271 # db_update('users', 'name,email,description', 'Bruce', 'bruce@example.com', 'is a cool guy', 'where id=%i', 6);
272 #
273 # # update the whole bit for user #6 (passing data as an array)
274 # $data = array('Bruce', 'bruce@example.com', 'is a cool guy');
275 # db_update('users', 'name,email,description', $data, 'where id=%i', 6);
276
277 # The prototype is really something like this:
278 # db_update(table, columns, values..., where(optional), where_args...(optional))
279 function db_update($table, $columns, $values) {
280         $args = func_get_args();
281         $args = array_slice($args, 2);
282         $columns = explode(',', $columns);
283         $num_fields = count($columns);
284
285         if(is_array($values)) {
286                 $args = array_slice($args, 1);
287         } else {
288                 $values = array_slice($args, 0, $num_fields);
289                 $args = array_slice($args, $num_fields);
290         }
291
292         $sql = '';
293         for($i = 0; $i < $num_fields; ++$i) {
294                 if($sql != '') {
295                         $sql .= ', ';
296                 }
297                 $sql .= $columns[$i] . ' = "' . enc_sql($values[$i]) . '"';
298         }
299
300
301         $sql = "UPDATE $table SET $sql";
302
303         # if there's any more arguments
304         if($args) {
305                 $where = $args[0];
306                 $args = array_slice($args, 1);
307
308                 $sql .= ' ';
309                 # any left for where claus arguments?
310                 if($args) {
311                         $sql .= _db_printf($where, $args);
312                 } else {
313                         $sql .= $where;
314                 }
315
316         }
317
318         db_send_query($sql);
319 }
320
321 # pass args for printf-style where clause as usual
322 function db_delete($table, $where = '') {
323         $sql = "DELETE FROM $table";
324         if($where) {
325                 $sql .= ' ';
326                 $args = func_get_args();
327                 $args = array_slice($args, 2);
328                 if($args) {
329                         $sql .= _db_printf($where, $args);
330                 } else {
331                         $sql .= $where;
332                 }
333         }
334
335         db_send_query($sql);
336 }
337
338 ?>