Go to the documentation of this file.
25 use Liuggio\StatsdClient\Factory\StatsdDataFactory;
28 use Wikimedia\ScopedCallback;
99 if ( $this->config ===
null ) {
102 $this->config = MediaWikiServices::getInstance()->getMainConfig();
123 if ( $this->
request ===
null ) {
126 if ( $wgCommandLineMode ) {
144 return MediaWikiServices::getInstance()->getStatsdDataFactory();
153 if ( $this->timing ===
null ) {
154 $this->timing =
new Timing( [
155 'logger' => LoggerFactory::getInstance(
'Timing' )
169 $this->wikipage =
null;
178 if ( $this->
title ===
null ) {
183 __METHOD__ .
' called by ' .
wfGetAllCallers( 5 ) .
' with no title set.'
197 return $this->
title !==
null;
209 if ( $this->wikipage ) {
227 if ( !$this->
hasTitle() || !$pageTitle->equals( $this->getTitle() ) ) {
231 $this->wikipage = $p;
245 if ( $this->wikipage ===
null ) {
248 throw new MWException( __METHOD__ .
' called without Title object set' );
269 if ( $this->
output ===
null ) {
291 if ( $this->
user ===
null ) {
312 wfDebug(
"Invalid user language code\n" );
329 } elseif ( is_string( $l ) ) {
334 throw new MWException( __METHOD__ .
" was passed an invalid type of data." );
346 if ( isset( $this->recursion ) ) {
347 trigger_error(
"Recursion detected in " . __METHOD__, E_USER_WARNING );
349 wfDebugLog(
'recursion-guard',
"Recursion detected:\n" .
$e->getTraceAsString() );
353 } elseif ( $this->lang ===
null ) {
354 $this->recursion =
true;
363 if (
$code ===
'user' ) {
377 unset( $this->recursion );
379 catch ( Exception $ex ) {
380 unset( $this->recursion );
404 if ( $this->
skin ===
null ) {
412 } elseif ( is_string(
$skin ) ) {
415 $this->
skin = $factory->makeSkin( $normalized );
420 if ( $this->
skin ===
null ) {
421 if ( !in_array(
'skin', $this->
getConfig()->
get(
'HiddenPrefs' ) ) ) {
423 $userSkin = $this->
getUser()->getOption(
'skin' );
424 $userSkin = $this->
getRequest()->getVal(
'useskin', $userSkin );
426 # if we're not allowing users to override, then use the default
427 $userSkin = $this->
getConfig()->get(
'DefaultSkin' );
436 $this->
skin = $factory->makeSkin( $normalized );
456 $args = func_get_args();
458 return call_user_func_array(
'wfMessage',
$args )->setContext( $this );
469 if ( self::$instance ===
null ) {
470 self::$instance =
new self;
485 wfDebug( $func .
' called without context. ' .
486 "Using RequestContext::getMain() for sanity\n" );
495 if ( !( defined(
'MW_PHPUNIT_TEST' ) || defined(
'MW_PARSER_TEST' ) ) ) {
496 throw new MWException( __METHOD__ .
'() should be called only from unit tests!' );
498 self::$instance =
null;
512 'headers' => $this->
getRequest()->getAllHeaders(),
513 'sessionId' => $session->isPersistent() ? $session->getId() :
'',
514 'userId' => $this->
getUser()->getId()
541 if ( strlen(
$params[
'sessionId'] ) &&
542 MediaWiki\Session\SessionManager::getGlobalSession()->isPersistent()
546 throw new MWException(
"Sessions can only be imported when none is active." );
548 throw new MWException(
"Invalid client IP address '{$params['ip']}'." );
555 throw new MWException(
"No user with ID '{$params['userId']}'." );
567 if (
MediaWiki\Session\PHPSessionHandler::isEnabled() ) {
568 session_write_close();
575 if ( strlen(
$params[
'sessionId'] ) ) {
577 $session = $manager->getSessionById(
$params[
'sessionId'],
true )
578 ?: $manager->getEmptySession();
592 if ( $session &&
MediaWiki\Session\PHPSessionHandler::isEnabled() ) {
593 session_id( $session->getId() );
594 MediaWiki\quietCall(
'session_start' );
613 return new ScopedCallback(
614 function ()
use ( $importSessionFunc, $oUser, $oParams, $oRequest ) {
616 $importSessionFunc( $oUser, $oParams );
load( $flags=self::READ_NORMAL)
Load the user table data for this object from the source given by mFrom.
error also a ContextSource you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
WebRequest clone which takes values from a provided array.
static newFromId( $id)
Static factory method for creation from a given user ID.
getStats()
Get the Stats object.
static sanitizeLangCode( $code)
Accepts a language code and ensures it's sane.
getId()
Get the user's ID.
setUser(User $u)
Set the User object.
setConfig(Config $c)
Set the Config object.
static newFromSession(WebRequest $request=null)
Create a new user object using data from session.
static RequestContext $instance
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
getRequest()
Get the WebRequest object.
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.
Allows to change the fields on the form that will be generated $name
if(! $wgRequest->checkUrlExtension()) if(! $wgEnableAPI) $wgTitle
getRequest()
Get the WebRequest object.
getUser()
Get the User object.
getUser()
Get the User object.
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
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.
getConfig()
Get the Config object.
getTitle()
Get the title object of the article.
setSkin(Skin $s)
Set the Skin object.
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
when a variable name is used in a it is silently declared as a new masking the global
Group all the pieces relevant to the context of a request into one instance.
canExist()
Is this in a namespace that allows actual pages?
getTiming()
Get the timing object.
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,...
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)
Set the IContextSource object.
This class should be covered by a general architecture document which does not exist as of January 20...
getSkin()
Get the Skin object.
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
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a skin(according to that user 's preference)
setWikiPage(WikiPage $p)
Set the WikiPage object.
getOption( $oname, $defaultOverride=null, $ignoreHidden=false)
Get the user's current setting for a given option.
$wgLanguageCode
Site language code.
getTitle()
Get the Title object.
static getMain()
Static methods.
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.
Represents a title within MediaWiki.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
getVal( $name, $default=null)
Fetch a scalar from the input or return $default if it's not set.
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
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
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
getOutput()
Get the OutputPage object.
The main skin class which provides methods and properties for all other skins.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
setLanguage( $l)
Set the Language object.
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)
Set the Title object.
the array() calling protocol came about after MediaWiki 1.4rc1.
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang
setRequest(WebRequest $r)
Set the WebRequest object.