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