Merge "rdbms: In the query log, show the server name in the message"
[lhc/web/wiklou.git] / includes / resourceloader / ResourceLoader.php
1 <?php
2 /**
3 * Base class for resource loading system.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @author Roan Kattouw
22 * @author Trevor Parscal
23 */
24
25 use MediaWiki\MediaWikiServices;
26 use Psr\Log\LoggerAwareInterface;
27 use Psr\Log\LoggerInterface;
28 use Psr\Log\NullLogger;
29 use Wikimedia\Rdbms\DBConnectionError;
30 use Wikimedia\WrappedString;
31
32 /**
33 * Dynamic JavaScript and CSS resource loading system.
34 *
35 * Most of the documentation is on the MediaWiki documentation wiki starting at:
36 * https://www.mediawiki.org/wiki/ResourceLoader
37 */
38 class ResourceLoader implements LoggerAwareInterface {
39 /** @var Config $config */
40 protected $config;
41 /** @var MessageBlobStore */
42 protected $blobStore;
43
44 /** @var LoggerInterface */
45 private $logger;
46
47 /** @var ResourceLoaderModule[] Map of (module name => ResourceLoaderModule) */
48 protected $modules = [];
49 /** @var array[] Map of (module name => associative info array) */
50 protected $moduleInfos = [];
51 /**
52 * Associative array mapping framework ids to a list of names of test suite modules
53 * like [ 'qunit' => [ 'mediawiki.tests.qunit.suites', 'ext.foo.tests', ... ], ... ]
54 * @var array
55 */
56 protected $testModuleNames = [];
57 /** @var string[] List of module names that contain QUnit test suites */
58 protected $testSuiteModuleNames = [];
59
60 /** @var array Map of (source => path); E.g. [ 'source-id' => 'http://.../load.php' ] */
61 protected $sources = [];
62 /** @var array Errors accumulated during current respond() call */
63 protected $errors = [];
64 /** @var string[] Extra HTTP response headers from modules loaded in makeModuleResponse() */
65 protected $extraHeaders = [];
66
67 /** @var bool */
68 protected static $debugMode = null;
69
70 /** @var int */
71 const CACHE_VERSION = 8;
72
73 /** @var string JavaScript / CSS pragma to disable minification. * */
74 const FILTER_NOMIN = '/*@nomin*/';
75
76 /**
77 * Load information stored in the database about modules.
78 *
79 * This method grabs modules dependencies from the database and updates modules
80 * objects.
81 *
82 * This is not inside the module code because it is much faster to
83 * request all of the information at once than it is to have each module
84 * requests its own information. This sacrifice of modularity yields a substantial
85 * performance improvement.
86 *
87 * @param array $moduleNames List of module names to preload information for
88 * @param ResourceLoaderContext $context Context to load the information within
89 */
90 public function preloadModuleInfo( array $moduleNames, ResourceLoaderContext $context ) {
91 if ( !$moduleNames ) {
92 // Or else Database*::select() will explode, plus it's cheaper!
93 return;
94 }
95 $dbr = wfGetDB( DB_REPLICA );
96 $lang = $context->getLanguage();
97
98 // Batched version of ResourceLoaderModule::getFileDependencies
99 $vary = ResourceLoaderModule::getVary( $context );
100 $res = $dbr->select( 'module_deps', [ 'md_module', 'md_deps' ], [
101 'md_module' => $moduleNames,
102 'md_skin' => $vary,
103 ], __METHOD__
104 );
105
106 // Prime in-object cache for file dependencies
107 $modulesWithDeps = [];
108 foreach ( $res as $row ) {
109 $module = $this->getModule( $row->md_module );
110 if ( $module ) {
111 $module->setFileDependencies( $context, ResourceLoaderModule::expandRelativePaths(
112 json_decode( $row->md_deps, true )
113 ) );
114 $modulesWithDeps[] = $row->md_module;
115 }
116 }
117 // Register the absence of a dependency row too
118 foreach ( array_diff( $moduleNames, $modulesWithDeps ) as $name ) {
119 $module = $this->getModule( $name );
120 if ( $module ) {
121 $this->getModule( $name )->setFileDependencies( $context, [] );
122 }
123 }
124
125 // Batched version of ResourceLoaderWikiModule::getTitleInfo
126 ResourceLoaderWikiModule::preloadTitleInfo( $context, $dbr, $moduleNames );
127
128 // Prime in-object cache for message blobs for modules with messages
129 $modules = [];
130 foreach ( $moduleNames as $name ) {
131 $module = $this->getModule( $name );
132 if ( $module && $module->getMessages() ) {
133 $modules[$name] = $module;
134 }
135 }
136 $store = $this->getMessageBlobStore();
137 $blobs = $store->getBlobs( $modules, $lang );
138 foreach ( $blobs as $name => $blob ) {
139 $modules[$name]->setMessageBlob( $blob, $lang );
140 }
141 }
142
143 /**
144 * Run JavaScript or CSS data through a filter, caching the filtered result for future calls.
145 *
146 * Available filters are:
147 *
148 * - minify-js \see JavaScriptMinifier::minify
149 * - minify-css \see CSSMin::minify
150 *
151 * If $data is empty, only contains whitespace or the filter was unknown,
152 * $data is returned unmodified.
153 *
154 * @param string $filter Name of filter to run
155 * @param string $data Text to filter, such as JavaScript or CSS text
156 * @param array $options Keys:
157 * - (bool) cache: Whether to allow caching this data. Default: true.
158 * @return string Filtered data, or a comment containing an error message
159 */
160 public static function filter( $filter, $data, array $options = [] ) {
161 if ( strpos( $data, self::FILTER_NOMIN ) !== false ) {
162 return $data;
163 }
164
165 if ( isset( $options['cache'] ) && $options['cache'] === false ) {
166 return self::applyFilter( $filter, $data );
167 }
168
169 $stats = MediaWikiServices::getInstance()->getStatsdDataFactory();
170 $cache = ObjectCache::getLocalServerInstance( CACHE_ANYTHING );
171
172 $key = $cache->makeGlobalKey(
173 'resourceloader-filter',
174 $filter,
175 self::CACHE_VERSION,
176 md5( $data )
177 );
178
179 $result = $cache->get( $key );
180 if ( $result === false ) {
181 $stats->increment( "resourceloader_cache.$filter.miss" );
182 $result = self::applyFilter( $filter, $data );
183 $cache->set( $key, $result, 24 * 3600 );
184 } else {
185 $stats->increment( "resourceloader_cache.$filter.hit" );
186 }
187 if ( $result === null ) {
188 // Cached failure
189 $result = $data;
190 }
191
192 return $result;
193 }
194
195 private static function applyFilter( $filter, $data ) {
196 $data = trim( $data );
197 if ( $data ) {
198 try {
199 $data = ( $filter === 'minify-css' )
200 ? CSSMin::minify( $data )
201 : JavaScriptMinifier::minify( $data );
202 } catch ( Exception $e ) {
203 MWExceptionHandler::logException( $e );
204 return null;
205 }
206 }
207 return $data;
208 }
209
210 /**
211 * Register core modules and runs registration hooks.
212 * @param Config|null $config
213 * @param LoggerInterface|null $logger [optional]
214 */
215 public function __construct( Config $config = null, LoggerInterface $logger = null ) {
216 $this->logger = $logger ?: new NullLogger();
217
218 if ( !$config ) {
219 wfDeprecated( __METHOD__ . ' without a Config instance', '1.34' );
220 $config = MediaWikiServices::getInstance()->getMainConfig();
221 }
222 $this->config = $config;
223
224 // Add 'local' source first
225 $this->addSource( 'local', $config->get( 'LoadScript' ) );
226
227 // Special module that always exists
228 $this->register( 'startup', [ 'class' => ResourceLoaderStartUpModule::class ] );
229
230 $this->setMessageBlobStore( new MessageBlobStore( $this, $this->logger ) );
231 }
232
233 /**
234 * @return Config
235 */
236 public function getConfig() {
237 return $this->config;
238 }
239
240 /**
241 * @since 1.26
242 * @param LoggerInterface $logger
243 */
244 public function setLogger( LoggerInterface $logger ) {
245 $this->logger = $logger;
246 }
247
248 /**
249 * @since 1.27
250 * @return LoggerInterface
251 */
252 public function getLogger() {
253 return $this->logger;
254 }
255
256 /**
257 * @since 1.26
258 * @return MessageBlobStore
259 */
260 public function getMessageBlobStore() {
261 return $this->blobStore;
262 }
263
264 /**
265 * @since 1.25
266 * @param MessageBlobStore $blobStore
267 */
268 public function setMessageBlobStore( MessageBlobStore $blobStore ) {
269 $this->blobStore = $blobStore;
270 }
271
272 /**
273 * Register a module with the ResourceLoader system.
274 *
275 * @param string|array[] $name Module name as a string or, array of module info arrays
276 * keyed by name.
277 * @param array|null $info Module info array. When using the first parameter to register
278 * multiple modules at once, this parameter is optional.
279 * @throws MWException If a duplicate module registration is attempted
280 * @throws MWException If a module name contains illegal characters (pipes or commas)
281 * @throws InvalidArgumentException If the module info is not an array
282 */
283 public function register( $name, $info = null ) {
284 $moduleSkinStyles = $this->config->get( 'ResourceModuleSkinStyles' );
285
286 // Allow multiple modules to be registered in one call
287 $registrations = is_array( $name ) ? $name : [ $name => $info ];
288 foreach ( $registrations as $name => $info ) {
289 // Warn on duplicate registrations
290 if ( isset( $this->moduleInfos[$name] ) ) {
291 // A module has already been registered by this name
292 $this->logger->warning(
293 'ResourceLoader duplicate registration warning. ' .
294 'Another module has already been registered as ' . $name
295 );
296 }
297
298 // Check validity
299 if ( !self::isValidModuleName( $name ) ) {
300 throw new MWException( "ResourceLoader module name '$name' is invalid, "
301 . "see ResourceLoader::isValidModuleName()" );
302 }
303 if ( !is_array( $info ) ) {
304 throw new InvalidArgumentException(
305 'Invalid module info for "' . $name . '": expected array, got ' . gettype( $info )
306 );
307 }
308
309 // Attach module
310 $this->moduleInfos[$name] = $info;
311
312 // Last-minute changes
313 // Apply custom skin-defined styles to existing modules.
314 if ( $this->isFileModule( $name ) ) {
315 foreach ( $moduleSkinStyles as $skinName => $skinStyles ) {
316 // If this module already defines skinStyles for this skin, ignore $wgResourceModuleSkinStyles.
317 if ( isset( $this->moduleInfos[$name]['skinStyles'][$skinName] ) ) {
318 continue;
319 }
320
321 // If $name is preceded with a '+', the defined style files will be added to 'default'
322 // skinStyles, otherwise 'default' will be ignored as it normally would be.
323 if ( isset( $skinStyles[$name] ) ) {
324 $paths = (array)$skinStyles[$name];
325 $styleFiles = [];
326 } elseif ( isset( $skinStyles['+' . $name] ) ) {
327 $paths = (array)$skinStyles['+' . $name];
328 $styleFiles = isset( $this->moduleInfos[$name]['skinStyles']['default'] ) ?
329 (array)$this->moduleInfos[$name]['skinStyles']['default'] :
330 [];
331 } else {
332 continue;
333 }
334
335 // Add new file paths, remapping them to refer to our directories and not use settings
336 // from the module we're modifying, which come from the base definition.
337 list( $localBasePath, $remoteBasePath ) =
338 ResourceLoaderFileModule::extractBasePaths( $skinStyles );
339
340 foreach ( $paths as $path ) {
341 $styleFiles[] = new ResourceLoaderFilePath( $path, $localBasePath, $remoteBasePath );
342 }
343
344 $this->moduleInfos[$name]['skinStyles'][$skinName] = $styleFiles;
345 }
346 }
347 }
348 }
349
350 /**
351 * @internal For use by ServiceWiring only
352 * @codeCoverageIgnore
353 */
354 public function registerTestModules() {
355 global $IP;
356
357 if ( $this->config->get( 'EnableJavaScriptTest' ) !== true ) {
358 throw new MWException( 'Attempt to register JavaScript test modules '
359 . 'but <code>$wgEnableJavaScriptTest</code> is false. '
360 . 'Edit your <code>LocalSettings.php</code> to enable it.' );
361 }
362
363 // This has a 'qunit' key for compat with the below hook.
364 $testModulesMeta = [ 'qunit' => [] ];
365
366 // Get test suites from extensions
367 // Avoid PHP 7.1 warning from passing $this by reference
368 $rl = $this;
369 Hooks::run( 'ResourceLoaderTestModules', [ &$testModulesMeta, &$rl ] );
370 $extRegistry = ExtensionRegistry::getInstance();
371 // In case of conflict, the deprecated hook has precedence.
372 $testModules = $testModulesMeta['qunit'] + $extRegistry->getAttribute( 'QUnitTestModules' );
373
374 $testSuiteModuleNames = [];
375 foreach ( $testModules as $name => &$module ) {
376 // Turn any single-module dependency into an array
377 if ( isset( $module['dependencies'] ) && is_string( $module['dependencies'] ) ) {
378 $module['dependencies'] = [ $module['dependencies'] ];
379 }
380
381 // Ensure the testrunner loads before any test suites
382 $module['dependencies'][] = 'test.mediawiki.qunit.testrunner';
383
384 // Keep track of the test suites to load on SpecialJavaScriptTest
385 $testSuiteModuleNames[] = $name;
386 }
387
388 // Core test suites (their names have further precedence).
389 $testModules = ( include "$IP/tests/qunit/QUnitTestResources.php" ) + $testModules;
390 $testSuiteModuleNames[] = 'test.mediawiki.qunit.suites';
391
392 $this->register( $testModules );
393 $this->testSuiteModuleNames = $testSuiteModuleNames;
394 }
395
396 /**
397 * Add a foreign source of modules.
398 *
399 * Source IDs are typically the same as the Wiki ID or database name (e.g. lowercase a-z).
400 *
401 * @param array|string $id Source ID (string), or [ id1 => loadUrl, id2 => loadUrl, ... ]
402 * @param string|array|null $loadUrl load.php url (string), or array with loadUrl key for
403 * backwards-compatibility.
404 * @throws MWException
405 */
406 public function addSource( $id, $loadUrl = null ) {
407 // Allow multiple sources to be registered in one call
408 if ( is_array( $id ) ) {
409 foreach ( $id as $key => $value ) {
410 $this->addSource( $key, $value );
411 }
412 return;
413 }
414
415 // Disallow duplicates
416 if ( isset( $this->sources[$id] ) ) {
417 throw new MWException(
418 'ResourceLoader duplicate source addition error. ' .
419 'Another source has already been registered as ' . $id
420 );
421 }
422
423 // Pre 1.24 backwards-compatibility
424 if ( is_array( $loadUrl ) ) {
425 if ( !isset( $loadUrl['loadScript'] ) ) {
426 throw new MWException(
427 __METHOD__ . ' was passed an array with no "loadScript" key.'
428 );
429 }
430
431 $loadUrl = $loadUrl['loadScript'];
432 }
433
434 $this->sources[$id] = $loadUrl;
435 }
436
437 /**
438 * Get a list of module names.
439 *
440 * @return array List of module names
441 */
442 public function getModuleNames() {
443 return array_keys( $this->moduleInfos );
444 }
445
446 /**
447 * Get a list of module names with QUnit test suites.
448 *
449 * @internal For use by SpecialJavaScriptTest only
450 * @return array
451 * @codeCoverageIgnore
452 */
453 public function getTestSuiteModuleNames() {
454 return $this->testSuiteModuleNames;
455 }
456
457 /**
458 * Check whether a ResourceLoader module is registered
459 *
460 * @since 1.25
461 * @param string $name
462 * @return bool
463 */
464 public function isModuleRegistered( $name ) {
465 return isset( $this->moduleInfos[$name] );
466 }
467
468 /**
469 * Get the ResourceLoaderModule object for a given module name.
470 *
471 * If an array of module parameters exists but a ResourceLoaderModule object has not
472 * yet been instantiated, this method will instantiate and cache that object such that
473 * subsequent calls simply return the same object.
474 *
475 * @param string $name Module name
476 * @return ResourceLoaderModule|null If module has been registered, return a
477 * ResourceLoaderModule instance. Otherwise, return null.
478 */
479 public function getModule( $name ) {
480 if ( !isset( $this->modules[$name] ) ) {
481 if ( !isset( $this->moduleInfos[$name] ) ) {
482 // No such module
483 return null;
484 }
485 // Construct the requested module object
486 $info = $this->moduleInfos[$name];
487 if ( isset( $info['factory'] ) ) {
488 /** @var ResourceLoaderModule $object */
489 $object = call_user_func( $info['factory'], $info );
490 } else {
491 $class = $info['class'] ?? ResourceLoaderFileModule::class;
492 /** @var ResourceLoaderModule $object */
493 $object = new $class( $info );
494 }
495 $object->setConfig( $this->getConfig() );
496 $object->setLogger( $this->logger );
497 $object->setName( $name );
498 $this->modules[$name] = $object;
499 }
500
501 return $this->modules[$name];
502 }
503
504 /**
505 * Whether the module is a ResourceLoaderFileModule (including subclasses).
506 *
507 * @param string $name Module name
508 * @return bool
509 */
510 protected function isFileModule( $name ) {
511 if ( !isset( $this->moduleInfos[$name] ) ) {
512 return false;
513 }
514 $info = $this->moduleInfos[$name];
515 return !isset( $info['factory'] ) && (
516 // The implied default for 'class' is ResourceLoaderFileModule
517 !isset( $info['class'] ) ||
518 // Explicit default
519 $info['class'] === ResourceLoaderFileModule::class ||
520 is_subclass_of( $info['class'], ResourceLoaderFileModule::class )
521 );
522 }
523
524 /**
525 * Get the list of sources.
526 *
527 * @return array Like [ id => load.php url, ... ]
528 */
529 public function getSources() {
530 return $this->sources;
531 }
532
533 /**
534 * Get the URL to the load.php endpoint for the given
535 * ResourceLoader source
536 *
537 * @since 1.24
538 * @param string $source
539 * @throws MWException On an invalid $source name
540 * @return string
541 */
542 public function getLoadScript( $source ) {
543 if ( !isset( $this->sources[$source] ) ) {
544 throw new MWException( "The $source source was never registered in ResourceLoader." );
545 }
546 return $this->sources[$source];
547 }
548
549 /**
550 * @since 1.26
551 * @param string $value
552 * @return string Hash
553 */
554 public static function makeHash( $value ) {
555 $hash = hash( 'fnv132', $value );
556 return Wikimedia\base_convert( $hash, 16, 36, 7 );
557 }
558
559 /**
560 * Add an error to the 'errors' array and log it.
561 *
562 * @private For internal use by ResourceLoader and ResourceLoaderStartUpModule.
563 * @since 1.29
564 * @param Exception $e
565 * @param string $msg
566 * @param array $context
567 */
568 public function outputErrorAndLog( Exception $e, $msg, array $context = [] ) {
569 MWExceptionHandler::logException( $e );
570 $this->logger->warning(
571 $msg,
572 $context + [ 'exception' => $e ]
573 );
574 $this->errors[] = self::formatExceptionNoComment( $e );
575 }
576
577 /**
578 * Helper method to get and combine versions of multiple modules.
579 *
580 * @since 1.26
581 * @param ResourceLoaderContext $context
582 * @param string[] $moduleNames List of known module names
583 * @return string Hash
584 */
585 public function getCombinedVersion( ResourceLoaderContext $context, array $moduleNames ) {
586 if ( !$moduleNames ) {
587 return '';
588 }
589 $hashes = array_map( function ( $module ) use ( $context ) {
590 try {
591 return $this->getModule( $module )->getVersionHash( $context );
592 } catch ( Exception $e ) {
593 // If modules fail to compute a version, don't fail the request (T152266)
594 // and still compute versions of other modules.
595 $this->outputErrorAndLog( $e,
596 'Calculating version for "{module}" failed: {exception}',
597 [
598 'module' => $module,
599 ]
600 );
601 return '';
602 }
603 }, $moduleNames );
604 return self::makeHash( implode( '', $hashes ) );
605 }
606
607 /**
608 * Get the expected value of the 'version' query parameter.
609 *
610 * This is used by respond() to set a short Cache-Control header for requests with
611 * information newer than the current server has. This avoids pollution of edge caches.
612 * Typically during deployment. (T117587)
613 *
614 * This MUST match return value of `mw.loader#getCombinedVersion()` client-side.
615 *
616 * @since 1.28
617 * @param ResourceLoaderContext $context
618 * @return string Hash
619 */
620 public function makeVersionQuery( ResourceLoaderContext $context ) {
621 // As of MediaWiki 1.28, the server and client use the same algorithm for combining
622 // version hashes. There is no technical reason for this to be same, and for years the
623 // implementations differed. If getCombinedVersion in PHP (used for StartupModule and
624 // E-Tag headers) differs in the future from getCombinedVersion in JS (used for 'version'
625 // query parameter), then this method must continue to match the JS one.
626 $moduleNames = [];
627 foreach ( $context->getModules() as $name ) {
628 if ( !$this->getModule( $name ) ) {
629 // If a versioned request contains a missing module, the version is a mismatch
630 // as the client considered a module (and version) we don't have.
631 return '';
632 }
633 $moduleNames[] = $name;
634 }
635 return $this->getCombinedVersion( $context, $moduleNames );
636 }
637
638 /**
639 * Output a response to a load request, including the content-type header.
640 *
641 * @param ResourceLoaderContext $context Context in which a response should be formed
642 */
643 public function respond( ResourceLoaderContext $context ) {
644 // Buffer output to catch warnings. Normally we'd use ob_clean() on the
645 // top-level output buffer to clear warnings, but that breaks when ob_gzhandler
646 // is used: ob_clean() will clear the GZIP header in that case and it won't come
647 // back for subsequent output, resulting in invalid GZIP. So we have to wrap
648 // the whole thing in our own output buffer to be sure the active buffer
649 // doesn't use ob_gzhandler.
650 // See https://bugs.php.net/bug.php?id=36514
651 ob_start();
652
653 $this->measureResponseTime( RequestContext::getMain()->getTiming() );
654
655 // Find out which modules are missing and instantiate the others
656 $modules = [];
657 $missing = [];
658 foreach ( $context->getModules() as $name ) {
659 $module = $this->getModule( $name );
660 if ( $module ) {
661 // Do not allow private modules to be loaded from the web.
662 // This is a security issue, see T36907.
663 if ( $module->getGroup() === 'private' ) {
664 $this->logger->debug( "Request for private module '$name' denied" );
665 $this->errors[] = "Cannot show private module \"$name\"";
666 continue;
667 }
668 $modules[$name] = $module;
669 } else {
670 $missing[] = $name;
671 }
672 }
673
674 try {
675 // Preload for getCombinedVersion() and for batch makeModuleResponse()
676 $this->preloadModuleInfo( array_keys( $modules ), $context );
677 } catch ( Exception $e ) {
678 $this->outputErrorAndLog( $e, 'Preloading module info failed: {exception}' );
679 }
680
681 // Combine versions to propagate cache invalidation
682 $versionHash = '';
683 try {
684 $versionHash = $this->getCombinedVersion( $context, array_keys( $modules ) );
685 } catch ( Exception $e ) {
686 $this->outputErrorAndLog( $e, 'Calculating version hash failed: {exception}' );
687 }
688
689 // See RFC 2616 § 3.11 Entity Tags
690 // https://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.11
691 $etag = 'W/"' . $versionHash . '"';
692
693 // Try the client-side cache first
694 if ( $this->tryRespondNotModified( $context, $etag ) ) {
695 return; // output handled (buffers cleared)
696 }
697
698 // Use file cache if enabled and available...
699 if ( $this->config->get( 'UseFileCache' ) ) {
700 $fileCache = ResourceFileCache::newFromContext( $context );
701 if ( $this->tryRespondFromFileCache( $fileCache, $context, $etag ) ) {
702 return; // output handled
703 }
704 } else {
705 $fileCache = null;
706 }
707
708 // Generate a response
709 $response = $this->makeModuleResponse( $context, $modules, $missing );
710
711 // Capture any PHP warnings from the output buffer and append them to the
712 // error list if we're in debug mode.
713 if ( $context->getDebug() ) {
714 $warnings = ob_get_contents();
715 if ( strlen( $warnings ) ) {
716 $this->errors[] = $warnings;
717 }
718 }
719
720 // Consider saving the response to file cache (unless there are errors).
721 if ( $fileCache &&
722 !$this->errors &&
723 $missing === [] &&
724 ResourceFileCache::useFileCache( $context )
725 ) {
726 if ( $fileCache->isCacheWorthy() ) {
727 // There were enough hits, save the response to the cache
728 $fileCache->saveText( $response );
729 } else {
730 $fileCache->incrMissesRecent( $context->getRequest() );
731 }
732 }
733
734 $this->sendResponseHeaders( $context, $etag, (bool)$this->errors, $this->extraHeaders );
735
736 // Remove the output buffer and output the response
737 ob_end_clean();
738
739 if ( $context->getImageObj() && $this->errors ) {
740 // We can't show both the error messages and the response when it's an image.
741 $response = implode( "\n\n", $this->errors );
742 } elseif ( $this->errors ) {
743 $errorText = implode( "\n\n", $this->errors );
744 $errorResponse = self::makeComment( $errorText );
745 if ( $context->shouldIncludeScripts() ) {
746 $errorResponse .= 'if (window.console && console.error) {'
747 . Xml::encodeJsCall( 'console.error', [ $errorText ] )
748 . "}\n";
749 }
750
751 // Prepend error info to the response
752 $response = $errorResponse . $response;
753 }
754
755 $this->errors = [];
756 echo $response;
757 }
758
759 protected function measureResponseTime( Timing $timing ) {
760 DeferredUpdates::addCallableUpdate( function () use ( $timing ) {
761 $measure = $timing->measure( 'responseTime', 'requestStart', 'requestShutdown' );
762 if ( $measure !== false ) {
763 $stats = MediaWikiServices::getInstance()->getStatsdDataFactory();
764 $stats->timing( 'resourceloader.responseTime', $measure['duration'] * 1000 );
765 }
766 } );
767 }
768
769 /**
770 * Send main response headers to the client.
771 *
772 * Deals with Content-Type, CORS (for stylesheets), and caching.
773 *
774 * @param ResourceLoaderContext $context
775 * @param string $etag ETag header value
776 * @param bool $errors Whether there are errors in the response
777 * @param string[] $extra Array of extra HTTP response headers
778 * @return void
779 */
780 protected function sendResponseHeaders(
781 ResourceLoaderContext $context, $etag, $errors, array $extra = []
782 ) {
783 \MediaWiki\HeaderCallback::warnIfHeadersSent();
784 $rlMaxage = $this->config->get( 'ResourceLoaderMaxage' );
785 // Use a short cache expiry so that updates propagate to clients quickly, if:
786 // - No version specified (shared resources, e.g. stylesheets)
787 // - There were errors (recover quickly)
788 // - Version mismatch (T117587, T47877)
789 if ( is_null( $context->getVersion() )
790 || $errors
791 || $context->getVersion() !== $this->makeVersionQuery( $context )
792 ) {
793 $maxage = $rlMaxage['unversioned']['client'];
794 $smaxage = $rlMaxage['unversioned']['server'];
795 // If a version was specified we can use a longer expiry time since changing
796 // version numbers causes cache misses
797 } else {
798 $maxage = $rlMaxage['versioned']['client'];
799 $smaxage = $rlMaxage['versioned']['server'];
800 }
801 if ( $context->getImageObj() ) {
802 // Output different headers if we're outputting textual errors.
803 if ( $errors ) {
804 header( 'Content-Type: text/plain; charset=utf-8' );
805 } else {
806 $context->getImageObj()->sendResponseHeaders( $context );
807 }
808 } elseif ( $context->getOnly() === 'styles' ) {
809 header( 'Content-Type: text/css; charset=utf-8' );
810 header( 'Access-Control-Allow-Origin: *' );
811 } else {
812 header( 'Content-Type: text/javascript; charset=utf-8' );
813 }
814 // See RFC 2616 § 14.19 ETag
815 // https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.19
816 header( 'ETag: ' . $etag );
817 if ( $context->getDebug() ) {
818 // Do not cache debug responses
819 header( 'Cache-Control: private, no-cache, must-revalidate' );
820 header( 'Pragma: no-cache' );
821 } else {
822 header( "Cache-Control: public, max-age=$maxage, s-maxage=$smaxage" );
823 $exp = min( $maxage, $smaxage );
824 header( 'Expires: ' . wfTimestamp( TS_RFC2822, $exp + time() ) );
825 }
826 foreach ( $extra as $header ) {
827 header( $header );
828 }
829 }
830
831 /**
832 * Respond with HTTP 304 Not Modified if appropiate.
833 *
834 * If there's an If-None-Match header, respond with a 304 appropriately
835 * and clear out the output buffer. If the client cache is too old then do nothing.
836 *
837 * @param ResourceLoaderContext $context
838 * @param string $etag ETag header value
839 * @return bool True if HTTP 304 was sent and output handled
840 */
841 protected function tryRespondNotModified( ResourceLoaderContext $context, $etag ) {
842 // See RFC 2616 § 14.26 If-None-Match
843 // https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.26
844 $clientKeys = $context->getRequest()->getHeader( 'If-None-Match', WebRequest::GETHEADER_LIST );
845 // Never send 304s in debug mode
846 if ( $clientKeys !== false && !$context->getDebug() && in_array( $etag, $clientKeys ) ) {
847 // There's another bug in ob_gzhandler (see also the comment at
848 // the top of this function) that causes it to gzip even empty
849 // responses, meaning it's impossible to produce a truly empty
850 // response (because the gzip header is always there). This is
851 // a problem because 304 responses have to be completely empty
852 // per the HTTP spec, and Firefox behaves buggily when they're not.
853 // See also https://bugs.php.net/bug.php?id=51579
854 // To work around this, we tear down all output buffering before
855 // sending the 304.
856 wfResetOutputBuffers( /* $resetGzipEncoding = */ true );
857
858 HttpStatus::header( 304 );
859
860 $this->sendResponseHeaders( $context, $etag, false );
861 return true;
862 }
863 return false;
864 }
865
866 /**
867 * Send out code for a response from file cache if possible.
868 *
869 * @param ResourceFileCache $fileCache Cache object for this request URL
870 * @param ResourceLoaderContext $context Context in which to generate a response
871 * @param string $etag ETag header value
872 * @return bool If this found a cache file and handled the response
873 */
874 protected function tryRespondFromFileCache(
875 ResourceFileCache $fileCache,
876 ResourceLoaderContext $context,
877 $etag
878 ) {
879 $rlMaxage = $this->config->get( 'ResourceLoaderMaxage' );
880 // Buffer output to catch warnings.
881 ob_start();
882 // Get the maximum age the cache can be
883 $maxage = is_null( $context->getVersion() )
884 ? $rlMaxage['unversioned']['server']
885 : $rlMaxage['versioned']['server'];
886 // Minimum timestamp the cache file must have
887 $good = $fileCache->isCacheGood( wfTimestamp( TS_MW, time() - $maxage ) );
888 if ( !$good ) {
889 try { // RL always hits the DB on file cache miss...
890 wfGetDB( DB_REPLICA );
891 } catch ( DBConnectionError $e ) { // ...check if we need to fallback to cache
892 $good = $fileCache->isCacheGood(); // cache existence check
893 }
894 }
895 if ( $good ) {
896 $ts = $fileCache->cacheTimestamp();
897 // Send content type and cache headers
898 $this->sendResponseHeaders( $context, $etag, false );
899 $response = $fileCache->fetchText();
900 // Capture any PHP warnings from the output buffer and append them to the
901 // response in a comment if we're in debug mode.
902 if ( $context->getDebug() ) {
903 $warnings = ob_get_contents();
904 if ( strlen( $warnings ) ) {
905 $response = self::makeComment( $warnings ) . $response;
906 }
907 }
908 // Remove the output buffer and output the response
909 ob_end_clean();
910 echo $response . "\n/* Cached {$ts} */";
911 return true; // cache hit
912 }
913 // Clear buffer
914 ob_end_clean();
915
916 return false; // cache miss
917 }
918
919 /**
920 * Generate a CSS or JS comment block.
921 *
922 * Only use this for public data, not error message details.
923 *
924 * @param string $text
925 * @return string
926 */
927 public static function makeComment( $text ) {
928 $encText = str_replace( '*/', '* /', $text );
929 return "/*\n$encText\n*/\n";
930 }
931
932 /**
933 * Handle exception display.
934 *
935 * @param Exception $e Exception to be shown to the user
936 * @return string Sanitized text in a CSS/JS comment that can be returned to the user
937 */
938 public static function formatException( $e ) {
939 return self::makeComment( self::formatExceptionNoComment( $e ) );
940 }
941
942 /**
943 * Handle exception display.
944 *
945 * @since 1.25
946 * @param Exception $e Exception to be shown to the user
947 * @return string Sanitized text that can be returned to the user
948 */
949 protected static function formatExceptionNoComment( $e ) {
950 global $wgShowExceptionDetails;
951
952 if ( !$wgShowExceptionDetails ) {
953 return MWExceptionHandler::getPublicLogMessage( $e );
954 }
955
956 return MWExceptionHandler::getLogMessage( $e ) .
957 "\nBacktrace:\n" .
958 MWExceptionHandler::getRedactedTraceAsString( $e );
959 }
960
961 /**
962 * Generate code for a response.
963 *
964 * Calling this method also populates the `errors` and `headers` members,
965 * later used by respond().
966 *
967 * @param ResourceLoaderContext $context Context in which to generate a response
968 * @param ResourceLoaderModule[] $modules List of module objects keyed by module name
969 * @param string[] $missing List of requested module names that are unregistered (optional)
970 * @return string Response data
971 */
972 public function makeModuleResponse( ResourceLoaderContext $context,
973 array $modules, array $missing = []
974 ) {
975 $out = '';
976 $states = [];
977
978 if ( $modules === [] && $missing === [] ) {
979 return <<<MESSAGE
980 /* This file is the Web entry point for MediaWiki's ResourceLoader:
981 <https://www.mediawiki.org/wiki/ResourceLoader>. In this request,
982 no modules were requested. Max made me put this here. */
983 MESSAGE;
984 }
985
986 $image = $context->getImageObj();
987 if ( $image ) {
988 $data = $image->getImageData( $context );
989 if ( $data === false ) {
990 $data = '';
991 $this->errors[] = 'Image generation failed';
992 }
993 return $data;
994 }
995
996 foreach ( $missing as $name ) {
997 $states[$name] = 'missing';
998 }
999
1000 $filter = $context->getOnly() === 'styles' ? 'minify-css' : 'minify-js';
1001
1002 foreach ( $modules as $name => $module ) {
1003 try {
1004 $content = $module->getModuleContent( $context );
1005 $implementKey = $name . '@' . $module->getVersionHash( $context );
1006 $strContent = '';
1007
1008 if ( isset( $content['headers'] ) ) {
1009 $this->extraHeaders = array_merge( $this->extraHeaders, $content['headers'] );
1010 }
1011
1012 // Append output
1013 switch ( $context->getOnly() ) {
1014 case 'scripts':
1015 $scripts = $content['scripts'];
1016 if ( is_string( $scripts ) ) {
1017 // Load scripts raw...
1018 $strContent = $scripts;
1019 } elseif ( is_array( $scripts ) ) {
1020 // ...except when $scripts is an array of URLs or an associative array
1021 $strContent = self::makeLoaderImplementScript( $implementKey, $scripts, [], [], [] );
1022 }
1023 break;
1024 case 'styles':
1025 $styles = $content['styles'];
1026 // We no longer separate into media, they are all combined now with
1027 // custom media type groups into @media .. {} sections as part of the css string.
1028 // Module returns either an empty array or a numerical array with css strings.
1029 $strContent = isset( $styles['css'] ) ? implode( '', $styles['css'] ) : '';
1030 break;
1031 default:
1032 $scripts = $content['scripts'] ?? '';
1033 if ( is_string( $scripts ) ) {
1034 if ( $name === 'site' || $name === 'user' ) {
1035 // Legacy scripts that run in the global scope without a closure.
1036 // mw.loader.implement will use globalEval if scripts is a string.
1037 // Minify manually here, because general response minification is
1038 // not effective due it being a string literal, not a function.
1039 if ( !$context->getDebug() ) {
1040 $scripts = self::filter( 'minify-js', $scripts ); // T107377
1041 }
1042 } else {
1043 $scripts = new XmlJsCode( $scripts );
1044 }
1045 }
1046 $strContent = self::makeLoaderImplementScript(
1047 $implementKey,
1048 $scripts,
1049 $content['styles'] ?? [],
1050 isset( $content['messagesBlob'] ) ? new XmlJsCode( $content['messagesBlob'] ) : [],
1051 $content['templates'] ?? []
1052 );
1053 break;
1054 }
1055
1056 if ( !$context->getDebug() ) {
1057 $strContent = self::filter( $filter, $strContent );
1058 } else {
1059 // In debug mode, separate each response by a new line.
1060 // For example, between 'mw.loader.implement();' statements.
1061 $strContent = $this->ensureNewline( $strContent );
1062 }
1063
1064 if ( $context->getOnly() === 'scripts' ) {
1065 // Use a linebreak between module scripts (T162719)
1066 $out .= $this->ensureNewline( $strContent );
1067 } else {
1068 $out .= $strContent;
1069 }
1070
1071 } catch ( Exception $e ) {
1072 $this->outputErrorAndLog( $e, 'Generating module package failed: {exception}' );
1073
1074 // Respond to client with error-state instead of module implementation
1075 $states[$name] = 'error';
1076 unset( $modules[$name] );
1077 }
1078 }
1079
1080 // Update module states
1081 if ( $context->shouldIncludeScripts() && !$context->getRaw() ) {
1082 if ( $modules && $context->getOnly() === 'scripts' ) {
1083 // Set the state of modules loaded as only scripts to ready as
1084 // they don't have an mw.loader.implement wrapper that sets the state
1085 foreach ( $modules as $name => $module ) {
1086 $states[$name] = 'ready';
1087 }
1088 }
1089
1090 // Set the state of modules we didn't respond to with mw.loader.implement
1091 if ( $states ) {
1092 $stateScript = self::makeLoaderStateScript( $states );
1093 if ( !$context->getDebug() ) {
1094 $stateScript = self::filter( 'minify-js', $stateScript );
1095 }
1096 // Use a linebreak between module script and state script (T162719)
1097 $out = $this->ensureNewline( $out ) . $stateScript;
1098 }
1099 } elseif ( $states ) {
1100 $this->errors[] = 'Problematic modules: '
1101 . self::encodeJsonForScript( $states );
1102 }
1103
1104 return $out;
1105 }
1106
1107 /**
1108 * Ensure the string is either empty or ends in a line break
1109 * @param string $str
1110 * @return string
1111 */
1112 private function ensureNewline( $str ) {
1113 $end = substr( $str, -1 );
1114 if ( $end === false || $end === '' || $end === "\n" ) {
1115 return $str;
1116 }
1117 return $str . "\n";
1118 }
1119
1120 /**
1121 * Get names of modules that use a certain message.
1122 *
1123 * @param string $messageKey
1124 * @return array List of module names
1125 */
1126 public function getModulesByMessage( $messageKey ) {
1127 $moduleNames = [];
1128 foreach ( $this->getModuleNames() as $moduleName ) {
1129 $module = $this->getModule( $moduleName );
1130 if ( in_array( $messageKey, $module->getMessages() ) ) {
1131 $moduleNames[] = $moduleName;
1132 }
1133 }
1134 return $moduleNames;
1135 }
1136
1137 /**
1138 * Return JS code that calls mw.loader.implement with given module properties.
1139 *
1140 * @param string $name Module name or implement key (format "`[name]@[version]`")
1141 * @param XmlJsCode|array|string $scripts Code as XmlJsCode (to be wrapped in a closure),
1142 * list of URLs to JavaScript files, string of JavaScript for `$.globalEval`, or array with
1143 * 'files' and 'main' properties (see ResourceLoaderModule::getScript())
1144 * @param mixed $styles Array of CSS strings keyed by media type, or an array of lists of URLs
1145 * to CSS files keyed by media type
1146 * @param mixed $messages List of messages associated with this module. May either be an
1147 * associative array mapping message key to value, or a JSON-encoded message blob containing
1148 * the same data, wrapped in an XmlJsCode object.
1149 * @param array $templates Keys are name of templates and values are the source of
1150 * the template.
1151 * @throws MWException
1152 * @return string JavaScript code
1153 */
1154 protected static function makeLoaderImplementScript(
1155 $name, $scripts, $styles, $messages, $templates
1156 ) {
1157 if ( $scripts instanceof XmlJsCode ) {
1158 if ( $scripts->value === '' ) {
1159 $scripts = null;
1160 } elseif ( self::inDebugMode() ) {
1161 $scripts = new XmlJsCode( "function ( $, jQuery, require, module ) {\n{$scripts->value}\n}" );
1162 } else {
1163 $scripts = new XmlJsCode( 'function($,jQuery,require,module){' . $scripts->value . '}' );
1164 }
1165 } elseif ( is_array( $scripts ) && isset( $scripts['files'] ) ) {
1166 $files = $scripts['files'];
1167 foreach ( $files as $path => &$file ) {
1168 // $file is changed (by reference) from a descriptor array to the content of the file
1169 // All of these essentially do $file = $file['content'];, some just have wrapping around it
1170 if ( $file['type'] === 'script' ) {
1171 // Multi-file modules only get two parameters ($ and jQuery are being phased out)
1172 if ( self::inDebugMode() ) {
1173 $file = new XmlJsCode( "function ( require, module ) {\n{$file['content']}\n}" );
1174 } else {
1175 $file = new XmlJsCode( 'function(require,module){' . $file['content'] . '}' );
1176 }
1177 } else {
1178 $file = $file['content'];
1179 }
1180 }
1181 $scripts = XmlJsCode::encodeObject( [
1182 'main' => $scripts['main'],
1183 'files' => XmlJsCode::encodeObject( $files, self::inDebugMode() )
1184 ], self::inDebugMode() );
1185 } elseif ( !is_string( $scripts ) && !is_array( $scripts ) ) {
1186 throw new MWException( 'Invalid scripts error. Array of URLs or string of code expected.' );
1187 }
1188
1189 // mw.loader.implement requires 'styles', 'messages' and 'templates' to be objects (not
1190 // arrays). json_encode considers empty arrays to be numerical and outputs "[]" instead
1191 // of "{}". Force them to objects.
1192 $module = [
1193 $name,
1194 $scripts,
1195 (object)$styles,
1196 (object)$messages,
1197 (object)$templates
1198 ];
1199 self::trimArray( $module );
1200
1201 return Xml::encodeJsCall( 'mw.loader.implement', $module, self::inDebugMode() );
1202 }
1203
1204 /**
1205 * Returns JS code which, when called, will register a given list of messages.
1206 *
1207 * @param mixed $messages Either an associative array mapping message key to value, or a
1208 * JSON-encoded message blob containing the same data, wrapped in an XmlJsCode object.
1209 * @return string JavaScript code
1210 */
1211 public static function makeMessageSetScript( $messages ) {
1212 return 'mw.messages.set('
1213 . self::encodeJsonForScript( (object)$messages )
1214 . ');';
1215 }
1216
1217 /**
1218 * Combines an associative array mapping media type to CSS into a
1219 * single stylesheet with "@media" blocks.
1220 *
1221 * @param array $stylePairs Array keyed by media type containing (arrays of) CSS strings
1222 * @return array
1223 */
1224 public static function makeCombinedStyles( array $stylePairs ) {
1225 $out = [];
1226 foreach ( $stylePairs as $media => $styles ) {
1227 // ResourceLoaderFileModule::getStyle can return the styles
1228 // as a string or an array of strings. This is to allow separation in
1229 // the front-end.
1230 $styles = (array)$styles;
1231 foreach ( $styles as $style ) {
1232 $style = trim( $style );
1233 // Don't output an empty "@media print { }" block (T42498)
1234 if ( $style !== '' ) {
1235 // Transform the media type based on request params and config
1236 // The way that this relies on $wgRequest to propagate request params is slightly evil
1237 $media = OutputPage::transformCssMedia( $media );
1238
1239 if ( $media === '' || $media == 'all' ) {
1240 $out[] = $style;
1241 } elseif ( is_string( $media ) ) {
1242 $out[] = "@media $media {\n" . str_replace( "\n", "\n\t", "\t" . $style ) . "}";
1243 }
1244 // else: skip
1245 }
1246 }
1247 }
1248 return $out;
1249 }
1250
1251 /**
1252 * Wrapper around json_encode that avoids needless escapes,
1253 * and pretty-prints in debug mode.
1254 *
1255 * @internal
1256 * @since 1.32
1257 * @param bool|string|array $data
1258 * @return string JSON
1259 */
1260 public static function encodeJsonForScript( $data ) {
1261 // Keep output as small as possible by disabling needless escape modes
1262 // that PHP uses by default.
1263 // However, while most module scripts are only served on HTTP responses
1264 // for JavaScript, some modules can also be embedded in the HTML as inline
1265 // scripts. This, and the fact that we sometimes need to export strings
1266 // containing user-generated content and labels that may genuinely contain
1267 // a sequences like "</script>", we need to encode either '/' or '<'.
1268 // By default PHP escapes '/'. Let's escape '<' instead which is less common
1269 // and allows URLs to mostly remain readable.
1270 $jsonFlags = JSON_UNESCAPED_SLASHES |
1271 JSON_UNESCAPED_UNICODE |
1272 JSON_HEX_TAG |
1273 JSON_HEX_AMP;
1274 if ( self::inDebugMode() ) {
1275 $jsonFlags |= JSON_PRETTY_PRINT;
1276 }
1277 return json_encode( $data, $jsonFlags );
1278 }
1279
1280 /**
1281 * Returns a JS call to mw.loader.state, which sets the state of one
1282 * ore more modules to a given value. Has two calling conventions:
1283 *
1284 * - ResourceLoader::makeLoaderStateScript( $name, $state ):
1285 * Set the state of a single module called $name to $state
1286 *
1287 * - ResourceLoader::makeLoaderStateScript( [ $name => $state, ... ] ):
1288 * Set the state of modules with the given names to the given states
1289 *
1290 * @param array|string $states
1291 * @param string|null $state
1292 * @return string JavaScript code
1293 */
1294 public static function makeLoaderStateScript( $states, $state = null ) {
1295 if ( !is_array( $states ) ) {
1296 $states = [ $states => $state ];
1297 }
1298 return 'mw.loader.state('
1299 . self::encodeJsonForScript( $states )
1300 . ');';
1301 }
1302
1303 private static function isEmptyObject( stdClass $obj ) {
1304 foreach ( $obj as $key => $value ) {
1305 return false;
1306 }
1307 return true;
1308 }
1309
1310 /**
1311 * Remove empty values from the end of an array.
1312 *
1313 * Values considered empty:
1314 *
1315 * - null
1316 * - []
1317 * - new XmlJsCode( '{}' )
1318 * - new stdClass() // (object) []
1319 *
1320 * @param array $array
1321 */
1322 private static function trimArray( array &$array ) {
1323 $i = count( $array );
1324 while ( $i-- ) {
1325 if ( $array[$i] === null
1326 || $array[$i] === []
1327 || ( $array[$i] instanceof XmlJsCode && $array[$i]->value === '{}' )
1328 || ( $array[$i] instanceof stdClass && self::isEmptyObject( $array[$i] ) )
1329 ) {
1330 unset( $array[$i] );
1331 } else {
1332 break;
1333 }
1334 }
1335 }
1336
1337 /**
1338 * Returns JS code which calls mw.loader.register with the given
1339 * parameter.
1340 *
1341 * @par Example
1342 * @code
1343 *
1344 * ResourceLoader::makeLoaderRegisterScript( [
1345 * [ $name1, $version1, $dependencies1, $group1, $source1, $skip1 ],
1346 * [ $name2, $version2, $dependencies1, $group2, $source2, $skip2 ],
1347 * ...
1348 * ] ):
1349 * @endcode
1350 *
1351 * @internal
1352 * @since 1.32
1353 * @param array $modules Array of module registration arrays, each containing
1354 * - string: module name
1355 * - string: module version
1356 * - array|null: List of dependencies (optional)
1357 * - string|null: Module group (optional)
1358 * - string|null: Name of foreign module source, or 'local' (optional)
1359 * - string|null: Script body of a skip function (optional)
1360 * @return string JavaScript code
1361 */
1362 public static function makeLoaderRegisterScript( array $modules ) {
1363 // Optimisation: Transform dependency names into indexes when possible
1364 // to produce smaller output. They are expanded by mw.loader.register on
1365 // the other end using resolveIndexedDependencies().
1366 $index = [];
1367 foreach ( $modules as $i => &$module ) {
1368 // Build module name index
1369 $index[$module[0]] = $i;
1370 }
1371 foreach ( $modules as &$module ) {
1372 if ( isset( $module[2] ) ) {
1373 foreach ( $module[2] as &$dependency ) {
1374 if ( isset( $index[$dependency] ) ) {
1375 // Replace module name in dependency list with index
1376 $dependency = $index[$dependency];
1377 }
1378 }
1379 }
1380 }
1381
1382 array_walk( $modules, [ self::class, 'trimArray' ] );
1383
1384 return 'mw.loader.register('
1385 . self::encodeJsonForScript( $modules )
1386 . ');';
1387 }
1388
1389 /**
1390 * Returns JS code which calls mw.loader.addSource() with the given
1391 * parameters. Has two calling conventions:
1392 *
1393 * - ResourceLoader::makeLoaderSourcesScript( $id, $properties ):
1394 * Register a single source
1395 *
1396 * - ResourceLoader::makeLoaderSourcesScript( [ $id1 => $loadUrl, $id2 => $loadUrl, ... ] );
1397 * Register sources with the given IDs and properties.
1398 *
1399 * @param string|array $sources Source ID
1400 * @param string|null $loadUrl load.php url
1401 * @return string JavaScript code
1402 */
1403 public static function makeLoaderSourcesScript( $sources, $loadUrl = null ) {
1404 if ( !is_array( $sources ) ) {
1405 $sources = [ $sources => $loadUrl ];
1406 }
1407 return 'mw.loader.addSource('
1408 . self::encodeJsonForScript( $sources )
1409 . ');';
1410 }
1411
1412 /**
1413 * Wraps JavaScript code to run after the startup module.
1414 *
1415 * @param string $script JavaScript code
1416 * @return string JavaScript code
1417 */
1418 public static function makeLoaderConditionalScript( $script ) {
1419 // Adds a function to lazy-created RLQ
1420 return '(RLQ=window.RLQ||[]).push(function(){' .
1421 trim( $script ) . '});';
1422 }
1423
1424 /**
1425 * Wraps JavaScript code to run after a required module.
1426 *
1427 * @since 1.32
1428 * @param string|string[] $modules Module name(s)
1429 * @param string $script JavaScript code
1430 * @return string JavaScript code
1431 */
1432 public static function makeInlineCodeWithModule( $modules, $script ) {
1433 // Adds an array to lazy-created RLQ
1434 return '(RLQ=window.RLQ||[]).push(['
1435 . self::encodeJsonForScript( $modules ) . ','
1436 . 'function(){' . trim( $script ) . '}'
1437 . ']);';
1438 }
1439
1440 /**
1441 * Returns an HTML script tag that runs given JS code after startup and base modules.
1442 *
1443 * The code will be wrapped in a closure, and it will be executed by ResourceLoader's
1444 * startup module if the client has adequate support for MediaWiki JavaScript code.
1445 *
1446 * @param string $script JavaScript code
1447 * @param string|null $nonce [optional] Content-Security-Policy nonce
1448 * (from OutputPage::getCSPNonce)
1449 * @return string|WrappedString HTML
1450 */
1451 public static function makeInlineScript( $script, $nonce = null ) {
1452 $js = self::makeLoaderConditionalScript( $script );
1453 $escNonce = '';
1454 if ( $nonce === null ) {
1455 wfWarn( __METHOD__ . " did not get nonce. Will break CSP" );
1456 } elseif ( $nonce !== false ) {
1457 // If it was false, CSP is disabled, so no nonce attribute.
1458 // Nonce should be only base64 characters, so should be safe,
1459 // but better to be safely escaped than sorry.
1460 $escNonce = ' nonce="' . htmlspecialchars( $nonce ) . '"';
1461 }
1462
1463 return new WrappedString(
1464 Html::inlineScript( $js, $nonce ),
1465 "<script$escNonce>(RLQ=window.RLQ||[]).push(function(){",
1466 '});</script>'
1467 );
1468 }
1469
1470 /**
1471 * Returns JS code which will set the MediaWiki configuration array to
1472 * the given value.
1473 *
1474 * @param array $configuration List of configuration values keyed by variable name
1475 * @return string JavaScript code
1476 * @throws Exception
1477 */
1478 public static function makeConfigSetScript( array $configuration ) {
1479 $js = Xml::encodeJsCall(
1480 'mw.config.set',
1481 [ $configuration ],
1482 self::inDebugMode()
1483 );
1484 if ( $js === false ) {
1485 $e = new Exception(
1486 'JSON serialization of config data failed. ' .
1487 'This usually means the config data is not valid UTF-8.'
1488 );
1489 MWExceptionHandler::logException( $e );
1490 $js = Xml::encodeJsCall( 'mw.log.error', [ $e->__toString() ] );
1491 }
1492 return $js;
1493 }
1494
1495 /**
1496 * Convert an array of module names to a packed query string.
1497 *
1498 * For example, `[ 'foo.bar', 'foo.baz', 'bar.baz', 'bar.quux' ]`
1499 * becomes `'foo.bar,baz|bar.baz,quux'`.
1500 *
1501 * This process is reversed by ResourceLoader::expandModuleNames().
1502 * See also mw.loader#buildModulesString() which is a port of this, used
1503 * on the client-side.
1504 *
1505 * @param array $modules List of module names (strings)
1506 * @return string Packed query string
1507 */
1508 public static function makePackedModulesString( $modules ) {
1509 $moduleMap = []; // [ prefix => [ suffixes ] ]
1510 foreach ( $modules as $module ) {
1511 $pos = strrpos( $module, '.' );
1512 $prefix = $pos === false ? '' : substr( $module, 0, $pos );
1513 $suffix = $pos === false ? $module : substr( $module, $pos + 1 );
1514 $moduleMap[$prefix][] = $suffix;
1515 }
1516
1517 $arr = [];
1518 foreach ( $moduleMap as $prefix => $suffixes ) {
1519 $p = $prefix === '' ? '' : $prefix . '.';
1520 $arr[] = $p . implode( ',', $suffixes );
1521 }
1522 return implode( '|', $arr );
1523 }
1524
1525 /**
1526 * Expand a string of the form `jquery.foo,bar|jquery.ui.baz,quux` to
1527 * an array of module names like `[ 'jquery.foo', 'jquery.bar',
1528 * 'jquery.ui.baz', 'jquery.ui.quux' ]`.
1529 *
1530 * This process is reversed by ResourceLoader::makePackedModulesString().
1531 *
1532 * @since 1.33
1533 * @param string $modules Packed module name list
1534 * @return array Array of module names
1535 */
1536 public static function expandModuleNames( $modules ) {
1537 $retval = [];
1538 $exploded = explode( '|', $modules );
1539 foreach ( $exploded as $group ) {
1540 if ( strpos( $group, ',' ) === false ) {
1541 // This is not a set of modules in foo.bar,baz notation
1542 // but a single module
1543 $retval[] = $group;
1544 } else {
1545 // This is a set of modules in foo.bar,baz notation
1546 $pos = strrpos( $group, '.' );
1547 if ( $pos === false ) {
1548 // Prefixless modules, i.e. without dots
1549 $retval = array_merge( $retval, explode( ',', $group ) );
1550 } else {
1551 // We have a prefix and a bunch of suffixes
1552 $prefix = substr( $group, 0, $pos ); // 'foo'
1553 $suffixes = explode( ',', substr( $group, $pos + 1 ) ); // [ 'bar', 'baz' ]
1554 foreach ( $suffixes as $suffix ) {
1555 $retval[] = "$prefix.$suffix";
1556 }
1557 }
1558 }
1559 }
1560 return $retval;
1561 }
1562
1563 /**
1564 * Determine whether debug mode was requested
1565 * Order of priority is 1) request param, 2) cookie, 3) $wg setting
1566 * @return bool
1567 */
1568 public static function inDebugMode() {
1569 if ( self::$debugMode === null ) {
1570 global $wgRequest, $wgResourceLoaderDebug;
1571 self::$debugMode = $wgRequest->getFuzzyBool( 'debug',
1572 $wgRequest->getCookie( 'resourceLoaderDebug', '', $wgResourceLoaderDebug )
1573 );
1574 }
1575 return self::$debugMode;
1576 }
1577
1578 /**
1579 * Reset static members used for caching.
1580 *
1581 * Global state and $wgRequest are evil, but we're using it right
1582 * now and sometimes we need to be able to force ResourceLoader to
1583 * re-evaluate the context because it has changed (e.g. in the test suite).
1584 *
1585 * @internal For use by unit tests
1586 * @codeCoverageIgnore
1587 */
1588 public static function clearCache() {
1589 self::$debugMode = null;
1590 }
1591
1592 /**
1593 * Build a load.php URL
1594 *
1595 * @since 1.24
1596 * @param string $source Name of the ResourceLoader source
1597 * @param ResourceLoaderContext $context
1598 * @param array $extraQuery
1599 * @return string URL to load.php. May be protocol-relative if $wgLoadScript is, too.
1600 */
1601 public function createLoaderURL( $source, ResourceLoaderContext $context,
1602 $extraQuery = []
1603 ) {
1604 $query = self::createLoaderQuery( $context, $extraQuery );
1605 $script = $this->getLoadScript( $source );
1606
1607 return wfAppendQuery( $script, $query );
1608 }
1609
1610 /**
1611 * Helper for createLoaderURL()
1612 *
1613 * @since 1.24
1614 * @see makeLoaderQuery
1615 * @param ResourceLoaderContext $context
1616 * @param array $extraQuery
1617 * @return array
1618 */
1619 protected static function createLoaderQuery( ResourceLoaderContext $context, $extraQuery = [] ) {
1620 return self::makeLoaderQuery(
1621 $context->getModules(),
1622 $context->getLanguage(),
1623 $context->getSkin(),
1624 $context->getUser(),
1625 $context->getVersion(),
1626 $context->getDebug(),
1627 $context->getOnly(),
1628 $context->getRequest()->getBool( 'printable' ),
1629 $context->getRequest()->getBool( 'handheld' ),
1630 $extraQuery
1631 );
1632 }
1633
1634 /**
1635 * Build a query array (array representation of query string) for load.php. Helper
1636 * function for createLoaderURL().
1637 *
1638 * @param array $modules
1639 * @param string $lang
1640 * @param string $skin
1641 * @param string|null $user
1642 * @param string|null $version
1643 * @param bool $debug
1644 * @param string|null $only
1645 * @param bool $printable
1646 * @param bool $handheld
1647 * @param array $extraQuery
1648 * @return array
1649 */
1650 public static function makeLoaderQuery( $modules, $lang, $skin, $user = null,
1651 $version = null, $debug = false, $only = null, $printable = false,
1652 $handheld = false, $extraQuery = []
1653 ) {
1654 $query = [
1655 'modules' => self::makePackedModulesString( $modules ),
1656 ];
1657 // Keep urls short by omitting query parameters that
1658 // match the defaults assumed by ResourceLoaderContext.
1659 // Note: This relies on the defaults either being insignificant or forever constant,
1660 // as otherwise cached urls could change in meaning when the defaults change.
1661 if ( $lang !== ResourceLoaderContext::DEFAULT_LANG ) {
1662 $query['lang'] = $lang;
1663 }
1664 if ( $skin !== ResourceLoaderContext::DEFAULT_SKIN ) {
1665 $query['skin'] = $skin;
1666 }
1667 if ( $debug === true ) {
1668 $query['debug'] = 'true';
1669 }
1670 if ( $user !== null ) {
1671 $query['user'] = $user;
1672 }
1673 if ( $version !== null ) {
1674 $query['version'] = $version;
1675 }
1676 if ( $only !== null ) {
1677 $query['only'] = $only;
1678 }
1679 if ( $printable ) {
1680 $query['printable'] = 1;
1681 }
1682 if ( $handheld ) {
1683 $query['handheld'] = 1;
1684 }
1685 $query += $extraQuery;
1686
1687 // Make queries uniform in order
1688 ksort( $query );
1689 return $query;
1690 }
1691
1692 /**
1693 * Check a module name for validity.
1694 *
1695 * Module names may not contain pipes (|), commas (,) or exclamation marks (!) and can be
1696 * at most 255 bytes.
1697 *
1698 * @param string $moduleName Module name to check
1699 * @return bool Whether $moduleName is a valid module name
1700 */
1701 public static function isValidModuleName( $moduleName ) {
1702 return strcspn( $moduleName, '!,|', 0, 255 ) === strlen( $moduleName );
1703 }
1704
1705 /**
1706 * Returns LESS compiler set up for use with MediaWiki
1707 *
1708 * @since 1.27
1709 * @param array $vars Associative array of variables that should be used
1710 * for compilation. Since 1.32, this method no longer automatically includes
1711 * global LESS vars from ResourceLoader::getLessVars (T191937).
1712 * @throws MWException
1713 * @return Less_Parser
1714 */
1715 public function getLessCompiler( $vars = [] ) {
1716 global $IP;
1717 // When called from the installer, it is possible that a required PHP extension
1718 // is missing (at least for now; see T49564). If this is the case, throw an
1719 // exception (caught by the installer) to prevent a fatal error later on.
1720 if ( !class_exists( 'Less_Parser' ) ) {
1721 throw new MWException( 'MediaWiki requires the less.php parser' );
1722 }
1723
1724 $parser = new Less_Parser;
1725 $parser->ModifyVars( $vars );
1726 $parser->SetImportDirs( [
1727 "$IP/resources/src/mediawiki.less/" => '',
1728 ] );
1729 $parser->SetOption( 'relativeUrls', false );
1730
1731 return $parser;
1732 }
1733
1734 /**
1735 * Get global LESS variables.
1736 *
1737 * @since 1.27
1738 * @deprecated since 1.32 Use ResourceLoderModule::getLessVars() instead.
1739 * @return array Map of variable names to string CSS values.
1740 */
1741 public function getLessVars() {
1742 return [];
1743 }
1744 }