Go to the documentation of this file.
51 $mainConfig->get(
'LBFactoryConf' ),
57 return new $class( $lbConf );
62 return $services->getDBLoadBalancerFactory()->getMainLB();
76 $cacheFile =
$services->getMainConfig()->get(
'SitesCacheFile' );
78 if ( $cacheFile !==
false ) {
88 $registry =
$services->getBootstrapConfig()->get(
'ConfigRegistry' );
91 foreach ( $registry
as $name => $callback ) {
92 $factory->register(
$name, $callback );
99 return $services->getConfigFactory()->makeConfig(
'main' );
108 $config->get(
'InterwikiExpiry' ),
109 $config->get(
'InterwikiCache' ),
110 $config->get(
'InterwikiScopes' ),
111 $config->get(
'InterwikiFallbackSite' )
117 rtrim(
$services->getMainConfig()->get(
'StatsdMetricPrefix' ),
'.' )
137 $names =
$services->getMainConfig()->get(
'ValidSkinNames' );
141 $class =
"Skin$skin";
142 return new $class(
$name );
146 $factory->register(
'fallback',
'Fallback',
function () {
150 $factory->register(
'apioutput',
'ApiOutput',
function () {
172 $secretKey =
$services->getMainConfig()->get(
'SecretKey' );
182 function ()
use ( $secretKey ) {
183 return $secretKey ?:
'';
191 defined(
'MW_CONFIG_FILE' ) ? [ MW_CONFIG_FILE ] : [],
192 LoggerFactory::getInstance(
'CryptRand' )
199 $secret = $config->get(
'HKDFSecret' ) ?: $config->get(
'SecretKey' );
201 throw new RuntimeException(
"Cannot use MWCryptHKDF without a secret." );
206 $context = [ microtime(), getmypid(), gethostname() ];
214 return new CryptHKDF( $secret, $config->get(
'HKDFAlgorithm' ),
221 $services->getMainConfig()->get(
'MediaHandlers' )
226 $logger = LoggerFactory::getInstance(
'Mime' );
227 $mainConfig =
$services->getMainConfig();
229 'typeFile' => $mainConfig->get(
'MimeTypeFile' ),
230 'infoFile' => $mainConfig->get(
'MimeInfoFile' ),
231 'xmlTypes' => $mainConfig->get(
'XMLMimeTypes' ),
233 function ( $mimeAnalyzer, &$head, &$tail, $file, &
$mime )
use ( $logger ) {
235 $deja =
new DjVuImage( $file );
236 if ( $deja->isValid() ) {
237 $logger->info( __METHOD__ .
": detected $file as image/vnd.djvu\n" );
238 $mime =
'image/vnd.djvu';
244 'MimeMagicGuessFromContent',
245 [ $mimeAnalyzer, &$head, &$tail, $file, &
$mime ]
248 'extCallback' =>
function ( $mimeAnalyzer,
$ext, &
$mime ) {
252 'initCallback' =>
function ( $mimeAnalyzer ) {
254 Hooks::run(
'MimeMagicInit', [ $mimeAnalyzer ] );
259 if (
$params[
'infoFile'] ===
'includes/mime.info' ) {
260 $params[
'infoFile'] = __DIR__ .
"/libs/mime/mime.info";
263 if (
$params[
'typeFile'] ===
'includes/mime.types' ) {
264 $params[
'typeFile'] = __DIR__ .
"/libs/mime/mime.types";
267 $detectorCmd = $mainConfig->get(
'MimeDetectorCommand' );
268 if ( $detectorCmd ) {
269 $params[
'detectCallback'] =
function ( $file )
use ( $detectorCmd ) {
279 $mainConfig =
$services->getMainConfig();
281 $mainConfig->get(
'SquidServers' ),
282 $mainConfig->get(
'SquidServersNoPurge' )
287 $conf =
$services->getMainConfig()->get(
'ParserConf' );
298 $config->get(
'CacheEpoch' )
319 if ( defined(
'MW_NO_SESSION' ) ) {
320 return $services->getLinkRendererFactory()->create();
336 $services->getMainConfig()->get(
'LocalInterwikis' )
341 return $services->getService(
'_MediaWikiTitleCodec' );
345 return $services->getService(
'_MediaWikiTitleCodec' );
349 $mainConfig =
$services->getMainConfig();
351 $id = $mainConfig->get(
'MainStash' );
352 if ( !isset( $mainConfig->get(
'ObjectCaches' )[$id] ) ) {
353 throw new UnexpectedValueException(
354 "Cache type \"$id\" is not present in \$wgObjectCaches." );
357 return \ObjectCache::newFromParams( $mainConfig->get(
'ObjectCaches' )[$id] );
361 $mainConfig =
$services->getMainConfig();
363 $id = $mainConfig->get(
'MainWANCache' );
364 if ( !isset( $mainConfig->get(
'WANObjectCaches' )[$id] ) ) {
365 throw new UnexpectedValueException(
366 "WAN cache type \"$id\" is not present in \$wgWANObjectCaches." );
369 $params = $mainConfig->get(
'WANObjectCaches' )[$id];
370 $objectCacheId =
$params[
'cacheId'];
371 if ( !isset( $mainConfig->get(
'ObjectCaches' )[$objectCacheId] ) ) {
372 throw new UnexpectedValueException(
373 "Cache type \"$objectCacheId\" is not present in \$wgObjectCaches." );
375 $params[
'store'] = $mainConfig->get(
'ObjectCaches' )[$objectCacheId];
377 return \ObjectCache::newWANCacheFromParams(
$params );
381 $mainConfig =
$services->getMainConfig();
383 if ( function_exists(
'apc_fetch' ) ) {
385 } elseif ( function_exists(
'apcu_fetch' ) ) {
387 } elseif ( function_exists(
'xcache_get' ) &&
wfIniGetBool(
'xcache.var_size' ) ) {
389 } elseif ( function_exists(
'wincache_ucache_get' ) ) {
395 if ( !isset( $mainConfig->get(
'ObjectCaches' )[$id] ) ) {
396 throw new UnexpectedValueException(
397 "Cache type \"$id\" is not present in \$wgObjectCaches." );
400 return \ObjectCache::newFromParams( $mainConfig->get(
'ObjectCaches' )[$id] );
404 $config =
$services->getMainConfig()->get(
'VirtualRestConfig' );
407 foreach ( $config[
'paths']
as $prefix => $serviceConfig ) {
408 $class = $serviceConfig[
'class'];
410 $constructArg = isset( $serviceConfig[
'options'] )
411 ? $serviceConfig[
'options']
413 $constructArg += $config[
'global'];
415 $vrsClient->mount( $prefix, [
'class' => $class,
'config' => $constructArg ] );
436 'time' => $config->get(
'MaxShellTime' ),
437 'walltime' => $config->get(
'MaxShellWallClockTime' ),
438 'memory' => $config->get(
'MaxShellMemory' ),
439 'filesize' => $config->get(
'MaxShellFileSize' ),
441 $cgroup = $config->get(
'ShellCgroup' );
444 $factory->setLogger( LoggerFactory::getInstance(
'exec' ) );
Factory class for spawning EventRelayer objects using configuration.
Cache for article titles (prefixed DB keys) and ids linked from one source.
Class to handle concurrent HTTP requests.
Provides a file-based cache of a SiteStore.
static getLocalClusterInstance()
Get the main cluster-local cache object.
SkinTemplate class for API output.
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
Simple store for keeping values in an associative array for the current process.
A BagOStuff object with no objects in it.
A service class for fetching the wiki's current read-only mode.
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
Caches user genders when needed to use correct namespace aliases.
Factory class for SearchEngine.
Allows to change the fields on the form that will be generated $name
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
Virtual HTTP service client loosely styled after a Virtual File System.
SkinTemplate class for the fallback skin.
static getInstance( $id)
Get a cached instance of the specified type of cache object.
A factory for application metric data.
static getLBFactoryClass(array $config)
Returns the LBFactory class to use and the load balancer configuration.
static applyDefaultConfig(array $lbConf, Config $mainConfig, ConfiguredReadOnlyMode $readOnlyMode)
wfGetCache( $cacheType)
Get a specific cache object.
when a variable name is used in a it is silently declared as a new masking the global
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title after the basic globals have been set but before ordinary actions take place or wrap services the preferred way to define a new service is the $wgServiceWiringFiles array $services
if( $ext=='php'|| $ext=='php5') $mime
Factory class to create Skin objects.
wfEscapeShellArg()
Version of escapeshellarg() that works better on Windows.
static constructClassInstance( $clazz, $args)
Construct an instance of the given class using the given arguments.
wfIniGetBool( $setting)
Safety wrapper around ini_get() for boolean settings.
Storage layer class for WatchedItems.
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
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
Factory class to create Config objects.
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
setStatsdDataFactory(StatsdDataFactoryInterface $stats)
Sets a StatsdDataFactory instance on the object.
Configuration handling class for SearchEngine.
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
wfIsHHVM()
Check if we are running under HHVM.
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
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
wfShellExec( $cmd, &$retval=null, $environ=[], $limits=[], $options=[])
Execute a shell command, with time and memory limits mirrored from the PHP configuration if supported...