MediaWiki REL1_33
RequestContext.php
Go to the documentation of this file.
1<?php
27use Wikimedia\ScopedCallback;
28
36 private $request;
37
41 private $title;
42
46 private $wikipage;
47
51 private $output;
52
56 private $user;
57
61 private $lang;
62
66 private $skin;
67
71 private $timing;
72
76 private $config;
77
81 private static $instance = null;
82
86 public function setConfig( Config $config ) {
87 $this->config = $config;
88 }
89
93 public function getConfig() {
94 if ( $this->config === null ) {
95 // @todo In the future, we could move this to WebStart.php so
96 // the Config object is ready for when initialization happens
97 $this->config = MediaWikiServices::getInstance()->getMainConfig();
98 }
99
100 return $this->config;
101 }
102
106 public function setRequest( WebRequest $request ) {
107 $this->request = $request;
108 }
109
113 public function getRequest() {
114 if ( $this->request === null ) {
115 global $wgCommandLineMode;
116 // create the WebRequest object on the fly
117 if ( $wgCommandLineMode ) {
118 $this->request = new FauxRequest( [] );
119 } else {
120 $this->request = new WebRequest();
121 }
122 }
123
124 return $this->request;
125 }
126
132 public function getStats() {
133 return MediaWikiServices::getInstance()->getStatsdDataFactory();
134 }
135
139 public function getTiming() {
140 if ( $this->timing === null ) {
141 $this->timing = new Timing( [
142 'logger' => LoggerFactory::getInstance( 'Timing' )
143 ] );
144 }
145 return $this->timing;
146 }
147
151 public function setTitle( Title $title = null ) {
152 $this->title = $title;
153 // Erase the WikiPage so a new one with the new title gets created.
154 $this->wikipage = null;
155 }
156
160 public function getTitle() {
161 if ( $this->title === null ) {
162 global $wgTitle; # fallback to $wg till we can improve this
163 $this->title = $wgTitle;
165 'GlobalTitleFail',
166 __METHOD__ . ' called by ' . wfGetAllCallers( 5 ) . ' with no title set.'
167 );
168 }
169
170 return $this->title;
171 }
172
179 public function hasTitle() {
180 return $this->title !== null;
181 }
182
191 public function canUseWikiPage() {
192 if ( $this->wikipage ) {
193 // If there's a WikiPage object set, we can for sure get it
194 return true;
195 }
196 // Only pages with legitimate titles can have WikiPages.
197 // That usually means pages in non-virtual namespaces.
198 $title = $this->getTitle();
199 return $title ? $title->canExist() : false;
200 }
201
206 public function setWikiPage( WikiPage $wikiPage ) {
207 $pageTitle = $wikiPage->getTitle();
208 if ( !$this->hasTitle() || !$pageTitle->equals( $this->getTitle() ) ) {
209 $this->setTitle( $pageTitle );
210 }
211 // Defer this to the end since setTitle sets it to null.
212 $this->wikipage = $wikiPage;
213 }
214
225 public function getWikiPage() {
226 if ( $this->wikipage === null ) {
227 $title = $this->getTitle();
228 if ( $title === null ) {
229 throw new MWException( __METHOD__ . ' called without Title object set' );
230 }
231 $this->wikipage = WikiPage::factory( $title );
232 }
233
234 return $this->wikipage;
235 }
236
240 public function setOutput( OutputPage $output ) {
241 $this->output = $output;
242 }
243
247 public function getOutput() {
248 if ( $this->output === null ) {
249 $this->output = new OutputPage( $this );
250 }
251
252 return $this->output;
253 }
254
258 public function setUser( User $user ) {
259 $this->user = $user;
260 // Invalidate cached user interface language
261 $this->lang = null;
262 }
263
267 public function getUser() {
268 if ( $this->user === null ) {
269 $this->user = User::newFromSession( $this->getRequest() );
270 }
271
272 return $this->user;
273 }
274
281 public static function sanitizeLangCode( $code ) {
282 global $wgLanguageCode;
283
284 // BCP 47 - letter case MUST NOT carry meaning
285 $code = strtolower( $code );
286
287 # Validate $code
288 if ( !$code || !Language::isValidCode( $code ) || $code === 'qqq' ) {
290 }
291
292 return $code;
293 }
294
300 public function setLanguage( $language ) {
301 if ( $language instanceof Language ) {
302 $this->lang = $language;
303 } elseif ( is_string( $language ) ) {
304 $language = self::sanitizeLangCode( $language );
305 $obj = Language::factory( $language );
306 $this->lang = $obj;
307 } else {
308 throw new MWException( __METHOD__ . " was passed an invalid type of data." );
309 }
310 }
311
319 public function getLanguage() {
320 if ( isset( $this->recursion ) ) {
321 trigger_error( "Recursion detected in " . __METHOD__, E_USER_WARNING );
322 $e = new Exception;
323 wfDebugLog( 'recursion-guard', "Recursion detected:\n" . $e->getTraceAsString() );
324
325 $code = $this->getConfig()->get( 'LanguageCode' ) ?: 'en';
326 $this->lang = Language::factory( $code );
327 } elseif ( $this->lang === null ) {
328 $this->recursion = true;
329
330 try {
331 $request = $this->getRequest();
332 $user = $this->getUser();
333
334 $code = $request->getVal( 'uselang', 'user' );
335 if ( $code === 'user' ) {
336 $code = $user->getOption( 'language' );
337 }
338 $code = self::sanitizeLangCode( $code );
339
340 Hooks::run( 'UserGetLanguageObject', [ $user, &$code, $this ] );
341
342 if ( $code === $this->getConfig()->get( 'LanguageCode' ) ) {
343 $this->lang = MediaWikiServices::getInstance()->getContentLanguage();
344 } else {
345 $obj = Language::factory( $code );
346 $this->lang = $obj;
347 }
348 } finally {
349 unset( $this->recursion );
350 }
351 }
352
353 return $this->lang;
354 }
355
359 public function setSkin( Skin $skin ) {
360 $this->skin = clone $skin;
361 $this->skin->setContext( $this );
362 }
363
367 public function getSkin() {
368 if ( $this->skin === null ) {
369 $skin = null;
370 Hooks::run( 'RequestContextCreateSkin', [ $this, &$skin ] );
371 $factory = SkinFactory::getDefaultInstance();
372
373 // If the hook worked try to set a skin from it
374 if ( $skin instanceof Skin ) {
375 $this->skin = $skin;
376 } elseif ( is_string( $skin ) ) {
377 // Normalize the key, just in case the hook did something weird.
378 $normalized = Skin::normalizeKey( $skin );
379 $this->skin = $factory->makeSkin( $normalized );
380 }
381
382 // If this is still null (the hook didn't run or didn't work)
383 // then go through the normal processing to load a skin
384 if ( $this->skin === null ) {
385 if ( !in_array( 'skin', $this->getConfig()->get( 'HiddenPrefs' ) ) ) {
386 # get the user skin
387 $userSkin = $this->getUser()->getOption( 'skin' );
388 $userSkin = $this->getRequest()->getVal( 'useskin', $userSkin );
389 } else {
390 # if we're not allowing users to override, then use the default
391 $userSkin = $this->getConfig()->get( 'DefaultSkin' );
392 }
393
394 // Normalize the key in case the user is passing gibberish
395 // or has old preferences (T71566).
396 $normalized = Skin::normalizeKey( $userSkin );
397
398 // Skin::normalizeKey will also validate it, so
399 // this won't throw an exception
400 $this->skin = $factory->makeSkin( $normalized );
401 }
402
403 // After all that set a context on whatever skin got created
404 $this->skin->setContext( $this );
405 }
406
407 return $this->skin;
408 }
409
419 public function msg( $key ) {
420 $args = func_get_args();
421
422 return wfMessage( ...$args )->setContext( $this );
423 }
424
430 public static function getMain() {
431 if ( self::$instance === null ) {
432 self::$instance = new self;
433 }
434
435 return self::$instance;
436 }
437
446 public static function getMainAndWarn( $func = __METHOD__ ) {
447 wfDebug( $func . ' called without context. ' .
448 "Using RequestContext::getMain() for sanity\n" );
449
450 return self::getMain();
451 }
452
456 public static function resetMain() {
457 if ( !( defined( 'MW_PHPUNIT_TEST' ) || defined( 'MW_PARSER_TEST' ) ) ) {
458 throw new MWException( __METHOD__ . '() should be called only from unit tests!' );
459 }
460 self::$instance = null;
461 }
462
470 public function exportSession() {
471 $session = MediaWiki\Session\SessionManager::getGlobalSession();
472 return [
473 'ip' => $this->getRequest()->getIP(),
474 'headers' => $this->getRequest()->getAllHeaders(),
475 'sessionId' => $session->isPersistent() ? $session->getId() : '',
476 'userId' => $this->getUser()->getId()
477 ];
478 }
479
502 public static function importScopedSession( array $params ) {
503 if ( strlen( $params['sessionId'] ) &&
504 MediaWiki\Session\SessionManager::getGlobalSession()->isPersistent()
505 ) {
506 // Sanity check to avoid sending random cookies for the wrong users.
507 // This method should only called by CLI scripts or by HTTP job runners.
508 throw new MWException( "Sessions can only be imported when none is active." );
509 } elseif ( !IP::isValid( $params['ip'] ) ) {
510 throw new MWException( "Invalid client IP address '{$params['ip']}'." );
511 }
512
513 if ( $params['userId'] ) { // logged-in user
514 $user = User::newFromId( $params['userId'] );
515 $user->load();
516 if ( !$user->getId() ) {
517 throw new MWException( "No user with ID '{$params['userId']}'." );
518 }
519 } else { // anon user
520 $user = User::newFromName( $params['ip'], false );
521 }
522
523 $importSessionFunc = function ( User $user, array $params ) {
524 global $wgRequest, $wgUser;
525
527
528 // Commit and close any current session
529 if ( MediaWiki\Session\PHPSessionHandler::isEnabled() ) {
530 session_write_close(); // persist
531 session_id( '' ); // detach
532 $_SESSION = []; // clear in-memory array
533 }
534
535 // Get new session, if applicable
536 $session = null;
537 if ( strlen( $params['sessionId'] ) ) { // don't make a new random ID
538 $manager = MediaWiki\Session\SessionManager::singleton();
539 $session = $manager->getSessionById( $params['sessionId'], true )
540 ?: $manager->getEmptySession();
541 }
542
543 // Remove any user IP or agent information, and attach the request
544 // with the new session.
545 $context->setRequest( new FauxRequest( [], false, $session ) );
546 $wgRequest = $context->getRequest(); // b/c
547
548 // Now that all private information is detached from the user, it should
549 // be safe to load the new user. If errors occur or an exception is thrown
550 // and caught (leaving the main context in a mixed state), there is no risk
551 // of the User object being attached to the wrong IP, headers, or session.
552 $context->setUser( $user );
553 $wgUser = $context->getUser(); // b/c
554 if ( $session && MediaWiki\Session\PHPSessionHandler::isEnabled() ) {
555 session_id( $session->getId() );
556 Wikimedia\quietCall( 'session_start' );
557 }
558 $request = new FauxRequest( [], false, $session );
559 $request->setIP( $params['ip'] );
560 foreach ( $params['headers'] as $name => $value ) {
561 $request->setHeader( $name, $value );
562 }
563 // Set the current context to use the new WebRequest
564 $context->setRequest( $request );
565 $wgRequest = $context->getRequest(); // b/c
566 };
567
568 // Stash the old session and load in the new one
569 $oUser = self::getMain()->getUser();
570 $oParams = self::getMain()->exportSession();
571 $oRequest = self::getMain()->getRequest();
572 $importSessionFunc( $user, $params );
573
574 // Set callback to save and close the new session and reload the old one
575 return new ScopedCallback(
576 function () use ( $importSessionFunc, $oUser, $oParams, $oRequest ) {
577 global $wgRequest;
578 $importSessionFunc( $oUser, $oParams );
579 // Restore the exact previous Request object (instead of leaving FauxRequest)
580 RequestContext::getMain()->setRequest( $oRequest );
581 $wgRequest = RequestContext::getMain()->getRequest(); // b/c
582 }
583 );
584 }
585
600 public static function newExtraneousContext( Title $title, $request = [] ) {
601 $context = new self;
602 $context->setTitle( $title );
603 if ( $request instanceof WebRequest ) {
604 $context->setRequest( $request );
605 } else {
606 $context->setRequest( new FauxRequest( $request ) );
607 }
608 $context->user = User::newFromName( '127.0.0.1', false );
609
610 return $context;
611 }
612}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
$wgLanguageCode
Site language code.
global $wgCommandLineMode
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfGetAllCallers( $limit=3)
Return a string consisting of callers in the stack.
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
if(! $wgDBerrorLogTZ) $wgRequest
Definition Setup.php:728
if(! $wgRequest->checkUrlExtension()) if(isset( $_SERVER['PATH_INFO']) && $_SERVER['PATH_INFO'] !='') $wgTitle
Definition api.php:57
if( $line===false) $args
Definition cdb.php:64
WebRequest clone which takes values from a provided array.
Internationalisation code.
Definition Language.php:36
MediaWiki exception.
PSR-3 logger instance factory.
MediaWikiServices is the service locator for the application scope of MediaWiki.
This class should be covered by a general architecture document which does not exist as of January 20...
Group all the pieces relevant to the context of a request into one instance.
static getMainAndWarn( $func=__METHOD__)
Get the RequestContext object associated with the main request and gives a warning to the log,...
canUseWikiPage()
Check whether a WikiPage object can be get with getWikiPage().
OutputPage $output
static importScopedSession(array $params)
Import an client IP address, HTTP headers, user ID, and session ID.
WebRequest $request
setUser(User $user)
static RequestContext $instance
static sanitizeLangCode( $code)
Accepts a language code and ensures it's sane.
setConfig(Config $config)
hasTitle()
Check, if a Title object is set.
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
setTitle(Title $title=null)
static newExtraneousContext(Title $title, $request=[])
Create a new extraneous context.
exportSession()
Export the resolved user IP, HTTP headers, user ID, and session ID.
setOutput(OutputPage $output)
setWikiPage(WikiPage $wikiPage)
static resetMain()
Resets singleton returned by getMain().
static getMain()
Get the RequestContext object associated with the main request.
getLanguage()
Get the Language object.
setRequest(WebRequest $request)
getWikiPage()
Get the WikiPage object.
setLanguage( $language)
setSkin(Skin $skin)
The main skin class which provides methods and properties for all other skins.
Definition Skin.php:38
An interface to help developers measure the performance of their applications.
Definition Timing.php:45
Represents a title within MediaWiki.
Definition Title.php:40
canExist()
Is this in a namespace that allows actual pages?
Definition Title.php:1110
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:48
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition User.php:585
getId()
Get the user's ID.
Definition User.php:2425
getOption( $oname, $defaultOverride=null, $ignoreHidden=false)
Get the user's current setting for a given option.
Definition User.php:3169
static newFromId( $id)
Static factory method for creation from a given user ID.
Definition User.php:609
static newFromSession(WebRequest $request=null)
Create a new user object using data from session.
Definition User.php:750
load( $flags=self::READ_NORMAL)
Load the user table data for this object from the source given by mFrom.
Definition User.php:358
The WebRequest class encapsulates getting at data passed in the URL or via a POSTed form stripping il...
Class representing a MediaWiki article and history.
Definition WikiPage.php:45
getTitle()
Get the title object of the article.
Definition WikiPage.php:294
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
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 and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same user
Wikitext formatted, in the key only.
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 $request
Definition hooks.txt:2843
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:2848
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:955
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password 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:856
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 use $formDescriptor instead 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
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:271
returning false will NOT prevent logging a wrapping ErrorException create2 Corresponds to logging log_action database field and which is displayed in the UI similar to $comment or false if none Defaults to false if not set multiOccurrence Can this option be passed multiple times Defaults to false if not set this hook should only be used to add variables that depend on the current page request
Definition hooks.txt:2224
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned $skin
Definition hooks.txt:2009
return true to allow those checks to and false if checking is done & $user
Definition hooks.txt:1510
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place $output
Definition hooks.txt:2272
returning false will NOT prevent logging $e
Definition hooks.txt:2175
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:37
Interface for configuration instances.
Definition Config.php:28
Interface for objects which can provide a MediaWiki context on request.
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
A helper class for throttling authentication attempts.
title
$params
if(!isset( $args[0])) $lang