MediaWiki  1.30.0
ResourceLoaderModule.php
Go to the documentation of this file.
1 <?php
26 use Psr\Log\LoggerAwareInterface;
27 use Psr\Log\LoggerInterface;
28 use Psr\Log\NullLogger;
29 use Wikimedia\ScopedCallback;
30 
34 abstract class ResourceLoaderModule implements LoggerAwareInterface {
35  # Type of resource
36  const TYPE_SCRIPTS = 'scripts';
37  const TYPE_STYLES = 'styles';
38  const TYPE_COMBINED = 'combined';
39 
40  # Desired load type
41  // Module only has styles (loaded via <style> or <link rel=stylesheet>)
42  const LOAD_STYLES = 'styles';
43  // Module may have other resources (loaded via mw.loader from a script)
44  const LOAD_GENERAL = 'general';
45 
46  # sitewide core module like a skin file or jQuery component
48 
49  # per-user module generated by the software
51 
52  # sitewide module generated from user-editable files, like MediaWiki:Common.js, or
53  # modules accessible to multiple users, such as those generated by the Gadgets extension.
55 
56  # per-user module generated from user-editable files, like User:Me/vector.js
58 
59  # an access constant; make sure this is kept as the largest number in this group
60  const ORIGIN_ALL = 10;
61 
62  # script and style modules form a hierarchy of trustworthiness, with core modules like
63  # skins and jQuery as most trustworthy, and user scripts as least trustworthy. We can
64  # limit the types of scripts and styles we allow to load on, say, sensitive special
65  # pages like Special:UserLogin and Special:Preferences
67 
68  /* Protected Members */
69 
70  protected $name = null;
71  protected $targets = [ 'desktop' ];
72 
73  // In-object cache for file dependencies
74  protected $fileDeps = [];
75  // In-object cache for message blob (keyed by language)
76  protected $msgBlobs = [];
77  // In-object cache for version hash
78  protected $versionHash = [];
79  // In-object cache for module content
80  protected $contents = [];
81 
85  protected $config;
86 
90  protected $deprecated = false;
91 
95  protected $logger;
96 
97  /* Methods */
98 
105  public function getName() {
106  return $this->name;
107  }
108 
115  public function setName( $name ) {
116  $this->name = $name;
117  }
118 
126  public function getOrigin() {
127  return $this->origin;
128  }
129 
134  public function getFlip( $context ) {
136 
137  return $wgContLang->getDir() !== $context->getDirection();
138  }
139 
145  protected function getDeprecationInformation() {
146  $deprecationInfo = $this->deprecated;
147  if ( $deprecationInfo ) {
148  $name = $this->getName();
149  $warning = 'This page is using the deprecated ResourceLoader module "' . $name . '".';
150  if ( is_string( $deprecationInfo ) ) {
151  $warning .= "\n" . $deprecationInfo;
152  }
153  return Xml::encodeJsCall(
154  'mw.log.warn',
155  [ $warning ]
156  );
157  } else {
158  return '';
159  }
160  }
161 
170  // Stub, override expected
171  return '';
172  }
173 
179  public function getTemplates() {
180  // Stub, override expected.
181  return [];
182  }
183 
188  public function getConfig() {
189  if ( $this->config === null ) {
190  // Ugh, fall back to default
191  $this->config = MediaWikiServices::getInstance()->getMainConfig();
192  }
193 
194  return $this->config;
195  }
196 
201  public function setConfig( Config $config ) {
202  $this->config = $config;
203  }
204 
210  public function setLogger( LoggerInterface $logger ) {
211  $this->logger = $logger;
212  }
213 
218  protected function getLogger() {
219  if ( !$this->logger ) {
220  $this->logger = new NullLogger();
221  }
222  return $this->logger;
223  }
224 
240  $resourceLoader = $context->getResourceLoader();
241  $derivative = new DerivativeResourceLoaderContext( $context );
242  $derivative->setModules( [ $this->getName() ] );
243  $derivative->setOnly( 'scripts' );
244  $derivative->setDebug( true );
245 
246  $url = $resourceLoader->createLoaderURL(
247  $this->getSource(),
248  $derivative
249  );
250 
251  return [ $url ];
252  }
253 
260  public function supportsURLLoading() {
261  return true;
262  }
263 
273  // Stub, override expected
274  return [];
275  }
276 
287  $resourceLoader = $context->getResourceLoader();
288  $derivative = new DerivativeResourceLoaderContext( $context );
289  $derivative->setModules( [ $this->getName() ] );
290  $derivative->setOnly( 'styles' );
291  $derivative->setDebug( true );
292 
293  $url = $resourceLoader->createLoaderURL(
294  $this->getSource(),
295  $derivative
296  );
297 
298  return [ 'all' => [ $url ] ];
299  }
300 
308  public function getMessages() {
309  // Stub, override expected
310  return [];
311  }
312 
318  public function getGroup() {
319  // Stub, override expected
320  return null;
321  }
322 
328  public function getSource() {
329  // Stub, override expected
330  return 'local';
331  }
332 
339  public function getPosition() {
340  return 'top';
341  }
342 
350  public function isRaw() {
351  return false;
352  }
353 
366  public function getDependencies( ResourceLoaderContext $context = null ) {
367  // Stub, override expected
368  return [];
369  }
370 
376  public function getTargets() {
377  return $this->targets;
378  }
379 
386  public function getType() {
387  return self::LOAD_GENERAL;
388  }
389 
404  public function getSkipFunction() {
405  return null;
406  }
407 
417  $vary = $context->getSkin() . '|' . $context->getLanguage();
418 
419  // Try in-object cache first
420  if ( !isset( $this->fileDeps[$vary] ) ) {
421  $dbr = wfGetDB( DB_REPLICA );
422  $deps = $dbr->selectField( 'module_deps',
423  'md_deps',
424  [
425  'md_module' => $this->getName(),
426  'md_skin' => $vary,
427  ],
428  __METHOD__
429  );
430 
431  if ( !is_null( $deps ) ) {
432  $this->fileDeps[$vary] = self::expandRelativePaths(
433  (array)FormatJson::decode( $deps, true )
434  );
435  } else {
436  $this->fileDeps[$vary] = [];
437  }
438  }
439  return $this->fileDeps[$vary];
440  }
441 
452  $vary = $context->getSkin() . '|' . $context->getLanguage();
453  $this->fileDeps[$vary] = $files;
454  }
455 
463  protected function saveFileDependencies( ResourceLoaderContext $context, $localFileRefs ) {
464  try {
465  // Related bugs and performance considerations:
466  // 1. Don't needlessly change the database value with the same list in a
467  // different order or with duplicates.
468  // 2. Use relative paths to avoid ghost entries when $IP changes. (T111481)
469  // 3. Don't needlessly replace the database with the same value
470  // just because $IP changed (e.g. when upgrading a wiki).
471  // 4. Don't create an endless replace loop on every request for this
472  // module when '../' is used anywhere. Even though both are expanded
473  // (one expanded by getFileDependencies from the DB, the other is
474  // still raw as originally read by RL), the latter has not
475  // been normalized yet.
476 
477  // Normalise
478  $localFileRefs = array_values( array_unique( $localFileRefs ) );
479  sort( $localFileRefs );
480  $localPaths = self::getRelativePaths( $localFileRefs );
481 
482  $storedPaths = self::getRelativePaths( $this->getFileDependencies( $context ) );
483  // If the list has been modified since last time we cached it, update the cache
484  if ( $localPaths !== $storedPaths ) {
485  $vary = $context->getSkin() . '|' . $context->getLanguage();
487  $key = $cache->makeKey( __METHOD__, $this->getName(), $vary );
488  $scopeLock = $cache->getScopedLock( $key, 0 );
489  if ( !$scopeLock ) {
490  return; // T124649; avoid write slams
491  }
492 
493  $deps = FormatJson::encode( $localPaths );
494  $dbw = wfGetDB( DB_MASTER );
495  $dbw->upsert( 'module_deps',
496  [
497  'md_module' => $this->getName(),
498  'md_skin' => $vary,
499  'md_deps' => $deps,
500  ],
501  [ 'md_module', 'md_skin' ],
502  [
503  'md_deps' => $deps,
504  ]
505  );
506 
507  if ( $dbw->trxLevel() ) {
508  $dbw->onTransactionResolution(
509  function () use ( &$scopeLock ) {
510  ScopedCallback::consume( $scopeLock ); // release after commit
511  },
512  __METHOD__
513  );
514  }
515  }
516  } catch ( Exception $e ) {
517  wfDebugLog( 'resourceloader', __METHOD__ . ": failed to update DB: $e" );
518  }
519  }
520 
531  public static function getRelativePaths( array $filePaths ) {
532  global $IP;
533  return array_map( function ( $path ) use ( $IP ) {
534  return RelPath\getRelativePath( $path, $IP );
535  }, $filePaths );
536  }
537 
545  public static function expandRelativePaths( array $filePaths ) {
546  global $IP;
547  return array_map( function ( $path ) use ( $IP ) {
548  return RelPath\joinPath( $IP, $path );
549  }, $filePaths );
550  }
551 
560  if ( !$this->getMessages() ) {
561  // Don't bother consulting MessageBlobStore
562  return null;
563  }
564  // Message blobs may only vary language, not by context keys
565  $lang = $context->getLanguage();
566  if ( !isset( $this->msgBlobs[$lang] ) ) {
567  $this->getLogger()->warning( 'Message blob for {module} should have been preloaded', [
568  'module' => $this->getName(),
569  ] );
570  $store = $context->getResourceLoader()->getMessageBlobStore();
571  $this->msgBlobs[$lang] = $store->getBlob( $this, $lang );
572  }
573  return $this->msgBlobs[$lang];
574  }
575 
585  public function setMessageBlob( $blob, $lang ) {
586  $this->msgBlobs[$lang] = $blob;
587  }
588 
603  final public function getHeaders( ResourceLoaderContext $context ) {
604  $headers = [];
605 
606  $formattedLinks = [];
607  foreach ( $this->getPreloadLinks( $context ) as $url => $attribs ) {
608  $link = "<{$url}>;rel=preload";
609  foreach ( $attribs as $key => $val ) {
610  $link .= ";{$key}={$val}";
611  }
612  $formattedLinks[] = $link;
613  }
614  if ( $formattedLinks ) {
615  $headers[] = 'Link: ' . implode( ',', $formattedLinks );
616  }
617 
618  return $headers;
619  }
620 
660  protected function getPreloadLinks( ResourceLoaderContext $context ) {
661  return [];
662  }
663 
671  protected function getLessVars( ResourceLoaderContext $context ) {
672  return [];
673  }
674 
682  public function getModuleContent( ResourceLoaderContext $context ) {
683  $contextHash = $context->getHash();
684  // Cache this expensive operation. This calls builds the scripts, styles, and messages
685  // content which typically involves filesystem and/or database access.
686  if ( !array_key_exists( $contextHash, $this->contents ) ) {
687  $this->contents[$contextHash] = $this->buildContent( $context );
688  }
689  return $this->contents[$contextHash];
690  }
691 
699  final protected function buildContent( ResourceLoaderContext $context ) {
700  $rl = $context->getResourceLoader();
701  $stats = MediaWikiServices::getInstance()->getStatsdDataFactory();
702  $statStart = microtime( true );
703 
704  // Only include properties that are relevant to this context (e.g. only=scripts)
705  // and that are non-empty (e.g. don't include "templates" for modules without
706  // templates). This helps prevent invalidating cache for all modules when new
707  // optional properties are introduced.
708  $content = [];
709 
710  // Scripts
711  if ( $context->shouldIncludeScripts() ) {
712  // If we are in debug mode, we'll want to return an array of URLs if possible
713  // However, we can't do this if the module doesn't support it
714  // We also can't do this if there is an only= parameter, because we have to give
715  // the module a way to return a load.php URL without causing an infinite loop
716  if ( $context->getDebug() && !$context->getOnly() && $this->supportsURLLoading() ) {
717  $scripts = $this->getScriptURLsForDebug( $context );
718  } else {
719  $scripts = $this->getScript( $context );
720  // Make the script safe to concatenate by making sure there is at least one
721  // trailing new line at the end of the content. Previously, this looked for
722  // a semi-colon instead, but that breaks concatenation if the semicolon
723  // is inside a comment like "// foo();". Instead, simply use a
724  // line break as separator which matches JavaScript native logic for implicitly
725  // ending statements even if a semi-colon is missing.
726  // Bugs: T29054, T162719.
727  if ( is_string( $scripts )
728  && strlen( $scripts )
729  && substr( $scripts, -1 ) !== "\n"
730  ) {
731  $scripts .= "\n";
732  }
733  }
734  $content['scripts'] = $scripts;
735  }
736 
737  // Styles
738  if ( $context->shouldIncludeStyles() ) {
739  $styles = [];
740  // Don't create empty stylesheets like [ '' => '' ] for modules
741  // that don't *have* any stylesheets (T40024).
742  $stylePairs = $this->getStyles( $context );
743  if ( count( $stylePairs ) ) {
744  // If we are in debug mode without &only= set, we'll want to return an array of URLs
745  // See comment near shouldIncludeScripts() for more details
746  if ( $context->getDebug() && !$context->getOnly() && $this->supportsURLLoading() ) {
747  $styles = [
748  'url' => $this->getStyleURLsForDebug( $context )
749  ];
750  } else {
751  // Minify CSS before embedding in mw.loader.implement call
752  // (unless in debug mode)
753  if ( !$context->getDebug() ) {
754  foreach ( $stylePairs as $media => $style ) {
755  // Can be either a string or an array of strings.
756  if ( is_array( $style ) ) {
757  $stylePairs[$media] = [];
758  foreach ( $style as $cssText ) {
759  if ( is_string( $cssText ) ) {
760  $stylePairs[$media][] =
761  ResourceLoader::filter( 'minify-css', $cssText );
762  }
763  }
764  } elseif ( is_string( $style ) ) {
765  $stylePairs[$media] = ResourceLoader::filter( 'minify-css', $style );
766  }
767  }
768  }
769  // Wrap styles into @media groups as needed and flatten into a numerical array
770  $styles = [
771  'css' => $rl->makeCombinedStyles( $stylePairs )
772  ];
773  }
774  }
775  $content['styles'] = $styles;
776  }
777 
778  // Messages
779  $blob = $this->getMessageBlob( $context );
780  if ( $blob ) {
781  $content['messagesBlob'] = $blob;
782  }
783 
784  $templates = $this->getTemplates();
785  if ( $templates ) {
786  $content['templates'] = $templates;
787  }
788 
789  $headers = $this->getHeaders( $context );
790  if ( $headers ) {
791  $content['headers'] = $headers;
792  }
793 
794  $statTiming = microtime( true ) - $statStart;
795  $statName = strtr( $this->getName(), '.', '_' );
796  $stats->timing( "resourceloader_build.all", 1000 * $statTiming );
797  $stats->timing( "resourceloader_build.$statName", 1000 * $statTiming );
798 
799  return $content;
800  }
801 
824  public function getVersionHash( ResourceLoaderContext $context ) {
825  // The startup module produces a manifest with versions representing the entire module.
826  // Typically, the request for the startup module itself has only=scripts. That must apply
827  // only to the startup module content, and not to the module version computed here.
829  $context->setModules( [] );
830  // Version hash must cover all resources, regardless of startup request itself.
831  $context->setOnly( null );
832  // Compute version hash based on content, not debug urls.
833  $context->setDebug( false );
834 
835  // Cache this somewhat expensive operation. Especially because some classes
836  // (e.g. startup module) iterate more than once over all modules to get versions.
837  $contextHash = $context->getHash();
838  if ( !array_key_exists( $contextHash, $this->versionHash ) ) {
839  if ( $this->enableModuleContentVersion() ) {
840  // Detect changes directly
841  $str = json_encode( $this->getModuleContent( $context ) );
842  } else {
843  // Infer changes based on definition and other metrics
844  $summary = $this->getDefinitionSummary( $context );
845  if ( !isset( $summary['_cacheEpoch'] ) ) {
846  throw new LogicException( 'getDefinitionSummary must call parent method' );
847  }
848  $str = json_encode( $summary );
849 
850  $mtime = $this->getModifiedTime( $context );
851  if ( $mtime !== null ) {
852  // Support: MediaWiki 1.25 and earlier
853  $str .= strval( $mtime );
854  }
855 
856  $mhash = $this->getModifiedHash( $context );
857  if ( $mhash !== null ) {
858  // Support: MediaWiki 1.25 and earlier
859  $str .= strval( $mhash );
860  }
861  }
862 
863  $this->versionHash[$contextHash] = ResourceLoader::makeHash( $str );
864  }
865  return $this->versionHash[$contextHash];
866  }
867 
877  public function enableModuleContentVersion() {
878  return false;
879  }
880 
925  return [
926  '_class' => static::class,
927  '_cacheEpoch' => $this->getConfig()->get( 'CacheEpoch' ),
928  ];
929  }
930 
939  return null;
940  }
941 
950  return null;
951  }
952 
965  if ( !is_string( $this->getModifiedHash( $context ) ) ) {
966  return 1;
967  }
968  // Dummy that is > 1
969  return 2;
970  }
971 
981  if ( $this->getDefinitionSummary( $context ) === null ) {
982  return 1;
983  }
984  // Dummy that is > 1
985  return 2;
986  }
987 
998  return false;
999  }
1000 
1012  return $this->getGroup() === 'private';
1013  }
1014 
1016  private static $jsParser;
1017  private static $parseCacheVersion = 1;
1018 
1027  protected function validateScriptFile( $fileName, $contents ) {
1028  if ( !$this->getConfig()->get( 'ResourceLoaderValidateJS' ) ) {
1029  return $contents;
1030  }
1032  return $cache->getWithSetCallback(
1033  $cache->makeGlobalKey(
1034  'resourceloader',
1035  'jsparse',
1036  self::$parseCacheVersion,
1037  md5( $contents ),
1038  $fileName
1039  ),
1040  $cache::TTL_WEEK,
1041  function () use ( $contents, $fileName ) {
1043  try {
1044  $parser->parse( $contents, $fileName, 1 );
1045  $result = $contents;
1046  } catch ( Exception $e ) {
1047  // We'll save this to cache to avoid having to re-validate broken JS
1048  $err = $e->getMessage();
1049  $result = "mw.log.error(" .
1050  Xml::encodeJsVar( "JavaScript parse error: $err" ) . ");";
1051  }
1052  return $result;
1053  }
1054  );
1055  }
1056 
1060  protected static function javaScriptParser() {
1061  if ( !self::$jsParser ) {
1062  self::$jsParser = new JSParser();
1063  }
1064  return self::$jsParser;
1065  }
1066 
1074  protected static function safeFilemtime( $filePath ) {
1075  MediaWiki\suppressWarnings();
1076  $mtime = filemtime( $filePath ) ?: 1;
1077  MediaWiki\restoreWarnings();
1078  return $mtime;
1079  }
1080 
1089  protected static function safeFileHash( $filePath ) {
1090  return FileContentsHasher::getFileContentsHash( $filePath );
1091  }
1092 }
ResourceLoaderModule\LOAD_GENERAL
const LOAD_GENERAL
Definition: ResourceLoaderModule.php:44
ResourceLoaderContext
Object passed around to modules which contains information about the state of a specific loader reque...
Definition: ResourceLoaderContext.php:32
ResourceLoaderModule\getFlip
getFlip( $context)
Definition: ResourceLoaderModule.php:134
ResourceLoaderModule\supportsURLLoading
supportsURLLoading()
Whether this module supports URL loading.
Definition: ResourceLoaderModule.php:260
ResourceLoaderModule\getStyleURLsForDebug
getStyleURLsForDebug(ResourceLoaderContext $context)
Get the URL or URLs to load for this module's CSS in debug mode.
Definition: ResourceLoaderModule.php:286
ResourceLoaderModule\setMessageBlob
setMessageBlob( $blob, $lang)
Set in-object cache for message blobs.
Definition: ResourceLoaderModule.php:585
ResourceLoaderModule\setFileDependencies
setFileDependencies(ResourceLoaderContext $context, $files)
Set in-object cache for file dependencies.
Definition: ResourceLoaderModule.php:451
ObjectCache\getLocalClusterInstance
static getLocalClusterInstance()
Get the main cluster-local cache object.
Definition: ObjectCache.php:357
ResourceLoaderModule\getModifiedTime
getModifiedTime(ResourceLoaderContext $context)
Get this module's last modification timestamp for a given context.
Definition: ResourceLoaderModule.php:938
$context
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:2581
ResourceLoaderModule\TYPE_COMBINED
const TYPE_COMBINED
Definition: ResourceLoaderModule.php:38
$lang
if(!isset( $args[0])) $lang
Definition: testCompression.php:33
ResourceLoaderModule\ORIGIN_CORE_SITEWIDE
const ORIGIN_CORE_SITEWIDE
Definition: ResourceLoaderModule.php:47
captcha-old.count
count
Definition: captcha-old.py:249
ResourceLoaderModule\ORIGIN_USER_SITEWIDE
const ORIGIN_USER_SITEWIDE
Definition: ResourceLoaderModule.php:54
ResourceLoaderModule\isRaw
isRaw()
Whether this module's JS expects to work without the client-side ResourceLoader module.
Definition: ResourceLoaderModule.php:350
ResourceLoaderModule\$versionHash
$versionHash
Definition: ResourceLoaderModule.php:78
ResourceLoaderModule\safeFilemtime
static safeFilemtime( $filePath)
Safe version of filemtime(), which doesn't throw a PHP warning if the file doesn't exist.
Definition: ResourceLoaderModule.php:1074
ResourceLoaderModule\getHashMtime
getHashMtime(ResourceLoaderContext $context)
Back-compat dummy for old subclass implementations of getModifiedTime().
Definition: ResourceLoaderModule.php:964
ResourceLoaderModule\setName
setName( $name)
Set this module's name.
Definition: ResourceLoaderModule.php:115
ResourceLoaderModule\setLogger
setLogger(LoggerInterface $logger)
Definition: ResourceLoaderModule.php:210
ResourceLoaderModule\saveFileDependencies
saveFileDependencies(ResourceLoaderContext $context, $localFileRefs)
Set the files this module depends on indirectly for a given skin.
Definition: ResourceLoaderModule.php:463
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1963
use
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
Definition: MIT-LICENSE.txt:10
ResourceLoaderModule\getHeaders
getHeaders(ResourceLoaderContext $context)
Get headers to send as part of a module web response.
Definition: ResourceLoaderModule.php:603
ResourceLoaderModule\getType
getType()
Get the module's load type.
Definition: ResourceLoaderModule.php:386
ResourceLoaderModule\getTargets
getTargets()
Get target(s) for the module, eg ['desktop'] or ['desktop', 'mobile'].
Definition: ResourceLoaderModule.php:376
ResourceLoaderModule\shouldEmbedModule
shouldEmbedModule(ResourceLoaderContext $context)
Check whether this module should be embeded rather than linked.
Definition: ResourceLoaderModule.php:1011
ResourceLoaderModule\$origin
$origin
Definition: ResourceLoaderModule.php:66
$resourceLoader
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:2581
ResourceLoaderModule\getStyles
getStyles(ResourceLoaderContext $context)
Get all CSS for this module for a given skin.
Definition: ResourceLoaderModule.php:272
ResourceLoaderModule\getTemplates
getTemplates()
Takes named templates by the module and returns an array mapping.
Definition: ResourceLoaderModule.php:179
Xml\encodeJsVar
static encodeJsVar( $value, $pretty=false)
Encode a variable of arbitrary type to JavaScript.
Definition: Xml.php:659
wfDebugLog
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
Definition: GlobalFunctions.php:1140
php
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:35
FileContentsHasher\getFileContentsHash
static getFileContentsHash( $filePaths, $algo='md4')
Get a hash of the combined contents of one or more files, either by retrieving a previously-computed ...
Definition: FileContentsHasher.php:89
Xml\encodeJsCall
static encodeJsCall( $name, $args, $pretty=false)
Create a call to a JavaScript function.
Definition: Xml.php:677
FormatJson\decode
static decode( $value, $assoc=false)
Decodes a JSON string.
Definition: FormatJson.php:187
FormatJson\encode
static encode( $value, $pretty=false, $escaping=0)
Returns the JSON representation of a value.
Definition: FormatJson.php:127
ResourceLoaderModule\getGroup
getGroup()
Get the group this module is in.
Definition: ResourceLoaderModule.php:318
ResourceLoaderModule\$jsParser
static JSParser $jsParser
Lazy-initialized; use self::javaScriptParser()
Definition: ResourceLoaderModule.php:1016
ResourceLoaderModule\getLogger
getLogger()
Definition: ResourceLoaderModule.php:218
ResourceLoaderModule\getDefinitionMtime
getDefinitionMtime(ResourceLoaderContext $context)
Back-compat dummy for old subclass implementations of getModifiedTime().
Definition: ResourceLoaderModule.php:980
ResourceLoaderModule\getScript
getScript(ResourceLoaderContext $context)
Get all JS for this module for a given language and skin.
Definition: ResourceLoaderModule.php:169
$blob
$blob
Definition: testCompression.php:63
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:2856
ResourceLoaderModule\$contents
$contents
Definition: ResourceLoaderModule.php:80
$attribs
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 & $attribs
Definition: hooks.txt:1965
$IP
$IP
Definition: update.php:3
ResourceLoaderModule\TYPE_SCRIPTS
const TYPE_SCRIPTS
Definition: ResourceLoaderModule.php:36
contents
Some information about database access in MediaWiki By Tim January Database layout For information about the MediaWiki database such as a description of the tables and their contents
Definition: database.txt:2
$parser
do that in ParserLimitReportFormat instead $parser
Definition: hooks.txt:2572
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
ResourceLoaderModule\expandRelativePaths
static expandRelativePaths(array $filePaths)
Expand directories relative to $IP.
Definition: ResourceLoaderModule.php:545
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
ResourceLoaderContext\getLanguage
getLanguage()
Definition: ResourceLoaderContext.php:178
DB_MASTER
const DB_MASTER
Definition: defines.php:26
ResourceLoaderModule\getOrigin
getOrigin()
Get this module's origin.
Definition: ResourceLoaderModule.php:126
ResourceLoaderModule\getMessageBlob
getMessageBlob(ResourceLoaderContext $context)
Get the hash of the message blob.
Definition: ResourceLoaderModule.php:559
ResourceLoaderModule\$parseCacheVersion
static $parseCacheVersion
Definition: ResourceLoaderModule.php:1017
ResourceLoaderModule\isKnownEmpty
isKnownEmpty(ResourceLoaderContext $context)
Check whether this module is known to be empty.
Definition: ResourceLoaderModule.php:997
ResourceLoaderModule\getDeprecationInformation
getDeprecationInformation()
Get JS representing deprecation information for the current module if available.
Definition: ResourceLoaderModule.php:145
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:2141
ResourceLoaderModule\safeFileHash
static safeFileHash( $filePath)
Compute a non-cryptographic string hash of a file's contents.
Definition: ResourceLoaderModule.php:1089
ResourceLoaderModule\ORIGIN_USER_INDIVIDUAL
const ORIGIN_USER_INDIVIDUAL
Definition: ResourceLoaderModule.php:57
ResourceLoaderModule\$deprecated
array bool $deprecated
Definition: ResourceLoaderModule.php:90
ResourceLoaderModule\getDependencies
getDependencies(ResourceLoaderContext $context=null)
Get a list of modules this module depends on.
Definition: ResourceLoaderModule.php:366
ResourceLoaderModule\getPosition
getPosition()
From where in the page HTML should this module be loaded?
Definition: ResourceLoaderModule.php:339
ResourceLoaderModule\$targets
$targets
Definition: ResourceLoaderModule.php:71
DerivativeResourceLoaderContext
Allows changing specific properties of a context object, without changing the main one.
Definition: DerivativeResourceLoaderContext.php:30
ResourceLoaderModule\$name
$name
Definition: ResourceLoaderModule.php:70
ResourceLoaderModule\LOAD_STYLES
const LOAD_STYLES
Definition: ResourceLoaderModule.php:42
ResourceLoaderModule\getMessages
getMessages()
Get the messages needed for this module.
Definition: ResourceLoaderModule.php:308
ResourceLoaderModule\validateScriptFile
validateScriptFile( $fileName, $contents)
Validate a given script file; if valid returns the original source.
Definition: ResourceLoaderModule.php:1027
ResourceLoaderModule\getModifiedHash
getModifiedHash(ResourceLoaderContext $context)
Helper method for providing a version hash to getVersionHash().
Definition: ResourceLoaderModule.php:949
ResourceLoaderModule\getDefinitionSummary
getDefinitionSummary(ResourceLoaderContext $context)
Get a list of resources that web browsers may preload.
Definition: ResourceLoaderModule.php:924
ResourceLoaderModule\ORIGIN_CORE_INDIVIDUAL
const ORIGIN_CORE_INDIVIDUAL
Definition: ResourceLoaderModule.php:50
ResourceLoaderModule\getSkipFunction
getSkipFunction()
Get the skip function.
Definition: ResourceLoaderModule.php:404
ResourceLoaderModule\ORIGIN_ALL
const ORIGIN_ALL
Definition: ResourceLoaderModule.php:60
ResourceLoaderModule
Abstraction for ResourceLoader modules, with name registration and maxage functionality.
Definition: ResourceLoaderModule.php:34
ResourceLoaderModule\$config
Config $config
Definition: ResourceLoaderModule.php:85
ResourceLoaderModule\$logger
LoggerInterface $logger
Definition: ResourceLoaderModule.php:95
ResourceLoaderModule\$fileDeps
$fileDeps
Definition: ResourceLoaderModule.php:74
$dbr
if(! $regexes) $dbr
Definition: cleanup.php:94
$cache
$cache
Definition: mcc.php:33
ResourceLoaderModule\setConfig
setConfig(Config $config)
Definition: ResourceLoaderModule.php:201
ObjectCache\getMainWANInstance
static getMainWANInstance()
Get the main WAN cache object.
Definition: ObjectCache.php:370
ResourceLoaderModule\getScriptURLsForDebug
getScriptURLsForDebug(ResourceLoaderContext $context)
Get the URL or URLs to load for this module's JS in debug mode.
Definition: ResourceLoaderModule.php:239
$path
$path
Definition: NoLocalSettings.php:26
as
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
Definition: distributors.txt:9
ResourceLoaderModule\getRelativePaths
static getRelativePaths(array $filePaths)
Make file paths relative to MediaWiki directory.
Definition: ResourceLoaderModule.php:531
$link
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition: hooks.txt:2981
ResourceLoaderModule\getFileDependencies
getFileDependencies(ResourceLoaderContext $context)
Get the files this module depends on indirectly for a given skin.
Definition: ResourceLoaderModule.php:416
ResourceLoaderModule\TYPE_STYLES
const TYPE_STYLES
Definition: ResourceLoaderModule.php:37
ResourceLoaderModule\getSource
getSource()
Get the origin of this module.
Definition: ResourceLoaderModule.php:328
JSParser
Definition: jsminplus.php:674
name
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 name
Definition: design.txt:12
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
ResourceLoaderModule\javaScriptParser
static javaScriptParser()
Definition: ResourceLoaderModule.php:1060
MediaWikiServices
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
Definition: injection.txt:23
ResourceLoaderModule\$msgBlobs
$msgBlobs
Definition: ResourceLoaderModule.php:76
ResourceLoaderModule\getName
getName()
Get this module's name.
Definition: ResourceLoaderModule.php:105
ResourceLoaderModule\getConfig
getConfig()
Definition: ResourceLoaderModule.php:188
array
the array() calling protocol came about after MediaWiki 1.4rc1.
$wgContLang
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
Definition: design.txt:56