Global variables rewritten
[mailer.git] / inc / db / lib-mysql3.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/29/2004 *
4  * ===============                              Last change: 08/29/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : lib-mysql3.php                                   *
8  * -------------------------------------------------------------------- *
9  * Short description : Database layer for MySQL +3.x server             *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Datenbankschicht fuer MySQL +3.x Server          *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // SQL queries
41 function SQL_QUERY ($sql_string, $F, $L) {
42         global $link, $OK;
43
44         // Link is up?
45         if (!is_resource($link)) return false;
46
47         // Remove \t, \n and \r from queries they may confuse some MySQL version I have heard
48         $sql_string = str_replace("\t", " ", str_replace("\n", " ", str_replace("\r", " ", $sql_string)));
49
50         // Replace {!_MYSQL_PREFIX!} with constant, closes #84. Thanks to profi-concept
51         $sql_string = str_replace("{!_MYSQL_PREFIX!}", constant('_MYSQL_PREFIX'), $sql_string);
52
53         // Starting time
54         $querytimeBefore = array_sum(explode(' ', microtime()));
55
56         // Run SQL command
57         //* DEBUG: */ echo $sql_string."<br />\n";
58         $result = mysql_query($sql_string, $link)
59          or addFatalMessage($F." (".$L."):".mysql_error()."<br />
60 Query string:<br />
61 ".$sql_string);
62
63         // Ending time
64         $querytimeAfter = array_sum(explode(' ', microtime()));
65
66         // Calculate query time
67         $queryTime = $querytimeAfter - $querytimeBefore;
68
69         // Save last successfull query
70         setConfigEntry('db_last_query', $sql_string);
71
72         // Count this query
73         incrementConfigEntry('sql_count');
74
75         // Debug output
76         //* DEBUG: */ print "Query=<pre>".$sql_string."</pre>, affected=<strong>".SQL_AFFECTEDROWS()."</strong>, numrows=<strong>".SQL_NUMROWS($result)."</strong><br />\n";
77
78         if (($GLOBALS['output_mode'] != "1") && ($GLOBALS['output_mode'] != "-1") && (isBooleanConstantAndTrue('DEBUG_MODE')) && (isBooleanConstantAndTrue('DEBUG_SQL'))) {
79                 //
80                 // Debugging stuff...
81                 //
82                 $fp = fopen(constant('PATH')."inc/cache/mysql.log", 'a') or mxchange_die("Cannot write mysql.log!");
83                 if (!isset($OK)) {
84                         // Write first entry
85                         fwrite($fp, "Module=".$GLOBALS['module']."\n");
86                         $OK = true;
87                 } // END - if
88                 fwrite($fp, $F."(LINE=".$L."|NUM=".SQL_NUMROWS($result)."|AFFECTED=".SQL_AFFECTEDROWS()."|QUERYTIME:".$queryTime."): ".str_replace('\r', "", str_replace('\n', " ", $sql_string))."\n");
89                 fclose($fp);
90         } // END - if
91
92         // Count DB hits
93         if (!isConfigEntrySet('db_hits_run')) {
94                 // Count in dummy variable
95                 setConfigEntry('db_hits_run', 1);
96         } else {
97                 // Count to config array
98                 incrementConfigEntry('db_hits_run');
99         }
100
101         // Return the result
102         return $result;
103 }
104
105 // SQL num rows
106 function SQL_NUMROWS ($result) {
107         // Is the result a valid resource?
108         if (is_resource($result)) {
109                 // Get the count of rows from database
110                 $lines = mysql_num_rows($result);
111
112                 // Is the result empty? Then we have an error!
113                 if (empty($lines)) $lines = 0;
114         } else {
115                 // No resource given, no lines found!
116                 $lines = 0;
117         }
118         return $lines;
119 }
120
121 // SQL affected rows
122 function SQL_AFFECTEDROWS() {
123         global $link;
124
125         // Valid link resource?
126         if (!is_resource($link)) return false;
127
128         // Get affected rows
129         $lines = mysql_affected_rows($link);
130
131         // Return it
132         return $lines;
133 }
134
135 // SQL fetch row
136 function SQL_FETCHROW($result) {
137         // Init data
138         $DATA = array();
139
140         // Is a result resource set?
141         if (!is_resource($result)) return false;
142
143         $DATA = mysql_fetch_row($result);
144         return $DATA;
145 }
146
147 // SQL fetch array
148 function SQL_FETCHARRAY($res, $nr=0, $remove_numerical=true) {
149         // Is a result resource set?
150         if (!is_resource($res)) return false;
151
152         // Initialize array
153         $row = array();
154
155         // Load row from database
156         $row = mysql_fetch_array($res);
157
158         // Return only arrays here
159         if (is_array($row)) {
160                 // Shall we remove numerical data here automatically?
161                 if ($remove_numerical) {
162                                  // So let's remove all numerical elements to save memory!
163                         $max = count($row);
164                         for ($idx = 0; $idx < ($max / 2); $idx++) {
165                                 // Remove entry
166                                 unset($row[$idx]);
167                         } // END - for
168                 } // END - if
169
170                 // Return row
171                 return $row;
172         } else {
173                 // Return a false here...
174                 return false;
175         }
176 }
177
178 // SQL result
179 function SQL_RESULT ($res, $row, $field) {
180         $result = mysql_result($res, $row, $field);
181         return $result;
182 }
183
184 // SQL connect
185 function SQL_CONNECT ($host, $login, $password, $F, $L) {
186         $connect = mysql_connect($host, $login, $password) or addFatalMessage($F." (".$L."):".mysql_error());
187         return $connect;
188 }
189
190 // SQL select database
191 function SQL_SELECT_DB ($dbName, $link, $F, $L) {
192         // Is there still a valid link? If not, skip it.
193         if (!is_resource($link)) return false;
194
195         return mysql_select_db($dbName, $link) or addFatalMessage($F." (".$L."):".mysql_error());
196 }
197
198 // SQL close link
199 function SQL_CLOSE (&$link, $F, $L) {
200         if (!is_resource($link)) {
201                 // Skip double close
202                 return false;
203         } // END - if
204
205         // Do we need to update cache/db counter?
206         //* DEBUG: */ echo "DB=".getConfig('db_hits').",CACHE=".getConfig('cache_hits')."<br />\n";
207         if ((GET_EXT_VERSION("cache") >= "0.0.7") && (getConfig('db_hits') > 0) && (getConfig('cache_hits') > 0) && (is_object($GLOBALS['cache_instance']))) {
208                 // Add new hits
209                 incrementConfigEntry('db_hits', getConfig('db_hits_run'));
210
211                 // Update counter for db/cache
212                 UPDATE_CONFIG(array("db_hits", "cache_hits"), array(bigintval(getConfig('db_hits')), bigintval(getConfig('cache_hits'))));
213         } // END - if
214
215         // Close database link and forget the link
216         $close = mysql_close($link) or addFatalMessage($F." (".$L."):".mysql_error());
217         $link = null;
218         return $close;
219 }
220
221 // SQL free result
222 function SQL_FREERESULT ($result) {
223         if (!is_resource($result)) {
224                 // Abort here
225                 return false;
226         } // END - if
227
228         $res = mysql_free_result($result);
229         return $res;
230 }
231
232 // SQL string escaping
233 function SQL_QUERY_ESC ($qstring, $data, $F, $L, $run=true, $strip=true) {
234         global $link;
235
236         // Link is there?
237         if (!is_resource($link)) return false;
238
239         // Init variable
240         $query = "failed";
241
242         if ($strip) {
243                 $strip = "true";
244         } else {
245                 $strip = "false";
246         }
247
248         $eval = "\$query = sprintf(\"".$qstring."\"";
249         foreach ($data as $var) {
250                 if ((!empty($var)) || ($var === 0)) {
251                         $eval .= ", SQL_ESCAPE(\"".$var."\",true,".$strip.")";
252                 } else {
253                         $eval .= ", ''";
254                 }
255         } // END - foreach
256         $eval .= ");";
257         //
258         // Debugging
259         //
260         //* DEBUG: */ $fp = fopen(constant('PATH')."inc/cache/escape_debug.log", 'a') or mxchange_die("Cannot write debug.log!");
261         //* DEBUG: */ fwrite($fp, $F."(".$L."): ".str_replace("\r", "", str_replace("\n", " ", $eval))."\n");
262         //* DEBUG: */ fclose($fp);
263
264         // Run the code
265         eval($eval);
266
267         // Was the eval() command fine?
268         if ($query == "failed") {
269                 // Something went wrong?
270                 debug_report_bug("eval={$eval}");
271         } // END - if
272
273         if ($run === true) {
274                 // Run SQL query (default)
275                 return SQL_QUERY($query, $F, $L);
276         } else {
277                 // Return secured string
278                 return $query;
279         }
280 }
281
282 // Get ID from last INSERT command
283 function SQL_INSERTID () {
284         global $link;
285         if (!is_resource($link)) return false;
286         return mysql_insert_id();
287 }
288
289 // Escape a string for the database
290 function SQL_ESCAPE ($str, $secureString=true,$strip=true) {
291         global $link;
292
293         // Secure string first? (which is the default behaviour!)
294         if ($secureString) {
295                 // Then do it here
296                 $str = secureString($str, $strip);
297         } // END - if
298
299         if (!is_resource($link)) {
300                 // Fall-back to smartAddSlashes() when there is no link
301                 return smartAddSlashes($str);
302         } elseif (function_exists('mysql_real_escape_string')) {
303                 // The new and improved version
304                 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):str={$str}<br />\n";
305                 return mysql_real_escape_string($str, $link);
306         } elseif (function_exists('mysql_escape_string')) {
307                 // The obsolete function
308                 return mysql_escape_string($str, $link);
309         } else {
310                 // If nothing else works, fall back to smartAddSlashes()
311                 return smartAddSlashes($str);
312         }
313 }
314
315 // SELECT query string from table, columns and so on... ;-)
316 function SQL_RESULT_FROM_ARRAY ($table, $columns, $idRow, $id, $F, $L) {
317         // Is columns an array?
318         if (!is_array($columns)) {
319                 // No array
320                 trigger_error(sprintf("columns is not array. %s!=array", gettype($columns)));
321         } // END  - if
322
323         // Prepare the SQL statement
324         $SQL = "SELECT `".implode("`, `", $columns)."` FROM `{!_MYSQL_PREFIX!}_%s` WHERE ``='%s' LIMIT 1";
325
326         // Return the result
327         return SQL_QUERY_ESC($SQL,
328                 array(
329                         bigintval($id),
330                         $table,
331                         $idRow
332                 ), $F, $L);
333 }
334
335 // ALTER TABLE wrapper function
336 function SQL_ALTER_TABLE ($sql, $F, $L) {
337         // This is the default result...
338         $result = false;
339
340         // Determine index/fulltext/unique word
341         //         12     3             3         2    2     3                3         2    2     3              3         21
342         $noIndex = ((eregi("INDEX", $sql) == false) && (eregi("FULLTEXT", $sql) == false) && (eregi("UNIQUE", $sql) == false));
343
344         // Shall we add/drop?
345         if (((eregi("ADD", $sql) > 0) || (eregi("DROP", $sql) > 0)) && ($noIndex)) {
346                 // Extract table name
347                 $tableArray = explode(" ", $sql);
348                 $tableName = str_replace("`", "", $tableArray[2]);
349
350                 // And column name as well
351                 $columnName = str_replace("`", "", $tableArray[4]);
352
353                 // Get column information
354                 $result = SQL_QUERY_ESC("SHOW COLUMNS FROM %s LIKE '%s'",
355                         array($tableName, $columnName), $F, $L);
356
357                 // Do we have no entry on ADD or an entry on DROP?
358                 // 123           4       4     3    3     4           4    32    23           4       4     3    3     4            4    321
359                 if (((SQL_NUMROWS($result) == 0) && (eregi("ADD", $sql) > 0)) || ((SQL_NUMROWS($result) == 1) && (eregi("DROP", $sql) > 0))) {
360                         // Do the query
361                         $result = SQL_QUERY($sql, $F, $L, false);
362                 } // END - if
363         } else {
364                 // Send it to the SQL_QUERY() function
365                 $result = SQL_QUERY($sql, $F, $L, false);
366         }
367
368         // Return result
369         return $result;
370 }
371
372 //
373 ?>