MediaWiki REL1_32
ResourceLoaderStartUpModule.php
Go to the documentation of this file.
1<?php
24
43 protected $targets = [ 'desktop', 'mobile' ];
44
49 private function getConfigSettings( $context ) {
50 $conf = $this->getConfig();
51
52 // We can't use Title::newMainPage() if 'mainpage' is in
53 // $wgForceUIMsgAsContentMsg because that will try to use the session
54 // user's language and we have no session user. This does the
55 // equivalent but falling back to our ResourceLoaderContext language
56 // instead.
57 $mainPage = Title::newFromText( $context->msg( 'mainpage' )->inContentLanguage()->text() );
58 if ( !$mainPage ) {
59 $mainPage = Title::newFromText( 'Main Page' );
60 }
61
67 $contLang = MediaWikiServices::getInstance()->getContentLanguage();
68 $namespaceIds = $contLang->getNamespaceIds();
69 $caseSensitiveNamespaces = [];
70 foreach ( MWNamespace::getCanonicalNamespaces() as $index => $name ) {
71 $namespaceIds[$contLang->lc( $name )] = $index;
72 if ( !MWNamespace::isCapitalized( $index ) ) {
73 $caseSensitiveNamespaces[] = $index;
74 }
75 }
76
77 $illegalFileChars = $conf->get( 'IllegalFileChars' );
78 $oldCommentSchema = $conf->get( 'CommentTableSchemaMigrationStage' ) === MIGRATION_OLD;
79
80 // Build list of variables
81 $vars = [
82 'wgLoadScript' => wfScript( 'load' ),
83 'debug' => $context->getDebug(),
84 'skin' => $context->getSkin(),
85 'stylepath' => $conf->get( 'StylePath' ),
86 'wgUrlProtocols' => wfUrlProtocols(),
87 'wgArticlePath' => $conf->get( 'ArticlePath' ),
88 'wgScriptPath' => $conf->get( 'ScriptPath' ),
89 'wgScript' => wfScript(),
90 'wgSearchType' => $conf->get( 'SearchType' ),
91 'wgVariantArticlePath' => $conf->get( 'VariantArticlePath' ),
92 // Force object to avoid "empty" associative array from
93 // becoming [] instead of {} in JS (T36604)
94 'wgActionPaths' => (object)$conf->get( 'ActionPaths' ),
95 'wgServer' => $conf->get( 'Server' ),
96 'wgServerName' => $conf->get( 'ServerName' ),
97 'wgUserLanguage' => $context->getLanguage(),
98 'wgContentLanguage' => $contLang->getCode(),
99 'wgTranslateNumerals' => $conf->get( 'TranslateNumerals' ),
100 'wgVersion' => $conf->get( 'Version' ),
101 'wgEnableAPI' => true, // Deprecated since MW 1.32
102 'wgEnableWriteAPI' => true, // Deprecated since MW 1.32
103 'wgMainPageTitle' => $mainPage->getPrefixedText(),
104 'wgFormattedNamespaces' => $contLang->getFormattedNamespaces(),
105 'wgNamespaceIds' => $namespaceIds,
106 'wgContentNamespaces' => MWNamespace::getContentNamespaces(),
107 'wgSiteName' => $conf->get( 'Sitename' ),
108 'wgDBname' => $conf->get( 'DBname' ),
109 'wgExtraSignatureNamespaces' => $conf->get( 'ExtraSignatureNamespaces' ),
110 'wgAvailableSkins' => Skin::getSkinNames(),
111 'wgExtensionAssetsPath' => $conf->get( 'ExtensionAssetsPath' ),
112 // MediaWiki sets cookies to have this prefix by default
113 'wgCookiePrefix' => $conf->get( 'CookiePrefix' ),
114 'wgCookieDomain' => $conf->get( 'CookieDomain' ),
115 'wgCookiePath' => $conf->get( 'CookiePath' ),
116 'wgCookieExpiration' => $conf->get( 'CookieExpiration' ),
117 'wgResourceLoaderMaxQueryLength' => $conf->get( 'ResourceLoaderMaxQueryLength' ),
118 'wgCaseSensitiveNamespaces' => $caseSensitiveNamespaces,
119 'wgLegalTitleChars' => Title::convertByteClassToUnicodeClass( Title::legalChars() ),
120 'wgIllegalFileChars' => Title::convertByteClassToUnicodeClass( $illegalFileChars ),
121 'wgResourceLoaderStorageVersion' => $conf->get( 'ResourceLoaderStorageVersion' ),
122 'wgResourceLoaderStorageEnabled' => $conf->get( 'ResourceLoaderStorageEnabled' ),
123 'wgForeignUploadTargets' => $conf->get( 'ForeignUploadTargets' ),
124 'wgEnableUploads' => $conf->get( 'EnableUploads' ),
125 'wgCommentByteLimit' => $oldCommentSchema ? 255 : null,
126 'wgCommentCodePointLimit' => $oldCommentSchema ? null : CommentStore::COMMENT_CHARACTER_LIMIT,
127 ];
128
129 Hooks::run( 'ResourceLoaderGetConfigVars', [ &$vars ] );
130
131 return $vars;
132 }
133
141 protected static function getImplicitDependencies( array $registryData, $moduleName ) {
142 static $dependencyCache = [];
143
144 // The list of implicit dependencies won't be altered, so we can
145 // cache them without having to worry.
146 if ( !isset( $dependencyCache[$moduleName] ) ) {
147 if ( !isset( $registryData[$moduleName] ) ) {
148 // Dependencies may not exist
149 $dependencyCache[$moduleName] = [];
150 } else {
151 $data = $registryData[$moduleName];
152 $dependencyCache[$moduleName] = $data['dependencies'];
153
154 foreach ( $data['dependencies'] as $dependency ) {
155 // Recursively get the dependencies of the dependencies
156 $dependencyCache[$moduleName] = array_merge(
157 $dependencyCache[$moduleName],
158 self::getImplicitDependencies( $registryData, $dependency )
159 );
160 }
161 }
162 }
163
164 return $dependencyCache[$moduleName];
165 }
166
185 public static function compileUnresolvedDependencies( array &$registryData ) {
186 foreach ( $registryData as $name => &$data ) {
187 $dependencies = $data['dependencies'];
188 foreach ( $data['dependencies'] as $dependency ) {
189 $implicitDependencies = self::getImplicitDependencies( $registryData, $dependency );
190 $dependencies = array_diff( $dependencies, $implicitDependencies );
191 }
192 // Rebuild keys
193 $data['dependencies'] = array_values( $dependencies );
194 }
195 }
196
204 $resourceLoader = $context->getResourceLoader();
205 // Future developers: Use WebRequest::getRawVal() instead getVal().
206 // The getVal() method performs slow Language+UTF logic. (f303bb9360)
207 $target = $context->getRequest()->getRawVal( 'target', 'desktop' );
208 $safemode = $context->getRequest()->getRawVal( 'safemode' ) === '1';
209 // Bypass target filter if this request is Special:JavaScriptTest.
210 // To prevent misuse in production, this is only allowed if testing is enabled server-side.
211 $byPassTargetFilter = $this->getConfig()->get( 'EnableJavaScriptTest' ) && $target === 'test';
212
213 $out = '';
214 $states = [];
215 $registryData = [];
216 $moduleNames = $resourceLoader->getModuleNames();
217
218 // Preload with a batch so that the below calls to getVersionHash() for each module
219 // don't require on-demand loading of more information.
220 try {
221 $resourceLoader->preloadModuleInfo( $moduleNames, $context );
222 } catch ( Exception $e ) {
223 // Don't fail the request (T152266)
224 // Also print the error in the main output
225 $resourceLoader->outputErrorAndLog( $e,
226 'Preloading module info from startup failed: {exception}',
227 [ 'exception' => $e ]
228 );
229 }
230
231 // Get registry data
232 foreach ( $moduleNames as $name ) {
233 $module = $resourceLoader->getModule( $name );
234 $moduleTargets = $module->getTargets();
235 if (
236 ( !$byPassTargetFilter && !in_array( $target, $moduleTargets ) )
237 || ( $safemode && $module->getOrigin() > ResourceLoaderModule::ORIGIN_CORE_INDIVIDUAL )
238 ) {
239 continue;
240 }
241
242 if ( $module->isRaw() ) {
243 // Don't register "raw" modules (like 'startup') client-side because depending on them
244 // is illegal anyway and would only lead to them being loaded a second time,
245 // causing any state to be lost.
246
247 // ATTENTION: Because of the line below, this is not going to cause infinite recursion.
248 // Think carefully before making changes to this code!
249 // The below code is going to call ResourceLoaderModule::getVersionHash() for every module.
250 // For StartUpModule (this module) the hash is computed based on the manifest content,
251 // which is the very thing we are computing right here. As such, this must skip iterating
252 // over 'startup' itself.
253 continue;
254 }
255
256 try {
257 $versionHash = $module->getVersionHash( $context );
258 } catch ( Exception $e ) {
259 // Don't fail the request (T152266)
260 // Also print the error in the main output
261 $resourceLoader->outputErrorAndLog( $e,
262 'Calculating version for "{module}" failed: {exception}',
263 [
264 'module' => $name,
265 'exception' => $e,
266 ]
267 );
268 $versionHash = '';
269 $states[$name] = 'error';
270 }
271
272 if ( $versionHash !== '' && strlen( $versionHash ) !== 7 ) {
273 $context->getLogger()->warning(
274 "Module '{module}' produced an invalid version hash: '{version}'.",
275 [
276 'module' => $name,
277 'version' => $versionHash,
278 ]
279 );
280 // Module implementation either broken or deviated from ResourceLoader::makeHash
281 // Asserted by tests/phpunit/structure/ResourcesTest.
283 }
284
285 $skipFunction = $module->getSkipFunction();
286 if ( $skipFunction !== null && !ResourceLoader::inDebugMode() ) {
287 $skipFunction = ResourceLoader::filter( 'minify-js', $skipFunction );
288 }
289
290 $registryData[$name] = [
291 'version' => $versionHash,
292 'dependencies' => $module->getDependencies( $context ),
293 'group' => $module->getGroup(),
294 'source' => $module->getSource(),
295 'skip' => $skipFunction,
296 ];
297 }
298
300
301 // Register sources
303
304 // Figure out the different call signatures for mw.loader.register
305 $registrations = [];
306 foreach ( $registryData as $name => $data ) {
307 // Call mw.loader.register(name, version, dependencies, group, source, skip)
308 $registrations[] = [
309 $name,
310 $data['version'],
311 $data['dependencies'],
312 $data['group'],
313 // Swap default (local) for null
314 $data['source'] === 'local' ? null : $data['source'],
315 $data['skip']
316 ];
317 }
318
319 // Register modules
320 $out .= "\n" . ResourceLoader::makeLoaderRegisterScript( $registrations );
321
322 if ( $states ) {
323 $out .= "\n" . ResourceLoader::makeLoaderStateScript( $states );
324 }
325
326 return $out;
327 }
328
332 public function isRaw() {
333 return true;
334 }
335
345 public static function getStartupModules() {
346 wfDeprecated( __METHOD__, '1.32' );
347 return [];
348 }
349
354 public static function getLegacyModules() {
355 wfDeprecated( __METHOD__, '1.32' );
356 return [];
357 }
358
364 public function getBaseModulesInternal() {
365 return $this->getBaseModules();
366 }
367
373 private function getBaseModules() {
375
376 $baseModules = [ 'jquery', 'mediawiki.base' ];
378 $baseModules[] = 'mediawiki.legacy.wikibits';
379 }
380
381 return $baseModules;
382 }
383
389 global $IP;
390 if ( $context->getOnly() !== 'scripts' ) {
391 return '/* Requires only=script */';
392 }
393
394 $startupCode = file_get_contents( "$IP/resources/src/startup/startup.js" );
395
396 // The files read here MUST be kept in sync with maintenance/jsduck/eg-iframe.html,
397 // and MUST be considered by 'fileHashes' in StartUpModule::getDefinitionSummary().
398 $mwLoaderCode = file_get_contents( "$IP/resources/src/startup/mediawiki.js" ) .
399 file_get_contents( "$IP/resources/src/startup/mediawiki.requestIdleCallback.js" );
400 if ( $context->getDebug() ) {
401 $mwLoaderCode .= file_get_contents( "$IP/resources/src/startup/mediawiki.log.js" );
402 }
403 if ( $this->getConfig()->get( 'ResourceLoaderEnableJSProfiler' ) ) {
404 $mwLoaderCode .= file_get_contents( "$IP/resources/src/startup/profiler.js" );
405 }
406
407 // Perform replacements for mediawiki.js
408 $mwLoaderPairs = [
409 '$VARS.baseModules' => ResourceLoader::encodeJsonForScript( $this->getBaseModules() ),
410 ];
411 $profilerStubs = [
412 '$CODE.profileExecuteStart();' => 'mw.loader.profiler.onExecuteStart( module );',
413 '$CODE.profileExecuteEnd();' => 'mw.loader.profiler.onExecuteEnd( module );',
414 '$CODE.profileScriptStart();' => 'mw.loader.profiler.onScriptStart( module );',
415 '$CODE.profileScriptEnd();' => 'mw.loader.profiler.onScriptEnd( module );',
416 ];
417 if ( $this->getConfig()->get( 'ResourceLoaderEnableJSProfiler' ) ) {
418 // When profiling is enabled, insert the calls.
419 $mwLoaderPairs += $profilerStubs;
420 } else {
421 // When disabled (by default), insert nothing.
422 $mwLoaderPairs += array_fill_keys( array_keys( $profilerStubs ), '' );
423 }
424 $mwLoaderCode = strtr( $mwLoaderCode, $mwLoaderPairs );
425
426 // Perform string replacements for startup.js
427 $pairs = [
428 '$VARS.wgLegacyJavaScriptGlobals' => ResourceLoader::encodeJsonForScript(
429 $this->getConfig()->get( 'LegacyJavaScriptGlobals' )
430 ),
431 '$VARS.configuration' => ResourceLoader::encodeJsonForScript(
432 $this->getConfigSettings( $context )
433 ),
434 // Raw JavaScript code (not JSON)
435 '$CODE.registrations();' => trim( $this->getModuleRegistrations( $context ) ),
436 '$CODE.defineLoader();' => $mwLoaderCode,
437 ];
438 $startupCode = strtr( $startupCode, $pairs );
439
440 return $startupCode;
441 }
442
446 public function supportsURLLoading() {
447 return false;
448 }
449
453 public function enableModuleContentVersion() {
454 // Enabling this means that ResourceLoader::getVersionHash will simply call getScript()
455 // and hash it to determine the version (as used by E-Tag HTTP response header).
456 return true;
457 }
458
462 public function getGroup() {
463 return 'startup';
464 }
465}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
$wgIncludeLegacyJavaScript
Whether to ensure the mediawiki.legacy library is loaded before other modules.
wfUrlProtocols( $includeProtocolRelative=true)
Returns a regular expression of url protocols.
wfScript( $script='index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
$IP
Definition WebStart.php:41
MediaWikiServices is the service locator for the application scope of MediaWiki.
Object passed around to modules which contains information about the state of a specific loader reque...
Abstraction for ResourceLoader modules, with name registration and maxage functionality.
Module for ResourceLoader initialization.
getScript(ResourceLoaderContext $context)
static getImplicitDependencies(array $registryData, $moduleName)
Recursively get all explicit and implicit dependencies for to the given module.
static getStartupModules()
Internal modules used by ResourceLoader that cannot be depended on.
static compileUnresolvedDependencies(array &$registryData)
Optimize the dependency tree in $this->modules.
getBaseModules()
Base modules implicitly available to all modules.
getModuleRegistrations(ResourceLoaderContext $context)
Get registration code for all modules.
static makeLoaderStateScript( $states, $state=null)
Returns a JS call to mw.loader.state, which sets the state of one ore more modules to a given value.
static inDebugMode()
Determine whether debug mode was requested Order of priority is 1) request param, 2) cookie,...
static makeLoaderSourcesScript( $sources, $loadUrl=null)
Returns JS code which calls mw.loader.addSource() with the given parameters.
static makeLoaderRegisterScript(array $modules)
Returns JS code which calls mw.loader.register with the given parameter.
static encodeJsonForScript( $data)
Wrapper around json_encode that avoids needless escapes, and pretty-prints in debug mode.
static makeHash( $value)
static filter( $filter, $data, array $options=[])
Run JavaScript or CSS data through a filter, caching the filtered result for future calls.
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
globals will be eliminated from MediaWiki replaced by an application object which would be passed to constructors Whether that would be an convenient solution remains to be but certainly PHP makes such object oriented programming models easier than they were in previous versions For the time being MediaWiki programmers will have to work in an environment with some global context At the time of globals were initialised on startup by MediaWiki of these were configuration which are documented in DefaultSettings php There is no comprehensive documentation for the remaining however some of the most important ones are listed below They are typically initialised either in index php or in Setup php $wgTitle Title object created from the request URL $wgOut OutputPage object for HTTP response $wgUser User object for the user associated with the current request $wgLang Language object selected by user preferences $wgContLang Language object associated with the wiki being viewed $wgParser Parser object Parser extensions register their hooks here $wgRequest WebRequest object
Definition globals.txt:62
const MIGRATION_OLD
Definition Defines.php:315
static configuration should be added through ResourceLoaderGetConfigVars instead & $vars
Definition hooks.txt:2278
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:2885
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 $out
Definition hooks.txt:894
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 such as when responding to a resource loader request or generating HTML output & $resourceLoader
Definition hooks.txt:2892
returning false will NOT prevent logging $e
Definition hooks.txt:2226
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
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))