source: trunk/lib/DB.inc.php @ 1

Last change on this file since 1 was 1, checked in by scdev, 19 years ago

Initial import.

File size: 11.1 KB
Line 
1<?php
2/**
3 * DB.inc.php
4 * code by strangecode :: www.strangecode.com :: this document contains copyrighted information
5 *
6 * DB abstraction layer.
7 *
8 * @author  Quinn Comendant <quinn@strangecode.com>
9 * @version 1.0
10 */
11 
12class DB {
13
14    // If DB::connect has successfully opened a db connection.
15    var $_connected = false;
16
17    // Database handler.
18    var $dbh;
19
20    // Hash of DB parameters.
21    var $_params = array();
22
23    // Default parameters.
24    var $_param_defaults = array(
25
26        // DB passwords should be set as apache environment variables in httpd.conf, readable only by root.
27        'db_server' => 'localhost',
28        'db_name' => null,
29        'db_user' => null,
30        'db_pass' => null,
31
32        // Debugging.
33        'db_always_debug' => false, // TRUE = display all SQL queries.
34        'db_debug' => false, // TRUE = display db errors.
35        'db_die_on_failure' => false, // TRUE = script stops on db error.
36    );
37   
38    // Translate between HTML and MySQL character set names.
39    var $mysql_character_sets = array(
40        'utf-8' => 'utf8',
41        'iso-8859-1' => 'latin1',
42    );
43   
44    // Caches.
45    var $existing_tables;
46    var $table_columns;
47   
48    /**
49     * This method enforces the singleton pattern for this class.
50     *
51     * @return  object  Reference to the global SessionCache object.
52     * @access  public
53     * @static
54     */
55    function &getInstance()
56    {
57        static $instance = null;
58
59        if ($instance === null) {
60            $instance = new DB();
61        }
62
63        return $instance;
64    }
65   
66    /**
67     * Constructor.
68     */
69    function DB()
70    {
71        // Initialize default params.
72        if (isset($params) && is_array($params)) {
73            // Merge new parameters with old overriding only those passed.
74            $this->_params = array_merge($this->_params, $params);
75        }
76    }
77
78    /**
79     * Set (or overwrite existing) parameters by passing an array of new parameters.
80     *
81     * @access public
82     *
83     * @param  array    $params     Array of parameters (key => val pairs).
84     */
85    function setParam($params)
86    {
87        if (!is_a($this, 'DB')) {
88            $this =& DB::getInstance();
89        }
90
91        if (isset($params) && is_array($params)) {
92            // Merge new parameters with old overriding only those passed.
93            $this->_params = array_merge($this->_params, $params);
94        } else {
95            App::logMsg(sprintf('Parameters are not an array: %s', $params), LOG_ERR, __FILE__, __LINE__);
96        }
97    }
98
99    /**
100     * Return the value of a parameter.
101     *
102     * @access  public
103     *
104     * @param   string  $param      The key of the parameter to return.
105     *
106     * @return  mixed               Parameter value.
107     */
108    function getParam($param)
109    {
110        if (!is_a($this, 'DB')) {
111            $this =& DB::getInstance();
112        }
113
114        if (isset($this->_params[$param])) {
115            return $this->_params[$param];
116        } else {
117            App::logMsg(sprintf('Parameter is not set: %s', $param), LOG_DEBUG, __FILE__, __LINE__);
118            return null;
119        }
120    }
121   
122    /**
123     * Connect to database with credentials in params.
124     *
125     * @access  public
126     * @author  Quinn Comendant <quinn@strangecode.com>
127     * @since   28 Aug 2005 14:02:49
128     */
129    function connect()
130    {
131        if (!is_a($this, 'DB')) {
132            $this =& DB::getInstance();
133        }
134       
135        if (!$this->getParam('db_name') || !$this->getParam('db_user') || !$this->getParam('db_pass')) {
136            App::logMsg('Database credentials missing.', LOG_EMERG, __FILE__, __LINE__);
137            return false;
138        }
139       
140        // Connect to database. Always create a new link to the server.
141        if ($this->dbh = mysql_connect($this->getParam('db_server'), $this->getParam('db_user'), $this->getParam('db_pass'), true)) {   
142            // Select database
143            mysql_select_db($this->getParam('db_name'), $this->dbh);
144        }
145       
146        // Connection errors.
147        if (!$this->dbh || mysql_error($this->dbh)) {
148            $mysql_error_msg = $this->dbh ? 'Codebase MySQL error: (' . mysql_errno($this->dbh) . ') ' . mysql_error($this->dbh) : 'Codebase MySQL error: Could not connect to server.';
149            if ($this->getParam('db_debug')) {
150                echo $mysql_error_msg . "\n";
151            } else {
152                echo _("This page is temporarily unavailable. It should be back up in a few minutes.");
153            }
154            App::logMsg($mysql_error_msg, LOG_EMERG, __FILE__, __LINE__);
155            echo "\n\n<!-- Script execution stopped out of embarrassment. -->";
156            die;
157        }
158       
159        // DB connection success!
160        $this->_connected = true;
161
162        // Set the character set used for communicating with MySQL.
163        $this->query("SET NAMES '" . $this->mysql_character_sets[strtolower(App::getParam('character_set'))] . "'");
164       
165        return true;
166    }
167   
168    /**
169     * Close db connection.
170     *
171     * @access  public
172     * @author  Quinn Comendant <quinn@strangecode.com>
173     * @since   28 Aug 2005 14:32:01
174     */
175    function close()
176    {
177        if (!is_a($this, 'DB')) {
178            $this =& DB::getInstance();
179        }
180       
181        if (!$this->_connected) {
182            return false;
183        }
184
185        mysql_close($this->dbh);       
186    }
187   
188    /**
189     * Return the current database handler.
190     *
191     * @access  public
192     * @return  resource Current value of $this->dbh.
193     * @author  Quinn Comendant <quinn@strangecode.com>
194     * @since   20 Aug 2005 13:50:36
195     */
196    function getDBH()
197    {
198        if (!is_a($this, 'DB')) {
199            $this =& DB::getInstance();
200        }
201       
202        if (!$this->_connected) {
203            return false;
204        }
205
206        return $this->dbh;
207    }
208   
209    /**
210     * Returns connection status
211     *
212     * @access  public
213     * @author  Quinn Comendant <quinn@strangecode.com>
214     * @since   28 Aug 2005 14:58:09
215     */
216    function isConnected()
217    {
218        return $this->_connected;
219    }
220   
221    /**
222     * A wrapper for mysql_query. Allows us to set the database link_identifier,
223     * to trap errors and ease debugging.
224     *
225     * @param  string  $query   The SQL query to execute
226     * @param  bool    $debug   If true, prints debugging info
227     * @return resource         Query identifier
228     */
229    function query($query, $debug=false)
230    {
231        static $_query_count = 0;
232       
233        if (!is_a($this, 'DB')) {
234            $this =& DB::getInstance();
235        }
236       
237        if (!$this->_connected) {
238           return false;
239        }
240
241        $_query_count++;
242        $debugqry = preg_replace("/\n[\t ]+/", "\n", $query);
243        if ($this->getParam('db_always_debug') || $debug) {
244            echo "<!-- ----------------- Query $_query_count ---------------------\n$debugqry\n-->\n";
245        }
246       
247        // Execute!
248        $qid = mysql_query($query, $this->dbh);
249   
250        // Error checking.
251        if (!$qid || mysql_error($this->dbh)) {
252            if ($this->getParam('db_debug')) {
253                echo '<pre style="padding:2em; background:#ddd; font:9px monaco;">' . wordwrap(mysql_error($this->dbh)) . '<hr>' . htmlspecialchars($debugqry) . '</pre>';
254            } else {
255                echo _("This page is temporarily unavailable. It should be back up in a few minutes.");
256            }
257            App::logMsg(sprintf('MySQL error %s: %s in query: %s', mysql_errno($this->dbh), mysql_error($this->dbh), $debugqry), LOG_EMERG, __FILE__, __LINE__);
258            if ($this->getParam('db_die_on_failure')) {
259                echo "\n\n<!-- Script execution stopped out of embarrassment. -->";
260                die;
261            }
262        }
263   
264        return $qid;
265    }
266
267    /**
268     * Loads a list of tables in the current database into an array, and returns
269     * true if the requested table is found. Use this function to enable/disable
270     * funtionality based upon the current available db tables or to dynamically
271     * create tables if missing.
272     *
273     * @param  string $table    The name of the table to search.
274     * @param  bool   $strict   Get fresh table info (in case DB changed).
275     * @return bool    true if given $table exists.
276     */
277    function tableExists($table, $use_cached_results=true)
278    {   
279        if (!is_a($this, 'DB')) {
280            $this =& DB::getInstance();
281        }
282       
283        if (!$this->_connected) {
284            return false;
285        }
286
287        if (!isset($this->existing_tables) || !$use_cached_results) {
288            $this->existing_tables = array();
289            $qid = $this->query("SHOW TABLES");
290            while (list($row) = mysql_fetch_row($qid)) {
291                $this->existing_tables[] = $row;
292            }
293        }
294        if (in_array($table, $this->existing_tables)) {
295            return true;
296        } else {
297            App::logMsg(sprintf('nonexistent DB table: %s.%s', $this->getParam('db_name'), $table), LOG_ALERT, __FILE__, __LINE__);
298            return false;
299        }
300    }
301   
302    /**
303     * Tests if the given array of columns exists in the specified table.
304     *
305     * @param  string $table    The name of the table to search.
306     * @param  array  $columns  An array of column names.
307     * @param  bool   $strict   Exact schema match, or are additional fields in the table okay?
308     * @param  bool   $strict   Get fresh table info (in case DB changed).
309     * @return bool    true if given $table exists.
310     */
311    function columnExists($table, $columns, $strict=true, $use_cached_results=true)
312    {   
313        if (!is_a($this, 'DB')) {
314            $this =& DB::getInstance();
315        }
316       
317        if (!$this->_connected) {
318            return false;
319        }
320
321        // Ensure the table exists.
322        if (!$this->tableExists($table, $use_cached_results)) {
323            return false;
324        }
325       
326        // For single-value columns.
327        if (!is_array($columns)) {
328            $columns = array($columns);
329        }
330       
331        if (!isset($this->table_columns[$table]) || !$use_cached_results) {
332            // Populate and cache array of current columns for this table.
333            $this->table_columns[$table] = array();
334            $qid = $this->query("DESCRIBE $table");
335            while ($row = mysql_fetch_row($qid)) {
336                $this->table_columns[$table][] = $row[0];
337            }
338        }
339   
340        if ($strict) {
341            // Do an exact comparison of table schemas.
342            sort($columns);
343            sort($this->table_columns[$table]);
344            return $this->table_columns[$table] == $columns;
345        } else {
346            // Only check that the specified columns are available in the table.
347            $match_columns = array_intersect($this->table_columns[$table], $columns);
348            sort($columns);
349            sort($match_columns);
350            return $match_columns == $columns;
351        }
352    }
353   
354    /**
355     * Reset cached items.
356     *
357     * @access  public
358     * @author  Quinn Comendant <quinn@strangecode.com>
359     * @since   28 Aug 2005 22:10:50
360     */
361    function resetCache()
362    {
363        $this->existing_tables = null;
364        $this->table_columns = null;
365    }
366   
367} // End.
368
369?>
Note: See TracBrowser for help on using the repository browser.