51use Wikimedia\ObjectFactory;
58 $mainConfig->get(
'LBFactoryConf' ),
64 $instance =
new $class( $lbConf );
72 return $services->getDBLoadBalancerFactory()->getMainLB();
86 $cacheFile =
$services->getMainConfig()->get(
'SitesCacheFile' );
88 if ( $cacheFile !==
false ) {
98 $registry =
$services->getBootstrapConfig()->get(
'ConfigRegistry' );
101 foreach ( $registry as $name => $callback ) {
102 $factory->register( $name, $callback );
109 return $services->getConfigFactory()->makeConfig(
'main' );
118 $config->get(
'InterwikiExpiry' ),
119 $config->get(
'InterwikiCache' ),
120 $config->get(
'InterwikiScopes' ),
121 $config->get(
'InterwikiFallbackSite' )
127 rtrim(
$services->getMainConfig()->get(
'StatsdMetricPrefix' ),
'.' )
147 $names =
$services->getMainConfig()->get(
'ValidSkinNames' );
149 foreach ( $names as $name => $skin ) {
150 $factory->register( $name, $skin,
function () use ( $name, $skin ) {
151 $class =
"Skin$skin";
152 return new $class( $name );
156 $factory->register(
'fallback',
'Fallback',
function () {
160 $factory->register(
'apioutput',
'ApiOutput',
function () {
172 $services->getMainConfig()->get(
'UpdateRowsPerQuery' )
174 $store->setStatsdDataFactory(
$services->getStatsdDataFactory() );
176 if (
$services->getMainConfig()->get(
'ReadOnlyWatchedItemStore' ) ) {
192 $secretKey =
$services->getMainConfig()->get(
'SecretKey' );
202 function () use ( $secretKey ) {
203 return $secretKey ?:
'';
211 defined(
'MW_CONFIG_FILE' ) ? [ MW_CONFIG_FILE ] : [],
212 LoggerFactory::getInstance(
'CryptRand' )
219 $secret = $config->get(
'HKDFSecret' ) ?: $config->get(
'SecretKey' );
221 throw new RuntimeException(
"Cannot use MWCryptHKDF without a secret." );
226 $context = [ microtime(), getmypid(), gethostname() ];
234 return new CryptHKDF( $secret, $config->get(
'HKDFAlgorithm' ),
241 $services->getMainConfig()->get(
'MediaHandlers' )
246 $logger = LoggerFactory::getInstance(
'Mime' );
247 $mainConfig =
$services->getMainConfig();
249 'typeFile' => $mainConfig->get(
'MimeTypeFile' ),
250 'infoFile' => $mainConfig->get(
'MimeInfoFile' ),
251 'xmlTypes' => $mainConfig->get(
'XMLMimeTypes' ),
253 function ( $mimeAnalyzer, &$head, &$tail, $file, &
$mime ) use ( $logger ) {
256 if ( $deja->isValid() ) {
257 $logger->info( __METHOD__ .
": detected $file as image/vnd.djvu\n" );
258 $mime =
'image/vnd.djvu';
264 'MimeMagicGuessFromContent',
265 [ $mimeAnalyzer, &$head, &$tail, $file, &
$mime ]
268 'extCallback' =>
function ( $mimeAnalyzer,
$ext, &
$mime ) {
272 'initCallback' =>
function ( $mimeAnalyzer ) {
274 Hooks::run(
'MimeMagicInit', [ $mimeAnalyzer ] );
279 if (
$params[
'infoFile'] ===
'includes/mime.info' ) {
280 $params[
'infoFile'] = __DIR__ .
"/libs/mime/mime.info";
283 if (
$params[
'typeFile'] ===
'includes/mime.types' ) {
284 $params[
'typeFile'] = __DIR__ .
"/libs/mime/mime.types";
287 $detectorCmd = $mainConfig->get(
'MimeDetectorCommand' );
288 if ( $detectorCmd ) {
289 $factory =
$services->getShellCommandFactory();
290 $params[
'detectCallback'] =
function ( $file ) use ( $detectorCmd, $factory ) {
291 $result = $factory->create()
293 ->unsafeParams( $detectorCmd )
296 return $result->getStdout();
305 $mainConfig =
$services->getMainConfig();
307 $mainConfig->get(
'SquidServers' ),
308 $mainConfig->get(
'SquidServersNoPurge' )
313 $conf =
$services->getMainConfig()->get(
'ParserConf' );
314 return ObjectFactory::constructClassInstance( $conf[
'class'], [ $conf ] );
324 $config->get(
'CacheEpoch' )
345 if ( defined(
'MW_NO_SESSION' ) ) {
346 return $services->getLinkRendererFactory()->create();
362 $services->getMainConfig()->get(
'LocalInterwikis' )
367 return $services->getService(
'_MediaWikiTitleCodec' );
371 return $services->getService(
'_MediaWikiTitleCodec' );
375 $mainConfig =
$services->getMainConfig();
377 $id = $mainConfig->get(
'MainStash' );
378 if ( !isset( $mainConfig->get(
'ObjectCaches' )[$id] ) ) {
379 throw new UnexpectedValueException(
380 "Cache type \"$id\" is not present in \$wgObjectCaches." );
383 return \ObjectCache::newFromParams( $mainConfig->get(
'ObjectCaches' )[$id] );
387 $mainConfig =
$services->getMainConfig();
389 $id = $mainConfig->get(
'MainWANCache' );
390 if ( !isset( $mainConfig->get(
'WANObjectCaches' )[$id] ) ) {
391 throw new UnexpectedValueException(
392 "WAN cache type \"$id\" is not present in \$wgWANObjectCaches." );
395 $params = $mainConfig->get(
'WANObjectCaches' )[$id];
396 $objectCacheId =
$params[
'cacheId'];
397 if ( !isset( $mainConfig->get(
'ObjectCaches' )[$objectCacheId] ) ) {
398 throw new UnexpectedValueException(
399 "Cache type \"$objectCacheId\" is not present in \$wgObjectCaches." );
401 $params[
'store'] = $mainConfig->get(
'ObjectCaches' )[$objectCacheId];
403 return \ObjectCache::newWANCacheFromParams(
$params );
407 $mainConfig =
$services->getMainConfig();
409 if ( function_exists(
'apc_fetch' ) ) {
411 } elseif ( function_exists(
'apcu_fetch' ) ) {
413 } elseif ( function_exists(
'wincache_ucache_get' ) ) {
419 if ( !isset( $mainConfig->get(
'ObjectCaches' )[$id] ) ) {
420 throw new UnexpectedValueException(
421 "Cache type \"$id\" is not present in \$wgObjectCaches." );
424 return \ObjectCache::newFromParams( $mainConfig->get(
'ObjectCaches' )[$id] );
428 $config =
$services->getMainConfig()->get(
'VirtualRestConfig' );
431 foreach ( $config[
'paths'] as $prefix => $serviceConfig ) {
432 $class = $serviceConfig[
'class'];
434 $constructArg = isset( $serviceConfig[
'options'] )
435 ? $serviceConfig[
'options']
437 $constructArg += $config[
'global'];
439 $vrsClient->mount( $prefix, [
'class' => $class,
'config' => $constructArg ] );
458 $services->getMainConfig()->get(
'EnableUploads' ),
459 LoggerFactory::getInstance(
'UploadRevisionImporter' )
466 LoggerFactory::getInstance(
'OldRevisionImporter' ),
474 LoggerFactory::getInstance(
'OldRevisionImporter' ),
483 'time' => $config->get(
'MaxShellTime' ),
484 'walltime' => $config->get(
'MaxShellWallClockTime' ),
485 'memory' => $config->get(
'MaxShellMemory' ),
486 'filesize' => $config->get(
'MaxShellFileSize' ),
488 $cgroup = $config->get(
'ShellCgroup' );
489 $restrictionMethod = $config->get(
'ShellRestrictionMethod' );
491 $factory =
new CommandFactory( $limits, $cgroup, $restrictionMethod );
492 $factory->setLogger( LoggerFactory::getInstance(
'exec' ) );
493 $factory->logStderr();
502 $config->get(
'ExternalStores' )
508 $blobStore =
$services->getService(
'_SqlBlobStore' );
518 $store->setLogger( LoggerFactory::getInstance(
'RevisionStore' ) );
521 $store->setContentHandlerUseDB( $config->get(
'ContentHandlerUseDB' ) );
545 return $services->getService(
'_SqlBlobStore' );
549 return $services->getBlobStoreFactory()->newSqlBlobStore();
556 LoggerFactory::getInstance(
'NameTableSqlStore' ),
573 LoggerFactory::getInstance(
'NameTableSqlStore' ),
583 $authManager = AuthManager::singleton();
587 $factory->setLogger( LoggerFactory::getInstance(
'preferences' ) );
593 return new \MediaWiki\Http\HttpRequestFactory();
600 $services->getMainConfig()->get(
'CommentTableSchemaMigrationStage' )
606 $services->getMainConfig()->get(
'ActorTableSchemaMigrationStage' )
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
wfGetCache( $cacheType)
Get a specific cache object.
wfIsHHVM()
Check if we are running under HHVM.
This class handles the logic for the actor table migration.
A factory for application metric data.
Factory class to create Config objects.
Support for detecting/validating DjVu image files and getting some basic file metadata (resolution et...
A BagOStuff object with no objects in it.
Factory class for spawning EventRelayer objects using configuration.
Provides a file-based cache of a SiteStore.
Caches user genders when needed to use correct namespace aliases.
Simple store for keeping values in an associative array for the current process.
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Cache for article titles (prefixed DB keys) and ids linked from one source.
static applyDefaultConfig(array $lbConf, Config $mainConfig, ConfiguredReadOnlyMode $readOnlyMode)
static getLBFactoryClass(array $config)
Returns the LBFactory class to use and the load balancer configuration.
static setSchemaAliases(LBFactory $lbFactory, Config $config)
Class to handle concurrent HTTP requests.
static getInstance( $id)
Get a cached instance of the specified type of cache object.
static getLocalClusterInstance()
Get the main cluster-local cache object.
A service class for fetching the wiki's current read-only mode.
Configuration handling class for SearchEngine.
Factory class for SearchEngine.
SkinTemplate class for API output.
Factory class to create Skin objects.
SkinTemplate class for the fallback skin.
Virtual HTTP service client loosely styled after a Virtual File System.
Storage layer class for WatchedItems.
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 local content language as $wgContLang
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
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
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 and may include noclasses after processing after in associative array form before processing starts Return false to skip default processing and return $ret $linkRenderer
if( $ext=='php'|| $ext=='php5') $mime
if(!is_readable( $file)) $ext