a4618e8d84821bfd0e8ef1211a2aea342284f319
[fa-stable.git] / includes / errors.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 $messages = array(); // container for system messages
13 $before_box = ''; // temporary container for output html data before error box
14
15 function get_backtrace($html = false, $skip=0)
16 {
17         $str = '';
18         if ($html) $str .= '<table border=0>';
19         $trace = debug_backtrace();
20
21         foreach($trace as $trn => $tr) {
22                 if ($trn <= $skip) continue;
23                 if ($html) $str .= '<tr><td>';
24                 $str .= $tr['file'].':'.$tr['line'].': ';
25                 if ($html) $str .= '</td><td>';
26                 if (isset($tr['type'])) {
27                         if($tr['type'] == '::') {
28                                 $str .= $tr['class'].'::';
29                         } else if($tr['type'] == '->') {
30                                 $str .= '('.$tr['class'].' Object)'.'->';
31                         }
32                 }
33                 $str .= $tr['function'].'(';
34                 
35                 if(isset($tr['args']) && is_array($tr['args'])) {
36                         $args = array();
37                         foreach($tr['args'] as $n=>$a) {
38                                 if (is_object($tr['args'][$n]))
39                                         $args[$n] = "(".get_class($tr['args'][$n])." Object)";
40                                 elseif (is_array($tr['args'][$n]))
41                                         $args[$n] = "(Array[".count($tr['args'][$n])."])";
42                                 else
43                                         $args[$n] = "'".$tr['args'][$n]."'";
44                         }
45                         $str .= implode(',',$args);
46                 }
47                 $str .= ')</td>';
48         }
49
50         if ($html) $str .= '</tr></table>';
51         return $str;
52 }
53
54 //-----------------------------------------------------------------------------
55 //    Error handler - collects all php/user messages for
56 //    display in message box.
57
58 function error_handler($errno, $errstr, $file, $line) {
59     global $messages, $SysPrefs;
60
61         // skip well known warnings we don't care about.
62         // Please use restrainedly to not risk loss of important messages
63         $excluded_warnings = array(
64                 'html_entity_decode',                           // nevermind encodings, special chars are processed anyway
65                 'should be compatible with that',       // ignore cpdf/frontreport wrapper warnings
66                 'mysql extension is deprecated'         // ignore strict warning in 5.4
67         );
68         foreach($excluded_warnings as $ref) {
69                 if (strpos($errstr, $ref) !== false) {
70                         return true;
71                 }
72         }
73
74         $bt = isset($SysPrefs) && $SysPrefs->go_debug>1 ? get_backtrace(true, 1) : array();
75
76         // error_reporting==0 when messages are set off with @ 
77         if ($errno & error_reporting()) {
78                 // suppress duplicated errors
79                 if (!in_array(array($errno, $errstr, $file, $line, @$bt), $messages))
80                         $messages[] = array($errno, $errstr, $file, $line, @$bt);
81         }
82         else if ($errno&~E_NOTICE && $errstr != '') { // log all not displayed messages 
83                 $user = @$_SESSION["wa_current_user"]->loginname;
84                 $context = isset($SysPrefs) && !$SysPrefs->db_ok ? '[before upgrade]' : '';
85                 error_log(user_company() . ":$user:". basename($file) .":$line:$context $errstr");
86         }
87         
88     return true;
89 }
90
91 function exception_handler($exception)
92 {
93         error_handler(E_ERROR, sprintf(_("Unhandled exception [%s]: %s."), $exception->getCode(), $exception->getMessage()),
94                  $exception->getFile(), $exception->getLine());
95         end_page();
96 }
97 //------------------------------------------------------------------------------
98 //      Formats system messages before insert them into message <div>
99 // FIX center is unused now
100 function fmt_errors($center=false) {
101     global $messages, $path_to_root, $SysPrefs;
102
103         $msg_class = array(
104                 E_USER_ERROR => 'err_msg',
105                 E_USER_WARNING =>'warn_msg', 
106                 E_USER_NOTICE => 'note_msg');
107
108         $type = E_USER_NOTICE;
109         $content = '';
110
111         if (count($messages)) {
112                 foreach($messages as $cnt=>$msg) {
113                         if ($SysPrefs->go_debug && $msg[0]>E_USER_NOTICE)
114                                 $msg[0] = E_ERROR;
115
116                         if ($msg[0]>$type) continue;
117
118                         if ($msg[0]<$type) { 
119                                 if ($msg[0] == E_USER_WARNING) {
120                                         $type = E_USER_WARNING; // user warnings 
121                                         $content = '';                  // clean notices when we have errors
122                                 } else  {
123                                         $type = E_USER_ERROR;   // php or user errors 
124                                         if($type == E_USER_WARNING)
125                                                 $content = '';                  // clean other messages
126                                 }
127                         }
128
129                 $str = $msg[1];
130                         if (!in_array($msg[0], array(E_USER_NOTICE, E_USER_ERROR, E_USER_WARNING)) && $msg[2] != null)
131                                 $str .= ' '._('in file').': '.$msg[2].' '._('at line ').$msg[3];
132
133                         if ($SysPrefs->go_debug>1 && $type!=E_USER_NOTICE && $type!=E_USER_WARNING)
134                                 $str .= '<br>'.$msg[4];
135                         $content .= ($cnt ? '<hr>' : '').$str;
136                 }
137                 $class = $msg_class[$type];
138         $content = "<div class='$class'>$content</div>";
139         } elseif ($path_to_root=='.')
140                 return '';
141         return $content;
142 }
143 //-----------------------------------------------------------------------------
144 // Error box <div> element.
145 //
146 function error_box() {
147     global $before_box;
148     
149     echo "<div id='msgbox'>";
150
151         // Necessary restart instead of get_contents/clean calls due to a bug in php 4.3.2
152         $before_box = ob_get_clean(); // save html content before error box 
153     ob_start('output_html');
154     echo "</div>";
155 }
156 /*
157         Helper to avoid sparse log notices.
158 */
159 function end_flush() {
160         global $Ajax;
161
162         if (isset($Ajax))
163                 $Ajax->run();
164
165          // on some (but not all) php versions zlib extension adds 1 additional level of buffering, 
166          // so flush the last buffer outside the loop to be on safe side 
167         while(ob_get_level() > 1)
168                 ob_end_flush();
169         @ob_end_flush();
170
171         // if any transaction was aborted unexpectedly rollback changes
172         cancel_transaction();
173 }
174
175 function display_db_error($msg, $sql_statement=null, $exit=true)
176 {
177         global $db, $SysPrefs, $db_connections;
178
179         $warning = $msg==null;
180         $db_error = db_error_no();
181         
182         if($warning)
183                 $str = "<b>" . _("Debug mode database warning:") . "</b><br>";
184         else
185                 $str = "<b>" . _("DATABASE ERROR :") . "</b> $msg<br>";
186         
187         if ($db_error != 0) 
188         {
189                 $str .= "error code : " . $db_error . "<br>";
190                 $str .= "error message : " . db_error_msg($db) . "<br>";
191         }
192         
193         if ($SysPrefs->debug == 1) 
194         {
195                 $cur_prefix = $db_connections[$_SESSION["wa_current_user"]->cur_con]['tbpref'];
196
197                 $str .= "sql that failed was : ".str_replace(TB_PREF, $cur_prefix, $sql_statement)."<br>";
198         }
199         
200         $str .= "<br><br>";
201         if (!$SysPrefs->go_debug)
202                 error_log($str);
203         else {
204                 if($msg)
205                         trigger_error($str, E_USER_ERROR);
206                 else    // $msg can be null here only in debug mode, otherwise the error is ignored
207                         trigger_error($str, E_USER_WARNING);
208         }
209         if ($exit)
210                 exit;
211 }
212
213 function frindly_db_error($db_error)
214 {
215         if ($db_error == DB_DUPLICATE_ERROR) 
216         {
217                 display_error(_("The entered information is a duplicate. Please go back and enter different values."));
218                 return true;
219         }
220         
221         return false;
222 }
223
224 function check_db_error($msg, $sql_statement, $exit_if_error=true, $rollback_if_error=true)
225 {
226         global $db, $SysPrefs;
227         $db_error = db_error_no();
228         
229         if ($db_error != 0) 
230         {
231                 
232                 if ($SysPrefs->go_debug || !frindly_db_error($db_error)) {
233                         display_db_error($msg, $sql_statement, false);
234                 }
235                 
236                 if ($rollback_if_error) 
237                 {
238                         $rollback_result = db_query("rollback");
239                 }
240                 
241                 if ($exit_if_error) 
242                 {
243                         end_page(); exit;
244                 }
245         }
246         return $db_error;
247 }
248