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

Last change on this file since 122 was 119, checked in by scdev, 18 years ago

Q - making codebase 2 work with php5. Rewrote ImageThumb? class to work with GD

File size: 12.3 KB
RevLine 
[1]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>
[15]9 * @version 1.0.1
[1]10 */
[42]11
[1]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    );
[42]37
[1]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    );
[42]43
[1]44    // Caches.
45    var $existing_tables;
46    var $table_columns;
[42]47
[1]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    }
[42]65
[1]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    {
[119]87        if (!isset($_this) || !is_a($_this, 'DB') && !is_subclass_of($_this, 'DB')) {
88            $_this =& DB::getInstance();
[1]89        }
90
91        if (isset($params) && is_array($params)) {
92            // Merge new parameters with old overriding only those passed.
[119]93            $_this->_params = array_merge($_this->_params, $params);
[1]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    {
[119]110        if (!isset($_this) || !is_a($_this, 'DB') && !is_subclass_of($_this, 'DB')) {
111            $_this =& DB::getInstance();
[1]112        }
113
[119]114        if (isset($_this->_params[$param])) {
115            return $_this->_params[$param];
[1]116        } else {
117            App::logMsg(sprintf('Parameter is not set: %s', $param), LOG_DEBUG, __FILE__, __LINE__);
118            return null;
119        }
120    }
[42]121
[1]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    {
[119]131        if (!isset($_this) || !is_a($_this, 'DB') && !is_subclass_of($_this, 'DB')) {
132            $_this =& DB::getInstance();
[1]133        }
[42]134
[119]135        if (!$_this->getParam('db_name') || !$_this->getParam('db_user') || !$_this->getParam('db_pass')) {
[1]136            App::logMsg('Database credentials missing.', LOG_EMERG, __FILE__, __LINE__);
137            return false;
138        }
[42]139
[1]140        // Connect to database. Always create a new link to the server.
[119]141        if ($_this->dbh = mysql_connect($_this->getParam('db_server'), $_this->getParam('db_user'), $_this->getParam('db_pass'), true)) {
[1]142            // Select database
[119]143            mysql_select_db($_this->getParam('db_name'), $_this->dbh);
[1]144        }
[42]145
[15]146        // Test for connection errors.
[119]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.';
[15]149            App::logMsg($mysql_error_msg, LOG_EMERG, __FILE__, __LINE__);
150
151            // Print helpful or pretty error?
[119]152            if ($_this->getParam('db_debug')) {
[1]153                echo $mysql_error_msg . "\n";
154            } else {
155                echo _("This page is temporarily unavailable. It should be back up in a few minutes.");
156            }
[15]157
158            // Die or continue without connection?
[119]159            if ($_this->getParam('db_die_on_failure')) {
[15]160                echo "\n\n<!-- Script execution stopped out of embarrassment. -->";
161                die;
162            } else {
163                return false;
164            }
[1]165        }
[42]166
[1]167        // DB connection success!
[119]168        $_this->_connected = true;
[1]169
[10]170        // Tell MySQL what character set we're useing. Available only on MySQL verions > 4.01.01.
[119]171        $_this->query("/*!40101 SET NAMES '" . $_this->mysql_character_sets[strtolower(App::getParam('character_set'))] . "' */");
[10]172
[1]173        return true;
174    }
[42]175
[1]176    /**
177     * Close db connection.
178     *
179     * @access  public
180     * @author  Quinn Comendant <quinn@strangecode.com>
181     * @since   28 Aug 2005 14:32:01
182     */
183    function close()
184    {
[119]185        if (!isset($_this) || !is_a($_this, 'DB') && !is_subclass_of($_this, 'DB')) {
186            $_this =& DB::getInstance();
[1]187        }
[42]188
[119]189        if (!$_this->_connected) {
[1]190            return false;
191        }
192
[119]193        mysql_close($_this->dbh);
[1]194    }
[42]195
[1]196    /**
197     * Return the current database handler.
198     *
199     * @access  public
200     * @return  resource Current value of $this->dbh.
201     * @author  Quinn Comendant <quinn@strangecode.com>
202     * @since   20 Aug 2005 13:50:36
203     */
204    function getDBH()
205    {
[119]206        if (!isset($_this) || !is_a($_this, 'DB') && !is_subclass_of($_this, 'DB')) {
207            $_this =& DB::getInstance();
[1]208        }
[42]209
[119]210        if (!$_this->_connected) {
[1]211            return false;
212        }
213
[119]214        return $_this->dbh;
[1]215    }
[42]216
[1]217    /**
218     * Returns connection status
219     *
220     * @access  public
221     * @author  Quinn Comendant <quinn@strangecode.com>
222     * @since   28 Aug 2005 14:58:09
223     */
224    function isConnected()
225    {
226        return $this->_connected;
227    }
[71]228   
229    /**
230     * Returns a properly escaped string using mysql_real_escape_string() with the current connection's charset.
231     *
232     * @access  public
233     * @param   string  $string     Input string to be sent as SQL query.
234     * @return  string              Escaped string from mysql_real_escape_string()
235     * @author  Quinn Comendant <quinn@strangecode.com>
236     * @since   06 Mar 2006 16:41:32
237     */
238    function escapeString($string)
239    {
[119]240        if (!isset($_this) || !is_a($_this, 'DB') && !is_subclass_of($_this, 'DB')) {
241            $_this =& DB::getInstance();
[71]242        }
[119]243        return mysql_real_escape_string($string, $_this->dbh);
[71]244    }
[42]245
[1]246    /**
247     * A wrapper for mysql_query. Allows us to set the database link_identifier,
248     * to trap errors and ease debugging.
249     *
250     * @param  string  $query   The SQL query to execute
251     * @param  bool    $debug   If true, prints debugging info
252     * @return resource         Query identifier
253     */
254    function query($query, $debug=false)
255    {
256        static $_query_count = 0;
[42]257
[119]258        if (!isset($_this) || !is_a($_this, 'DB') && !is_subclass_of($_this, 'DB')) {
259            $_this =& DB::getInstance();
[1]260        }
[42]261
[119]262        if (!$_this->_connected) {
[1]263           return false;
264        }
265
266        $_query_count++;
267        $debugqry = preg_replace("/\n[\t ]+/", "\n", $query);
[119]268        if ($_this->getParam('db_always_debug') || $debug) {
[1]269            echo "<!-- ----------------- Query $_query_count ---------------------\n$debugqry\n-->\n";
270        }
[42]271
[1]272        // Execute!
[119]273        $qid = mysql_query($query, $_this->dbh);
[42]274
[1]275        // Error checking.
[119]276        if (!$qid || mysql_error($_this->dbh)) {
277            if ($_this->getParam('db_debug')) {
278                echo '<pre style="padding:2em; background:#ddd; font:9px monaco;">' . wordwrap(mysql_error($_this->dbh)) . '<hr>' . htmlspecialchars($debugqry) . '</pre>';
[1]279            } else {
280                echo _("This page is temporarily unavailable. It should be back up in a few minutes.");
281            }
[119]282            App::logMsg(sprintf('MySQL error %s: %s in query: %s', mysql_errno($_this->dbh), mysql_error($_this->dbh), $debugqry), LOG_EMERG, __FILE__, __LINE__);
283            if ($_this->getParam('db_die_on_failure')) {
[1]284                echo "\n\n<!-- Script execution stopped out of embarrassment. -->";
285                die;
286            }
287        }
[42]288
[1]289        return $qid;
290    }
291
292    /**
[42]293     * Loads a list of tables in the current database into an array, and returns
[1]294     * true if the requested table is found. Use this function to enable/disable
[42]295     * funtionality based upon the current available db tables or to dynamically
[1]296     * create tables if missing.
297     *
298     * @param  string $table    The name of the table to search.
299     * @param  bool   $strict   Get fresh table info (in case DB changed).
300     * @return bool    true if given $table exists.
301     */
302    function tableExists($table, $use_cached_results=true)
[42]303    {
[119]304        if (!isset($_this) || !is_a($_this, 'DB') && !is_subclass_of($_this, 'DB')) {
305            $_this =& DB::getInstance();
[1]306        }
[42]307
[119]308        if (!$_this->_connected) {
[1]309            return false;
310        }
311
[119]312        if (!isset($_this->existing_tables) || !$use_cached_results) {
313            $_this->existing_tables = array();
314            $qid = $_this->query("SHOW TABLES");
[1]315            while (list($row) = mysql_fetch_row($qid)) {
[119]316                $_this->existing_tables[] = $row;
[1]317            }
318        }
[119]319        if (in_array($table, $_this->existing_tables)) {
[1]320            return true;
321        } else {
[119]322            App::logMsg(sprintf('nonexistent DB table: %s.%s', $_this->getParam('db_name'), $table), LOG_ALERT, __FILE__, __LINE__);
[1]323            return false;
324        }
325    }
[42]326
[1]327    /**
328     * Tests if the given array of columns exists in the specified table.
329     *
330     * @param  string $table    The name of the table to search.
331     * @param  array  $columns  An array of column names.
332     * @param  bool   $strict   Exact schema match, or are additional fields in the table okay?
333     * @param  bool   $strict   Get fresh table info (in case DB changed).
334     * @return bool    true if given $table exists.
335     */
336    function columnExists($table, $columns, $strict=true, $use_cached_results=true)
[42]337    {
[119]338        if (!isset($_this) || !is_a($_this, 'DB') && !is_subclass_of($_this, 'DB')) {
339            $_this =& DB::getInstance();
[1]340        }
[42]341
[119]342        if (!$_this->_connected) {
[1]343            return false;
344        }
345
346        // Ensure the table exists.
[119]347        if (!$_this->tableExists($table, $use_cached_results)) {
[1]348            return false;
349        }
[42]350
[1]351        // For single-value columns.
352        if (!is_array($columns)) {
353            $columns = array($columns);
354        }
[42]355
[119]356        if (!isset($_this->table_columns[$table]) || !$use_cached_results) {
[1]357            // Populate and cache array of current columns for this table.
[119]358            $_this->table_columns[$table] = array();
359            $qid = $_this->query("DESCRIBE $table");
[1]360            while ($row = mysql_fetch_row($qid)) {
[119]361                $_this->table_columns[$table][] = $row[0];
[1]362            }
363        }
[42]364
[1]365        if ($strict) {
366            // Do an exact comparison of table schemas.
367            sort($columns);
[119]368            sort($_this->table_columns[$table]);
369            return $_this->table_columns[$table] == $columns;
[1]370        } else {
371            // Only check that the specified columns are available in the table.
[119]372            $match_columns = array_intersect($_this->table_columns[$table], $columns);
[1]373            sort($columns);
374            sort($match_columns);
375            return $match_columns == $columns;
376        }
377    }
[42]378
[1]379    /**
380     * Reset cached items.
381     *
382     * @access  public
383     * @author  Quinn Comendant <quinn@strangecode.com>
384     * @since   28 Aug 2005 22:10:50
385     */
386    function resetCache()
387    {
388        $this->existing_tables = null;
389        $this->table_columns = null;
390    }
[42]391
[1]392} // End.
393
394?>
Note: See TracBrowser for help on using the repository browser.