MediaWiki  1.33.0
ResourceLoader.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;
30 use Wikimedia\WrappedString;
31 
38 class ResourceLoader implements LoggerAwareInterface {
40  const CACHE_VERSION = 8;
41 
43  protected static $debugMode = null;
44 
49  protected $modules = [];
50 
55  protected $moduleInfos = [];
56 
58  protected $config;
59 
65  protected $testModuleNames = [];
66 
71  protected $sources = [];
72 
77  protected $errors = [];
78 
86  protected $extraHeaders = [];
87 
91  protected $blobStore;
92 
96  private $logger;
97 
99  const FILTER_NOMIN = '/*@nomin*/';
100 
115  public function preloadModuleInfo( array $moduleNames, ResourceLoaderContext $context ) {
116  if ( !$moduleNames ) {
117  // Or else Database*::select() will explode, plus it's cheaper!
118  return;
119  }
120  $dbr = wfGetDB( DB_REPLICA );
121  $skin = $context->getSkin();
122  $lang = $context->getLanguage();
123 
124  // Batched version of ResourceLoaderModule::getFileDependencies
125  $vary = "$skin|$lang";
126  $res = $dbr->select( 'module_deps', [ 'md_module', 'md_deps' ], [
127  'md_module' => $moduleNames,
128  'md_skin' => $vary,
129  ], __METHOD__
130  );
131 
132  // Prime in-object cache for file dependencies
133  $modulesWithDeps = [];
134  foreach ( $res as $row ) {
135  $module = $this->getModule( $row->md_module );
136  if ( $module ) {
137  $module->setFileDependencies( $context, ResourceLoaderModule::expandRelativePaths(
138  json_decode( $row->md_deps, true )
139  ) );
140  $modulesWithDeps[] = $row->md_module;
141  }
142  }
143  // Register the absence of a dependency row too
144  foreach ( array_diff( $moduleNames, $modulesWithDeps ) as $name ) {
145  $module = $this->getModule( $name );
146  if ( $module ) {
147  $this->getModule( $name )->setFileDependencies( $context, [] );
148  }
149  }
150 
151  // Batched version of ResourceLoaderWikiModule::getTitleInfo
153 
154  // Prime in-object cache for message blobs for modules with messages
155  $modules = [];
156  foreach ( $moduleNames as $name ) {
157  $module = $this->getModule( $name );
158  if ( $module && $module->getMessages() ) {
159  $modules[$name] = $module;
160  }
161  }
162  $store = $this->getMessageBlobStore();
163  $blobs = $store->getBlobs( $modules, $lang );
164  foreach ( $blobs as $name => $blob ) {
165  $modules[$name]->setMessageBlob( $blob, $lang );
166  }
167  }
168 
186  public static function filter( $filter, $data, array $options = [] ) {
187  if ( strpos( $data, self::FILTER_NOMIN ) !== false ) {
188  return $data;
189  }
190 
191  if ( isset( $options['cache'] ) && $options['cache'] === false ) {
192  return self::applyFilter( $filter, $data );
193  }
194 
195  $stats = MediaWikiServices::getInstance()->getStatsdDataFactory();
197 
198  $key = $cache->makeGlobalKey(
199  'resourceloader',
200  'filter',
201  $filter,
202  self::CACHE_VERSION,
203  md5( $data )
204  );
205 
206  $result = $cache->get( $key );
207  if ( $result === false ) {
208  $stats->increment( "resourceloader_cache.$filter.miss" );
209  $result = self::applyFilter( $filter, $data );
210  $cache->set( $key, $result, 24 * 3600 );
211  } else {
212  $stats->increment( "resourceloader_cache.$filter.hit" );
213  }
214  if ( $result === null ) {
215  // Cached failure
216  $result = $data;
217  }
218 
219  return $result;
220  }
221 
222  private static function applyFilter( $filter, $data ) {
223  $data = trim( $data );
224  if ( $data ) {
225  try {
226  $data = ( $filter === 'minify-css' )
227  ? CSSMin::minify( $data )
229  } catch ( Exception $e ) {
231  return null;
232  }
233  }
234  return $data;
235  }
236 
242  public function __construct( Config $config = null, LoggerInterface $logger = null ) {
243  $this->logger = $logger ?: new NullLogger();
244 
245  if ( !$config ) {
246  // TODO: Deprecate and remove.
247  $this->logger->debug( __METHOD__ . ' was called without providing a Config instance' );
248  $config = MediaWikiServices::getInstance()->getMainConfig();
249  }
250  $this->config = $config;
251 
252  // Add 'local' source first
253  $this->addSource( 'local', $config->get( 'LoadScript' ) );
254 
255  // Special module that always exists
256  $this->register( 'startup', [ 'class' => ResourceLoaderStartUpModule::class ] );
257 
258  // Register extension modules
259  $this->register( $config->get( 'ResourceModules' ) );
260 
261  // Avoid PHP 7.1 warning from passing $this by reference
262  $rl = $this;
263  Hooks::run( 'ResourceLoaderRegisterModules', [ &$rl ] );
264 
265  if ( $config->get( 'EnableJavaScriptTest' ) === true ) {
266  $this->registerTestModules();
267  }
268 
269  $this->setMessageBlobStore( new MessageBlobStore( $this, $this->logger ) );
270  }
271 
275  public function getConfig() {
276  return $this->config;
277  }
278 
283  public function setLogger( LoggerInterface $logger ) {
284  $this->logger = $logger;
285  }
286 
291  public function getLogger() {
292  return $this->logger;
293  }
294 
299  public function getMessageBlobStore() {
300  return $this->blobStore;
301  }
302 
307  public function setMessageBlobStore( MessageBlobStore $blobStore ) {
308  $this->blobStore = $blobStore;
309  }
310 
322  public function register( $name, $info = null ) {
323  $moduleSkinStyles = $this->config->get( 'ResourceModuleSkinStyles' );
324 
325  // Allow multiple modules to be registered in one call
326  $registrations = is_array( $name ) ? $name : [ $name => $info ];
327  foreach ( $registrations as $name => $info ) {
328  // Warn on duplicate registrations
329  if ( isset( $this->moduleInfos[$name] ) ) {
330  // A module has already been registered by this name
331  $this->logger->warning(
332  'ResourceLoader duplicate registration warning. ' .
333  'Another module has already been registered as ' . $name
334  );
335  }
336 
337  // Check $name for validity
338  if ( !self::isValidModuleName( $name ) ) {
339  throw new MWException( "ResourceLoader module name '$name' is invalid, "
340  . "see ResourceLoader::isValidModuleName()" );
341  }
342 
343  // Attach module
344  if ( $info instanceof ResourceLoaderModule ) {
345  $this->moduleInfos[$name] = [ 'object' => $info ];
346  $info->setName( $name );
347  $this->modules[$name] = $info;
348  } elseif ( is_array( $info ) ) {
349  // New calling convention
350  $this->moduleInfos[$name] = $info;
351  } else {
352  throw new MWException(
353  'ResourceLoader module info type error for module \'' . $name .
354  '\': expected ResourceLoaderModule or array (got: ' . gettype( $info ) . ')'
355  );
356  }
357 
358  // Last-minute changes
359 
360  // Apply custom skin-defined styles to existing modules.
361  if ( $this->isFileModule( $name ) ) {
362  foreach ( $moduleSkinStyles as $skinName => $skinStyles ) {
363  // If this module already defines skinStyles for this skin, ignore $wgResourceModuleSkinStyles.
364  if ( isset( $this->moduleInfos[$name]['skinStyles'][$skinName] ) ) {
365  continue;
366  }
367 
368  // If $name is preceded with a '+', the defined style files will be added to 'default'
369  // skinStyles, otherwise 'default' will be ignored as it normally would be.
370  if ( isset( $skinStyles[$name] ) ) {
371  $paths = (array)$skinStyles[$name];
372  $styleFiles = [];
373  } elseif ( isset( $skinStyles['+' . $name] ) ) {
374  $paths = (array)$skinStyles['+' . $name];
375  $styleFiles = isset( $this->moduleInfos[$name]['skinStyles']['default'] ) ?
376  (array)$this->moduleInfos[$name]['skinStyles']['default'] :
377  [];
378  } else {
379  continue;
380  }
381 
382  // Add new file paths, remapping them to refer to our directories and not use settings
383  // from the module we're modifying, which come from the base definition.
384  list( $localBasePath, $remoteBasePath ) =
386 
387  foreach ( $paths as $path ) {
388  $styleFiles[] = new ResourceLoaderFilePath( $path, $localBasePath, $remoteBasePath );
389  }
390 
391  $this->moduleInfos[$name]['skinStyles'][$skinName] = $styleFiles;
392  }
393  }
394  }
395  }
396 
397  public function registerTestModules() {
398  global $IP;
399 
400  if ( $this->config->get( 'EnableJavaScriptTest' ) !== true ) {
401  throw new MWException( 'Attempt to register JavaScript test modules '
402  . 'but <code>$wgEnableJavaScriptTest</code> is false. '
403  . 'Edit your <code>LocalSettings.php</code> to enable it.' );
404  }
405 
406  $testModules = [
407  'qunit' => [],
408  ];
409 
410  // Get test suites from extensions
411  // Avoid PHP 7.1 warning from passing $this by reference
412  $rl = $this;
413  Hooks::run( 'ResourceLoaderTestModules', [ &$testModules, &$rl ] );
414  $extRegistry = ExtensionRegistry::getInstance();
415  // In case of conflict, the deprecated hook has precedence.
416  $testModules['qunit'] += $extRegistry->getAttribute( 'QUnitTestModules' );
417 
418  // Add the QUnit testrunner as implicit dependency to extension test suites.
419  foreach ( $testModules['qunit'] as &$module ) {
420  // Shuck any single-module dependency as an array
421  if ( isset( $module['dependencies'] ) && is_string( $module['dependencies'] ) ) {
422  $module['dependencies'] = [ $module['dependencies'] ];
423  }
424 
425  $module['dependencies'][] = 'test.mediawiki.qunit.testrunner';
426  }
427 
428  // Get core test suites
429  $testModules['qunit'] =
430  ( include "$IP/tests/qunit/QUnitTestResources.php" ) + $testModules['qunit'];
431 
432  foreach ( $testModules as $id => $names ) {
433  // Register test modules
434  $this->register( $testModules[$id] );
435 
436  // Keep track of their names so that they can be loaded together
437  $this->testModuleNames[$id] = array_keys( $testModules[$id] );
438  }
439  }
440 
451  public function addSource( $id, $loadUrl = null ) {
452  // Allow multiple sources to be registered in one call
453  if ( is_array( $id ) ) {
454  foreach ( $id as $key => $value ) {
455  $this->addSource( $key, $value );
456  }
457  return;
458  }
459 
460  // Disallow duplicates
461  if ( isset( $this->sources[$id] ) ) {
462  throw new MWException(
463  'ResourceLoader duplicate source addition error. ' .
464  'Another source has already been registered as ' . $id
465  );
466  }
467 
468  // Pre 1.24 backwards-compatibility
469  if ( is_array( $loadUrl ) ) {
470  if ( !isset( $loadUrl['loadScript'] ) ) {
471  throw new MWException(
472  __METHOD__ . ' was passed an array with no "loadScript" key.'
473  );
474  }
475 
476  $loadUrl = $loadUrl['loadScript'];
477  }
478 
479  $this->sources[$id] = $loadUrl;
480  }
481 
487  public function getModuleNames() {
488  return array_keys( $this->moduleInfos );
489  }
490 
501  public function getTestModuleNames( $framework = 'all' ) {
503  if ( $framework == 'all' ) {
504  return $this->testModuleNames;
505  } elseif ( isset( $this->testModuleNames[$framework] )
506  && is_array( $this->testModuleNames[$framework] )
507  ) {
508  return $this->testModuleNames[$framework];
509  } else {
510  return [];
511  }
512  }
513 
521  public function isModuleRegistered( $name ) {
522  return isset( $this->moduleInfos[$name] );
523  }
524 
536  public function getModule( $name ) {
537  if ( !isset( $this->modules[$name] ) ) {
538  if ( !isset( $this->moduleInfos[$name] ) ) {
539  // No such module
540  return null;
541  }
542  // Construct the requested object
543  $info = $this->moduleInfos[$name];
545  if ( isset( $info['object'] ) ) {
546  // Object given in info array
547  $object = $info['object'];
548  } elseif ( isset( $info['factory'] ) ) {
549  $object = call_user_func( $info['factory'], $info );
550  $object->setConfig( $this->getConfig() );
551  $object->setLogger( $this->logger );
552  } else {
553  $class = $info['class'] ?? ResourceLoaderFileModule::class;
555  $object = new $class( $info );
556  $object->setConfig( $this->getConfig() );
557  $object->setLogger( $this->logger );
558  }
559  $object->setName( $name );
560  $this->modules[$name] = $object;
561  }
562 
563  return $this->modules[$name];
564  }
565 
572  protected function isFileModule( $name ) {
573  if ( !isset( $this->moduleInfos[$name] ) ) {
574  return false;
575  }
576  $info = $this->moduleInfos[$name];
577  if ( isset( $info['object'] ) ) {
578  return false;
579  }
580  return (
581  // The implied default for 'class' is ResourceLoaderFileModule
582  !isset( $info['class'] ) ||
583  // Explicit default
584  $info['class'] === ResourceLoaderFileModule::class ||
585  is_subclass_of( $info['class'], ResourceLoaderFileModule::class )
586  );
587  }
588 
594  public function getSources() {
595  return $this->sources;
596  }
597 
607  public function getLoadScript( $source ) {
608  if ( !isset( $this->sources[$source] ) ) {
609  throw new MWException( "The $source source was never registered in ResourceLoader." );
610  }
611  return $this->sources[$source];
612  }
613 
619  public static function makeHash( $value ) {
620  $hash = hash( 'fnv132', $value );
621  return Wikimedia\base_convert( $hash, 16, 36, 7 );
622  }
623 
633  public function outputErrorAndLog( Exception $e, $msg, array $context = [] ) {
635  $this->logger->warning(
636  $msg,
637  $context + [ 'exception' => $e ]
638  );
639  $this->errors[] = self::formatExceptionNoComment( $e );
640  }
641 
650  public function getCombinedVersion( ResourceLoaderContext $context, array $moduleNames ) {
651  if ( !$moduleNames ) {
652  return '';
653  }
654  $hashes = array_map( function ( $module ) use ( $context ) {
655  try {
656  return $this->getModule( $module )->getVersionHash( $context );
657  } catch ( Exception $e ) {
658  // If modules fail to compute a version, don't fail the request (T152266)
659  // and still compute versions of other modules.
660  $this->outputErrorAndLog( $e,
661  'Calculating version for "{module}" failed: {exception}',
662  [
663  'module' => $module,
664  ]
665  );
666  return '';
667  }
668  }, $moduleNames );
669  return self::makeHash( implode( '', $hashes ) );
670  }
671 
685  public function makeVersionQuery( ResourceLoaderContext $context ) {
686  // As of MediaWiki 1.28, the server and client use the same algorithm for combining
687  // version hashes. There is no technical reason for this to be same, and for years the
688  // implementations differed. If getCombinedVersion in PHP (used for StartupModule and
689  // E-Tag headers) differs in the future from getCombinedVersion in JS (used for 'version'
690  // query parameter), then this method must continue to match the JS one.
691  $moduleNames = [];
692  foreach ( $context->getModules() as $name ) {
693  if ( !$this->getModule( $name ) ) {
694  // If a versioned request contains a missing module, the version is a mismatch
695  // as the client considered a module (and version) we don't have.
696  return '';
697  }
698  $moduleNames[] = $name;
699  }
700  return $this->getCombinedVersion( $context, $moduleNames );
701  }
702 
708  public function respond( ResourceLoaderContext $context ) {
709  // Buffer output to catch warnings. Normally we'd use ob_clean() on the
710  // top-level output buffer to clear warnings, but that breaks when ob_gzhandler
711  // is used: ob_clean() will clear the GZIP header in that case and it won't come
712  // back for subsequent output, resulting in invalid GZIP. So we have to wrap
713  // the whole thing in our own output buffer to be sure the active buffer
714  // doesn't use ob_gzhandler.
715  // See https://bugs.php.net/bug.php?id=36514
716  ob_start();
717 
718  $this->measureResponseTime( RequestContext::getMain()->getTiming() );
719 
720  // Find out which modules are missing and instantiate the others
721  $modules = [];
722  $missing = [];
723  foreach ( $context->getModules() as $name ) {
724  $module = $this->getModule( $name );
725  if ( $module ) {
726  // Do not allow private modules to be loaded from the web.
727  // This is a security issue, see T36907.
728  if ( $module->getGroup() === 'private' ) {
729  $this->logger->debug( "Request for private module '$name' denied" );
730  $this->errors[] = "Cannot show private module \"$name\"";
731  continue;
732  }
733  $modules[$name] = $module;
734  } else {
735  $missing[] = $name;
736  }
737  }
738 
739  try {
740  // Preload for getCombinedVersion() and for batch makeModuleResponse()
741  $this->preloadModuleInfo( array_keys( $modules ), $context );
742  } catch ( Exception $e ) {
743  $this->outputErrorAndLog( $e, 'Preloading module info failed: {exception}' );
744  }
745 
746  // Combine versions to propagate cache invalidation
747  $versionHash = '';
748  try {
749  $versionHash = $this->getCombinedVersion( $context, array_keys( $modules ) );
750  } catch ( Exception $e ) {
751  $this->outputErrorAndLog( $e, 'Calculating version hash failed: {exception}' );
752  }
753 
754  // See RFC 2616 § 3.11 Entity Tags
755  // https://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.11
756  $etag = 'W/"' . $versionHash . '"';
757 
758  // Try the client-side cache first
759  if ( $this->tryRespondNotModified( $context, $etag ) ) {
760  return; // output handled (buffers cleared)
761  }
762 
763  // Use file cache if enabled and available...
764  if ( $this->config->get( 'UseFileCache' ) ) {
766  if ( $this->tryRespondFromFileCache( $fileCache, $context, $etag ) ) {
767  return; // output handled
768  }
769  }
770 
771  // Generate a response
772  $response = $this->makeModuleResponse( $context, $modules, $missing );
773 
774  // Capture any PHP warnings from the output buffer and append them to the
775  // error list if we're in debug mode.
776  if ( $context->getDebug() ) {
777  $warnings = ob_get_contents();
778  if ( strlen( $warnings ) ) {
779  $this->errors[] = $warnings;
780  }
781  }
782 
783  // Save response to file cache unless there are errors
784  if ( isset( $fileCache ) && !$this->errors && $missing === [] ) {
785  // Cache single modules and images...and other requests if there are enough hits
787  if ( $fileCache->isCacheWorthy() ) {
788  $fileCache->saveText( $response );
789  } else {
790  $fileCache->incrMissesRecent( $context->getRequest() );
791  }
792  }
793  }
794 
795  $this->sendResponseHeaders( $context, $etag, (bool)$this->errors, $this->extraHeaders );
796 
797  // Remove the output buffer and output the response
798  ob_end_clean();
799 
800  if ( $context->getImageObj() && $this->errors ) {
801  // We can't show both the error messages and the response when it's an image.
802  $response = implode( "\n\n", $this->errors );
803  } elseif ( $this->errors ) {
804  $errorText = implode( "\n\n", $this->errors );
805  $errorResponse = self::makeComment( $errorText );
806  if ( $context->shouldIncludeScripts() ) {
807  $errorResponse .= 'if (window.console && console.error) {'
808  . Xml::encodeJsCall( 'console.error', [ $errorText ] )
809  . "}\n";
810  }
811 
812  // Prepend error info to the response
813  $response = $errorResponse . $response;
814  }
815 
816  $this->errors = [];
817  echo $response;
818  }
819 
820  protected function measureResponseTime( Timing $timing ) {
821  DeferredUpdates::addCallableUpdate( function () use ( $timing ) {
822  $measure = $timing->measure( 'responseTime', 'requestStart', 'requestShutdown' );
823  if ( $measure !== false ) {
824  $stats = MediaWikiServices::getInstance()->getStatsdDataFactory();
825  $stats->timing( 'resourceloader.responseTime', $measure['duration'] * 1000 );
826  }
827  } );
828  }
829 
841  protected function sendResponseHeaders(
842  ResourceLoaderContext $context, $etag, $errors, array $extra = []
843  ) {
845  $rlMaxage = $this->config->get( 'ResourceLoaderMaxage' );
846  // Use a short cache expiry so that updates propagate to clients quickly, if:
847  // - No version specified (shared resources, e.g. stylesheets)
848  // - There were errors (recover quickly)
849  // - Version mismatch (T117587, T47877)
850  if ( is_null( $context->getVersion() )
851  || $errors
852  || $context->getVersion() !== $this->makeVersionQuery( $context )
853  ) {
854  $maxage = $rlMaxage['unversioned']['client'];
855  $smaxage = $rlMaxage['unversioned']['server'];
856  // If a version was specified we can use a longer expiry time since changing
857  // version numbers causes cache misses
858  } else {
859  $maxage = $rlMaxage['versioned']['client'];
860  $smaxage = $rlMaxage['versioned']['server'];
861  }
862  if ( $context->getImageObj() ) {
863  // Output different headers if we're outputting textual errors.
864  if ( $errors ) {
865  header( 'Content-Type: text/plain; charset=utf-8' );
866  } else {
867  $context->getImageObj()->sendResponseHeaders( $context );
868  }
869  } elseif ( $context->getOnly() === 'styles' ) {
870  header( 'Content-Type: text/css; charset=utf-8' );
871  header( 'Access-Control-Allow-Origin: *' );
872  } else {
873  header( 'Content-Type: text/javascript; charset=utf-8' );
874  }
875  // See RFC 2616 § 14.19 ETag
876  // https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.19
877  header( 'ETag: ' . $etag );
878  if ( $context->getDebug() ) {
879  // Do not cache debug responses
880  header( 'Cache-Control: private, no-cache, must-revalidate' );
881  header( 'Pragma: no-cache' );
882  } else {
883  header( "Cache-Control: public, max-age=$maxage, s-maxage=$smaxage" );
884  $exp = min( $maxage, $smaxage );
885  header( 'Expires: ' . wfTimestamp( TS_RFC2822, $exp + time() ) );
886  }
887  foreach ( $extra as $header ) {
888  header( $header );
889  }
890  }
891 
902  protected function tryRespondNotModified( ResourceLoaderContext $context, $etag ) {
903  // See RFC 2616 § 14.26 If-None-Match
904  // https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.26
905  $clientKeys = $context->getRequest()->getHeader( 'If-None-Match', WebRequest::GETHEADER_LIST );
906  // Never send 304s in debug mode
907  if ( $clientKeys !== false && !$context->getDebug() && in_array( $etag, $clientKeys ) ) {
908  // There's another bug in ob_gzhandler (see also the comment at
909  // the top of this function) that causes it to gzip even empty
910  // responses, meaning it's impossible to produce a truly empty
911  // response (because the gzip header is always there). This is
912  // a problem because 304 responses have to be completely empty
913  // per the HTTP spec, and Firefox behaves buggily when they're not.
914  // See also https://bugs.php.net/bug.php?id=51579
915  // To work around this, we tear down all output buffering before
916  // sending the 304.
917  wfResetOutputBuffers( /* $resetGzipEncoding = */ true );
918 
919  HttpStatus::header( 304 );
920 
921  $this->sendResponseHeaders( $context, $etag, false );
922  return true;
923  }
924  return false;
925  }
926 
935  protected function tryRespondFromFileCache(
936  ResourceFileCache $fileCache,
938  $etag
939  ) {
940  $rlMaxage = $this->config->get( 'ResourceLoaderMaxage' );
941  // Buffer output to catch warnings.
942  ob_start();
943  // Get the maximum age the cache can be
944  $maxage = is_null( $context->getVersion() )
945  ? $rlMaxage['unversioned']['server']
946  : $rlMaxage['versioned']['server'];
947  // Minimum timestamp the cache file must have
948  $good = $fileCache->isCacheGood( wfTimestamp( TS_MW, time() - $maxage ) );
949  if ( !$good ) {
950  try { // RL always hits the DB on file cache miss...
951  wfGetDB( DB_REPLICA );
952  } catch ( DBConnectionError $e ) { // ...check if we need to fallback to cache
953  $good = $fileCache->isCacheGood(); // cache existence check
954  }
955  }
956  if ( $good ) {
957  $ts = $fileCache->cacheTimestamp();
958  // Send content type and cache headers
959  $this->sendResponseHeaders( $context, $etag, false );
960  $response = $fileCache->fetchText();
961  // Capture any PHP warnings from the output buffer and append them to the
962  // response in a comment if we're in debug mode.
963  if ( $context->getDebug() ) {
964  $warnings = ob_get_contents();
965  if ( strlen( $warnings ) ) {
966  $response = self::makeComment( $warnings ) . $response;
967  }
968  }
969  // Remove the output buffer and output the response
970  ob_end_clean();
971  echo $response . "\n/* Cached {$ts} */";
972  return true; // cache hit
973  }
974  // Clear buffer
975  ob_end_clean();
976 
977  return false; // cache miss
978  }
979 
988  public static function makeComment( $text ) {
989  $encText = str_replace( '*/', '* /', $text );
990  return "/*\n$encText\n*/\n";
991  }
992 
999  public static function formatException( $e ) {
1000  return self::makeComment( self::formatExceptionNoComment( $e ) );
1001  }
1002 
1010  protected static function formatExceptionNoComment( $e ) {
1011  global $wgShowExceptionDetails;
1012 
1013  if ( !$wgShowExceptionDetails ) {
1015  }
1016 
1018  "\nBacktrace:\n" .
1020  }
1021 
1033  public function makeModuleResponse( ResourceLoaderContext $context,
1034  array $modules, array $missing = []
1035  ) {
1036  $out = '';
1037  $states = [];
1038 
1039  if ( $modules === [] && $missing === [] ) {
1040  return <<<MESSAGE
1041 /* This file is the Web entry point for MediaWiki's ResourceLoader:
1042  <https://www.mediawiki.org/wiki/ResourceLoader>. In this request,
1043  no modules were requested. Max made me put this here. */
1044 MESSAGE;
1045  }
1046 
1047  $image = $context->getImageObj();
1048  if ( $image ) {
1049  $data = $image->getImageData( $context );
1050  if ( $data === false ) {
1051  $data = '';
1052  $this->errors[] = 'Image generation failed';
1053  }
1054  return $data;
1055  }
1056 
1057  foreach ( $missing as $name ) {
1058  $states[$name] = 'missing';
1059  }
1060 
1061  // Generate output
1062  $isRaw = false;
1063 
1064  $filter = $context->getOnly() === 'styles' ? 'minify-css' : 'minify-js';
1065 
1066  foreach ( $modules as $name => $module ) {
1067  try {
1068  $content = $module->getModuleContent( $context );
1069  $implementKey = $name . '@' . $module->getVersionHash( $context );
1070  $strContent = '';
1071 
1072  if ( isset( $content['headers'] ) ) {
1073  $this->extraHeaders = array_merge( $this->extraHeaders, $content['headers'] );
1074  }
1075 
1076  // Append output
1077  switch ( $context->getOnly() ) {
1078  case 'scripts':
1079  $scripts = $content['scripts'];
1080  if ( is_string( $scripts ) ) {
1081  // Load scripts raw...
1082  $strContent = $scripts;
1083  } elseif ( is_array( $scripts ) ) {
1084  // ...except when $scripts is an array of URLs or an associative array
1085  $strContent = self::makeLoaderImplementScript( $implementKey, $scripts, [], [], [] );
1086  }
1087  break;
1088  case 'styles':
1089  $styles = $content['styles'];
1090  // We no longer separate into media, they are all combined now with
1091  // custom media type groups into @media .. {} sections as part of the css string.
1092  // Module returns either an empty array or a numerical array with css strings.
1093  $strContent = isset( $styles['css'] ) ? implode( '', $styles['css'] ) : '';
1094  break;
1095  default:
1096  $scripts = $content['scripts'] ?? '';
1097  if ( is_string( $scripts ) ) {
1098  if ( $name === 'site' || $name === 'user' ) {
1099  // Legacy scripts that run in the global scope without a closure.
1100  // mw.loader.implement will use globalEval if scripts is a string.
1101  // Minify manually here, because general response minification is
1102  // not effective due it being a string literal, not a function.
1103  if ( !$context->getDebug() ) {
1104  $scripts = self::filter( 'minify-js', $scripts ); // T107377
1105  }
1106  } else {
1107  $scripts = new XmlJsCode( $scripts );
1108  }
1109  }
1110  $strContent = self::makeLoaderImplementScript(
1111  $implementKey,
1112  $scripts,
1113  $content['styles'] ?? [],
1114  isset( $content['messagesBlob'] ) ? new XmlJsCode( $content['messagesBlob'] ) : [],
1115  $content['templates'] ?? []
1116  );
1117  break;
1118  }
1119 
1120  if ( !$context->getDebug() ) {
1121  $strContent = self::filter( $filter, $strContent );
1122  }
1123 
1124  if ( $context->getOnly() === 'scripts' ) {
1125  // Use a linebreak between module scripts (T162719)
1126  $out .= $this->ensureNewline( $strContent );
1127  } else {
1128  $out .= $strContent;
1129  }
1130 
1131  } catch ( Exception $e ) {
1132  $this->outputErrorAndLog( $e, 'Generating module package failed: {exception}' );
1133 
1134  // Respond to client with error-state instead of module implementation
1135  $states[$name] = 'error';
1136  unset( $modules[$name] );
1137  }
1138  $isRaw |= $module->isRaw();
1139  }
1140 
1141  // Update module states
1142  if ( $context->shouldIncludeScripts() && !$context->getRaw() && !$isRaw ) {
1143  if ( count( $modules ) && $context->getOnly() === 'scripts' ) {
1144  // Set the state of modules loaded as only scripts to ready as
1145  // they don't have an mw.loader.implement wrapper that sets the state
1146  foreach ( $modules as $name => $module ) {
1147  $states[$name] = 'ready';
1148  }
1149  }
1150 
1151  // Set the state of modules we didn't respond to with mw.loader.implement
1152  if ( count( $states ) ) {
1153  $stateScript = self::makeLoaderStateScript( $states );
1154  if ( !$context->getDebug() ) {
1155  $stateScript = self::filter( 'minify-js', $stateScript );
1156  }
1157  // Use a linebreak between module script and state script (T162719)
1158  $out = $this->ensureNewline( $out ) . $stateScript;
1159  }
1160  } elseif ( $states ) {
1161  $this->errors[] = 'Problematic modules: '
1162  . self::encodeJsonForScript( $states );
1163  }
1164 
1165  return $out;
1166  }
1167 
1173  private function ensureNewline( $str ) {
1174  $end = substr( $str, -1 );
1175  if ( $end === false || $end === '' || $end === "\n" ) {
1176  return $str;
1177  }
1178  return $str . "\n";
1179  }
1180 
1187  public function getModulesByMessage( $messageKey ) {
1188  $moduleNames = [];
1189  foreach ( $this->getModuleNames() as $moduleName ) {
1190  $module = $this->getModule( $moduleName );
1191  if ( in_array( $messageKey, $module->getMessages() ) ) {
1192  $moduleNames[] = $moduleName;
1193  }
1194  }
1195  return $moduleNames;
1196  }
1197 
1215  protected static function makeLoaderImplementScript(
1216  $name, $scripts, $styles, $messages, $templates
1217  ) {
1218  if ( $scripts instanceof XmlJsCode ) {
1219  if ( $scripts->value === '' ) {
1220  $scripts = null;
1221  } elseif ( self::inDebugMode() ) {
1222  $scripts = new XmlJsCode( "function ( $, jQuery, require, module ) {\n{$scripts->value}\n}" );
1223  } else {
1224  $scripts = new XmlJsCode( 'function($,jQuery,require,module){' . $scripts->value . '}' );
1225  }
1226  } elseif ( is_array( $scripts ) && isset( $scripts['files'] ) ) {
1227  $files = $scripts['files'];
1228  foreach ( $files as $path => &$file ) {
1229  // $file is changed (by reference) from a descriptor array to the content of the file
1230  // All of these essentially do $file = $file['content'];, some just have wrapping around it
1231  if ( $file['type'] === 'script' ) {
1232  // Multi-file modules only get two parameters ($ and jQuery are being phased out)
1233  if ( self::inDebugMode() ) {
1234  $file = new XmlJsCode( "function ( require, module ) {\n{$file['content']}\n}" );
1235  } else {
1236  $file = new XmlJsCode( 'function(require,module){' . $file['content'] . '}' );
1237  }
1238  } else {
1239  $file = $file['content'];
1240  }
1241  }
1242  $scripts = XmlJsCode::encodeObject( [
1243  'main' => $scripts['main'],
1244  'files' => XmlJsCode::encodeObject( $files, self::inDebugMode() )
1245  ], self::inDebugMode() );
1246  } elseif ( !is_string( $scripts ) && !is_array( $scripts ) ) {
1247  throw new MWException( 'Invalid scripts error. Array of URLs or string of code expected.' );
1248  }
1249 
1250  // mw.loader.implement requires 'styles', 'messages' and 'templates' to be objects (not
1251  // arrays). json_encode considers empty arrays to be numerical and outputs "[]" instead
1252  // of "{}". Force them to objects.
1253  $module = [
1254  $name,
1255  $scripts,
1256  (object)$styles,
1257  (object)$messages,
1258  (object)$templates
1259  ];
1260  self::trimArray( $module );
1261 
1262  return Xml::encodeJsCall( 'mw.loader.implement', $module, self::inDebugMode() );
1263  }
1264 
1272  public static function makeMessageSetScript( $messages ) {
1273  return Xml::encodeJsCall(
1274  'mw.messages.set',
1275  [ (object)$messages ],
1276  self::inDebugMode()
1277  );
1278  }
1279 
1287  public static function makeCombinedStyles( array $stylePairs ) {
1288  $out = [];
1289  foreach ( $stylePairs as $media => $styles ) {
1290  // ResourceLoaderFileModule::getStyle can return the styles
1291  // as a string or an array of strings. This is to allow separation in
1292  // the front-end.
1293  $styles = (array)$styles;
1294  foreach ( $styles as $style ) {
1295  $style = trim( $style );
1296  // Don't output an empty "@media print { }" block (T42498)
1297  if ( $style !== '' ) {
1298  // Transform the media type based on request params and config
1299  // The way that this relies on $wgRequest to propagate request params is slightly evil
1300  $media = OutputPage::transformCssMedia( $media );
1301 
1302  if ( $media === '' || $media == 'all' ) {
1303  $out[] = $style;
1304  } elseif ( is_string( $media ) ) {
1305  $out[] = "@media $media {\n" . str_replace( "\n", "\n\t", "\t" . $style ) . "}";
1306  }
1307  // else: skip
1308  }
1309  }
1310  }
1311  return $out;
1312  }
1313 
1323  public static function encodeJsonForScript( $data ) {
1324  // Keep output as small as possible by disabling needless escape modes
1325  // that PHP uses by default.
1326  // However, while most module scripts are only served on HTTP responses
1327  // for JavaScript, some modules can also be embedded in the HTML as inline
1328  // scripts. This, and the fact that we sometimes need to export strings
1329  // containing user-generated content and labels that may genuinely contain
1330  // a sequences like "</script>", we need to encode either '/' or '<'.
1331  // By default PHP escapes '/'. Let's escape '<' instead which is less common
1332  // and allows URLs to mostly remain readable.
1333  $jsonFlags = JSON_UNESCAPED_SLASHES |
1334  JSON_UNESCAPED_UNICODE |
1335  JSON_HEX_TAG |
1336  JSON_HEX_AMP;
1337  if ( self::inDebugMode() ) {
1338  $jsonFlags |= JSON_PRETTY_PRINT;
1339  }
1340  return json_encode( $data, $jsonFlags );
1341  }
1342 
1357  public static function makeLoaderStateScript( $states, $state = null ) {
1358  if ( !is_array( $states ) ) {
1359  $states = [ $states => $state ];
1360  }
1361  return Xml::encodeJsCall(
1362  'mw.loader.state',
1363  [ $states ],
1364  self::inDebugMode()
1365  );
1366  }
1367 
1368  private static function isEmptyObject( stdClass $obj ) {
1369  foreach ( $obj as $key => $value ) {
1370  return false;
1371  }
1372  return true;
1373  }
1374 
1387  private static function trimArray( array &$array ) {
1388  $i = count( $array );
1389  while ( $i-- ) {
1390  if ( $array[$i] === null
1391  || $array[$i] === []
1392  || ( $array[$i] instanceof XmlJsCode && $array[$i]->value === '{}' )
1393  || ( $array[$i] instanceof stdClass && self::isEmptyObject( $array[$i] ) )
1394  ) {
1395  unset( $array[$i] );
1396  } else {
1397  break;
1398  }
1399  }
1400  }
1401 
1427  public static function makeLoaderRegisterScript( array $modules ) {
1428  // Optimisation: Transform dependency names into indexes when possible
1429  // to produce smaller output. They are expanded by mw.loader.register on
1430  // the other end using resolveIndexedDependencies().
1431  $index = [];
1432  foreach ( $modules as $i => &$module ) {
1433  // Build module name index
1434  $index[$module[0]] = $i;
1435  }
1436  foreach ( $modules as &$module ) {
1437  if ( isset( $module[2] ) ) {
1438  foreach ( $module[2] as &$dependency ) {
1439  if ( isset( $index[$dependency] ) ) {
1440  // Replace module name in dependency list with index
1441  $dependency = $index[$dependency];
1442  }
1443  }
1444  }
1445  }
1446 
1447  array_walk( $modules, [ self::class, 'trimArray' ] );
1448 
1449  return Xml::encodeJsCall(
1450  'mw.loader.register',
1451  [ $modules ],
1452  self::inDebugMode()
1453  );
1454  }
1455 
1470  public static function makeLoaderSourcesScript( $sources, $loadUrl = null ) {
1471  if ( !is_array( $sources ) ) {
1472  $sources = [ $sources => $loadUrl ];
1473  }
1474  return Xml::encodeJsCall(
1475  'mw.loader.addSource',
1476  [ $sources ],
1477  self::inDebugMode()
1478  );
1479  }
1480 
1487  public static function makeLoaderConditionalScript( $script ) {
1488  // Adds a function to lazy-created RLQ
1489  return '(window.RLQ=window.RLQ||[]).push(function(){' .
1490  trim( $script ) . '});';
1491  }
1492 
1501  public static function makeInlineCodeWithModule( $modules, $script ) {
1502  // Adds an array to lazy-created RLQ
1503  return '(window.RLQ=window.RLQ||[]).push(['
1504  . self::encodeJsonForScript( $modules ) . ','
1505  . 'function(){' . trim( $script ) . '}'
1506  . ']);';
1507  }
1508 
1520  public static function makeInlineScript( $script, $nonce = null ) {
1521  $js = self::makeLoaderConditionalScript( $script );
1522  $escNonce = '';
1523  if ( $nonce === null ) {
1524  wfWarn( __METHOD__ . " did not get nonce. Will break CSP" );
1525  } elseif ( $nonce !== false ) {
1526  // If it was false, CSP is disabled, so no nonce attribute.
1527  // Nonce should be only base64 characters, so should be safe,
1528  // but better to be safely escaped than sorry.
1529  $escNonce = ' nonce="' . htmlspecialchars( $nonce ) . '"';
1530  }
1531 
1532  return new WrappedString(
1533  Html::inlineScript( $js, $nonce ),
1534  "<script$escNonce>(window.RLQ=window.RLQ||[]).push(function(){",
1535  '});</script>'
1536  );
1537  }
1538 
1547  public static function makeConfigSetScript( array $configuration ) {
1548  $js = Xml::encodeJsCall(
1549  'mw.config.set',
1550  [ $configuration ],
1551  self::inDebugMode()
1552  );
1553  if ( $js === false ) {
1554  $e = new Exception(
1555  'JSON serialization of config data failed. ' .
1556  'This usually means the config data is not valid UTF-8.'
1557  );
1559  $js = Xml::encodeJsCall( 'mw.log.error', [ $e->__toString() ] );
1560  }
1561  return $js;
1562  }
1563 
1577  public static function makePackedModulesString( $modules ) {
1578  $moduleMap = []; // [ prefix => [ suffixes ] ]
1579  foreach ( $modules as $module ) {
1580  $pos = strrpos( $module, '.' );
1581  $prefix = $pos === false ? '' : substr( $module, 0, $pos );
1582  $suffix = $pos === false ? $module : substr( $module, $pos + 1 );
1583  $moduleMap[$prefix][] = $suffix;
1584  }
1585 
1586  $arr = [];
1587  foreach ( $moduleMap as $prefix => $suffixes ) {
1588  $p = $prefix === '' ? '' : $prefix . '.';
1589  $arr[] = $p . implode( ',', $suffixes );
1590  }
1591  return implode( '|', $arr );
1592  }
1593 
1605  public static function expandModuleNames( $modules ) {
1606  $retval = [];
1607  $exploded = explode( '|', $modules );
1608  foreach ( $exploded as $group ) {
1609  if ( strpos( $group, ',' ) === false ) {
1610  // This is not a set of modules in foo.bar,baz notation
1611  // but a single module
1612  $retval[] = $group;
1613  } else {
1614  // This is a set of modules in foo.bar,baz notation
1615  $pos = strrpos( $group, '.' );
1616  if ( $pos === false ) {
1617  // Prefixless modules, i.e. without dots
1618  $retval = array_merge( $retval, explode( ',', $group ) );
1619  } else {
1620  // We have a prefix and a bunch of suffixes
1621  $prefix = substr( $group, 0, $pos ); // 'foo'
1622  $suffixes = explode( ',', substr( $group, $pos + 1 ) ); // [ 'bar', 'baz' ]
1623  foreach ( $suffixes as $suffix ) {
1624  $retval[] = "$prefix.$suffix";
1625  }
1626  }
1627  }
1628  }
1629  return $retval;
1630  }
1631 
1637  public static function inDebugMode() {
1638  if ( self::$debugMode === null ) {
1640  self::$debugMode = $wgRequest->getFuzzyBool( 'debug',
1641  $wgRequest->getCookie( 'resourceLoaderDebug', '', $wgResourceLoaderDebug )
1642  );
1643  }
1644  return self::$debugMode;
1645  }
1646 
1657  public static function clearCache() {
1658  self::$debugMode = null;
1659  }
1660 
1670  public function createLoaderURL( $source, ResourceLoaderContext $context,
1671  $extraQuery = []
1672  ) {
1673  $query = self::createLoaderQuery( $context, $extraQuery );
1674  $script = $this->getLoadScript( $source );
1675 
1676  return wfAppendQuery( $script, $query );
1677  }
1678 
1688  protected static function createLoaderQuery( ResourceLoaderContext $context, $extraQuery = [] ) {
1689  return self::makeLoaderQuery(
1690  $context->getModules(),
1691  $context->getLanguage(),
1692  $context->getSkin(),
1693  $context->getUser(),
1694  $context->getVersion(),
1695  $context->getDebug(),
1696  $context->getOnly(),
1697  $context->getRequest()->getBool( 'printable' ),
1698  $context->getRequest()->getBool( 'handheld' ),
1699  $extraQuery
1700  );
1701  }
1702 
1720  public static function makeLoaderQuery( $modules, $lang, $skin, $user = null,
1721  $version = null, $debug = false, $only = null, $printable = false,
1722  $handheld = false, $extraQuery = []
1723  ) {
1724  $query = [
1725  'modules' => self::makePackedModulesString( $modules ),
1726  'lang' => $lang,
1727  'skin' => $skin,
1728  ];
1729  if ( $debug === true ) {
1730  $query['debug'] = 'true';
1731  }
1732  if ( $user !== null ) {
1733  $query['user'] = $user;
1734  }
1735  if ( $version !== null ) {
1736  $query['version'] = $version;
1737  }
1738  if ( $only !== null ) {
1739  $query['only'] = $only;
1740  }
1741  if ( $printable ) {
1742  $query['printable'] = 1;
1743  }
1744  if ( $handheld ) {
1745  $query['handheld'] = 1;
1746  }
1747  $query += $extraQuery;
1748 
1749  // Make queries uniform in order
1750  ksort( $query );
1751  return $query;
1752  }
1753 
1763  public static function isValidModuleName( $moduleName ) {
1764  return strcspn( $moduleName, '!,|', 0, 255 ) === strlen( $moduleName );
1765  }
1766 
1777  public function getLessCompiler( $vars = [] ) {
1778  global $IP;
1779  // When called from the installer, it is possible that a required PHP extension
1780  // is missing (at least for now; see T49564). If this is the case, throw an
1781  // exception (caught by the installer) to prevent a fatal error later on.
1782  if ( !class_exists( 'Less_Parser' ) ) {
1783  throw new MWException( 'MediaWiki requires the less.php parser' );
1784  }
1785 
1786  $parser = new Less_Parser;
1787  $parser->ModifyVars( $vars );
1788  $parser->SetImportDirs( [
1789  "$IP/resources/src/mediawiki.less/" => '',
1790  ] );
1791  $parser->SetOption( 'relativeUrls', false );
1792 
1793  return $parser;
1794  }
1795 
1803  public function getLessVars() {
1804  return [];
1805  }
1806 }
$filter
$filter
Definition: profileinfo.php:341
ResourceLoaderContext
Object passed around to modules which contains information about the state of a specific loader reque...
Definition: ResourceLoaderContext.php:32
$user
return true to allow those checks to and false if checking is done & $user
Definition: hooks.txt:1476
wfResetOutputBuffers
wfResetOutputBuffers( $resetGzipEncoding=true)
Clear away any user-level output buffers, discarding contents.
Definition: GlobalFunctions.php:1722
$file
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Definition: router.php:42
errors
the value of this variable comes from LanguageConverter indexed by page_id indexed by prefixed DB keys on which the links will be shown can modify can modify can modify this should be populated with an alert message to that effect to be fed to an HTMLForm object and populate $result with the reason in the form of[messagename, param1, param2,...] or a MessageSpecifier error messages should be plain text with no special etc to show that they re errors
Definition: hooks.txt:1749
FileCacheBase\saveText
saveText( $text)
Save and compress text to the cache.
Definition: FileCacheBase.php:159
ResourceFileCache\newFromContext
static newFromContext(ResourceLoaderContext $context)
Construct an ResourceFileCache from a context.
Definition: ResourceFileCache.php:40
$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:2636
FileCacheBase\isCacheGood
isCacheGood( $timestamp='')
Check if up to date cache file exists.
Definition: FileCacheBase.php:117
$lang
if(!isset( $args[0])) $lang
Definition: testCompression.php:33
captcha-old.count
count
Definition: captcha-old.py:249
$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 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name '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. '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 '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 since 1.28! 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:1983
wfTimestamp
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Definition: GlobalFunctions.php:1912
$out
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password 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:780
ResourceLoaderFilePath
An object to represent a path to a JavaScript/CSS file, along with a remote and local base path,...
Definition: ResourceLoaderFilePath.php:28
value
if( $inline) $status value
Definition: SyntaxHighlight.php:345
$res
$res
Definition: database.txt:21
$messages
$messages
Definition: LogTests.i18n.php:8
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
$dbr
$dbr
Definition: testCompression.php:50
$debug
$debug
Definition: mcc.php:31
wfAppendQuery
wfAppendQuery( $url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
Definition: GlobalFunctions.php:463
XmlJsCode
A wrapper class which causes Xml::encodeJsVar() and Xml::encodeJsCall() to interpret a given string a...
Definition: XmlJsCode.php:40
ExtensionRegistry\getInstance
static getInstance()
Definition: ExtensionRegistry.php:98
Xml\encodeJsCall
static encodeJsCall( $name, $args, $pretty=false)
Create a call to a JavaScript function.
Definition: Xml.php:677
$query
null for the wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition: hooks.txt:1588
Config
Interface for configuration instances.
Definition: Config.php:28
MWExceptionHandler\getPublicLogMessage
static getPublicLogMessage( $e)
Definition: MWExceptionHandler.php:520
$data
$data
Utility to generate mapping file used in mw.Title (phpCharToUpper.json)
Definition: generatePhpCharToUpperMappings.php:13
MWException
MediaWiki exception.
Definition: MWException.php:26
ResourceLoaderWikiModule\preloadTitleInfo
static preloadTitleInfo(ResourceLoaderContext $context, IDatabase $db, array $moduleNames)
Definition: ResourceLoaderWikiModule.php:452
$blob
$blob
Definition: testCompression.php:65
Timing
An interface to help developers measure the performance of their applications.
Definition: Timing.php:45
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:2636
MWExceptionHandler\getLogMessage
static getLogMessage( $e)
Get a message formatting the exception message and its origin.
Definition: MWExceptionHandler.php:487
Timing\measure
measure( $measureName, $startMark='requestStart', $endMark=null)
This method stores the duration between two marks along with the associated name (a "measure").
Definition: Timing.php:124
$modules
$modules
Definition: HTMLFormElement.php:12
$IP
$IP
Definition: update.php:3
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
$parser
see documentation in includes Linker php for Linker::makeImageLink or false for current used if you return false $parser
Definition: hooks.txt:1802
ResourceLoaderFileModule\extractBasePaths
static extractBasePaths( $options=[], $localBasePath=null, $remoteBasePath=null)
Extract a pair of local and remote base paths from module definition information.
Definition: ResourceLoaderFileModule.php:339
$vars
static configuration should be added through ResourceLoaderGetConfigVars instead & $vars
Definition: hooks.txt:2220
ResourceLoaderModule\expandRelativePaths
static expandRelativePaths(array $filePaths)
Expand directories relative to $IP.
Definition: ResourceLoaderModule.php:552
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
$image
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password 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 modifiable after all normalizations have been except for the $wgMaxImageArea check $image
Definition: hooks.txt:780
array
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))
FileCacheBase\fetchText
fetchText()
Get the uncompressed text from the cache.
Definition: FileCacheBase.php:144
list
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
or
or
Definition: COPYING.txt:140
null
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not null
Definition: hooks.txt:780
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:271
ResourceFileCache\useFileCache
static useFileCache(ResourceLoaderContext $context)
Check if an RL request can be cached.
Definition: ResourceFileCache.php:66
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:2162
$value
$value
Definition: styleTest.css.php:49
$header
$header
Definition: updateCredits.php:41
XmlJsCode\encodeObject
static encodeObject( $obj, $pretty=false)
Encode an object containing XmlJsCode objects.
Definition: XmlJsCode.php:58
CACHE_ANYTHING
const CACHE_ANYTHING
Definition: Defines.php:101
include
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might include
Definition: hooks.txt:780
RequestContext\getMain
static getMain()
Get the RequestContext object associated with the main request.
Definition: RequestContext.php:430
$response
this hook is for auditing only $response
Definition: hooks.txt:780
ResourceLoaderModule
Abstraction for ResourceLoader modules, with name registration and maxage functionality.
Definition: ResourceLoaderModule.php:35
$cache
$cache
Definition: mcc.php:33
HttpStatus\header
static header( $code)
Output an HTTP status code header.
Definition: HttpStatus.php:96
WebRequest\GETHEADER_LIST
const GETHEADER_LIST
Flag to make WebRequest::getHeader return an array of values.
Definition: WebRequest.php:48
$options
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 & $options
Definition: hooks.txt:1985
$path
$path
Definition: NoLocalSettings.php:25
$wgShowExceptionDetails
$wgShowExceptionDetails
If set to true, uncaught exceptions will print the exception message and a complete stack trace to ou...
Definition: DefaultSettings.php:6288
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
JavaScriptMinifier\minify
static minify( $s)
Returns minified JavaScript code.
Definition: JavaScriptMinifier.php:97
$skin
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
Definition: hooks.txt:1985
Wikimedia\Rdbms\DBConnectionError
Definition: DBConnectionError.php:26
from
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for and distribution as defined by Sections through of this document Licensor shall mean the copyright owner or entity authorized by the copyright owner that is granting the License Legal Entity shall mean the union of the acting entity and all other entities that control are controlled by or are under common control with that entity For the purposes of this definition control direct or to cause the direction or management of such whether by contract or including but not limited to software source documentation and configuration files Object form shall mean any form resulting from mechanical transformation or translation of a Source including but not limited to compiled object generated and conversions to other media types Work shall mean the work of whether in Source or Object made available under the as indicated by a copyright notice that is included in or attached to the whether in Source or Object that is based or other modifications as a an original work of authorship For the purposes of this Derivative Works shall not include works that remain separable from
Definition: APACHE-LICENSE-2.0.txt:43
MessageBlobStore
This class generates message blobs for use by ResourceLoader modules.
Definition: MessageBlobStore.php:38
$source
$source
Definition: mwdoc-filter.php:46
true
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 true
Definition: hooks.txt:1985
$content
$content
Definition: pageupdater.txt:72
$hashes
$hashes
Definition: testCompression.php:66
wfWarn
wfWarn( $msg, $callerOffset=1, $level=E_USER_NOTICE)
Send a warning either to the debug log or in a PHP error depending on $wgDevelopmentWarnings.
Definition: GlobalFunctions.php:1092
FileCacheBase\incrMissesRecent
incrMissesRecent(WebRequest $request)
Roughly increments the cache misses in the last hour by unique visitors.
Definition: FileCacheBase.php:231
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
definition
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for and distribution as defined by Sections through of this document Licensor shall mean the copyright owner or entity authorized by the copyright owner that is granting the License Legal Entity shall mean the union of the acting entity and all other entities that control are controlled by or are under common control with that entity For the purposes of this definition control direct or to cause the direction or management of such whether by contract or including but not limited to software source documentation and configuration files Object form shall mean any form resulting from mechanical transformation or translation of a Source including but not limited to compiled object generated and conversions to other media types Work shall mean the work of whether in Source or Object made available under the as indicated by a copyright notice that is included in or attached to the whether in Source or Object that is based or other modifications as a an original work of authorship For the purposes of this Derivative Works shall not include works that remain separable or merely the Work and Derivative Works thereof Contribution shall mean any work of including the original version of the Work and any modifications or additions to that Work or Derivative Works that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner For the purposes of this definition
Definition: APACHE-LICENSE-2.0.txt:49
object
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:25
$wgRequest
if(! $wgDBerrorLogTZ) $wgRequest
Definition: Setup.php:728
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
ResourceFileCache\isCacheWorthy
isCacheWorthy()
Item has many recent cache misses.
Definition: ResourceFileCache.php:107
DeferredUpdates\addCallableUpdate
static addCallableUpdate( $callable, $stage=self::POSTSEND, $dbw=null)
Add a callable update.
Definition: DeferredUpdates.php:118
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:200
ResourceFileCache
ResourceLoader request result caching in the file system.
Definition: ResourceFileCache.php:29
$wgResourceLoaderDebug
$wgResourceLoaderDebug
The default debug mode (on/off) for of ResourceLoader requests.
Definition: DefaultSettings.php:3705
MWExceptionHandler\getRedactedTraceAsString
static getRedactedTraceAsString( $e)
Generate a string representation of an exception's stack trace.
Definition: MWExceptionHandler.php:381
FileCacheBase\cacheTimestamp
cacheTimestamp()
Get the last-modified timestamp of the cache file.
Definition: FileCacheBase.php:103
MediaWiki\HeaderCallback\warnIfHeadersSent
static warnIfHeadersSent()
Log a warning message if headers have already been sent.
Definition: HeaderCallback.php:61
MWExceptionHandler\logException
static logException( $e, $catcher=self::CAUGHT_BY_OTHER)
Log an exception to the exception log (if enabled).
Definition: MWExceptionHandler.php:667
ObjectCache\getLocalServerInstance
static getLocalServerInstance( $fallback=CACHE_NONE)
Factory function for CACHE_ACCEL (referenced from DefaultSettings.php)
Definition: ObjectCache.php:279