Security update merged from 2.1.
[fa-stable.git] / includes / db / connect_db.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12
13 function set_global_connection()
14 {
15         global $db;
16
17     if (isset($_SESSION["wa_current_user"]) && $_SESSION["wa_current_user"]->company !='')
18         $db = $_SESSION["wa_current_user"]->get_db_connection();
19     else
20         $db = null;
21 }
22
23 $db_duplicate_error_code = 1062;
24
25 //DB wrapper functions to change only once for whole application
26
27 function db_query($sql, $err_msg=null)
28 {
29         global $db, $show_sql, $sql_trail, $select_trail, $go_debug;
30         
31         //echo "<br>$sql<br>";
32         if ($show_sql)
33         {
34                 echo "<font face=arial size=2 color=000099><b>SQL..</b></font>";
35                 echo "<pre>";
36                 echo $sql;
37                 echo "</pre>\n";
38         }
39         
40
41         $result = mysql_query($sql, $db);
42         if($sql_trail) {
43                 if ($select_trail || (strstr($sql, 'SELECT') === false)) {
44                         mysql_query(
45                         "INSERT INTO ".TB_PREF."sql_trail
46                                 (`sql`, `result`, `msg`)
47                                 VALUES(".db_escape($sql).",".($result ? 1 : 0).",
48                                 ".db_escape($err_msg).")", $db);
49                 }
50         }
51
52         if ($err_msg != null || $go_debug) {
53                 $exit = $err_msg != null;
54                 if (function_exists('xdebug_call_file'))
55                         check_db_error('<br>At file '.xdebug_call_file().':'.xdebug_call_line().':<br>'.$err_msg, $sql, $exit);
56                 else
57                         check_db_error($err_msg, $sql, $exit);
58         }
59         return $result;
60 }
61
62 function db_fetch_row ($result)
63 {
64
65         return mysql_fetch_row($result);
66 }
67
68 function db_fetch_assoc ($result)
69 {
70
71         return mysql_fetch_assoc($result);
72 }
73
74 function db_fetch ($result)
75 {
76
77         return mysql_fetch_array($result);
78 }
79
80 function db_seek (&$result,$record)
81 {
82         return mysql_data_seek($result, $record);
83 }
84
85 function db_free_result ($result)
86 {
87         if ($result)
88                 mysql_free_result($result);
89 }
90
91 function db_num_rows (&$result)
92 {
93         return mysql_num_rows($result);
94 }
95
96 function db_num_fields ($result)
97 {
98         return mysql_num_fields($result);
99 }
100
101 function db_escape($value = "", $nullify = false)
102 {
103         $value = @html_entity_decode($value, ENT_QUOTES, $_SESSION['language']->encoding);
104         $value = @htmlspecialchars($value, ENT_QUOTES, $_SESSION['language']->encoding);
105
106         //reset default if second parameter is skipped
107         $nullify = ($nullify === null) ? (false) : ($nullify);
108
109         //check for null/unset/empty strings
110         if ((!isset($value)) || (is_null($value)) || ($value === "")) {
111                 $value = ($nullify) ? ("NULL") : ("''");
112         } else {
113                 if (is_string($value)) {
114                 //value is a string and should be quoted; determine best method based on available extensions
115                         if (function_exists('mysql_real_escape_string')) {
116                                 $value = "'" . mysql_real_escape_string($value) . "'";
117                         } else {
118                           $value = "'" . mysql_escape_string($value) . "'";
119                         }
120                 } else if (!is_numeric($value)) {
121                         //value is not a string nor numeric
122                         display_error("ERROR: incorrect data type send to sql query");
123                         echo '<br><br>';
124                         exit();
125                 }
126         }
127         return $value;
128 }
129
130 function db_error_no ()
131 {
132         global $db;
133         return mysql_errno($db);
134 }
135
136 function db_error_msg($conn)
137 {
138         return mysql_error($conn);
139 }
140
141 function db_insert_id()
142 {
143         global $db;
144         return mysql_insert_id($db);
145 }
146
147 function db_num_affected_rows()
148 {
149         global $db;
150         return mysql_affected_rows($db);
151 }
152
153 ?>