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");
39 'usr_password_retype',
41 'new_password_retype',
87 $this->DEBUG_ENV =
true;
92 $this->error_obj =
false;
97 restore_error_handler();
98 set_error_handler(array($this,
"handlePreWhoops"));
111 if (self::$whoops_handlers_registered) {
121 if ($ilRuntime->shouldLogErrors()) {
122 $this->whoops->pushHandler($this->loggingHandler());
125 $this->whoops->register();
127 self::$whoops_handlers_registered =
true;
153 return $this->error_obj;
167 if ($a_error_obj->getCode() == null) {
171 $this->error_obj = &$a_error_obj;
173 if (
$_SESSION[
"failure"] && substr($a_error_obj->getMessage(), 0, 22) !=
"Cannot find this block") {
174 $m =
"Fatal Error: Called raise error two times.<br>" .
175 "First error: " .
$_SESSION[
"failure"] .
'<br>' .
176 "Last Error:" . $a_error_obj->getMessage();
179 #$log->writeWarning($m); 180 #$log->logError($a_error_obj->getCode(), $m); 185 if (substr($a_error_obj->getMessage(), 0, 22) ==
"Cannot find this block") {
187 echo
"<b>DEVMODE</b><br><br>";
188 echo
"<b>Template Block not found.</b><br>";
189 echo
"You used a template block in your code that is not available.<br>";
190 echo
"Native Messge: <b>" . $a_error_obj->getMessage() .
"</b><br>";
191 if (is_array($a_error_obj->backtrace)) {
192 echo
"Backtrace:<br>";
193 foreach ($a_error_obj->backtrace as
$b) {
194 if ($b[
"function"] ==
"setCurrentBlock" &&
195 basename($b[
"file"]) !=
"class.ilTemplate.php") {
198 echo
"File: " . $b[
"file"] .
", ";
199 echo
"Line: " . $b[
"line"] .
", ";
200 echo $b[
"function"] .
"()<br>";
201 if ($b[
"function"] ==
"setCurrentBlock" &&
202 basename($b[
"file"]) !=
"class.ilTemplate.php") {
212 if (is_object($log) and $log->enabled ==
true) {
213 $log->write($a_error_obj->getMessage());
214 #$log->logError($a_error_obj->getCode(),$a_error_obj->getMessage()); 219 trigger_error(stripslashes($a_error_obj->getMessage()), E_USER_ERROR);
224 if ($this->DEBUG_ENV) {
225 $message = $a_error_obj->getMessage();
232 if (!defined(
"ILIAS_MODULE")) {
240 $_SESSION[
"failure"] = $a_error_obj->getMessage();
245 $dirname = dirname(
$_SERVER[
"PHP_SELF"]);
246 $ilurl = parse_url(ILIAS_HTTP_PATH);
249 if (is_array($ilurl) && array_key_exists(
'path', $ilurl) && strlen($ilurl[
'path'])) {
250 $subdir = substr(strstr($dirname, (
string) $ilurl[
"path"]), strlen((
string) $ilurl[
"path"]));
254 $num_subdirs = substr_count($subdir,
"/");
256 for (
$i = 1;
$i <= $num_subdirs;
$i++) {
285 $this->message = $a_message;
290 $this->message .=
"<br /> ";
292 $this->message .= $a_message;
310 $ilLog->write(
'PHP errror: ' . $errstr .
'. FATAL error on line ' . $errline .
' in file ' . $errfile);
315 $ilLog->write(
'PHP warning: [' . $errno .
'] ' . $errstr .
' on line ' . $errline .
' in file ' . $errfile);
346 return defined(
"DEVMODE") && (int) DEVMODE === 1;
356 return new CallbackHandler(
function ($exception, Inspector $inspector, Run $run) {
359 require_once(
"Services/Logging/classes/error/class.ilLoggingErrorSettings.php");
360 require_once(
"Services/Logging/classes/error/class.ilLoggingErrorFileStorage.php");
361 require_once(
"Services/Utilities/classes/class.ilUtil.php");
363 $session_id = substr(session_id(), 0, 5);
364 $random = new \ilRandom();
365 $err_num = $random->int(1, 9999);
366 $file_name = $session_id .
"_" . $err_num;
369 if (!empty($logger->folder())) {
377 $lng->loadLanguageModule(
'logging');
378 $message = sprintf($lng->txt(
"log_error_message"), $file_name);
380 if ($logger->mail()) {
381 $message .=
" " . sprintf($lng->txt(
"log_error_message_send_mail"), $logger->mail(), $file_name, $logger->mail());
384 $message =
'Sorry, an error occured. A logfile has been created which can be identified via the code "' . $file_name .
'"';
386 if ($logger->mail()) {
387 $message .=
' ' .
'Please send a mail to <a href="mailto:' . $logger->mail() .
'?subject=code: ' . $file_name .
'">' . $logger->mail() .
'</a>';
404 switch (ERROR_HANDLER) {
406 return (
new ilTestingHandler())->withExclusionList(self::SENSTIVE_PARAMETER_NAMES);
412 if ((!defined(
'ERROR_HANDLER') || ERROR_HANDLER !=
'PRETTY_PAGE') && $ilLog) {
414 "Unknown or undefined error handler '" . ERROR_HANDLER .
"'. " .
415 "Falling back to PrettyPageHandler." 419 $prettyPageHandler =
new PrettyPageHandler();
423 foreach (self::SENSTIVE_PARAMETER_NAMES as
$param) {
424 $prettyPageHandler->blacklist(
'_POST', $param);
427 return $prettyPageHandler;
436 $editorUrl = defined(
'ERROR_EDITOR_URL') ? ERROR_EDITOR_URL :
'';
437 if (!is_string($editorUrl) || 0 === strlen($editorUrl)) {
441 $pathTranslationConfig = defined(
'ERROR_EDITOR_PATH_TRANSLATIONS') ? ERROR_EDITOR_PATH_TRANSLATIONS :
'';
445 $handler->setEditor(
function ($file, $line) use ($editorUrl, $pathTranslations) {
449 [
'[FILE]',
'[LINE]'],
462 foreach ($pathTranslations as $from => $to) {
463 $file = preg_replace(
'@' . $from .
'@', $to, $file);
474 $pathTranslations = [];
476 $mappings = explode(
'|', $pathTranslationConfig);
477 foreach ($mappings as $mapping) {
478 $parts = explode(
',', $mapping);
479 $pathTranslations[trim($parts[0])] = trim($parts[1]);
482 return $pathTranslations;
489 protected function loggingHandler()
492 return new CallbackHandler(
function ($exception, Inspector $inspector, Run $run) {
499 if (is_object($ilLog)) {
500 $message = $exception->getMessage() .
' in ' . $exception->getFile() .
":" . $exception->getLine() ;
501 $message .= $exception->getTraceAsString();
502 $ilLog->error($exception->getCode() .
' ' .
$message);
506 error_log($exception->getMessage());
514 if ($level & error_reporting()) {
518 if (version_compare(PHP_VERSION,
'7.0.0',
'<')) {
519 if ($level == E_STRICT) {
520 if (!stristr(
$message,
"should be compatible") &&
521 !stristr(
$message,
"should not be called statically") &&
522 !stristr(
$message,
"should not be abstract")) {
531 if ($level >= E_USER_NOTICE) {
533 $severity = Whoops\Util\Misc::TranslateErrorCode($level);
534 $ilLog->write(
"\n\n" . $severity .
" - " .
$message .
"\n" . $file .
" - line " . $line .
"\n");
542 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.
withExclusionList(array $exclusion_list)
appendMessage($a_message)
Saves error informations into file.
Error Handling & global info handling uses PEAR error class.
addEditorSupport(PrettyPageHandler $handler)
const SENSTIVE_PARAMETER_NAMES
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)