Go to the documentation of this file.
27 use Wikimedia\ScopedCallback;
94 if ( $this->config ===
null ) {
97 $this->config = MediaWikiServices::getInstance()->getMainConfig();
114 if ( $this->
request ===
null ) {
133 return MediaWikiServices::getInstance()->getStatsdDataFactory();
140 if ( $this->timing ===
null ) {
141 $this->timing =
new Timing( [
142 'logger' => LoggerFactory::getInstance(
'Timing' )
154 $this->wikipage =
null;
161 if ( $this->
title ===
null ) {
162 global
$wgTitle; # fallback to $wg till we can improve
this
166 __METHOD__ .
' called by ' .
wfGetAllCallers( 5 ) .
' with no title set.'
180 return $this->
title !==
null;
192 if ( $this->wikipage ) {
208 if ( !$this->
hasTitle() || !$pageTitle->equals( $this->getTitle() ) ) {
212 $this->wikipage = $wikiPage;
226 if ( $this->wikipage ===
null ) {
229 throw new MWException( __METHOD__ .
' called without Title object set' );
248 if ( $this->
output ===
null ) {
249 $this->
output =
new OutputPage( $this );
268 if ( $this->
user ===
null ) {
301 if ( $language instanceof
Language ) {
302 $this->lang = $language;
303 } elseif ( is_string( $language ) ) {
308 throw new MWException( __METHOD__ .
" was passed an invalid type of data." );
320 if ( isset( $this->recursion ) ) {
321 trigger_error(
"Recursion detected in " . __METHOD__, E_USER_WARNING );
323 wfDebugLog(
'recursion-guard',
"Recursion detected:\n" .
$e->getTraceAsString() );
327 } elseif ( $this->lang ===
null ) {
328 $this->recursion =
true;
335 if (
$code ===
'user' ) {
343 $this->lang = MediaWikiServices::getInstance()->getContentLanguage();
349 unset( $this->recursion );
351 catch ( Exception $ex ) {
352 unset( $this->recursion );
364 $this->skin = clone
$skin;
372 if ( $this->skin ===
null ) {
380 } elseif ( is_string(
$skin ) ) {
383 $this->skin = $factory->makeSkin( $normalized );
388 if ( $this->skin ===
null ) {
389 if ( !in_array(
'skin', $this->
getConfig()->
get(
'HiddenPrefs' ) ) ) {
391 $userSkin = $this->
getUser()->getOption(
'skin' );
392 $userSkin = $this->
getRequest()->getVal(
'useskin', $userSkin );
394 # if we're not allowing users to override, then use the default
395 $userSkin = $this->
getConfig()->get(
'DefaultSkin' );
404 $this->skin = $factory->makeSkin( $normalized );
408 $this->skin->setContext( $this );
423 public function msg( $key ) {
424 $args = func_get_args();
435 if ( self::$instance ===
null ) {
436 self::$instance =
new self;
451 wfDebug( $func .
' called without context. ' .
452 "Using RequestContext::getMain() for sanity\n" );
461 if ( !( defined(
'MW_PHPUNIT_TEST' ) || defined(
'MW_PARSER_TEST' ) ) ) {
462 throw new MWException( __METHOD__ .
'() should be called only from unit tests!' );
464 self::$instance =
null;
478 'headers' => $this->
getRequest()->getAllHeaders(),
479 'sessionId' => $session->isPersistent() ? $session->getId() :
'',
480 'userId' => $this->
getUser()->getId()
507 if ( strlen(
$params[
'sessionId'] ) &&
508 MediaWiki\Session\SessionManager::getGlobalSession()->isPersistent()
512 throw new MWException(
"Sessions can only be imported when none is active." );
514 throw new MWException(
"Invalid client IP address '{$params['ip']}'." );
521 throw new MWException(
"No user with ID '{$params['userId']}'." );
533 if (
MediaWiki\Session\PHPSessionHandler::isEnabled() ) {
534 session_write_close();
541 if ( strlen(
$params[
'sessionId'] ) ) {
543 $session = $manager->getSessionById(
$params[
'sessionId'],
true )
544 ?: $manager->getEmptySession();
558 if ( $session &&
MediaWiki\Session\PHPSessionHandler::isEnabled() ) {
559 session_id( $session->getId() );
560 Wikimedia\quietCall(
'session_start' );
579 return new ScopedCallback(
580 function ()
use ( $importSessionFunc, $oUser, $oParams, $oRequest ) {
582 $importSessionFunc( $oUser, $oParams );
load( $flags=self::READ_NORMAL)
Load the user table data for this object from the source given by mFrom.
WebRequest clone which takes values from a provided array.
static newFromId( $id)
Static factory method for creation from a given user ID.
static sanitizeLangCode( $code)
Accepts a language code and ensures it's sane.
setRequest(WebRequest $request)
getId()
Get the user's ID.
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
setWikiPage(WikiPage $wikiPage)
static newFromSession(WebRequest $request=null)
Create a new user object using data from session.
static RequestContext $instance
Class representing a MediaWiki article and history.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
static newExtraneousContext(Title $title, $request=[])
Create a new extraneous context.
if(! $wgRequest->checkUrlExtension()) if(isset( $_SERVER['PATH_INFO']) && $_SERVER['PATH_INFO'] !='') $wgTitle
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
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
Interface for configuration instances.
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
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
static normalizeKey( $key)
Normalize a skin preference value to a form that can be loaded.
An interface to help developers measure the performance of their applications.
global $wgCommandLineMode
getWikiPage()
Get the WikiPage object.
getTitle()
Get the title object of the article.
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
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
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging a wrapping ErrorException instead of letting the login form give the generic error message that the account does not exist For when the account has been renamed or deleted or an array to pass a message key and parameters create2 Corresponds to logging log_action database field and which is displayed in the UI similar to $comment this hook should only be used to add variables that depend on the current page request
Group all the pieces relevant to the context of a request into one instance.
canExist()
Is this in a namespace that allows actual pages?
getLanguage()
Get the Language object.
static getMainAndWarn( $func=__METHOD__)
Get the RequestContext object associated with the main request and gives a warning to the log,...
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))
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
setContext(IContextSource $context)
Allows to change the fields on the form that will be generated $name
static resetMain()
Resets singleton returned by getMain().
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
getOption( $oname, $defaultOverride=null, $ignoreHidden=false)
Get the user's current setting for a given option.
$wgLanguageCode
Site language code.
static getMain()
Get the RequestContext object associated with the main request.
static isValid( $ip)
Validate an IP address.
static isValidCode( $code)
Returns true if a language code string is of a valid form, whether or not it exists.
static importScopedSession(array $params)
Import an client IP address, HTTP headers, user ID, and session ID.
Interface for objects which can provide a MediaWiki context on request.
The WebRequest class encapsulates getting at data passed in the URL or via a POSTed form stripping il...
wfGetAllCallers( $limit=3)
Return a string consisting of callers in the stack.
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
Represents a title within MediaWiki.
getVal( $name, $default=null)
Fetch a scalar from the input or return $default if it's not set.
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
setOutput(OutputPage $output)
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
static factory( $code)
Get a cached or new language object for a given language code.
canUseWikiPage()
Check whether a WikiPage object can be get with getWikiPage().
if(! $wgDBerrorLogTZ) $wgRequest
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 MediaWikiServices
The main skin class which provides methods and properties for all other skins.
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 "<
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
setConfig(Config $config)
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Internationalisation code.
static getDefaultInstance()
exportSession()
Export the resolved user IP, HTTP headers, user ID, and session ID.
hasTitle()
Check, if a Title object is set.
setTitle(Title $title=null)