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