MediaWiki  1.33.0
HttpError.php
Go to the documentation of this file.
1 <?php
22 
30 class HttpError extends MWException {
32 
38  public function __construct( $httpCode, $content, $header = null ) {
39  parent::__construct( $content );
40  $this->httpCode = (int)$httpCode;
41  $this->header = $header;
42  $this->content = $content;
43  }
44 
54  public function isLoggable() {
55  return false;
56  }
57 
63  public function getStatusCode() {
64  return $this->httpCode;
65  }
66 
72  public function report() {
73  $this->doLog();
74 
75  HttpStatus::header( $this->httpCode );
76  header( 'Content-type: text/html; charset=utf-8' );
77 
78  print $this->getHTML();
79  }
80 
81  private function doLog() {
82  $logger = LoggerFactory::getInstance( 'HttpError' );
84 
85  if ( $content instanceof Message ) {
86  $content = $content->text();
87  }
88 
89  $context = [
90  'file' => $this->getFile(),
91  'line' => $this->getLine(),
92  'http_code' => $this->httpCode,
93  ];
94 
95  $logMsg = "$content ({http_code}) from {file}:{line}";
96 
97  if ( $this->getStatusCode() < 500 ) {
98  $logger->info( $logMsg, $context );
99  } else {
100  $logger->error( $logMsg, $context );
101  }
102  }
103 
110  public function getHTML() {
111  if ( $this->header === null ) {
112  $titleHtml = htmlspecialchars( HttpStatus::getMessage( $this->httpCode ) );
113  } elseif ( $this->header instanceof Message ) {
114  $titleHtml = $this->header->escaped();
115  } else {
116  $titleHtml = htmlspecialchars( $this->header );
117  }
118 
119  if ( $this->content instanceof Message ) {
120  $contentHtml = $this->content->escaped();
121  } else {
122  $contentHtml = nl2br( htmlspecialchars( $this->content ) );
123  }
124 
125  return "<!DOCTYPE html>\n" .
126  "<html><head><title>$titleHtml</title></head>\n" .
127  "<body><h1>$titleHtml</h1><p>$contentHtml</p></body></html>\n";
128  }
129 }
content
per default it will return the text for text based content
Definition: contenthandler.txt:104
$context
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
Definition: hooks.txt:2636
HttpError\$header
$header
Definition: HttpError.php:31
HttpError\report
report()
Report and log the HTTP error.
Definition: HttpError.php:72
HttpError
Show an error that looks like an HTTP server error.
Definition: HttpError.php:30
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
HttpError\$content
$content
Definition: HttpError.php:31
HttpError\getStatusCode
getStatusCode()
Returns the HTTP status code supplied to the constructor.
Definition: HttpError.php:63
HttpError\isLoggable
isLoggable()
We don't want the default exception logging as we got our own logging set up in self::report.
Definition: HttpError.php:54
MWException
MediaWiki exception.
Definition: MWException.php:26
HttpError\$httpCode
$httpCode
Definition: HttpError.php:31
HttpError\__construct
__construct( $httpCode, $content, $header=null)
Definition: HttpError.php:38
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
HttpError\getHTML
getHTML()
Returns HTML for reporting the HTTP error.
Definition: HttpError.php:110
MWException\header
static header( $header)
Send a header, if we haven't already sent them.
Definition: MWException.php:251
HttpStatus\getMessage
static getMessage( $code)
Get the message associated with an HTTP response status code.
Definition: HttpStatus.php:34
HttpStatus\header
static header( $code)
Output an HTTP status code header.
Definition: HttpStatus.php:96
LoggerFactory
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method. MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances. The "Spi" in MediaWiki\Logger\Spi stands for "service provider interface". An SPI is an API intended to be implemented or extended by a third party. This software design pattern is intended to enable framework extension and replaceable components. It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki. The service provider interface allows the backend logging library to be implemented in multiple ways. The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime. This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance. Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
Definition: logger.txt:5
HttpError\doLog
doLog()
Definition: HttpError.php:81