Merge "Add MessagesBi.php"
[lhc/web/wiklou.git] / includes / resourceloader / ResourceLoaderModule.php
1 <?php
2 /**
3 * Abstraction for ResourceLoader modules.
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 Trevor Parscal
22 * @author Roan Kattouw
23 */
24
25 use MediaWiki\MediaWikiServices;
26 use Psr\Log\LoggerAwareInterface;
27 use Psr\Log\LoggerInterface;
28 use Psr\Log\NullLogger;
29 use Wikimedia\RelPath;
30 use Wikimedia\ScopedCallback;
31
32 /**
33 * Abstraction for ResourceLoader modules, with name registration and maxage functionality.
34 */
35 abstract class ResourceLoaderModule implements LoggerAwareInterface {
36 # Type of resource
37 const TYPE_SCRIPTS = 'scripts';
38 const TYPE_STYLES = 'styles';
39 const TYPE_COMBINED = 'combined';
40
41 # Desired load type
42 // Module only has styles (loaded via <style> or <link rel=stylesheet>)
43 const LOAD_STYLES = 'styles';
44 // Module may have other resources (loaded via mw.loader from a script)
45 const LOAD_GENERAL = 'general';
46
47 # sitewide core module like a skin file or jQuery component
48 const ORIGIN_CORE_SITEWIDE = 1;
49
50 # per-user module generated by the software
51 const ORIGIN_CORE_INDIVIDUAL = 2;
52
53 # sitewide module generated from user-editable files, like MediaWiki:Common.js, or
54 # modules accessible to multiple users, such as those generated by the Gadgets extension.
55 const ORIGIN_USER_SITEWIDE = 3;
56
57 # per-user module generated from user-editable files, like User:Me/vector.js
58 const ORIGIN_USER_INDIVIDUAL = 4;
59
60 # an access constant; make sure this is kept as the largest number in this group
61 const ORIGIN_ALL = 10;
62
63 # script and style modules form a hierarchy of trustworthiness, with core modules like
64 # skins and jQuery as most trustworthy, and user scripts as least trustworthy. We can
65 # limit the types of scripts and styles we allow to load on, say, sensitive special
66 # pages like Special:UserLogin and Special:Preferences
67 protected $origin = self::ORIGIN_CORE_SITEWIDE;
68
69 protected $name = null;
70 protected $targets = [ 'desktop' ];
71
72 // In-object cache for file dependencies
73 protected $fileDeps = [];
74 // In-object cache for message blob (keyed by language)
75 protected $msgBlobs = [];
76 // In-object cache for version hash
77 protected $versionHash = [];
78 // In-object cache for module content
79 protected $contents = [];
80
81 /**
82 * @var Config
83 */
84 protected $config;
85
86 /**
87 * @var array|bool
88 */
89 protected $deprecated = false;
90
91 /**
92 * @var LoggerInterface
93 */
94 protected $logger;
95
96 /**
97 * Get this module's name. This is set when the module is registered
98 * with ResourceLoader::register()
99 *
100 * @return string|null Name (string) or null if no name was set
101 */
102 public function getName() {
103 return $this->name;
104 }
105
106 /**
107 * Set this module's name. This is called by ResourceLoader::register()
108 * when registering the module. Other code should not call this.
109 *
110 * @param string $name
111 */
112 public function setName( $name ) {
113 $this->name = $name;
114 }
115
116 /**
117 * Get this module's origin. This is set when the module is registered
118 * with ResourceLoader::register()
119 *
120 * @return int ResourceLoaderModule class constant, the subclass default
121 * if not set manually
122 */
123 public function getOrigin() {
124 return $this->origin;
125 }
126
127 /**
128 * @param ResourceLoaderContext $context
129 * @return bool
130 */
131 public function getFlip( $context ) {
132 return MediaWikiServices::getInstance()->getContentLanguage()->getDir() !==
133 $context->getDirection();
134 }
135
136 /**
137 * Get JS representing deprecation information for the current module if available
138 *
139 * @return string JavaScript code
140 */
141 public function getDeprecationInformation() {
142 $deprecationInfo = $this->deprecated;
143 if ( $deprecationInfo ) {
144 $name = $this->getName();
145 $warning = 'This page is using the deprecated ResourceLoader module "' . $name . '".';
146 if ( is_string( $deprecationInfo ) ) {
147 $warning .= "\n" . $deprecationInfo;
148 }
149 return Xml::encodeJsCall(
150 'mw.log.warn',
151 [ $warning ]
152 );
153 } else {
154 return '';
155 }
156 }
157
158 /**
159 * Get all JS for this module for a given language and skin.
160 * Includes all relevant JS except loader scripts.
161 *
162 * @param ResourceLoaderContext $context
163 * @return string JavaScript code
164 */
165 public function getScript( ResourceLoaderContext $context ) {
166 // Stub, override expected
167 return '';
168 }
169
170 /**
171 * Takes named templates by the module and returns an array mapping.
172 *
173 * @return array of templates mapping template alias to content
174 */
175 public function getTemplates() {
176 // Stub, override expected.
177 return [];
178 }
179
180 /**
181 * @return Config
182 * @since 1.24
183 */
184 public function getConfig() {
185 if ( $this->config === null ) {
186 // Ugh, fall back to default
187 $this->config = MediaWikiServices::getInstance()->getMainConfig();
188 }
189
190 return $this->config;
191 }
192
193 /**
194 * @param Config $config
195 * @since 1.24
196 */
197 public function setConfig( Config $config ) {
198 $this->config = $config;
199 }
200
201 /**
202 * @since 1.27
203 * @param LoggerInterface $logger
204 * @return null
205 */
206 public function setLogger( LoggerInterface $logger ) {
207 $this->logger = $logger;
208 }
209
210 /**
211 * @since 1.27
212 * @return LoggerInterface
213 */
214 protected function getLogger() {
215 if ( !$this->logger ) {
216 $this->logger = new NullLogger();
217 }
218 return $this->logger;
219 }
220
221 /**
222 * Get the URL or URLs to load for this module's JS in debug mode.
223 * The default behavior is to return a load.php?only=scripts URL for
224 * the module, but file-based modules will want to override this to
225 * load the files directly.
226 *
227 * This function is called only when 1) we're in debug mode, 2) there
228 * is no only= parameter and 3) supportsURLLoading() returns true.
229 * #2 is important to prevent an infinite loop, therefore this function
230 * MUST return either an only= URL or a non-load.php URL.
231 *
232 * @param ResourceLoaderContext $context
233 * @return array Array of URLs
234 */
235 public function getScriptURLsForDebug( ResourceLoaderContext $context ) {
236 $resourceLoader = $context->getResourceLoader();
237 $derivative = new DerivativeResourceLoaderContext( $context );
238 $derivative->setModules( [ $this->getName() ] );
239 $derivative->setOnly( 'scripts' );
240 $derivative->setDebug( true );
241
242 $url = $resourceLoader->createLoaderURL(
243 $this->getSource(),
244 $derivative
245 );
246
247 return [ $url ];
248 }
249
250 /**
251 * Whether this module supports URL loading. If this function returns false,
252 * getScript() will be used even in cases (debug mode, no only param) where
253 * getScriptURLsForDebug() would normally be used instead.
254 * @return bool
255 */
256 public function supportsURLLoading() {
257 return true;
258 }
259
260 /**
261 * Get all CSS for this module for a given skin.
262 *
263 * @param ResourceLoaderContext $context
264 * @return array List of CSS strings or array of CSS strings keyed by media type.
265 * like [ 'screen' => '.foo { width: 0 }' ];
266 * or [ 'screen' => [ '.foo { width: 0 }' ] ];
267 */
268 public function getStyles( ResourceLoaderContext $context ) {
269 // Stub, override expected
270 return [];
271 }
272
273 /**
274 * Get the URL or URLs to load for this module's CSS in debug mode.
275 * The default behavior is to return a load.php?only=styles URL for
276 * the module, but file-based modules will want to override this to
277 * load the files directly. See also getScriptURLsForDebug()
278 *
279 * @param ResourceLoaderContext $context
280 * @return array [ mediaType => [ URL1, URL2, ... ], ... ]
281 */
282 public function getStyleURLsForDebug( ResourceLoaderContext $context ) {
283 $resourceLoader = $context->getResourceLoader();
284 $derivative = new DerivativeResourceLoaderContext( $context );
285 $derivative->setModules( [ $this->getName() ] );
286 $derivative->setOnly( 'styles' );
287 $derivative->setDebug( true );
288
289 $url = $resourceLoader->createLoaderURL(
290 $this->getSource(),
291 $derivative
292 );
293
294 return [ 'all' => [ $url ] ];
295 }
296
297 /**
298 * Get the messages needed for this module.
299 *
300 * To get a JSON blob with messages, use MessageBlobStore::get()
301 *
302 * @return array List of message keys. Keys may occur more than once
303 */
304 public function getMessages() {
305 // Stub, override expected
306 return [];
307 }
308
309 /**
310 * Get the group this module is in.
311 *
312 * @return string Group name
313 */
314 public function getGroup() {
315 // Stub, override expected
316 return null;
317 }
318
319 /**
320 * Get the source of this module. Should only be overridden for foreign modules.
321 *
322 * @return string Source name, 'local' for local modules
323 */
324 public function getSource() {
325 // Stub, override expected
326 return 'local';
327 }
328
329 /**
330 * Whether this module's JS expects to work without the client-side ResourceLoader module.
331 * Returning true from this function will prevent mw.loader.state() call from being
332 * appended to the bottom of the script.
333 *
334 * @return bool
335 */
336 public function isRaw() {
337 return false;
338 }
339
340 /**
341 * Get a list of modules this module depends on.
342 *
343 * Dependency information is taken into account when loading a module
344 * on the client side.
345 *
346 * Note: It is expected that $context will be made non-optional in the near
347 * future.
348 *
349 * @param ResourceLoaderContext|null $context
350 * @return array List of module names as strings
351 */
352 public function getDependencies( ResourceLoaderContext $context = null ) {
353 // Stub, override expected
354 return [];
355 }
356
357 /**
358 * Get target(s) for the module, eg ['desktop'] or ['desktop', 'mobile']
359 *
360 * @return array Array of strings
361 */
362 public function getTargets() {
363 return $this->targets;
364 }
365
366 /**
367 * Get the module's load type.
368 *
369 * @since 1.28
370 * @return string ResourceLoaderModule LOAD_* constant
371 */
372 public function getType() {
373 return self::LOAD_GENERAL;
374 }
375
376 /**
377 * Get the skip function.
378 *
379 * Modules that provide fallback functionality can provide a "skip function". This
380 * function, if provided, will be passed along to the module registry on the client.
381 * When this module is loaded (either directly or as a dependency of another module),
382 * then this function is executed first. If the function returns true, the module will
383 * instantly be considered "ready" without requesting the associated module resources.
384 *
385 * The value returned here must be valid javascript for execution in a private function.
386 * It must not contain the "function () {" and "}" wrapper though.
387 *
388 * @return string|null A JavaScript function body returning a boolean value, or null
389 */
390 public function getSkipFunction() {
391 return null;
392 }
393
394 /**
395 * Get the files this module depends on indirectly for a given skin.
396 *
397 * These are only image files referenced by the module's stylesheet.
398 *
399 * @param ResourceLoaderContext $context
400 * @return array List of files
401 */
402 protected function getFileDependencies( ResourceLoaderContext $context ) {
403 $vary = $context->getSkin() . '|' . $context->getLanguage();
404
405 // Try in-object cache first
406 if ( !isset( $this->fileDeps[$vary] ) ) {
407 $dbr = wfGetDB( DB_REPLICA );
408 $deps = $dbr->selectField( 'module_deps',
409 'md_deps',
410 [
411 'md_module' => $this->getName(),
412 'md_skin' => $vary,
413 ],
414 __METHOD__
415 );
416
417 if ( !is_null( $deps ) ) {
418 $this->fileDeps[$vary] = self::expandRelativePaths(
419 (array)json_decode( $deps, true )
420 );
421 } else {
422 $this->fileDeps[$vary] = [];
423 }
424 }
425 return $this->fileDeps[$vary];
426 }
427
428 /**
429 * Set in-object cache for file dependencies.
430 *
431 * This is used to retrieve data in batches. See ResourceLoader::preloadModuleInfo().
432 * To save the data, use saveFileDependencies().
433 *
434 * @param ResourceLoaderContext $context
435 * @param string[] $files Array of file names
436 */
437 public function setFileDependencies( ResourceLoaderContext $context, $files ) {
438 $vary = $context->getSkin() . '|' . $context->getLanguage();
439 $this->fileDeps[$vary] = $files;
440 }
441
442 /**
443 * Set the files this module depends on indirectly for a given skin.
444 *
445 * @since 1.27
446 * @param ResourceLoaderContext $context
447 * @param array $localFileRefs List of files
448 */
449 protected function saveFileDependencies( ResourceLoaderContext $context, $localFileRefs ) {
450 try {
451 // Related bugs and performance considerations:
452 // 1. Don't needlessly change the database value with the same list in a
453 // different order or with duplicates.
454 // 2. Use relative paths to avoid ghost entries when $IP changes. (T111481)
455 // 3. Don't needlessly replace the database with the same value
456 // just because $IP changed (e.g. when upgrading a wiki).
457 // 4. Don't create an endless replace loop on every request for this
458 // module when '../' is used anywhere. Even though both are expanded
459 // (one expanded by getFileDependencies from the DB, the other is
460 // still raw as originally read by RL), the latter has not
461 // been normalized yet.
462
463 // Normalise
464 $localFileRefs = array_values( array_unique( $localFileRefs ) );
465 sort( $localFileRefs );
466 $localPaths = self::getRelativePaths( $localFileRefs );
467
468 $storedPaths = self::getRelativePaths( $this->getFileDependencies( $context ) );
469 // If the list has been modified since last time we cached it, update the cache
470 if ( $localPaths !== $storedPaths ) {
471 $vary = $context->getSkin() . '|' . $context->getLanguage();
472 $cache = ObjectCache::getLocalClusterInstance();
473 $key = $cache->makeKey( __METHOD__, $this->getName(), $vary );
474 $scopeLock = $cache->getScopedLock( $key, 0 );
475 if ( !$scopeLock ) {
476 return; // T124649; avoid write slams
477 }
478
479 // No needless escaping as this isn't HTML output.
480 // Only stored in the database and parsed in PHP.
481 $deps = json_encode( $localPaths, JSON_UNESCAPED_SLASHES );
482 $dbw = wfGetDB( DB_MASTER );
483 $dbw->upsert( 'module_deps',
484 [
485 'md_module' => $this->getName(),
486 'md_skin' => $vary,
487 'md_deps' => $deps,
488 ],
489 [ 'md_module', 'md_skin' ],
490 [
491 'md_deps' => $deps,
492 ]
493 );
494
495 if ( $dbw->trxLevel() ) {
496 $dbw->onTransactionResolution(
497 function () use ( &$scopeLock ) {
498 ScopedCallback::consume( $scopeLock ); // release after commit
499 },
500 __METHOD__
501 );
502 }
503 }
504 } catch ( Exception $e ) {
505 wfDebugLog( 'resourceloader', __METHOD__ . ": failed to update DB: $e" );
506 }
507 }
508
509 /**
510 * Make file paths relative to MediaWiki directory.
511 *
512 * This is used to make file paths safe for storing in a database without the paths
513 * becoming stale or incorrect when MediaWiki is moved or upgraded (T111481).
514 *
515 * @since 1.27
516 * @param array $filePaths
517 * @return array
518 */
519 public static function getRelativePaths( array $filePaths ) {
520 global $IP;
521 return array_map( function ( $path ) use ( $IP ) {
522 return RelPath::getRelativePath( $path, $IP );
523 }, $filePaths );
524 }
525
526 /**
527 * Expand directories relative to $IP.
528 *
529 * @since 1.27
530 * @param array $filePaths
531 * @return array
532 */
533 public static function expandRelativePaths( array $filePaths ) {
534 global $IP;
535 return array_map( function ( $path ) use ( $IP ) {
536 return RelPath::joinPath( $IP, $path );
537 }, $filePaths );
538 }
539
540 /**
541 * Get the hash of the message blob.
542 *
543 * @since 1.27
544 * @param ResourceLoaderContext $context
545 * @return string|null JSON blob or null if module has no messages
546 */
547 protected function getMessageBlob( ResourceLoaderContext $context ) {
548 if ( !$this->getMessages() ) {
549 // Don't bother consulting MessageBlobStore
550 return null;
551 }
552 // Message blobs may only vary language, not by context keys
553 $lang = $context->getLanguage();
554 if ( !isset( $this->msgBlobs[$lang] ) ) {
555 $this->getLogger()->warning( 'Message blob for {module} should have been preloaded', [
556 'module' => $this->getName(),
557 ] );
558 $store = $context->getResourceLoader()->getMessageBlobStore();
559 $this->msgBlobs[$lang] = $store->getBlob( $this, $lang );
560 }
561 return $this->msgBlobs[$lang];
562 }
563
564 /**
565 * Set in-object cache for message blobs.
566 *
567 * Used to allow fetching of message blobs in batches. See ResourceLoader::preloadModuleInfo().
568 *
569 * @since 1.27
570 * @param string|null $blob JSON blob or null
571 * @param string $lang Language code
572 */
573 public function setMessageBlob( $blob, $lang ) {
574 $this->msgBlobs[$lang] = $blob;
575 }
576
577 /**
578 * Get headers to send as part of a module web response.
579 *
580 * It is not supported to send headers through this method that are
581 * required to be unique or otherwise sent once in an HTTP response
582 * because clients may make batch requests for multiple modules (as
583 * is the default behaviour for ResourceLoader clients).
584 *
585 * For exclusive or aggregated headers, see ResourceLoader::sendResponseHeaders().
586 *
587 * @since 1.30
588 * @param ResourceLoaderContext $context
589 * @return string[] Array of HTTP response headers
590 */
591 final public function getHeaders( ResourceLoaderContext $context ) {
592 $headers = [];
593
594 $formattedLinks = [];
595 foreach ( $this->getPreloadLinks( $context ) as $url => $attribs ) {
596 $link = "<{$url}>;rel=preload";
597 foreach ( $attribs as $key => $val ) {
598 $link .= ";{$key}={$val}";
599 }
600 $formattedLinks[] = $link;
601 }
602 if ( $formattedLinks ) {
603 $headers[] = 'Link: ' . implode( ',', $formattedLinks );
604 }
605
606 return $headers;
607 }
608
609 /**
610 * Get a list of resources that web browsers may preload.
611 *
612 * Behaviour of rel=preload link is specified at <https://www.w3.org/TR/preload/>.
613 *
614 * Use case for ResourceLoader originally part of T164299.
615 *
616 * @par Example
617 * @code
618 * protected function getPreloadLinks() {
619 * return [
620 * 'https://example.org/script.js' => [ 'as' => 'script' ],
621 * 'https://example.org/image.png' => [ 'as' => 'image' ],
622 * ];
623 * }
624 * @endcode
625 *
626 * @par Example using HiDPI image variants
627 * @code
628 * protected function getPreloadLinks() {
629 * return [
630 * 'https://example.org/logo.png' => [
631 * 'as' => 'image',
632 * 'media' => 'not all and (min-resolution: 2dppx)',
633 * ],
634 * 'https://example.org/logo@2x.png' => [
635 * 'as' => 'image',
636 * 'media' => '(min-resolution: 2dppx)',
637 * ],
638 * ];
639 * }
640 * @endcode
641 *
642 * @see ResourceLoaderModule::getHeaders
643 * @since 1.30
644 * @param ResourceLoaderContext $context
645 * @return array Keyed by url, values must be an array containing
646 * at least an 'as' key. Optionally a 'media' key as well.
647 */
648 protected function getPreloadLinks( ResourceLoaderContext $context ) {
649 return [];
650 }
651
652 /**
653 * Get module-specific LESS variables, if any.
654 *
655 * @since 1.27
656 * @param ResourceLoaderContext $context
657 * @return array Module-specific LESS variables.
658 */
659 protected function getLessVars( ResourceLoaderContext $context ) {
660 return [];
661 }
662
663 /**
664 * Get an array of this module's resources. Ready for serving to the web.
665 *
666 * @since 1.26
667 * @param ResourceLoaderContext $context
668 * @return array
669 */
670 public function getModuleContent( ResourceLoaderContext $context ) {
671 $contextHash = $context->getHash();
672 // Cache this expensive operation. This calls builds the scripts, styles, and messages
673 // content which typically involves filesystem and/or database access.
674 if ( !array_key_exists( $contextHash, $this->contents ) ) {
675 $this->contents[$contextHash] = $this->buildContent( $context );
676 }
677 return $this->contents[$contextHash];
678 }
679
680 /**
681 * Bundle all resources attached to this module into an array.
682 *
683 * @since 1.26
684 * @param ResourceLoaderContext $context
685 * @return array
686 */
687 final protected function buildContent( ResourceLoaderContext $context ) {
688 $rl = $context->getResourceLoader();
689 $stats = MediaWikiServices::getInstance()->getStatsdDataFactory();
690 $statStart = microtime( true );
691
692 // This MUST build both scripts and styles, regardless of whether $context->getOnly()
693 // is 'scripts' or 'styles' because the result is used by getVersionHash which
694 // must be consistent regardles of the 'only' filter on the current request.
695 // Also, when introducing new module content resources (e.g. templates, headers),
696 // these should only be included in the array when they are non-empty so that
697 // existing modules not using them do not get their cache invalidated.
698 $content = [];
699
700 // Scripts
701 // If we are in debug mode, we'll want to return an array of URLs if possible
702 // However, we can't do this if the module doesn't support it.
703 // We also can't do this if there is an only= parameter, because we have to give
704 // the module a way to return a load.php URL without causing an infinite loop
705 if ( $context->getDebug() && !$context->getOnly() && $this->supportsURLLoading() ) {
706 $scripts = $this->getScriptURLsForDebug( $context );
707 } else {
708 $scripts = $this->getScript( $context );
709 // Make the script safe to concatenate by making sure there is at least one
710 // trailing new line at the end of the content. Previously, this looked for
711 // a semi-colon instead, but that breaks concatenation if the semicolon
712 // is inside a comment like "// foo();". Instead, simply use a
713 // line break as separator which matches JavaScript native logic for implicitly
714 // ending statements even if a semi-colon is missing.
715 // Bugs: T29054, T162719.
716 if ( is_string( $scripts )
717 && strlen( $scripts )
718 && substr( $scripts, -1 ) !== "\n"
719 ) {
720 $scripts .= "\n";
721 }
722 }
723 $content['scripts'] = $scripts;
724
725 // Styles
726 $styles = [];
727 // Don't create empty stylesheets like [ '' => '' ] for modules
728 // that don't *have* any stylesheets (T40024).
729 $stylePairs = $this->getStyles( $context );
730 if ( count( $stylePairs ) ) {
731 // If we are in debug mode without &only= set, we'll want to return an array of URLs
732 // See comment near shouldIncludeScripts() for more details
733 if ( $context->getDebug() && !$context->getOnly() && $this->supportsURLLoading() ) {
734 $styles = [
735 'url' => $this->getStyleURLsForDebug( $context )
736 ];
737 } else {
738 // Minify CSS before embedding in mw.loader.implement call
739 // (unless in debug mode)
740 if ( !$context->getDebug() ) {
741 foreach ( $stylePairs as $media => $style ) {
742 // Can be either a string or an array of strings.
743 if ( is_array( $style ) ) {
744 $stylePairs[$media] = [];
745 foreach ( $style as $cssText ) {
746 if ( is_string( $cssText ) ) {
747 $stylePairs[$media][] =
748 ResourceLoader::filter( 'minify-css', $cssText );
749 }
750 }
751 } elseif ( is_string( $style ) ) {
752 $stylePairs[$media] = ResourceLoader::filter( 'minify-css', $style );
753 }
754 }
755 }
756 // Wrap styles into @media groups as needed and flatten into a numerical array
757 $styles = [
758 'css' => $rl->makeCombinedStyles( $stylePairs )
759 ];
760 }
761 }
762 $content['styles'] = $styles;
763
764 // Messages
765 $blob = $this->getMessageBlob( $context );
766 if ( $blob ) {
767 $content['messagesBlob'] = $blob;
768 }
769
770 $templates = $this->getTemplates();
771 if ( $templates ) {
772 $content['templates'] = $templates;
773 }
774
775 $headers = $this->getHeaders( $context );
776 if ( $headers ) {
777 $content['headers'] = $headers;
778 }
779
780 $statTiming = microtime( true ) - $statStart;
781 $statName = strtr( $this->getName(), '.', '_' );
782 $stats->timing( "resourceloader_build.all", 1000 * $statTiming );
783 $stats->timing( "resourceloader_build.$statName", 1000 * $statTiming );
784
785 return $content;
786 }
787
788 /**
789 * Get a string identifying the current version of this module in a given context.
790 *
791 * Whenever anything happens that changes the module's response (e.g. scripts, styles, and
792 * messages) this value must change. This value is used to store module responses in cache.
793 * (Both client-side and server-side.)
794 *
795 * It is not recommended to override this directly. Use getDefinitionSummary() instead.
796 * If overridden, one must call the parent getVersionHash(), append data and re-hash.
797 *
798 * This method should be quick because it is frequently run by ResourceLoaderStartUpModule to
799 * propagate changes to the client and effectively invalidate cache.
800 *
801 * @since 1.26
802 * @param ResourceLoaderContext $context
803 * @return string Hash (should use ResourceLoader::makeHash)
804 */
805 public function getVersionHash( ResourceLoaderContext $context ) {
806 // Cache this somewhat expensive operation. Especially because some classes
807 // (e.g. startup module) iterate more than once over all modules to get versions.
808 $contextHash = $context->getHash();
809 if ( !array_key_exists( $contextHash, $this->versionHash ) ) {
810 if ( $this->enableModuleContentVersion() ) {
811 // Detect changes directly by hashing the module contents.
812 $str = json_encode( $this->getModuleContent( $context ) );
813 } else {
814 // Infer changes based on definition and other metrics
815 $summary = $this->getDefinitionSummary( $context );
816 if ( !isset( $summary['_cacheEpoch'] ) ) {
817 throw new LogicException( 'getDefinitionSummary must call parent method' );
818 }
819 $str = json_encode( $summary );
820 }
821
822 $this->versionHash[$contextHash] = ResourceLoader::makeHash( $str );
823 }
824 return $this->versionHash[$contextHash];
825 }
826
827 /**
828 * Whether to generate version hash based on module content.
829 *
830 * If a module requires database or file system access to build the module
831 * content, consider disabling this in favour of manually tracking relevant
832 * aspects in getDefinitionSummary(). See getVersionHash() for how this is used.
833 *
834 * @return bool
835 */
836 public function enableModuleContentVersion() {
837 return false;
838 }
839
840 /**
841 * Get the definition summary for this module.
842 *
843 * This is the method subclasses are recommended to use to track values in their
844 * version hash. Call this in getVersionHash() and pass it to e.g. json_encode.
845 *
846 * Subclasses must call the parent getDefinitionSummary() and build on that.
847 * It is recommended that each subclass appends its own new array. This prevents
848 * clashes or accidental overwrites of existing keys and gives each subclass
849 * its own scope for simple array keys.
850 *
851 * @code
852 * $summary = parent::getDefinitionSummary( $context );
853 * $summary[] = [
854 * 'foo' => 123,
855 * 'bar' => 'quux',
856 * ];
857 * return $summary;
858 * @endcode
859 *
860 * Return an array containing values from all significant properties of this
861 * module's definition.
862 *
863 * Be careful not to normalise too much. Especially preserve the order of things
864 * that carry significance in getScript and getStyles (T39812).
865 *
866 * Avoid including things that are insiginificant (e.g. order of message keys is
867 * insignificant and should be sorted to avoid unnecessary cache invalidation).
868 *
869 * This data structure must exclusively contain arrays and scalars as values (avoid
870 * object instances) to allow simple serialisation using json_encode.
871 *
872 * If modules have a hash or timestamp from another source, that may be incuded as-is.
873 *
874 * A number of utility methods are available to help you gather data. These are not
875 * called by default and must be included by the subclass' getDefinitionSummary().
876 *
877 * - getMessageBlob()
878 *
879 * @since 1.23
880 * @param ResourceLoaderContext $context
881 * @return array|null
882 */
883 public function getDefinitionSummary( ResourceLoaderContext $context ) {
884 return [
885 '_class' => static::class,
886 '_cacheEpoch' => $this->getConfig()->get( 'CacheEpoch' ),
887 ];
888 }
889
890 /**
891 * Check whether this module is known to be empty. If a child class
892 * has an easy and cheap way to determine that this module is
893 * definitely going to be empty, it should override this method to
894 * return true in that case. Callers may optimize the request for this
895 * module away if this function returns true.
896 * @param ResourceLoaderContext $context
897 * @return bool
898 */
899 public function isKnownEmpty( ResourceLoaderContext $context ) {
900 return false;
901 }
902
903 /**
904 * Check whether this module should be embeded rather than linked
905 *
906 * Modules returning true here will be embedded rather than loaded by
907 * ResourceLoaderClientHtml.
908 *
909 * @since 1.30
910 * @param ResourceLoaderContext $context
911 * @return bool
912 */
913 public function shouldEmbedModule( ResourceLoaderContext $context ) {
914 return $this->getGroup() === 'private';
915 }
916
917 /** @var JSParser Lazy-initialized; use self::javaScriptParser() */
918 private static $jsParser;
919 private static $parseCacheVersion = 1;
920
921 /**
922 * Validate a given script file; if valid returns the original source.
923 * If invalid, returns replacement JS source that throws an exception.
924 *
925 * @param string $fileName
926 * @param string $contents
927 * @return string JS with the original, or a replacement error
928 */
929 protected function validateScriptFile( $fileName, $contents ) {
930 if ( !$this->getConfig()->get( 'ResourceLoaderValidateJS' ) ) {
931 return $contents;
932 }
933 $cache = ObjectCache::getMainWANInstance();
934 return $cache->getWithSetCallback(
935 $cache->makeGlobalKey(
936 'resourceloader',
937 'jsparse',
938 self::$parseCacheVersion,
939 md5( $contents ),
940 $fileName
941 ),
942 $cache::TTL_WEEK,
943 function () use ( $contents, $fileName ) {
944 $parser = self::javaScriptParser();
945 try {
946 $parser->parse( $contents, $fileName, 1 );
947 $result = $contents;
948 } catch ( Exception $e ) {
949 // We'll save this to cache to avoid having to re-validate broken JS
950 $err = $e->getMessage();
951 $result = "mw.log.error(" .
952 Xml::encodeJsVar( "JavaScript parse error: $err" ) . ");";
953 }
954 return $result;
955 }
956 );
957 }
958
959 /**
960 * @return JSParser
961 */
962 protected static function javaScriptParser() {
963 if ( !self::$jsParser ) {
964 self::$jsParser = new JSParser();
965 }
966 return self::$jsParser;
967 }
968
969 /**
970 * Safe version of filemtime(), which doesn't throw a PHP warning if the file doesn't exist.
971 * Defaults to 1.
972 *
973 * @param string $filePath File path
974 * @return int UNIX timestamp
975 */
976 protected static function safeFilemtime( $filePath ) {
977 Wikimedia\suppressWarnings();
978 $mtime = filemtime( $filePath ) ?: 1;
979 Wikimedia\restoreWarnings();
980 return $mtime;
981 }
982
983 /**
984 * Compute a non-cryptographic string hash of a file's contents.
985 * If the file does not exist or cannot be read, returns an empty string.
986 *
987 * @since 1.26 Uses MD4 instead of SHA1.
988 * @param string $filePath File path
989 * @return string Hash
990 */
991 protected static function safeFileHash( $filePath ) {
992 return FileContentsHasher::getFileContentsHash( $filePath );
993 }
994 }