MediaWiki  1.29.1
HeaderCallback.php
Go to the documentation of this file.
1 <?php
2 
3 namespace MediaWiki;
4 
6  private static $headersSentException;
7  private static $messageSent = false;
8 
14  public static function register() {
15  header_register_callback( [ __CLASS__, 'callback' ] );
16  }
17 
21  public static function callback() {
22  // Prevent caching of responses with cookies (T127993)
23  $headers = [];
24  foreach ( headers_list() as $header ) {
25  list( $name, $value ) = explode( ':', $header, 2 );
26  $headers[strtolower( trim( $name ) )][] = trim( $value );
27  }
28 
29  if ( isset( $headers['set-cookie'] ) ) {
30  $cacheControl = isset( $headers['cache-control'] )
31  ? implode( ', ', $headers['cache-control'] )
32  : '';
33 
34  if ( !preg_match( '/(?:^|,)\s*(?:private|no-cache|no-store)\s*(?:$|,)/i',
35  $cacheControl )
36  ) {
37  header( 'Expires: Thu, 01 Jan 1970 00:00:00 GMT' );
38  header( 'Cache-Control: private, max-age=0, s-maxage=0' );
39  \MediaWiki\Logger\LoggerFactory::getInstance( 'cache-cookies' )->warning(
40  'Cookies set on {url} with Cache-Control "{cache-control}"', [
42  'cookies' => $headers['set-cookie'],
43  'cache-control' => $cacheControl ?: '<not set>',
44  ]
45  );
46  }
47  }
48 
49  // Save a backtrace for logging in case it turns out that headers were sent prematurely
50  self::$headersSentException = new \Exception( 'Headers already sent from this point' );
51  }
52 
57  public static function warnIfHeadersSent() {
58  if ( headers_sent() && !self::$messageSent ) {
59  self::$messageSent = true;
60  \MWDebug::warning( 'Headers already sent, should send headers earlier than ' .
61  wfGetCaller( 3 ) );
62  $logger = \MediaWiki\Logger\LoggerFactory::getInstance( 'headers-sent' );
63  $logger->error( 'Warning: headers were already sent from the location below', [
64  'exception' => self::$headersSentException,
65  'detection-trace' => new \Exception( 'Detected here' ),
66  ] );
67  }
68  }
69 }
MediaWiki\HeaderCallback\callback
static callback()
The callback, which is called by the transport.
Definition: HeaderCallback.php:21
MediaWiki\Logger\LoggerFactory\getInstance
static getInstance( $channel)
Get a named logger instance from the currently configured logger factory.
Definition: LoggerFactory.php:93
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:304
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
MediaWiki
A helper class for throttling authentication attempts.
list
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
$value
$value
Definition: styleTest.css.php:45
$header
$header
Definition: updateCredits.php:35
MediaWiki\HeaderCallback
Definition: HeaderCallback.php:5
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
WebRequest\getGlobalRequestURL
static getGlobalRequestURL()
Return the path and query string portion of the main request URI.
Definition: WebRequest.php:783
MWDebug\warning
static warning( $msg, $callerOffset=1, $level=E_USER_NOTICE, $log='auto')
Adds a warning entry to the log.
Definition: MWDebug.php:151
wfGetCaller
wfGetCaller( $level=2)
Get the name of the function which called this function wfGetCaller( 1 ) is the function with the wfG...
Definition: GlobalFunctions.php:1561
MediaWiki\HeaderCallback\$headersSentException
static $headersSentException
Definition: HeaderCallback.php:6
MediaWiki\HeaderCallback\warnIfHeadersSent
static warnIfHeadersSent()
Log a warning message if headers have already been sent.
Definition: HeaderCallback.php:57