source: subversion/trunk/roundcubemail/program/include/rcube_mdb2.php @ 3993

Last change on this file since 3993 was 3993, checked in by thomasb, 3 years ago

Fix base url resolution + better order for condition checks in rcube_mdb2 + updated changelog

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 20.4 KB
Line 
1<?php
2
3/*
4 +-----------------------------------------------------------------------+
5 | program/include/rcube_mdb2.php                                        |
6 |                                                                       |
7 | This file is part of the Roundcube Webmail client                     |
8 | Copyright (C) 2005-2009, Roundcube Dev. - Switzerland                 |
9 | Licensed under the GNU GPL                                            |
10 |                                                                       |
11 | PURPOSE:                                                              |
12 |   PEAR:DB wrapper class that implements PEAR MDB2 functions           |
13 |   See http://pear.php.net/package/MDB2                                |
14 |                                                                       |
15 +-----------------------------------------------------------------------+
16 | Author: Lukas Kahwe Smith <smith@pooteeweet.org>                      |
17 +-----------------------------------------------------------------------+
18
19 $Id$
20
21*/
22
23
24/**
25 * Database independent query interface
26 *
27 * This is a wrapper for the PEAR::MDB2 class
28 *
29 * @package    Database
30 * @author     David Saez Padros <david@ols.es>
31 * @author     Thomas Bruederli <roundcube@gmail.com>
32 * @author     Lukas Kahwe Smith <smith@pooteeweet.org>
33 * @version    1.17
34 * @link       http://pear.php.net/package/MDB2
35 */
36class rcube_mdb2
37{
38    var $db_dsnw;               // DSN for write operations
39    var $db_dsnr;               // DSN for read operations
40    var $db_connected = false;  // Already connected ?
41    var $db_mode = '';          // Connection mode
42    var $db_handle = 0;         // Connection handle
43    var $db_error = false;
44    var $db_error_msg = '';
45
46    private $debug_mode = false;
47    private $a_query_results = array('dummy');
48    private $last_res_id = 0;
49    private $tables;
50
51
52    /**
53     * Object constructor
54     *
55     * @param  string  DSN for read/write operations
56     * @param  string  Optional DSN for read only operations
57     */
58    function __construct($db_dsnw, $db_dsnr='', $pconn=false)
59    {
60        if ($db_dsnr == '')
61            $db_dsnr = $db_dsnw;
62
63        $this->db_dsnw = $db_dsnw;
64        $this->db_dsnr = $db_dsnr;
65        $this->db_pconn = $pconn;
66
67        $dsn_array = MDB2::parseDSN($db_dsnw);
68        $this->db_provider = $dsn_array['phptype'];
69    }
70
71
72    /**
73     * Connect to specific database
74     *
75     * @param  string  DSN for DB connections
76     * @return object  PEAR database handle
77     * @access private
78     */
79    private function dsn_connect($dsn)
80    {
81        // Use persistent connections if available
82        $db_options = array(
83            'persistent'       => $this->db_pconn,
84            'emulate_prepared' => $this->debug_mode,
85            'debug'            => $this->debug_mode,
86            'debug_handler'    => 'mdb2_debug_handler',
87            'portability'      => MDB2_PORTABILITY_ALL ^ MDB2_PORTABILITY_EMPTY_TO_NULL);
88
89        if ($this->db_provider == 'pgsql') {
90            $db_options['disable_smart_seqname'] = true;
91            $db_options['seqname_format'] = '%s';
92        }
93
94        $dbh = MDB2::connect($dsn, $db_options);
95
96        if (MDB2::isError($dbh)) {
97            $this->db_error = true;
98            $this->db_error_msg = $dbh->getMessage();
99
100            raise_error(array('code' => 500, 'type' => 'db',
101                'line' => __LINE__, 'file' => __FILE__,
102                'message' => $dbh->getUserInfo()), true, false);
103        }
104        else if ($this->db_provider == 'sqlite') {
105            $dsn_array = MDB2::parseDSN($dsn);
106            if (!filesize($dsn_array['database']) && !empty($this->sqlite_initials))
107                $this->_sqlite_create_database($dbh, $this->sqlite_initials);
108        }
109        else if ($this->db_provider!='mssql' && $this->db_provider!='sqlsrv')
110            $dbh->setCharset('utf8');
111
112        return $dbh;
113    }
114
115
116    /**
117     * Connect to appropiate database depending on the operation
118     *
119     * @param  string  Connection mode (r|w)
120     * @access public
121     */
122    function db_connect($mode)
123    {
124        // Already connected
125        if ($this->db_connected) {
126            // connected to read-write db, current connection is ok
127            if ($this->db_mode == 'w')
128                return;
129
130            // no replication, current connection is ok for read and write
131            if (empty($this->db_dsnr) || $this->db_dsnw == $this->db_dsnr) {
132                $this->db_mode = 'w';
133                return;
134            }
135
136            // Same mode, current connection is ok
137            if ($this->db_mode == $mode)
138                return;
139        }
140
141        $dsn = ($mode == 'r') ? $this->db_dsnr : $this->db_dsnw;
142
143        $this->db_handle = $this->dsn_connect($dsn);
144        $this->db_connected = !PEAR::isError($this->db_handle);
145        $this->db_mode = $mode;
146    }
147
148
149    /**
150     * Activate/deactivate debug mode
151     *
152     * @param boolean True if SQL queries should be logged
153     * @access public
154     */
155    function set_debug($dbg = true)
156    {
157        $this->debug_mode = $dbg;
158        if ($this->db_connected) {
159            $this->db_handle->setOption('debug', $dbg);
160            $this->db_handle->setOption('emulate_prepared', $dbg);
161        }
162    }
163
164
165    /**
166     * Getter for error state
167     *
168     * @param  boolean  True on error
169     * @access public
170     */
171    function is_error()
172    {
173        return $this->db_error ? $this->db_error_msg : false;
174    }
175
176
177    /**
178     * Connection state checker
179     *
180     * @param  boolean  True if in connected state
181     * @access public
182     */
183    function is_connected()
184    {
185        return PEAR::isError($this->db_handle) ? false : $this->db_connected;
186    }
187
188
189    /**
190     * Execute a SQL query
191     *
192     * @param  string  SQL query to execute
193     * @param  mixed   Values to be inserted in query
194     * @return number  Query handle identifier
195     * @access public
196     */
197    function query()
198    {
199        $params = func_get_args();
200        $query = array_shift($params);
201
202        return $this->_query($query, 0, 0, $params);
203    }
204
205
206    /**
207     * Execute a SQL query with limits
208     *
209     * @param  string  SQL query to execute
210     * @param  number  Offset for LIMIT statement
211     * @param  number  Number of rows for LIMIT statement
212     * @param  mixed   Values to be inserted in query
213     * @return number  Query handle identifier
214     * @access public
215     */
216    function limitquery()
217    {
218        $params  = func_get_args();
219        $query   = array_shift($params);
220        $offset  = array_shift($params);
221        $numrows = array_shift($params);
222
223        return $this->_query($query, $offset, $numrows, $params);
224    }
225
226
227    /**
228     * Execute a SQL query with limits
229     *
230     * @param  string  SQL query to execute
231     * @param  number  Offset for LIMIT statement
232     * @param  number  Number of rows for LIMIT statement
233     * @param  array   Values to be inserted in query
234     * @return number  Query handle identifier
235     * @access private
236     */
237    private function _query($query, $offset, $numrows, $params)
238    {
239        // Read or write ?
240        $mode = (strtolower(substr(trim($query),0,6)) == 'select') ? 'r' : 'w';
241
242        $this->db_connect($mode);
243
244        // check connection before proceeding
245        if (!$this->is_connected())
246            return null;
247
248        if ($this->db_provider == 'sqlite')
249            $this->_sqlite_prepare();
250
251        if ($numrows || $offset)
252            $result = $this->db_handle->setLimit($numrows,$offset);
253
254        if (empty($params))
255            $result = $mode == 'r' ? $this->db_handle->query($query) : $this->db_handle->exec($query);
256        else {
257            $params = (array)$params;
258            $q = $this->db_handle->prepare($query, null, $mode=='w' ? MDB2_PREPARE_MANIP : null);
259            if ($this->db_handle->isError($q)) {
260                $this->db_error = true;
261                $this->db_error_msg = $q->userinfo;
262
263                raise_error(array('code' => 500, 'type' => 'db',
264                    'line' => __LINE__, 'file' => __FILE__,
265                    'message' => $this->db_error_msg), true, true);
266            }
267            else {
268                $result = $q->execute($params);
269                $q->free();
270            }
271        }
272
273        // add result, even if it's an error
274        return $this->_add_result($result);
275    }
276
277
278    /**
279     * Get number of rows for a SQL query
280     * If no query handle is specified, the last query will be taken as reference
281     *
282     * @param  number  Optional query handle identifier
283     * @return mixed   Number of rows or false on failure
284     * @access public
285     */
286    function num_rows($res_id=null)
287    {
288        if (!$this->db_handle)
289            return false;
290
291        if ($result = $this->_get_result($res_id))
292            return $result->numRows();
293        else
294            return false;
295    }
296
297
298    /**
299     * Get number of affected rows for the last query
300     *
301     * @param  number  Optional query handle identifier
302     * @return mixed   Number of rows or false on failure
303     * @access public
304     */
305    function affected_rows($res_id = null)
306    {
307        if (!$this->db_handle)
308            return false;
309
310        return (int) $this->_get_result($res_id);
311    }
312
313
314    /**
315     * Get last inserted record ID
316     * For Postgres databases, a sequence name is required
317     *
318     * @param  string  Table name (to find the incremented sequence)
319     * @return mixed   ID or false on failure
320     * @access public
321     */
322    function insert_id($table = '')
323    {
324        if (!$this->db_handle || $this->db_mode == 'r')
325            return false;
326
327        if ($table) {
328            if ($this->db_provider == 'pgsql')
329                // find sequence name
330                $table = get_sequence_name($table);
331            else
332                // resolve table name
333                $table = get_table_name($table);
334        }
335
336        $id = $this->db_handle->lastInsertID($table);
337
338        return $this->db_handle->isError($id) ? null : $id;
339    }
340
341
342    /**
343     * Get an associative array for one row
344     * If no query handle is specified, the last query will be taken as reference
345     *
346     * @param  number  Optional query handle identifier
347     * @return mixed   Array with col values or false on failure
348     * @access public
349     */
350    function fetch_assoc($res_id=null)
351    {
352        $result = $this->_get_result($res_id);
353        return $this->_fetch_row($result, MDB2_FETCHMODE_ASSOC);
354    }
355
356
357    /**
358     * Get an index array for one row
359     * If no query handle is specified, the last query will be taken as reference
360     *
361     * @param  number  Optional query handle identifier
362     * @return mixed   Array with col values or false on failure
363     * @access public
364     */
365    function fetch_array($res_id=null)
366    {
367        $result = $this->_get_result($res_id);
368        return $this->_fetch_row($result, MDB2_FETCHMODE_ORDERED);
369    }
370
371
372    /**
373     * Get col values for a result row
374     *
375     * @param  object  Query result handle
376     * @param  number  Fetch mode identifier
377     * @return mixed   Array with col values or false on failure
378     * @access private
379     */
380    private function _fetch_row($result, $mode)
381    {
382        if ($result === false || PEAR::isError($result) || !$this->is_connected())
383            return false;
384
385        return $result->fetchRow($mode);
386    }
387
388
389    /**
390     * Wrapper for the SHOW TABLES command
391     *
392     * @return array List of all tables of the current database
393     * @access public
394     * @since 0.4-beta
395     */
396    function list_tables()
397    {
398        // get tables if not cached
399        if (!$this->tables) {
400            $this->db_handle->loadModule('Manager');
401            if (!PEAR::isError($result = $this->db_handle->listTables()))
402                $this->tables = $result;
403            else
404                $this->tables = array();
405        }
406
407        return $this->tables;
408    }
409
410
411    /**
412     * Formats input so it can be safely used in a query
413     *
414     * @param  mixed   Value to quote
415     * @param  string  Type of data
416     * @return string  Quoted/converted string for use in query
417     * @access public
418     */
419    function quote($input, $type = null)
420    {
421        // handle int directly for better performance
422        if ($type == 'integer')
423            return intval($input);
424
425        // create DB handle if not available
426        if (!$this->db_handle)
427            $this->db_connect('r');
428
429        return $this->db_handle->quote($input, $type);
430    }
431
432
433    /**
434     * Quotes a string so it can be safely used as a table or column name
435     *
436     * @param  string  Value to quote
437     * @return string  Quoted string for use in query
438     * @deprecated     Replaced by rcube_MDB2::quote_identifier
439     * @see            rcube_mdb2::quote_identifier
440     * @access public
441     */
442    function quoteIdentifier($str)
443    {
444        return $this->quote_identifier($str);
445    }
446
447
448    /**
449     * Quotes a string so it can be safely used as a table or column name
450     *
451     * @param  string  Value to quote
452     * @return string  Quoted string for use in query
453     * @access public
454     */
455    function quote_identifier($str)
456    {
457        if (!$this->db_handle)
458            $this->db_connect('r');
459
460        return $this->db_handle->quoteIdentifier($str);
461    }
462
463
464    /**
465     * Escapes a string
466     *
467     * @param  string  The string to be escaped
468     * @return string  The escaped string
469     * @access public
470     * @since  0.1.1
471     */
472    function escapeSimple($str)
473    {
474        if (!$this->db_handle)
475            $this->db_connect('r');
476
477        return $this->db_handle->escape($str);
478    }
479
480
481    /**
482     * Return SQL function for current time and date
483     *
484     * @return string SQL function to use in query
485     * @access public
486     */
487    function now()
488    {
489        switch($this->db_provider) {
490            case 'mssql':
491            case 'sqlsrv':
492                return "getdate()";
493
494            default:
495                return "now()";
496        }
497    }
498
499
500    /**
501     * Return list of elements for use with SQL's IN clause
502     *
503     * @param  array  Input array
504     * @param  string Type of data
505     * @return string Comma-separated list of quoted values for use in query
506     * @access public
507     */
508    function array2list($arr, $type = null)
509    {
510        if (!is_array($arr))
511            return $this->quote($arr, $type);
512
513        foreach ($arr as $idx => $item)
514            $arr[$idx] = $this->quote($item, $type);
515
516        return implode(',', $arr);
517    }
518
519
520    /**
521     * Return SQL statement to convert a field value into a unix timestamp
522     *
523     * @param  string  Field name
524     * @return string  SQL statement to use in query
525     * @access public
526     */
527    function unixtimestamp($field)
528    {
529        switch($this->db_provider) {
530            case 'pgsql':
531                return "EXTRACT (EPOCH FROM $field)";
532
533            case 'mssql':
534            case 'sqlsrv':
535                return "DATEDIFF(second, '19700101', $field) + DATEDIFF(second, GETDATE(), GETUTCDATE())";
536
537            default:
538                return "UNIX_TIMESTAMP($field)";
539        }
540    }
541
542
543    /**
544     * Return SQL statement to convert from a unix timestamp
545     *
546     * @param  string  Field name
547     * @return string  SQL statement to use in query
548     * @access public
549     */
550    function fromunixtime($timestamp)
551    {
552        switch($this->db_provider) {
553            case 'mysqli':
554            case 'mysql':
555            case 'sqlite':
556                return sprintf("FROM_UNIXTIME(%d)", $timestamp);
557
558            default:
559                return date("'Y-m-d H:i:s'", $timestamp);
560        }
561    }
562
563
564    /**
565     * Return SQL statement for case insensitive LIKE
566     *
567     * @param  string  Field name
568     * @param  string  Search value
569     * @return string  SQL statement to use in query
570     * @access public
571     */
572    function ilike($column, $value)
573    {
574        // TODO: use MDB2's matchPattern() function
575        switch($this->db_provider) {
576            case 'pgsql':
577                return $this->quote_identifier($column).' ILIKE '.$this->quote($value);
578            default:
579                return $this->quote_identifier($column).' LIKE '.$this->quote($value);
580        }
581    }
582
583
584    /**
585     * Encodes non-UTF-8 characters in string/array/object (recursive)
586     *
587     * @param  mixed  Data to fix
588     * @return mixed  Properly UTF-8 encoded data
589     * @access public
590     */
591    function encode($input)
592    {
593        if (is_object($input)) {
594            foreach (get_object_vars($input) as $idx => $value)
595                $input->$idx = $this->encode($value);
596            return $input;
597        }
598        else if (is_array($input)) {
599            foreach ($input as $idx => $value)
600                $input[$idx] = $this->encode($value);
601            return $input;     
602        }
603
604        return utf8_encode($input);
605    }
606
607
608    /**
609     * Decodes encoded UTF-8 string/object/array (recursive)
610     *
611     * @param  mixed  Input data
612     * @return mixed  Decoded data
613     * @access public
614     */
615    function decode($input)
616    {
617        if (is_object($input)) {
618            foreach (get_object_vars($input) as $idx => $value)
619                $input->$idx = $this->decode($value);
620            return $input;
621        }
622        else if (is_array($input)) {
623            foreach ($input as $idx => $value)
624                $input[$idx] = $this->decode($value);
625            return $input;     
626        }
627
628        return utf8_decode($input);
629    }
630
631
632    /**
633     * Adds a query result and returns a handle ID
634     *
635     * @param  object  Query handle
636     * @return mixed   Handle ID
637     * @access private
638     */
639    private function _add_result($res)
640    {
641        // sql error occured
642        if (PEAR::isError($res)) {
643            $this->db_error = true;
644            $this->db_error_msg = $res->getMessage();
645            raise_error(array('code' => 500, 'type' => 'db',
646                'line' => __LINE__, 'file' => __FILE__,
647                'message' => $res->getMessage() . " Query: " 
648                . substr(preg_replace('/[\r\n]+\s*/', ' ', $res->userinfo), 0, 512)),
649                true, false);
650        }
651
652        $res_id = sizeof($this->a_query_results);
653        $this->last_res_id = $res_id;
654        $this->a_query_results[$res_id] = $res;
655        return $res_id;
656    }
657
658
659    /**
660     * Resolves a given handle ID and returns the according query handle
661     * If no ID is specified, the last resource handle will be returned
662     *
663     * @param  number  Handle ID
664     * @return mixed   Resource handle or false on failure
665     * @access private
666     */
667    private function _get_result($res_id = null)
668    {
669        if ($res_id == null)
670            $res_id = $this->last_res_id;
671
672        if (isset($this->a_query_results[$res_id]))
673            if (!PEAR::isError($this->a_query_results[$res_id]))
674                return $this->a_query_results[$res_id];
675
676        return false;
677    }
678
679
680    /**
681     * Create a sqlite database from a file
682     *
683     * @param  object  SQLite database handle
684     * @param  string  File path to use for DB creation
685     * @access private
686     */
687    private function _sqlite_create_database($dbh, $file_name)
688    {
689        if (empty($file_name) || !is_string($file_name))
690            return;
691
692        $data = file_get_contents($file_name);
693
694        if (strlen($data))
695            if (!sqlite_exec($dbh->connection, $data, $error) || MDB2::isError($dbh)) 
696                raise_error(array('code' => 500, 'type' => 'db',
697                    'line' => __LINE__, 'file' => __FILE__,
698                    'message' => $error), true, false); 
699    }
700
701
702    /**
703     * Add some proprietary database functions to the current SQLite handle
704     * in order to make it MySQL compatible
705     *
706     * @access private
707     */
708    private function _sqlite_prepare()
709    {
710        include_once('include/rcube_sqlite.inc');
711
712        // we emulate via callback some missing MySQL function
713        sqlite_create_function($this->db_handle->connection,
714            'from_unixtime', 'rcube_sqlite_from_unixtime');
715        sqlite_create_function($this->db_handle->connection,
716            'unix_timestamp', 'rcube_sqlite_unix_timestamp');
717        sqlite_create_function($this->db_handle->connection,
718            'now', 'rcube_sqlite_now');
719        sqlite_create_function($this->db_handle->connection,
720            'md5', 'rcube_sqlite_md5');
721    }
722
723}  // end class rcube_db
724
725
726/* this is our own debug handler for the MDB2 connection */
727function mdb2_debug_handler(&$db, $scope, $message, $context = array())
728{
729    if ($scope != 'prepare') {
730        $debug_output = sprintf('%s(%d): %s;',
731            $scope, $db->db_index, rtrim($message, ';'));
732        write_log('sql', $debug_output);
733    }
734}
735
Note: See TracBrowser for help on using the repository browser.