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