46 'usr_password_retype',
48 'new_password_retype',
91 $this->DEBUG_ENV =
true;
96 $this->error_obj = null;
101 restore_error_handler();
102 set_error_handler([$this,
"handlePreWhoops"]);
112 if (self::$whoops_handlers_registered) {
119 if ($ilRuntime->shouldLogErrors()) {
120 $this->whoops->pushHandler($this->loggingHandler());
122 $this->whoops->register();
123 self::$whoops_handlers_registered =
true;
153 if ($a_error_obj->getCode() == null) {
157 $this->error_obj = &$a_error_obj;
160 if ($session_failure && strpos($a_error_obj->getMessage(),
"Cannot find this block") !== 0) {
161 $m =
"Fatal Error: Called raise error two times.<br>" .
162 "First error: " . $session_failure .
'<br>' .
163 "Last Error:" . $a_error_obj->getMessage();
166 #$log->writeWarning($m); 167 #$log->logError($a_error_obj->getCode(), $m); 172 if (strpos($a_error_obj->getMessage(),
"Cannot find this block") === 0) {
174 echo
"<b>DEVMODE</b><br><br>";
175 echo
"<b>Template Block not found.</b><br>";
176 echo
"You used a template block in your code that is not available.<br>";
177 echo
"Native Messge: <b>" . $a_error_obj->getMessage() .
"</b><br>";
178 if (is_array($a_error_obj->backtrace)) {
179 echo
"Backtrace:<br>";
180 foreach ($a_error_obj->backtrace as
$b) {
181 if ($b[
"function"] ===
"setCurrentBlock" &&
182 basename($b[
"file"]) !==
"class.ilTemplate.php") {
185 echo
"File: " . $b[
"file"] .
", ";
186 echo
"Line: " . $b[
"line"] .
", ";
187 echo $b[
"function"] .
"()<br>";
188 if ($b[
"function"] ===
"setCurrentBlock" &&
189 basename($b[
"file"]) !==
"class.ilTemplate.php") {
200 $log->write($a_error_obj->getMessage());
203 trigger_error(stripslashes($a_error_obj->getMessage()), E_USER_ERROR);
208 if ($this->DEBUG_ENV) {
209 $message = $a_error_obj->getMessage();
211 $message =
"Under Construction";
216 if (!defined(
"ILIAS_MODULE")) {
226 $_SESSION[
"error_post_vars"] = $_POST;
228 if (empty($_SESSION[
"referer"])) {
229 $dirname = dirname(
$_SERVER[
"PHP_SELF"]);
230 $ilurl = parse_url(ILIAS_HTTP_PATH);
233 if (is_array($ilurl) && array_key_exists(
'path', $ilurl) && strlen($ilurl[
'path'])) {
234 $subdir = substr(strstr($dirname, (
string) $ilurl[
"path"]), strlen((
string) $ilurl[
"path"]));
238 $num_subdirs = substr_count($subdir,
"/");
240 for (
$i = 1;
$i <= $num_subdirs;
$i++) {
257 $this->message = $a_message;
263 $this->message .=
"<br /> ";
265 $this->message .= $a_message;
280 return defined(
"DEVMODE") && (
int) DEVMODE === 1;
286 return new CallbackHandler(
function ($exception, Inspector $inspector, Run $run) {
289 require_once(
"Services/Logging/classes/error/class.ilLoggingErrorSettings.php");
290 require_once(
"Services/Logging/classes/error/class.ilLoggingErrorFileStorage.php");
291 require_once(
"Services/Utilities/classes/class.ilUtil.php");
293 $session_id = substr(session_id(), 0, 5);
294 $random = new \ilRandom();
295 $err_num = $random->int(1, 9999);
296 $file_name = $session_id .
"_" . $err_num;
299 if (!empty($logger->folder())) {
306 if ($DIC->isDependencyAvailable(
'language')) {
307 $DIC->language()->loadLanguageModule(
'logging');
308 $message = sprintf($DIC->language()->txt(
"log_error_message"), $file_name);
310 if ($logger->mail()) {
311 $message .=
" " . sprintf(
312 $DIC->language()->txt(
"log_error_message_send_mail"),
319 $message =
'Sorry, an error occured. A logfile has been created which can be identified via the code "' . $file_name .
'"';
321 if ($logger->mail()) {
322 $message .=
' ' .
'Please send a mail to <a href="mailto:' . $logger->mail() .
'?subject=code: ' . $file_name .
'">' . $logger->mail() .
'</a>';
325 if ($DIC->isDependencyAvailable(
'ui') && isset($DIC[
'tpl']) && $DIC->isDependencyAvailable(
'ctrl')) {
326 $DIC->ui()->mainTemplate()->setOnScreenMessage(
'failure', $message,
true);
327 $DIC->ctrl()->redirectToURL(
"error.php");
330 header(
"Location: error.php");
343 switch (ERROR_HANDLER) {
345 return (
new ilTestingHandler())->withExclusionList(self::SENSTIVE_PARAMETER_NAMES);
353 if ((!defined(
'ERROR_HANDLER') || ERROR_HANDLER !==
'PRETTY_PAGE') && $ilLog) {
355 "Unknown or undefined error handler '" . ERROR_HANDLER .
"'. " .
356 "Falling back to PrettyPageHandler." 360 $prettyPageHandler =
new PrettyPageHandler();
364 foreach (self::SENSTIVE_PARAMETER_NAMES as
$param) {
365 $prettyPageHandler->blacklist(
'_POST', $param);
368 return $prettyPageHandler;
374 $editorUrl = defined(
'ERROR_EDITOR_URL') ? ERROR_EDITOR_URL :
'';
375 if (!is_string($editorUrl) || $editorUrl ===
'') {
379 $pathTranslationConfig = defined(
'ERROR_EDITOR_PATH_TRANSLATIONS') ? ERROR_EDITOR_PATH_TRANSLATIONS :
'';
383 $handler->setEditor(
function ($file, $line) use ($editorUrl, $pathTranslations) {
387 [
'[FILE]',
'[LINE]'],
396 foreach ($pathTranslations as $from => $to) {
397 $file = preg_replace(
'@' . $from .
'@', $to, $file);
403 $pathTranslations = [];
405 $mappings = explode(
'|', $pathTranslationConfig);
406 foreach ($mappings as $mapping) {
407 $parts = explode(
',', $mapping);
408 if (count(
$parts) === 2) {
413 return $pathTranslations;
416 protected function loggingHandler(): HandlerInterface
419 return new CallbackHandler(
function ($exception, Inspector $inspector, Run $run) {
426 if (is_object($ilLog)) {
427 $message = $exception->getMessage() .
' in ' . $exception->getFile() .
":" . $exception->getLine();
428 $message .= $exception->getTraceAsString();
429 $ilLog->error($exception->getCode() .
' ' .
$message);
433 error_log($exception->getMessage());
441 public function handlePreWhoops(
int $level,
string $message,
string $file,
int $line): bool
445 if ($level & error_reporting()) {
448 if ($level >= E_USER_NOTICE) {
450 $severity = Whoops\Util\Misc::translateErrorCode($level);
451 $ilLog->write(
"\n\n" . $severity .
" - " . $message .
"\n" . $file .
" - line " . $line .
"\n");
458 if ($this->whoops instanceof RunInterface) {
459 return $this->whoops->handleError($level, $message, $file, $line);
462 return $this->whoops->handleError($level, $message, $file, $line);
parseEditorPathTranslation(string $pathTranslationConfig)
static get(string $a_var)
int $MESSAGE
Error level 3: show message in recent page.
setMessage(string $a_message)
__construct()
Constructor public.
int $FATAL
Error level 1: exit application immedietly.
withExclusionList(array $exclusion_list)
int $WARNING
Error level 2: show warning page.
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
A Whoops error handler that delegates calls on it self to another handler that is created only in the...
appendMessage(string $a_message)
Saves error informations into file.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addEditorSupport(PrettyPageHandler $handler)
const SENSTIVE_PARAMETER_NAMES
getHandler()
Get a handler for an error or exception.
errorHandler($a_error_obj)
Defines what has to happen in case of error.
A Whoops error handler that prints the same content as the PrettyPageHandler but as plain text...
static redirect(string $a_script)
initWhoopsHandlers()
Initialize Error and Exception Handlers.
Error Handling & global info handling uses PEAR error class.
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 bool $whoops_handlers_registered
static clear(string $a_var)
static set(string $a_var, $a_val)
Set a value.
handlePreWhoops(int $level, string $message, string $file, int $line)
Parameter types according to PHP doc: set_error_handler.