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