6 require_once
'Services/Environment/classes/class.ilRuntime.php';
22 require_once(
"Services/Exceptions/classes/class.ilDelegatingHandler.php");
23 require_once(
"Services/Exceptions/classes/class.ilPlainTextHandler.php");
24 require_once(
"Services/Exceptions/classes/class.ilTestingHandler.php");
76 $this->DEBUG_ENV =
true;
81 $this->error_obj =
false;
86 restore_error_handler();
87 set_error_handler(array($this,
"handlePreWhoops"));
100 if (self::$whoops_handlers_registered) {
110 if ($ilRuntime->shouldLogErrors()) {
111 $this->whoops->pushHandler($this->loggingHandler());
114 $this->whoops->register();
116 self::$whoops_handlers_registered =
true;
142 return $this->error_obj;
156 if ($a_error_obj->getCode() == null) {
160 $this->error_obj = &$a_error_obj;
162 if (
$_SESSION[
"failure"] && substr($a_error_obj->getMessage(), 0, 22) !=
"Cannot find this block") {
163 $m =
"Fatal Error: Called raise error two times.<br>" .
164 "First error: " .
$_SESSION[
"failure"] .
'<br>' .
165 "Last Error:" . $a_error_obj->getMessage();
168 #$log->writeWarning($m); 169 #$log->logError($a_error_obj->getCode(), $m); 174 if (substr($a_error_obj->getMessage(), 0, 22) ==
"Cannot find this block") {
176 echo
"<b>DEVMODE</b><br><br>";
177 echo
"<b>Template Block not found.</b><br>";
178 echo
"You used a template block in your code that is not available.<br>";
179 echo
"Native Messge: <b>" . $a_error_obj->getMessage() .
"</b><br>";
180 if (is_array($a_error_obj->backtrace)) {
181 echo
"Backtrace:<br>";
182 foreach ($a_error_obj->backtrace as
$b) {
183 if ($b[
"function"] ==
"setCurrentBlock" &&
184 basename($b[
"file"]) !=
"class.ilTemplate.php") {
187 echo
"File: " . $b[
"file"] .
", ";
188 echo
"Line: " . $b[
"line"] .
", ";
189 echo $b[
"function"] .
"()<br>";
190 if ($b[
"function"] ==
"setCurrentBlock" &&
191 basename($b[
"file"]) !=
"class.ilTemplate.php") {
201 if (is_object($log) and $log->enabled ==
true) {
202 $log->write($a_error_obj->getMessage());
203 #$log->logError($a_error_obj->getCode(),$a_error_obj->getMessage()); 208 trigger_error(stripslashes($a_error_obj->getMessage()), E_USER_ERROR);
213 if ($this->DEBUG_ENV) {
214 $message = $a_error_obj->getMessage();
221 if (!defined(
"ILIAS_MODULE")) {
229 $_SESSION[
"failure"] = $a_error_obj->getMessage();
234 $dirname = dirname(
$_SERVER[
"PHP_SELF"]);
238 if (is_array($ilurl) && array_key_exists(
'path', $ilurl) && strlen($ilurl[
'path'])) {
239 $subdir = substr(strstr($dirname, (
string) $ilurl[
"path"]), strlen((
string) $ilurl[
"path"]));
243 $num_subdirs = substr_count($subdir,
"/");
245 for (
$i = 1;
$i <= $num_subdirs;
$i++) {
274 $this->message = $a_message;
279 $this->message .=
"<br /> ";
281 $this->message .= $a_message;
299 $ilLog->write(
'PHP errror: ' . $errstr .
'. FATAL error on line ' . $errline .
' in file ' . $errfile);
304 $ilLog->write(
'PHP warning: [' . $errno .
'] ' . $errstr .
' on line ' . $errline .
' in file ' . $errfile);
335 return defined(
"DEVMODE") && (int) DEVMODE === 1;
345 return new CallbackHandler(
function ($exception, Inspector $inspector, Run $run) {
348 require_once(
"Services/Logging/classes/error/class.ilLoggingErrorSettings.php");
349 require_once(
"Services/Logging/classes/error/class.ilLoggingErrorFileStorage.php");
350 require_once(
"Services/Utilities/classes/class.ilUtil.php");
352 $session_id = substr(session_id(), 0, 5);
353 $random = new \ilRandom();
354 $err_num = $random->int(1, 9999);
355 $file_name = $session_id .
"_" . $err_num;
358 if (!empty($logger->folder())) {
365 $lng->loadLanguageModule(
'logging');
366 $message = sprintf($lng->txt(
"log_error_message"), $file_name);
368 if ($logger->mail()) {
369 $message .=
" " . sprintf($lng->txt(
"log_error_message_send_mail"), $logger->mail(), $file_name, $logger->mail());
372 $message =
'Sorry, an error occured. A logfile has been created which can be identified via the code "' . $file_name .
'"';
374 if ($logger->mail()) {
375 $message .=
' ' .
'Please send a mail to <a href="mailto:' . $logger->mail() .
'?subject=code: ' . $file_name .
'">' . $logger->mail() .
'</a>';
392 switch (ERROR_HANDLER) {
400 if ((!defined(
'ERROR_HANDLER') || ERROR_HANDLER !=
'PRETTY_PAGE') && $ilLog) {
402 "Unknown or undefined error handler '" . ERROR_HANDLER .
"'. " .
403 "Falling back to PrettyPageHandler." 407 $prettyPageHandler =
new PrettyPageHandler();
411 return $prettyPageHandler;
420 $editorUrl = defined(
'ERROR_EDITOR_URL') ? ERROR_EDITOR_URL :
'';
421 if (!is_string($editorUrl) || 0 === strlen($editorUrl)) {
425 $pathTranslationConfig = defined(
'ERROR_EDITOR_PATH_TRANSLATIONS') ? ERROR_EDITOR_PATH_TRANSLATIONS :
'';
429 $handler->setEditor(
function ($file, $line) use ($editorUrl, $pathTranslations) {
433 [
'[FILE]',
'[LINE]'],
446 foreach ($pathTranslations as $from => $to) {
447 $file = preg_replace(
'@' . $from .
'@', $to, $file);
458 $pathTranslations = [];
460 $mappings = explode(
'|', $pathTranslationConfig);
461 foreach ($mappings as $mapping) {
462 $parts = explode(
',', $mapping);
463 $pathTranslations[trim($parts[0])] = trim($parts[1]);
466 return $pathTranslations;
473 protected function loggingHandler()
476 return new CallbackHandler(
function ($exception, Inspector $inspector, Run $run) {
483 if (is_object($ilLog)) {
484 $message = $exception->getMessage() .
' in ' . $exception->getFile() .
":" . $exception->getLine() ;
485 $message .= $exception->getTraceAsString();
486 $ilLog->error($exception->getCode() .
' ' .
$message);
490 error_log($exception->getMessage());
498 if ($level & error_reporting()) {
502 if (version_compare(PHP_VERSION,
'7.0.0',
'<')) {
503 if ($level == E_STRICT) {
504 if (!stristr(
$message,
"should be compatible") &&
505 !stristr(
$message,
"should not be called statically") &&
506 !stristr(
$message,
"should not be abstract")) {
515 if ($level >= E_USER_NOTICE) {
517 $severity = Whoops\Util\Misc::TranslateErrorCode($level);
518 $ilLog->write(
"\n\n" . $severity .
" - " .
$message .
"\n" . $file .
" - line " . $line .
"\n");
526 return $this->whoops->handleError($level,
$message, $file, $line);
parseEditorPathTranslation(string $pathTranslationConfig)
isDevmodeActive()
Is the DEVMODE switched on?
getWhoops()
Get an instance of Whoops/Run.
static $whoops_handlers_registered
__construct()
Constructor public.
appendMessage($a_message)
Saves error informations into file.
Error Handling & global info handling uses PEAR error class.
addEditorSupport(PrettyPageHandler $handler)
defaultHandler()
Get a default error handler.
getIlRuntime()
Get ilRuntime.
getHandler()
Get a handler for an error or exception.
errorHandler($a_error_obj)
defines what has to happen in case of error private
static _ilErrorWriter($errno, $errstr, $errfile, $errline)
This is used in Soap calls to write PHP error in ILIAS Logfile Not used yet!!!
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
handlePreWhoops($level, $message, $file, $line)
initWhoopsHandlers()
Initialize Error and Exception Handlers.
applyEditorPathTranslations(string &$file, array $pathTranslations)
__construct(Container $dic, ilPlugin $plugin)
devmodeHandler()
Get the handler to be used in DEVMODE.
A Whoops error handler for testing.
static redirect($a_script)