Merge pull request #17857 from demeritcowboy/membershiptest-5.28
[civicrm-core.git] / CRM / Core / Error.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 * Start of the Error framework. We should check out and inherit from
14 * PEAR_ErrorStack and use that framework
15 *
16 * @package CRM
ca5cec67 17 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
18 */
19
20require_once 'PEAR/ErrorStack.php';
21require_once 'PEAR/Exception.php';
dcc4f6a7 22require_once 'CRM/Core/Exception.php';
6a488035 23
df8de0eb
SL
24require_once 'Log.php';
25
a0ee3941
EM
26/**
27 * Class CRM_Core_Error
28 */
6a488035
TO
29class CRM_Core_Error extends PEAR_ErrorStack {
30
31 /**
0880a9d0 32 * Status code of various types of errors.
6a488035 33 */
7da04cde
TO
34 const FATAL_ERROR = 2;
35 const DUPLICATE_CONTACT = 8001;
36 const DUPLICATE_CONTRIBUTION = 8002;
37 const DUPLICATE_PARTICIPANT = 8003;
6a488035
TO
38
39 /**
40 * We only need one instance of this object. So we use the singleton
41 * pattern and cache the instance in this variable
42 * @var object
6a488035
TO
43 */
44 private static $_singleton = NULL;
45
46 /**
d09edf64 47 * The logger object for this application.
6a488035 48 * @var object
6a488035
TO
49 */
50 private static $_log = NULL;
51
52 /**
53 * If modeException == true, errors are raised as exception instead of returning civicrm_errors
518fa0ee 54 * @var bool
6a488035
TO
55 */
56 public static $modeException = NULL;
57
58 /**
100fef9d 59 * Singleton function used to manage this object.
6a488035 60 *
dd244018
EM
61 * @param null $package
62 * @param bool $msgCallback
63 * @param bool $contextCallback
64 * @param bool $throwPEAR_Error
65 * @param string $stackClass
66 *
30208fab 67 * @return CRM_Core_Error
6a488035 68 */
2aa397bc 69 public static function &singleton($package = NULL, $msgCallback = FALSE, $contextCallback = FALSE, $throwPEAR_Error = FALSE, $stackClass = 'PEAR_ErrorStack') {
6a488035
TO
70 if (self::$_singleton === NULL) {
71 self::$_singleton = new CRM_Core_Error('CiviCRM');
72 }
73 return self::$_singleton;
74 }
75
76 /**
0880a9d0 77 * Constructor.
6a488035 78 */
00be9182 79 public function __construct() {
6a488035
TO
80 parent::__construct('CiviCRM');
81
82 $log = CRM_Core_Config::getLog();
83 $this->setLogger($log);
84
a6272a48 85 // PEAR<=1.9.0 does not declare "static" properly.
be2fb01f
CW
86 if (!is_callable(['PEAR', '__callStatic'])) {
87 $this->setDefaultCallback([$this, 'handlePES']);
a6272a48
TO
88 }
89 else {
be2fb01f 90 PEAR_ErrorStack::setDefaultCallback([$this, 'handlePES']);
a6272a48 91 }
6a488035
TO
92 }
93
a0ee3941
EM
94 /**
95 * @param $error
96 * @param string $separator
97 *
98 * @return array|null|string
99 */
518fa0ee 100 public static function getMessages(&$error, $separator = '<br />') {
6a488035
TO
101 if (is_a($error, 'CRM_Core_Error')) {
102 $errors = $error->getErrors();
be2fb01f 103 $message = [];
6a488035
TO
104 foreach ($errors as $e) {
105 $message[] = $e['code'] . ': ' . $e['message'];
106 }
107 $message = implode($separator, $message);
108 return $message;
109 }
31176a73
SP
110 elseif (is_a($error, 'Civi\Payment\Exception\PaymentProcessorException')) {
111 return $error->getMessage();
112 }
6a488035
TO
113 return NULL;
114 }
115
dbddfb08 116 /**
0880a9d0 117 * Status display function specific to payment processor errors.
dbddfb08
EM
118 * @param $error
119 * @param string $separator
120 */
00be9182 121 public static function displaySessionError(&$error, $separator = '<br />') {
6a488035
TO
122 $message = self::getMessages($error, $separator);
123 if ($message) {
124 $status = ts("Payment Processor Error message") . "{$separator} $message";
125 $session = CRM_Core_Session::singleton();
126 $session->setStatus($status);
127 }
128 }
129
130 /**
100fef9d 131 * Create the main callback method. this method centralizes error processing.
6a488035
TO
132 *
133 * the errors we expect are from the pear modules DB, DB_DataObject
134 * which currently use PEAR::raiseError to notify of error messages.
135 *
3bdca100 136 * @param object $pearError PEAR_Error
6a488035
TO
137 */
138 public static function handle($pearError) {
2b2c4099
TO
139 if (defined('CIVICRM_TEST')) {
140 return self::simpleHandler($pearError);
141 }
6a488035
TO
142
143 // setup smarty with config, session and template location.
144 $template = CRM_Core_Smarty::singleton();
145 $config = CRM_Core_Config::singleton();
146
147 if ($config->backtrace) {
148 self::backtrace();
149 }
150
151 // create the error array
ca8416c8 152 $error = self::getErrorDetails($pearError);
2e4ade96
TO
153
154 // We access connection info via _DB_DATAOBJECT instead
155 // of, e.g., calling getDatabaseConnection(), so that we
156 // can avoid infinite loops.
157 global $_DB_DATAOBJECT;
158
0828e4ad 159 if (isset($_DB_DATAOBJECT['CONFIG']['database'])) {
6a488035 160 $dao = new CRM_Core_DAO();
6a488035
TO
161 if (isset($_DB_DATAOBJECT['CONNECTIONS'][$dao->_database_dsn_md5])) {
162 $conn = $_DB_DATAOBJECT['CONNECTIONS'][$dao->_database_dsn_md5];
6a488035 163
0828e4ad
TO
164 // FIXME: Polymorphism for the win.
165 if ($conn instanceof DB_mysqli) {
166 $link = $conn->connection;
167 if (mysqli_error($link)) {
168 $mysql_error = mysqli_error($link) . ', ' . mysqli_errno($link);
518fa0ee
SL
169 // execute a dummy query to clear error stack
170 mysqli_query($link, 'select 1');
0828e4ad
TO
171 }
172 }
173 elseif ($conn instanceof DB_mysql) {
174 if (mysql_error()) {
175 $mysql_error = mysql_error() . ', ' . mysql_errno();
518fa0ee
SL
176 // execute a dummy query to clear error stack
177 mysql_query('select 1');
0828e4ad
TO
178 }
179 }
180 else {
181 $mysql_error = 'fixme-unknown-db-cxn';
6a488035 182 }
0828e4ad 183 $template->assign_by_ref('mysql_code', $mysql_error);
6a488035
TO
184 }
185 }
186
67bb87ed
MW
187 // Use the custom fatalErrorHandler if defined
188 if ($config->fatalErrorHandler && function_exists($config->fatalErrorHandler)) {
189 $name = $config->fatalErrorHandler;
190 $vars = [
191 'pearError' => $pearError,
192 ];
193 $ret = $name($vars);
194 if ($ret) {
195 // the call has been successfully handled so we just exit
196 self::abend(CRM_Core_Error::FATAL_ERROR);
197 }
198 }
199
6a488035
TO
200 $template->assign_by_ref('error', $error);
201 $errorDetails = CRM_Core_Error::debug('', $error, FALSE);
202 $template->assign_by_ref('errorDetails', $errorDetails);
203
120f8e64 204 CRM_Core_Error::debug_var('Fatal Error Details', $error, TRUE, TRUE, '', PEAR_LOG_ERR);
6a488035
TO
205 CRM_Core_Error::backtrace('backTrace', TRUE);
206
207 if ($config->initialized) {
208 $content = $template->fetch('CRM/common/fatal.tpl');
209 echo CRM_Utils_System::theme($content);
210 }
211 else {
212 echo "Sorry. A non-recoverable error has occurred. The error trace below might help to resolve the issue<p>";
213 CRM_Core_Error::debug(NULL, $error);
214 }
3a210ec0
E
215 static $runOnce = FALSE;
216 if ($runOnce) {
217 exit;
218 }
219 $runOnce = TRUE;
67bb87ed 220 self::abend(CRM_Core_Error::FATAL_ERROR);
6a488035
TO
221 }
222
a0ee3941 223 /**
4f1f1f2a
CW
224 * this function is used to trap and print errors
225 * during system initialization time. Hence the error
226 * message is quite ugly
227 *
a0ee3941
EM
228 * @param $pearError
229 */
6a488035
TO
230 public static function simpleHandler($pearError) {
231
ca8416c8 232 $error = self::getErrorDetails($pearError);
233
234 // ensure that debug does not check permissions since we are in bootstrap
235 // mode and need to print a decent message to help the user
236 CRM_Core_Error::debug('Initialization Error', $error, TRUE, TRUE, FALSE);
237
238 // always log the backtrace to a file
239 self::backtrace('backTrace', TRUE);
240
241 exit(0);
242 }
243
244 /**
245 * this function is used to return error details
246 *
247 * @param $pearError
248 *
249 * @return array $error
250 */
251 public static function getErrorDetails($pearError) {
6a488035 252 // create the error array
be2fb01f 253 $error = [];
353ffa53
TO
254 $error['callback'] = $pearError->getCallback();
255 $error['code'] = $pearError->getCode();
256 $error['message'] = $pearError->getMessage();
257 $error['mode'] = $pearError->getMode();
6a488035 258 $error['debug_info'] = $pearError->getDebugInfo();
353ffa53
TO
259 $error['type'] = $pearError->getType();
260 $error['user_info'] = $pearError->getUserInfo();
261 $error['to_string'] = $pearError->toString();
6a488035 262
ca8416c8 263 return $error;
6a488035
TO
264 }
265
266 /**
267 * Handle errors raised using the PEAR Error Stack.
268 *
269 * currently the handler just requests the PES framework
270 * to push the error to the stack (return value PEAR_ERRORSTACK_PUSH).
271 *
272 * Note: we can do our own error handling here and return PEAR_ERRORSTACK_IGNORE.
273 *
274 * Also, if we do not return any value the PEAR_ErrorStack::push() then does the
275 * action of PEAR_ERRORSTACK_PUSHANDLOG which displays the errors on the screen,
276 * since the logger set for this error stack is 'display' - see CRM_Core_Config::getLog();
ea3ddccf 277 *
278 * @param mixed $pearError
279 *
280 * @return int
6a488035
TO
281 */
282 public static function handlePES($pearError) {
283 return PEAR_ERRORSTACK_PUSH;
284 }
285
286 /**
0880a9d0 287 * Display an error page with an error message describing what happened.
6a488035 288 *
c6b9b29d
CB
289 * @deprecated
290 * This is a really annoying function. We ❤ exceptions. Be exceptional!
291 *
292 * @see CRM-20181
293 *
6a0b768e
TO
294 * @param string $message
295 * The error message.
296 * @param string $code
297 * The error code if any.
298 * @param string $email
299 * The email address to notify of this situation.
77b97be7
EM
300 *
301 * @throws Exception
6a488035 302 */
00be9182 303 public static function fatal($message = NULL, $code = NULL, $email = NULL) {
33968e94 304 CRM_Core_Error::deprecatedFunctionWarning('throw new CRM_Core_Exception or use CRM_Core_Error::statusBounce', 'CRM_Core_Error::fatal');
be2fb01f 305 $vars = [
84509850 306 'message' => $message,
6a488035 307 'code' => $code,
be2fb01f 308 ];
6a488035
TO
309
310 if (self::$modeException) {
311 // CRM-11043
120f8e64 312 CRM_Core_Error::debug_var('Fatal Error Details', $vars, TRUE, TRUE, '', PEAR_LOG_ERR);
6a488035
TO
313 CRM_Core_Error::backtrace('backTrace', TRUE);
314
315 $details = 'A fatal error was triggered';
316 if ($message) {
317 $details .= ': ' . $message;
2aa397bc 318 }
6a488035
TO
319 throw new Exception($details, $code);
320 }
321
322 if (!$message) {
be2fb01f 323 $message = ts('We experienced an unexpected error. You may have found a bug. For more information on how to provide a bug report, please read: %1', [1 => 'https://civicrm.org/bug-reporting']);
6a488035
TO
324 }
325
326 if (php_sapi_name() == "cli") {
327 print ("Sorry. A non-recoverable error has occurred.\n$message \n$code\n$email\n\n");
0c4a3d8b 328 // Fix for CRM-16899
4c68cf7b 329 echo static::formatBacktrace(debug_backtrace());
6a488035
TO
330 die("\n");
331 // FIXME: Why doesn't this call abend()?
332 // Difference: abend() will cleanup transaction and (via civiExit) store session state
333 // self::abend(CRM_Core_Error::FATAL_ERROR);
334 }
335
336 $config = CRM_Core_Config::singleton();
337
338 if ($config->fatalErrorHandler &&
339 function_exists($config->fatalErrorHandler)
340 ) {
341 $name = $config->fatalErrorHandler;
342 $ret = $name($vars);
343 if ($ret) {
344 // the call has been successfully handled
345 // so we just exit
346 self::abend(CRM_Core_Error::FATAL_ERROR);
347 }
348 }
349
25dc2153
PH
350 if ($config->backtrace) {
351 self::backtrace();
352 }
353
120f8e64 354 CRM_Core_Error::debug_var('Fatal Error Details', $vars, TRUE, TRUE, '', PEAR_LOG_ERR);
25dc2153
PH
355 CRM_Core_Error::backtrace('backTrace', TRUE);
356
34866662
CW
357 // If we are in an ajax callback, format output appropriately
358 if (CRM_Utils_Array::value('snippet', $_REQUEST) === CRM_Core_Smarty::PRINT_JSON) {
be2fb01f 359 $out = [
34866662
CW
360 'status' => 'fatal',
361 'content' => '<div class="messages status no-popup"><div class="icon inform-icon"></div>' . ts('Sorry but we are not able to provide this at the moment.') . '</div>',
be2fb01f 362 ];
34866662
CW
363 if ($config->backtrace && CRM_Core_Permission::check('view debug output')) {
364 $out['backtrace'] = self::parseBacktrace(debug_backtrace());
365 $message .= '<p><em>See console for backtrace</em></p>';
366 }
1528ac1d 367 CRM_Core_Session::setStatus($message, ts('Sorry an error occurred'), 'error');
34866662
CW
368 CRM_Core_Transaction::forceRollbackIfEnabled();
369 CRM_Core_Page_AJAX::returnJsonResponse($out);
370 }
371
6a488035
TO
372 $template = CRM_Core_Smarty::singleton();
373 $template->assign($vars);
f431d51f 374 $config->userSystem->outputError($template->fetch('CRM/common/fatal.tpl'));
6a488035
TO
375
376 self::abend(CRM_Core_Error::FATAL_ERROR);
377 }
378
379 /**
0880a9d0 380 * Display an error page with an error message describing what happened.
6a488035
TO
381 *
382 * This function is evil -- it largely replicates fatal(). Hopefully the
383 * entire CRM_Core_Error system can be hollowed out and replaced with
384 * something that follows a cleaner separation of concerns.
385 *
386 * @param Exception $exception
6a488035 387 */
00be9182 388 public static function handleUnhandledException($exception) {
4b57bc9f
EM
389 try {
390 CRM_Utils_Hook::unhandledException($exception);
0db6c3e1
TO
391 }
392 catch (Exception $other) {
4b57bc9f 393 // if the exception-handler generates an exception, then that sucks! oh, well. carry on.
120f8e64 394 CRM_Core_Error::debug_var('handleUnhandledException_nestedException', self::formatTextException($other), TRUE, TRUE, '', PEAR_LOG_ERR);
4b57bc9f 395 }
6a488035 396 $config = CRM_Core_Config::singleton();
be2fb01f 397 $vars = [
6a488035
TO
398 'message' => $exception->getMessage(),
399 'code' => NULL,
400 'exception' => $exception,
be2fb01f 401 ];
6a488035 402 if (!$vars['message']) {
be2fb01f 403 $vars['message'] = ts('We experienced an unexpected error. You may have found a bug. For more information on how to provide a bug report, please read: %1', [1 => 'https://civicrm.org/bug-reporting']);
6a488035
TO
404 }
405
406 // Case A: CLI
407 if (php_sapi_name() == "cli") {
408 printf("Sorry. A non-recoverable error has occurred.\n%s\n", $vars['message']);
409 print self::formatTextException($exception);
410 die("\n");
411 // FIXME: Why doesn't this call abend()?
412 // Difference: abend() will cleanup transaction and (via civiExit) store session state
413 // self::abend(CRM_Core_Error::FATAL_ERROR);
414 }
415
416 // Case B: Custom error handler
417 if ($config->fatalErrorHandler &&
418 function_exists($config->fatalErrorHandler)
419 ) {
420 $name = $config->fatalErrorHandler;
421 $ret = $name($vars);
422 if ($ret) {
423 // the call has been successfully handled
424 // so we just exit
425 self::abend(CRM_Core_Error::FATAL_ERROR);
426 }
427 }
428
429 // Case C: Default error handler
430
431 // log to file
120f8e64 432 CRM_Core_Error::debug_var('Fatal Error Details', $vars, FALSE, TRUE, '', PEAR_LOG_ERR);
6a488035
TO
433 CRM_Core_Error::backtrace('backTrace', TRUE);
434
435 // print to screen
436 $template = CRM_Core_Smarty::singleton();
437 $template->assign($vars);
f431d51f 438 $content = $template->fetch('CRM/common/fatal.tpl');
2dae8a18 439
6a488035
TO
440 if ($config->backtrace) {
441 $content = self::formatHtmlException($exception) . $content;
442 }
2dae8a18
AT
443
444 echo CRM_Utils_System::theme($content);
6a488035
TO
445
446 // fin
447 self::abend(CRM_Core_Error::FATAL_ERROR);
448 }
449
450 /**
100fef9d 451 * Outputs pre-formatted debug information. Flushes the buffers
6a488035
TO
452 * so we can interrupt a potential POST/redirect
453 *
3bdca100 454 * @param string $name name of debug section
455 * @param $variable mixed reference to variables that we need a trace of
456 * @param bool $log should we log or return the output
457 * @param bool $html whether to generate a HTML-escaped output
458 * @param bool $checkPermission should we check permissions before displaying output
90154ece
DL
459 * useful when we die during initialization and permissioning
460 * subsystem is not initialized - CRM-13765
6a488035 461 *
a6c01b45
CW
462 * @return string
463 * the generated output
6a488035 464 */
00be9182 465 public static function debug($name, $variable = NULL, $log = TRUE, $html = TRUE, $checkPermission = TRUE) {
6a488035
TO
466 $error = self::singleton();
467
468 if ($variable === NULL) {
469 $variable = $name;
470 $name = NULL;
471 }
472
473 $out = print_r($variable, TRUE);
474 $prefix = NULL;
475 if ($html) {
476 $out = htmlspecialchars($out);
477 if ($name) {
478 $prefix = "<p>$name</p>";
479 }
480 $out = "{$prefix}<p><pre>$out</pre></p><p></p>";
481 }
482 else {
483 if ($name) {
484 $prefix = "$name:\n";
485 }
486 $out = "{$prefix}$out\n";
487 }
90154ece
DL
488 if (
489 $log &&
490 (!$checkPermission || CRM_Core_Permission::check('view debug output'))
491 ) {
6a488035
TO
492 echo $out;
493 }
494
495 return $out;
496 }
497
498 /**
499 * Similar to the function debug. Only difference is
500 * in the formatting of the output.
501 *
c490a46a 502 * @param string $variable_name
6b5c5203 503 * Variable name.
c490a46a 504 * @param mixed $variable
6b5c5203 505 * Variable value.
6a0b768e 506 * @param bool $print
6b5c5203 507 * Use print_r (if true) or var_dump (if false).
6a0b768e 508 * @param bool $log
6b5c5203
CB
509 * Log or return the output?
510 * @param string $prefix
511 * Prefix for output logfile.
120f8e64 512 * @param int $priority
513 * The log priority level.
2a6da8d7 514 *
a6c01b45 515 * @return string
6b5c5203 516 * The generated output
6a488035
TO
517 *
518 * @see CRM_Core_Error::debug()
519 * @see CRM_Core_Error::debug_log_message()
520 */
120f8e64 521 public static function debug_var($variable_name, $variable, $print = TRUE, $log = TRUE, $prefix = '', $priority = NULL) {
6a488035
TO
522 // check if variable is set
523 if (!isset($variable)) {
524 $out = "\$$variable_name is not set";
525 }
526 else {
527 if ($print) {
528 $out = print_r($variable, TRUE);
529 $out = "\$$variable_name = $out";
530 }
531 else {
532 // use var_dump
533 ob_start();
534 var_dump($variable);
535 $dump = ob_get_contents();
536 ob_end_clean();
537 $out = "\n\$$variable_name = $dump";
538 }
539 // reset if it is an array
540 if (is_array($variable)) {
541 reset($variable);
542 }
543 }
120f8e64 544 return self::debug_log_message($out, FALSE, $prefix, $priority);
6a488035
TO
545 }
546
547 /**
edc8adfc 548 * Display the error message on terminal and append it to the log file.
549 *
550 * Provided the user has the 'view debug output' the output should be displayed. In all
551 * cases it should be logged.
6a488035 552 *
ea3ddccf 553 * @param string $message
6a0b768e
TO
554 * @param bool $out
555 * Should we log or return the output.
6a488035 556 *
6b5c5203
CB
557 * @param string $prefix
558 * Message prefix.
ea3ddccf 559 * @param string $priority
6a488035 560 *
ea3ddccf 561 * @return string
562 * Format of the backtrace
6a488035 563 */
6b5c5203 564 public static function debug_log_message($message, $out = FALSE, $prefix = '', $priority = NULL) {
213a5f19 565 $config = CRM_Core_Config::singleton();
6a488035 566
6b5c5203 567 $file_log = self::createDebugLogger($prefix);
6e5ad5ee 568 $file_log->log("$message\n", $priority);
0ac9fd52 569
9726c118 570 $str = '<p/><code>' . htmlspecialchars($message) . '</code>';
6a488035
TO
571 if ($out && CRM_Core_Permission::check('view debug output')) {
572 echo $str;
573 }
574 $file_log->close();
575
67bb87ed
MW
576 // Use the custom fatalErrorHandler if defined
577 if (in_array($priority, [PEAR_LOG_EMERG, PEAR_LOG_ALERT, PEAR_LOG_CRIT, PEAR_LOG_ERR])) {
578 if ($config->fatalErrorHandler && function_exists($config->fatalErrorHandler)) {
579 $name = $config->fatalErrorHandler;
580 $vars = [
581 'debugLogMessage' => $message,
582 'priority' => $priority,
583 ];
584 $name($vars);
585 }
586 }
587
21ce4627 588 if (!isset(\Civi::$statics[__CLASS__]['userFrameworkLogging'])) {
589 // Set it to FALSE first & then try to set it. This is to prevent a loop as calling
590 // $config->userFrameworkLogging can trigger DB queries & under log mode this
591 // then gets called again.
592 \Civi::$statics[__CLASS__]['userFrameworkLogging'] = FALSE;
593 \Civi::$statics[__CLASS__]['userFrameworkLogging'] = $config->userFrameworkLogging;
594 }
595
596 if (!empty(\Civi::$statics[__CLASS__]['userFrameworkLogging'])) {
1fadd891 597 // should call $config->userSystem->logger($message) here - but I got a situation where userSystem was not an object - not sure why
213a5f19 598 if ($config->userSystem->is_drupal and function_exists('watchdog')) {
2e1f50d6 599 watchdog('civicrm', '%message', ['%message' => $message], $priority ?? WATCHDOG_DEBUG);
213a5f19
EM
600 }
601 }
6a488035
TO
602
603 return $str;
604 }
605
606 /**
607 * Append to the query log (if enabled)
ad37ac8e 608 *
609 * @param string $string
6a488035 610 */
00be9182 611 public static function debug_query($string) {
481a74f4 612 if (defined('CIVICRM_DEBUG_LOG_QUERY')) {
7e7d0323 613 if (CIVICRM_DEBUG_LOG_QUERY === 'backtrace') {
481a74f4 614 CRM_Core_Error::backtrace($string, TRUE);
0db6c3e1 615 }
481a74f4 616 elseif (CIVICRM_DEBUG_LOG_QUERY) {
120f8e64 617 CRM_Core_Error::debug_var('Query', $string, TRUE, TRUE, 'sql_log', PEAR_LOG_DEBUG);
6a488035
TO
618 }
619 }
620 }
621
d090b80b
TO
622 /**
623 * Execute a query and log the results.
624 *
625 * @param string $query
626 */
00be9182 627 public static function debug_query_result($query) {
7d0b8a47 628 $results = CRM_Core_DAO::executeQuery($query)->fetchAll();
120f8e64 629 CRM_Core_Error::debug_var('dao result', ['query' => $query, 'results' => $results], TRUE, TRUE, '', PEAR_LOG_DEBUG);
d090b80b
TO
630 }
631
6a488035 632 /**
0880a9d0 633 * Obtain a reference to the error log.
6a488035 634 *
edc8adfc 635 * @param string $prefix
77b97be7 636 *
2aafb0fc 637 * @return Log_file
6a488035 638 */
edc8adfc 639 public static function createDebugLogger($prefix = '') {
640 self::generateLogFileName($prefix);
641 return Log::singleton('file', \Civi::$statics[__CLASS__]['logger_file' . $prefix], '');
642 }
643
44c32d0a
CB
644 /**
645 * Generate a hash for the logfile.
bf48aa29 646 *
44c32d0a 647 * CRM-13640.
bf48aa29 648 *
649 * @param CRM_Core_Config $config
650 *
651 * @return string
44c32d0a 652 */
f0f1e508
CB
653 public static function generateLogFileHash($config) {
654 // Use multiple (but stable) inputs for hash information.
be2fb01f 655 $md5inputs = [
262e9b08
CB
656 defined('CIVICRM_SITE_KEY') ? CIVICRM_SITE_KEY : 'NO_SITE_KEY',
657 $config->userFrameworkBaseURL,
44c32d0a
CB
658 md5($config->dsn),
659 $config->dsn,
be2fb01f 660 ];
262e9b08
CB
661 // Trim 8 chars off the string, make it slightly easier to find
662 // but reveals less information from the hash.
315ca480 663 return substr(md5(var_export($md5inputs, 1)), 8);
44c32d0a
CB
664 }
665
edc8adfc 666 /**
667 * Generate the name of the logfile to use and store it as a static.
668 *
e047612e
CB
669 * This function includes simplistic log rotation and a check as to whether
670 * the file exists.
edc8adfc 671 *
672 * @param string $prefix
673 */
674 protected static function generateLogFileName($prefix) {
675 if (!isset(\Civi::$statics[__CLASS__]['logger_file' . $prefix])) {
931ba0f3 676 $config = CRM_Core_Config::singleton();
6a488035 677
edc8adfc 678 $prefixString = $prefix ? ($prefix . '.') : '';
6a488035 679
9e618bf2
DH
680 if (CRM_Utils_Constant::value('CIVICRM_LOG_HASH', TRUE)) {
681 $hash = self::generateLogFileHash($config) . '.';
682 }
683 else {
684 $hash = '';
685 }
686 $fileName = $config->configAndLogDir . 'CiviCRM.' . $prefixString . $hash . 'log';
931ba0f3 687
9e618bf2 688 // Roll log file monthly or if greater than our threshold.
e047612e
CB
689 // Size-based rotation introduced in response to filesize limits on
690 // certain OS/PHP combos.
9e618bf2
DH
691 $maxBytes = CRM_Utils_Constant::value('CIVICRM_LOG_ROTATESIZE', 256 * 1024 * 1024);
692 if ($maxBytes) {
693 if (file_exists($fileName)) {
694 $fileTime = date("Ym", filemtime($fileName));
695 $fileSize = filesize($fileName);
696 if (($fileTime < date('Ym')) ||
697 ($fileSize > $maxBytes) ||
698 ($fileSize < 0)
699 ) {
700 rename($fileName,
701 $fileName . '.' . date('YmdHi')
702 );
703 }
931ba0f3 704 }
705 }
edc8adfc 706 \Civi::$statics[__CLASS__]['logger_file' . $prefix] = $fileName;
931ba0f3 707 }
6a488035
TO
708 }
709
a0ee3941
EM
710 /**
711 * @param string $msg
712 * @param bool $log
713 */
00be9182 714 public static function backtrace($msg = 'backTrace', $log = FALSE) {
6a488035
TO
715 $backTrace = debug_backtrace();
716 $message = self::formatBacktrace($backTrace);
717 if (!$log) {
718 CRM_Core_Error::debug($msg, $message);
719 }
720 else {
120f8e64 721 CRM_Core_Error::debug_var($msg, $message, TRUE, TRUE, '', PEAR_LOG_DEBUG);
6a488035
TO
722 }
723 }
724
725 /**
0880a9d0 726 * Render a backtrace array as a string.
6a488035 727 *
6a0b768e
TO
728 * @param array $backTrace
729 * Array of stack frames.
730 * @param bool $showArgs
731 * TRUE if we should try to display content of function arguments (which could be sensitive); FALSE to display only the type of each function argument.
732 * @param int $maxArgLen
733 * Maximum number of characters to show from each argument string.
a6c01b45
CW
734 * @return string
735 * printable plain-text
6a488035 736 */
00be9182 737 public static function formatBacktrace($backTrace, $showArgs = TRUE, $maxArgLen = 80) {
6a488035 738 $message = '';
34866662
CW
739 foreach (self::parseBacktrace($backTrace, $showArgs, $maxArgLen) as $idx => $trace) {
740 $message .= sprintf("#%s %s\n", $idx, $trace);
741 }
2aa397bc 742 $message .= sprintf("#%s {main}\n", 1 + $idx);
34866662
CW
743 return $message;
744 }
745
746 /**
0880a9d0 747 * Render a backtrace array as an array.
34866662 748 *
6a0b768e
TO
749 * @param array $backTrace
750 * Array of stack frames.
751 * @param bool $showArgs
752 * TRUE if we should try to display content of function arguments (which could be sensitive); FALSE to display only the type of each function argument.
753 * @param int $maxArgLen
754 * Maximum number of characters to show from each argument string.
34866662
CW
755 * @return array
756 * @see debug_backtrace
757 * @see Exception::getTrace()
758 */
00be9182 759 public static function parseBacktrace($backTrace, $showArgs = TRUE, $maxArgLen = 80) {
be2fb01f 760 $ret = [];
34866662 761 foreach ($backTrace as $trace) {
be2fb01f 762 $args = [];
9c1bc317 763 $fnName = $trace['function'] ?? NULL;
34866662 764 $className = isset($trace['class']) ? ($trace['class'] . $trace['type']) : '';
6a488035 765
83e7cba6 766 // Do not show args for a few password related functions
63d76404 767 $skipArgs = $className == 'DB::' && $fnName == 'connect';
6a488035 768
83e7cba6
CB
769 if (!empty($trace['args'])) {
770 foreach ($trace['args'] as $arg) {
353ffa53 771 if (!$showArgs || $skipArgs) {
83e7cba6
CB
772 $args[] = '(' . gettype($arg) . ')';
773 continue;
774 }
775 switch ($type = gettype($arg)) {
776 case 'boolean':
777 $args[] = $arg ? 'TRUE' : 'FALSE';
778 break;
2aa397bc 779
83e7cba6
CB
780 case 'integer':
781 case 'double':
782 $args[] = $arg;
783 break;
2aa397bc 784
83e7cba6 785 case 'string':
86bfa4f6 786 $args[] = '"' . CRM_Utils_String::ellipsify(addcslashes((string) $arg, "\r\n\t\""), $maxArgLen) . '"';
83e7cba6 787 break;
2aa397bc 788
83e7cba6 789 case 'array':
92fcb95f 790 $args[] = '(Array:' . count($arg) . ')';
83e7cba6 791 break;
2aa397bc 792
83e7cba6
CB
793 case 'object':
794 $args[] = 'Object(' . get_class($arg) . ')';
795 break;
2aa397bc 796
83e7cba6
CB
797 case 'resource':
798 $args[] = 'Resource';
799 break;
2aa397bc 800
83e7cba6
CB
801 case 'NULL':
802 $args[] = 'NULL';
803 break;
2aa397bc 804
83e7cba6
CB
805 default:
806 $args[] = "($type)";
807 break;
808 }
6a488035
TO
809 }
810 }
811
34866662
CW
812 $ret[] = sprintf(
813 "%s(%s): %s%s(%s)",
6a488035
TO
814 CRM_Utils_Array::value('file', $trace, '[internal function]'),
815 CRM_Utils_Array::value('line', $trace, ''),
816 $className,
817 $fnName,
818 implode(", ", $args)
819 );
820 }
34866662 821 return $ret;
6a488035
TO
822 }
823
824 /**
0880a9d0 825 * Render an exception as HTML string.
6a488035
TO
826 *
827 * @param Exception $e
a6c01b45
CW
828 * @return string
829 * printable HTML text
6a488035 830 */
00be9182 831 public static function formatHtmlException(Exception $e) {
6a488035
TO
832 $msg = '';
833
834 // Exception metadata
835
836 // Exception backtrace
837 if ($e instanceof PEAR_Exception) {
838 $ei = $e;
be2fb01f 839 while (is_callable([$ei, 'getCause'])) {
d216dc24
SL
840 // DB_ERROR doesn't have a getCause but does have a __call function which tricks is_callable.
841 if (!$ei instanceof DB_Error) {
842 if ($ei->getCause() instanceof PEAR_Error) {
843 $msg .= '<table class="crm-db-error">';
844 $msg .= sprintf('<thead><tr><th>%s</th><th>%s</th></tr></thead>', ts('Error Field'), ts('Error Value'));
845 $msg .= '<tbody>';
846 foreach (['Type', 'Code', 'Message', 'Mode', 'UserInfo', 'DebugInfo'] as $f) {
847 $msg .= sprintf('<tr><td>%s</td><td>%s</td></tr>', $f, call_user_func([$ei->getCause(), "get$f"]));
848 }
849 $msg .= '</tbody></table>';
2aa397bc 850 }
d216dc24 851 $ei = $ei->getCause();
2aa397bc 852 }
2aa397bc 853 }
6a488035 854 $msg .= $e->toHtml();
0db6c3e1
TO
855 }
856 else {
6a488035
TO
857 $msg .= '<p><b>' . get_class($e) . ': "' . htmlentities($e->getMessage()) . '"</b></p>';
858 $msg .= '<pre>' . htmlentities(self::formatBacktrace($e->getTrace())) . '</pre>';
859 }
860 return $msg;
861 }
862
863 /**
0880a9d0 864 * Write details of an exception to the log.
6a488035
TO
865 *
866 * @param Exception $e
a6c01b45
CW
867 * @return string
868 * printable plain text
6a488035 869 */
00be9182 870 public static function formatTextException(Exception $e) {
6a488035
TO
871 $msg = get_class($e) . ": \"" . $e->getMessage() . "\"\n";
872
873 $ei = $e;
be2fb01f 874 while (is_callable([$ei, 'getCause'])) {
d216dc24
SL
875 // DB_ERROR doesn't have a getCause but does have a __call function which tricks is_callable.
876 if (!$ei instanceof DB_Error) {
877 if ($ei->getCause() instanceof PEAR_Error) {
878 foreach (['Type', 'Code', 'Message', 'Mode', 'UserInfo', 'DebugInfo'] as $f) {
879 $msg .= sprintf(" * ERROR %s: %s\n", strtoupper($f), call_user_func([$ei->getCause(), "get$f"]));
880 }
6a488035 881 }
d216dc24
SL
882 $ei = $ei->getCause();
883 }
884 // if we have reached a DB_Error assume that is the end of the road.
885 else {
886 $ei = NULL;
6a488035 887 }
6a488035
TO
888 }
889 $msg .= self::formatBacktrace($e->getTrace());
890 return $msg;
891 }
892
a0ee3941
EM
893 /**
894 * @param $message
895 * @param int $code
896 * @param string $level
100fef9d 897 * @param array $params
a0ee3941
EM
898 *
899 * @return object
900 */
00be9182 901 public static function createError($message, $code = 8000, $level = 'Fatal', $params = NULL) {
6a488035 902 $error = CRM_Core_Error::singleton();
be2fb01f 903 $error->push($code, $level, [$params], $message);
6a488035
TO
904 return $error;
905 }
906
907 /**
908 * Set a status message in the session, then bounce back to the referrer.
909 *
6a0b768e
TO
910 * @param string $status
911 * The status message to set.
6a488035 912 *
2a6da8d7
EM
913 * @param null $redirect
914 * @param string $title
6a488035 915 */
50ecd413 916 public static function statusBounce($status, $redirect = NULL, $title = NULL) {
6a488035
TO
917 $session = CRM_Core_Session::singleton();
918 if (!$redirect) {
919 $redirect = $session->readUserContext();
920 }
50ecd413
CW
921 if ($title === NULL) {
922 $title = ts('Error');
923 }
be2fb01f 924 $session->setStatus($status, $title, 'alert', ['expires' => 0]);
34866662 925 if (CRM_Utils_Array::value('snippet', $_REQUEST) === CRM_Core_Smarty::PRINT_JSON) {
be2fb01f 926 CRM_Core_Page_AJAX::returnJsonResponse(['status' => 'error']);
34866662 927 }
6a488035
TO
928 CRM_Utils_System::redirect($redirect);
929 }
930
931 /**
0880a9d0 932 * Reset the error stack.
6a488035 933 *
6a488035
TO
934 */
935 public static function reset() {
936 $error = self::singleton();
be2fb01f
CW
937 $error->_errors = [];
938 $error->_errorsByLevel = [];
6a488035
TO
939 }
940
6a4257d4 941 /**
42c0daee
TO
942 * PEAR error-handler which converts errors to exceptions
943 *
944 * @param $pearError
945 * @throws PEAR_Exception
6a4257d4 946 */
6a488035 947 public static function exceptionHandler($pearError) {
120f8e64 948 CRM_Core_Error::debug_var('Fatal Error Details', self::getErrorDetails($pearError), TRUE, TRUE, '', PEAR_LOG_ERR);
6a488035
TO
949 CRM_Core_Error::backtrace('backTrace', TRUE);
950 throw new PEAR_Exception($pearError->getMessage(), $pearError);
951 }
952
953 /**
42c0daee 954 * PEAR error-handler to quietly catch otherwise fatal errors. Intended for use with smtp transport.
6a488035 955 *
6a0b768e
TO
956 * @param object $obj
957 * The PEAR_ERROR object.
a6c01b45
CW
958 * @return object
959 * $obj
6a488035
TO
960 */
961 public static function nullHandler($obj) {
120f8e64 962 CRM_Core_Error::debug_log_message("Ignoring exception thrown by nullHandler: {$obj->code}, {$obj->message}", FALSE, '', PEAR_LOG_ERR);
6a488035
TO
963 CRM_Core_Error::backtrace('backTrace', TRUE);
964 return $obj;
965 }
966
d424ffde 967 /**
6a488035
TO
968 * @deprecated
969 * This function is no longer used by v3 api.
970 * @fixme Some core files call it but it should be re-thought & renamed or removed
d424ffde 971 *
a0ee3941
EM
972 * @param $msg
973 * @param null $data
974 *
975 * @return array
976 * @throws Exception
977 */
6a488035
TO
978 public static function &createAPIError($msg, $data = NULL) {
979 if (self::$modeException) {
980 throw new Exception($msg, $data);
981 }
982
be2fb01f 983 $values = [];
6a488035
TO
984
985 $values['is_error'] = 1;
986 $values['error_message'] = $msg;
987 if (isset($data)) {
988 $values = array_merge($values, $data);
989 }
990 return $values;
991 }
992
a0ee3941
EM
993 /**
994 * @param $file
995 */
6a488035
TO
996 public static function movedSiteError($file) {
997 $url = CRM_Utils_System::url('civicrm/admin/setting/updateConfigBackend',
998 'reset=1',
999 TRUE
1000 );
1001 echo "We could not write $file. Have you moved your site directory or server?<p>";
1002 echo "Please fix the setting by running the <a href=\"$url\">update config script</a>";
1003 exit();
1004 }
1005
1006 /**
0880a9d0 1007 * Terminate execution abnormally.
ad37ac8e 1008 *
1009 * @param string $code
6a488035
TO
1010 */
1011 protected static function abend($code) {
1012 // do a hard rollback of any pending transactions
1013 // if we've come here, its because of some unexpected PEAR errors
1014 CRM_Core_Transaction::forceRollbackIfEnabled();
1015 CRM_Utils_System::civiExit($code);
1016 }
1017
a0ee3941 1018 /**
3ab5efa9
EM
1019 * @param array $error
1020 * @param int $type
a0ee3941
EM
1021 *
1022 * @return bool
1023 */
6a488035 1024 public static function isAPIError($error, $type = CRM_Core_Error::FATAL_ERROR) {
8cc574cf 1025 if (is_array($error) && !empty($error['is_error'])) {
6a488035
TO
1026 $code = $error['error_message']['code'];
1027 if ($code == $type) {
1028 return TRUE;
1029 }
1030 }
1031 return FALSE;
1032 }
96025800 1033
496320c3
MW
1034 /**
1035 * Output a deprecated function warning to log file. Deprecated class:function is automatically generated from calling function.
1036 *
5a0aaa1e 1037 * @param string $newMethod
496320c3 1038 * description of new method (eg. "buildOptions() method in the appropriate BAO object").
5a0aaa1e
MW
1039 * @param string $oldMethod
1040 * optional description of old method (if not the calling method). eg. CRM_MyClass::myOldMethodToGetTheOptions()
496320c3 1041 */
5a0aaa1e
MW
1042 public static function deprecatedFunctionWarning($newMethod, $oldMethod = NULL) {
1043 if (!$oldMethod) {
1044 $dbt = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 2);
1045 $callerFunction = $dbt[1]['function'] ?? NULL;
1046 $callerClass = $dbt[1]['class'] ?? NULL;
1047 $oldMethod = "{$callerClass}::{$callerFunction}";
1048 }
1049 Civi::log()->warning("Deprecated function $oldMethod, use $newMethod.", ['civi.tag' => 'deprecated']);
496320c3
MW
1050 }
1051
6a488035
TO
1052}
1053
1054$e = new PEAR_ErrorStack('CRM');
1055$e->singleton('CRM', FALSE, NULL, 'CRM_Core_Error');