wiki.techinc.nl/includes/Exception.php

218 lines
5.1 KiB
PHP
Raw Normal View History

<?php
class MWException extends Exception
{
function useOutputPage() {
Merged localisation-work branch: * Made lines from initialiseMessages() appear as list items during installation * Moved the bulk of the localisation data from the Language*.php files to the Messages*.php files. Deleted most of the Languages*.php files. * Introduced "stub global" framework to provide deferred initialisation of core modules. * Removed placeholder values for $wgTitle and $wgArticle, these variables will now be null during the initialisation process, until they are set by index.php or another entry point. * Added DBA cache type, for BDB-style caches. * Removed custom date format functions, replacing them with a format string in the style of PHP's date(). Used string identifiers instead of integer identifiers, in both the language files and user preferences. Migration should be transparent in most cases. * Simplified the initialisation API for LoadBalancer objects. * Removed the broken altencoding feature. * Moved default user options and toggles from Language to User. Language objects are still able to define default preference overrides and extra user toggles, via a slightly different interface. * Don't include the date option in the parser cache rendering hash unless $wgUseDynamicDates is enabled. * Merged LanguageUtf8 with Language. Removed LanguageUtf8.php. * Removed inclusion of language files from the bottom of Language.php. This is now consistently done from Language::factory(). * Add the name of the executing maintenance script to the debug log. Start the profiler during maintenance scripts. * Added "serialized" directory, for storing precompiled data in serialized form.
2006-07-26 07:15:39 +00:00
return !empty( $GLOBALS['wgFullyInitialised'] ) &&
!empty( $GLOBALS['wgArticle'] ) && !empty( $GLOBALS['wgTitle'] );
}
function useMessageCache() {
global $wgLang;
return is_object( $wgLang );
}
function msg( $key, $fallback /*[, params...] */ ) {
$args = array_slice( func_get_args(), 2 );
if ( $this->useMessageCache() ) {
return wfMsgReal( $key, $args );
} else {
return wfMsgReplaceArgs( $fallback, $args );
}
}
function getHTML() {
global $wgShowExceptionDetails;
if( $wgShowExceptionDetails ) {
return '<p>' . htmlspecialchars( $this->getMessage() ) .
'</p><p>Backtrace:</p><p>' . nl2br( htmlspecialchars( $this->getTraceAsString() ) ) .
"</p>\n";
} else {
return "<p>Set <b><tt>\$wgShowExceptionDetails = true;</tt></b> " .
"in LocalSettings.php to show detailed debugging information.</p>";
}
}
function getText() {
global $wgShowExceptionDetails;
if( $wgShowExceptionDetails ) {
return $this->getMessage() .
"\nBacktrace:\n" . $this->getTraceAsString() . "\n";
} else {
return "<p>Set <tt>\$wgShowExceptionDetails = true;</tt> " .
"in LocalSettings.php to show detailed debugging information.</p>";
}
}
function getPageTitle() {
if ( $this->useMessageCache() ) {
return wfMsg( 'internalerror' );
} else {
global $wgSitename;
return "$wgSitename error";
}
}
2006-08-02 17:40:09 +00:00
function getLogMessage() {
$file = $this->getFile();
$line = $this->getLine();
$message = $this->getMessage();
return "{$_SERVER['REQUEST_URI']} Exception from line $line of $file: $message";
}
function reportHTML() {
global $wgOut;
if ( $this->useOutputPage() ) {
$wgOut->setPageTitle( $this->getPageTitle() );
$wgOut->setRobotpolicy( "noindex,nofollow" );
$wgOut->setArticleRelated( false );
$wgOut->enableClientCache( false );
$wgOut->redirect( '' );
$wgOut->clearHTML();
$wgOut->addHTML( $this->getHTML() );
$wgOut->output();
} else {
echo $this->htmlHeader();
echo $this->getHTML();
echo $this->htmlFooter();
}
}
function reportText() {
echo $this->getText();
}
function report() {
global $wgCommandLineMode;
if ( $wgCommandLineMode ) {
$this->reportText();
} else {
2006-08-02 17:40:09 +00:00
$log = $this->getLogMessage();
if ( $log ) {
wfDebugLog( 'exception', $log );
}
$this->reportHTML();
}
}
function htmlHeader() {
global $wgLogo, $wgSitename, $wgOutputEncoding;
if ( !headers_sent() ) {
header( 'HTTP/1.0 500 Internal Server Error' );
header( 'Content-type: text/html; charset='.$wgOutputEncoding );
/* Don't cache error pages! They cause no end of trouble... */
header( 'Cache-control: none' );
header( 'Pragma: nocache' );
}
$title = $this->getPageTitle();
echo "<html>
<head>
<title>$title</title>
</head>
<body>
<h1><img src='$wgLogo' style='float:left;margin-right:1em' alt=''>$title</h1>
";
}
function htmlFooter() {
echo "</body></html>";
2006-07-11 17:40:11 +00:00
}
2006-08-02 17:40:09 +00:00
}
/**
2006-07-11 17:40:11 +00:00
* Exception class which takes an HTML error message, and does not
* produce a backtrace. Replacement for OutputPage::fatalError().
*/
class FatalError extends MWException {
function getHTML() {
return $this->getMessage();
}
function getText() {
return $this->getMessage();
}
}
class ErrorPageError extends MWException {
public $title, $msg;
/**
* Note: these arguments are keys into wfMsg(), not text!
*/
function __construct( $title, $msg ) {
$this->title = $title;
$this->msg = $msg;
parent::__construct( wfMsg( $msg ) );
}
function report() {
global $wgOut;
$wgOut->showErrorPage( $this->title, $this->msg );
$wgOut->output();
}
}
/**
* Install an exception handler for MediaWiki exception types.
*/
function wfInstallExceptionHandler() {
set_exception_handler( 'wfExceptionHandler' );
}
/**
* Report an exception to the user
*/
function wfReportException( Exception $e ) {
if ( is_a( $e, 'MWException' ) ) {
try {
$e->report();
} catch ( Exception $e2 ) {
// Exception occurred from within exception handler
2006-07-11 17:40:11 +00:00
// Show a simpler error message for the original exception,
// don't try to invoke report()
$message = "MediaWiki internal error.\n\n" .
2006-07-11 17:40:11 +00:00
"Original exception: " . $e->__toString() .
"\n\nException caught inside exception handler: " .
$e2->__toString() . "\n";
if ( !empty( $GLOBALS['wgCommandLineMode'] ) ) {
echo $message;
} else {
echo nl2br( htmlspecialchars( $message ) ). "\n";
}
}
} else {
echo $e->__toString();
}
}
/**
* Exception handler which simulates the appropriate catch() handling:
2006-07-11 17:40:11 +00:00
*
* try {
* ...
* } catch ( MWException $e ) {
* $e->report();
* } catch ( Exception $e ) {
* echo $e->__toString();
* }
*/
function wfExceptionHandler( $e ) {
global $wgFullyInitialised;
wfReportException( $e );
// Final cleanup, similar to wfErrorExit()
if ( $wgFullyInitialised ) {
try {
wfLogProfilingData(); // uses $wgRequest, hence the $wgFullyInitialised condition
} catch ( Exception $e ) {}
}
// Exit value should be nonzero for the benefit of shell jobs
exit( 1 );
}
?>