MediaWiki REL1_31
MWException.php
Go to the documentation of this file.
1<?php
26class MWException extends Exception {
32 public function useOutputPage() {
33 return $this->useMessageCache() &&
34 !empty( $GLOBALS['wgFullyInitialised'] ) &&
35 !empty( $GLOBALS['wgOut'] ) &&
36 !defined( 'MEDIAWIKI_INSTALL' );
37 }
38
45 public function isLoggable() {
46 return true;
47 }
48
54 public function useMessageCache() {
55 global $wgLang;
56
57 foreach ( $this->getTrace() as $frame ) {
58 if ( isset( $frame['class'] ) && $frame['class'] === LocalisationCache::class ) {
59 return false;
60 }
61 }
62
63 return $wgLang instanceof Language;
64 }
65
75 public function msg( $key, $fallback /*[, params...] */ ) {
76 $args = array_slice( func_get_args(), 2 );
77
78 if ( $this->useMessageCache() ) {
79 try {
80 return wfMessage( $key, $args )->text();
81 } catch ( Exception $e ) {
82 }
83 }
85 }
86
94 public function getHTML() {
96
98 return '<p>' . nl2br( htmlspecialchars( MWExceptionHandler::getLogMessage( $this ) ) ) .
99 '</p><p>Backtrace:</p><p>' .
100 nl2br( htmlspecialchars( MWExceptionHandler::getRedactedTraceAsString( $this ) ) ) .
101 "</p>\n";
102 } else {
103 $logId = WebRequest::getRequestId();
104 $type = static::class;
105 return Html::errorBox(
106 htmlspecialchars(
107 '[' . $logId . '] ' .
108 gmdate( 'Y-m-d H:i:s' ) . ": " .
109 $this->msg( "internalerror-fatal-exception",
110 "Fatal exception of type $1",
111 $type,
112 $logId,
113 MWExceptionHandler::getURL( $this )
114 )
115 ) ) .
116 "<!-- Set \$wgShowExceptionDetails = true; " .
117 "at the bottom of LocalSettings.php to show detailed " .
118 "debugging information. -->";
119 }
120 }
121
129 public function getText() {
131
133 return MWExceptionHandler::getLogMessage( $this ) .
134 "\nBacktrace:\n" . MWExceptionHandler::getRedactedTraceAsString( $this ) . "\n";
135 } else {
136 return "Set \$wgShowExceptionDetails = true; " .
137 "in LocalSettings.php to show detailed debugging information.\n";
138 }
139 }
140
146 public function getPageTitle() {
147 return $this->msg( 'internalerror', 'Internal error' );
148 }
149
153 public function reportHTML() {
154 global $wgOut, $wgSitename;
155 if ( $this->useOutputPage() ) {
156 $wgOut->prepareErrorPage( $this->getPageTitle() );
157
158 $wgOut->addHTML( $this->getHTML() );
159
160 $wgOut->output();
161 } else {
162 self::header( 'Content-Type: text/html; charset=utf-8' );
163 echo "<!DOCTYPE html>\n" .
164 '<html><head>' .
165 // Mimick OutputPage::setPageTitle behaviour
166 '<title>' .
167 htmlspecialchars( $this->msg( 'pagetitle', "$1 - $wgSitename", $this->getPageTitle() ) ) .
168 '</title>' .
169 '<style>body { font-family: sans-serif; margin: 0; padding: 0.5em 2em; }</style>' .
170 "</head><body>\n";
171
172 echo $this->getHTML();
173
174 echo "</body></html>\n";
175 }
176 }
177
182 public function report() {
183 global $wgMimeType;
184
185 if ( defined( 'MW_API' ) ) {
186 // Unhandled API exception, we can't be sure that format printer is alive
187 self::header( 'MediaWiki-API-Error: internal_api_error_' . static::class );
188 wfHttpError( 500, 'Internal Server Error', $this->getText() );
189 } elseif ( self::isCommandLine() ) {
190 $message = $this->getText();
191 // T17602: STDERR may not be available
192 if ( !defined( 'MW_PHPUNIT_TEST' ) && defined( 'STDERR' ) ) {
193 fwrite( STDERR, $message );
194 } else {
195 echo $message;
196 }
197 } else {
198 self::statusHeader( 500 );
199 self::header( "Content-Type: $wgMimeType; charset=utf-8" );
200
201 $this->reportHTML();
202 }
203 }
204
211 public static function isCommandLine() {
212 return !empty( $GLOBALS['wgCommandLineMode'] );
213 }
214
220 private static function header( $header ) {
221 if ( !headers_sent() ) {
222 header( $header );
223 }
224 }
225 private static function statusHeader( $code ) {
226 if ( !headers_sent() ) {
228 }
229 }
230}
$GLOBALS['IP']
$wgMimeType
The default Content-Type header.
$wgSitename
Name of the site.
$wgShowExceptionDetails
If set to true, uncaught exceptions will print a complete stack trace to output.
wfHttpError( $code, $label, $desc)
Provide a simple HTTP error.
wfMsgReplaceArgs( $message, $args)
Replace message parameter keys on the given formatted output.
$fallback
$wgOut
Definition Setup.php:912
if( $line===false) $args
Definition cdb.php:64
static header( $code)
Output an HTTP status code header.
Internationalisation code.
Definition Language.php:35
MediaWiki exception.
static statusHeader( $code)
isLoggable()
Whether to log this exception in the exception debug log.
useMessageCache()
Can the extension use the Message class/wfMessage to get i18n-ed messages?
static header( $header)
Send a header, if we haven't already sent them.
getHTML()
If $wgShowExceptionDetails is true, return a HTML message with a backtrace to the error,...
static isCommandLine()
Check whether we are in command line mode or not to report the exception in the correct format.
useOutputPage()
Should the exception use $wgOut to output the error?
report()
Output a report about the exception and takes care of formatting.
getPageTitle()
Return the title of the page when reporting this error in a HTTP response.
reportHTML()
Output the exception report using HTML.
getText()
Get the text to display when reporting the error on the command line.
msg( $key, $fallback)
Get a message from i18n.
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as $wgLang
Definition design.txt:56
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
Definition hooks.txt:865
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
returning false will NOT prevent logging $e
Definition hooks.txt:2176
$header