User: System block reasons shouldn't expand templates
[lhc/web/wiklou.git] / resources / src / mediawiki / mediawiki.js
1 /**
2 * Base library for MediaWiki.
3 *
4 * Exposed globally as `mediaWiki` with `mw` as shortcut.
5 *
6 * @class mw
7 * @alternateClassName mediaWiki
8 * @singleton
9 */
10
11 /* global mwNow */
12 /* eslint-disable no-use-before-define */
13
14 ( function ( $ ) {
15 'use strict';
16
17 var mw, StringSet, log,
18 hasOwn = Object.prototype.hasOwnProperty,
19 slice = Array.prototype.slice,
20 trackCallbacks = $.Callbacks( 'memory' ),
21 trackHandlers = [],
22 trackQueue = [];
23
24 /**
25 * FNV132 hash function
26 *
27 * This function implements the 32-bit version of FNV-1.
28 * It is equivalent to hash( 'fnv132', ... ) in PHP, except
29 * its output is base 36 rather than hex.
30 * See <https://en.wikipedia.org/wiki/FNV_hash_function>
31 *
32 * @private
33 * @param {string} str String to hash
34 * @return {string} hash as an seven-character base 36 string
35 */
36 function fnv132( str ) {
37 /* eslint-disable no-bitwise */
38 var hash = 0x811C9DC5,
39 i;
40
41 for ( i = 0; i < str.length; i++ ) {
42 hash += ( hash << 1 ) + ( hash << 4 ) + ( hash << 7 ) + ( hash << 8 ) + ( hash << 24 );
43 hash ^= str.charCodeAt( i );
44 }
45
46 hash = ( hash >>> 0 ).toString( 36 );
47 while ( hash.length < 7 ) {
48 hash = '0' + hash;
49 }
50
51 return hash;
52 /* eslint-enable no-bitwise */
53 }
54
55 function defineFallbacks() {
56 // <https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set>
57 StringSet = window.Set || ( function () {
58 /**
59 * @private
60 * @class
61 */
62 function StringSet() {
63 this.set = {};
64 }
65 StringSet.prototype.add = function ( value ) {
66 this.set[ value ] = true;
67 };
68 StringSet.prototype.has = function ( value ) {
69 return hasOwn.call( this.set, value );
70 };
71 return StringSet;
72 }() );
73 }
74
75 /**
76 * Create an object that can be read from or written to via methods that allow
77 * interaction both with single and multiple properties at once.
78 *
79 * @private
80 * @class mw.Map
81 *
82 * @constructor
83 * @param {boolean} [global=false] Whether to synchronise =values to the global
84 * window object (for backwards-compatibility with mw.config; T72470). Values are
85 * copied in one direction only. Changes to globals do not reflect in the map.
86 */
87 function Map( global ) {
88 this.values = {};
89 if ( global === true ) {
90 // Override #set to also set the global variable
91 this.set = function ( selection, value ) {
92 var s;
93
94 if ( $.isPlainObject( selection ) ) {
95 for ( s in selection ) {
96 setGlobalMapValue( this, s, selection[ s ] );
97 }
98 return true;
99 }
100 if ( typeof selection === 'string' && arguments.length ) {
101 setGlobalMapValue( this, selection, value );
102 return true;
103 }
104 return false;
105 };
106 }
107 }
108
109 /**
110 * Alias property to the global object.
111 *
112 * @private
113 * @static
114 * @param {mw.Map} map
115 * @param {string} key
116 * @param {Mixed} value
117 */
118 function setGlobalMapValue( map, key, value ) {
119 map.values[ key ] = value;
120 log.deprecate(
121 window,
122 key,
123 value,
124 // Deprecation notice for mw.config globals (T58550, T72470)
125 map === mw.config && 'Use mw.config instead.'
126 );
127 }
128
129 Map.prototype = {
130 constructor: Map,
131
132 /**
133 * Get the value of one or more keys.
134 *
135 * If called with no arguments, all values are returned.
136 *
137 * @param {string|Array} [selection] Key or array of keys to retrieve values for.
138 * @param {Mixed} [fallback=null] Value for keys that don't exist.
139 * @return {Mixed|Object|null} If selection was a string, returns the value,
140 * If selection was an array, returns an object of key/values.
141 * If no selection is passed, a new object with all key/values is returned.
142 */
143 get: function ( selection, fallback ) {
144 var results, i;
145 fallback = arguments.length > 1 ? fallback : null;
146
147 if ( Array.isArray( selection ) ) {
148 results = {};
149 for ( i = 0; i < selection.length; i++ ) {
150 if ( typeof selection[ i ] === 'string' ) {
151 results[ selection[ i ] ] = hasOwn.call( this.values, selection[ i ] ) ?
152 this.values[ selection[ i ] ] :
153 fallback;
154 }
155 }
156 return results;
157 }
158
159 if ( typeof selection === 'string' ) {
160 return hasOwn.call( this.values, selection ) ?
161 this.values[ selection ] :
162 fallback;
163 }
164
165 if ( selection === undefined ) {
166 results = {};
167 for ( i in this.values ) {
168 results[ i ] = this.values[ i ];
169 }
170 return results;
171 }
172
173 // Invalid selection key
174 return fallback;
175 },
176
177 /**
178 * Set one or more key/value pairs.
179 *
180 * @param {string|Object} selection Key to set value for, or object mapping keys to values
181 * @param {Mixed} [value] Value to set (optional, only in use when key is a string)
182 * @return {boolean} True on success, false on failure
183 */
184 set: function ( selection, value ) {
185 var s;
186
187 if ( $.isPlainObject( selection ) ) {
188 for ( s in selection ) {
189 this.values[ s ] = selection[ s ];
190 }
191 return true;
192 }
193 if ( typeof selection === 'string' && arguments.length > 1 ) {
194 this.values[ selection ] = value;
195 return true;
196 }
197 return false;
198 },
199
200 /**
201 * Check if one or more keys exist.
202 *
203 * @param {Mixed} selection Key or array of keys to check
204 * @return {boolean} True if the key(s) exist
205 */
206 exists: function ( selection ) {
207 var i;
208 if ( Array.isArray( selection ) ) {
209 for ( i = 0; i < selection.length; i++ ) {
210 if ( typeof selection[ i ] !== 'string' || !hasOwn.call( this.values, selection[ i ] ) ) {
211 return false;
212 }
213 }
214 return true;
215 }
216 return typeof selection === 'string' && hasOwn.call( this.values, selection );
217 }
218 };
219
220 /**
221 * Object constructor for messages.
222 *
223 * Similar to the Message class in MediaWiki PHP.
224 *
225 * Format defaults to 'text'.
226 *
227 * @example
228 *
229 * var obj, str;
230 * mw.messages.set( {
231 * 'hello': 'Hello world',
232 * 'hello-user': 'Hello, $1!',
233 * 'welcome-user': 'Welcome back to $2, $1! Last visit by $1: $3'
234 * } );
235 *
236 * obj = new mw.Message( mw.messages, 'hello' );
237 * mw.log( obj.text() );
238 * // Hello world
239 *
240 * obj = new mw.Message( mw.messages, 'hello-user', [ 'John Doe' ] );
241 * mw.log( obj.text() );
242 * // Hello, John Doe!
243 *
244 * obj = new mw.Message( mw.messages, 'welcome-user', [ 'John Doe', 'Wikipedia', '2 hours ago' ] );
245 * mw.log( obj.text() );
246 * // Welcome back to Wikipedia, John Doe! Last visit by John Doe: 2 hours ago
247 *
248 * // Using mw.message shortcut
249 * obj = mw.message( 'hello-user', 'John Doe' );
250 * mw.log( obj.text() );
251 * // Hello, John Doe!
252 *
253 * // Using mw.msg shortcut
254 * str = mw.msg( 'hello-user', 'John Doe' );
255 * mw.log( str );
256 * // Hello, John Doe!
257 *
258 * // Different formats
259 * obj = new mw.Message( mw.messages, 'hello-user', [ 'John "Wiki" <3 Doe' ] );
260 *
261 * obj.format = 'text';
262 * str = obj.toString();
263 * // Same as:
264 * str = obj.text();
265 *
266 * mw.log( str );
267 * // Hello, John "Wiki" <3 Doe!
268 *
269 * mw.log( obj.escaped() );
270 * // Hello, John &quot;Wiki&quot; &lt;3 Doe!
271 *
272 * @class mw.Message
273 *
274 * @constructor
275 * @param {mw.Map} map Message store
276 * @param {string} key
277 * @param {Array} [parameters]
278 */
279 function Message( map, key, parameters ) {
280 this.format = 'text';
281 this.map = map;
282 this.key = key;
283 this.parameters = parameters === undefined ? [] : slice.call( parameters );
284 return this;
285 }
286
287 Message.prototype = {
288 /**
289 * Get parsed contents of the message.
290 *
291 * The default parser does simple $N replacements and nothing else.
292 * This may be overridden to provide a more complex message parser.
293 * The primary override is in the mediawiki.jqueryMsg module.
294 *
295 * This function will not be called for nonexistent messages.
296 *
297 * @return {string} Parsed message
298 */
299 parser: function () {
300 return mw.format.apply( null, [ this.map.get( this.key ) ].concat( this.parameters ) );
301 },
302
303 // eslint-disable-next-line valid-jsdoc
304 /**
305 * Add (does not replace) parameters for `$N` placeholder values.
306 *
307 * @param {Array} parameters
308 * @chainable
309 */
310 params: function ( parameters ) {
311 var i;
312 for ( i = 0; i < parameters.length; i++ ) {
313 this.parameters.push( parameters[ i ] );
314 }
315 return this;
316 },
317
318 /**
319 * Convert message object to its string form based on current format.
320 *
321 * @return {string} Message as a string in the current form, or `<key>` if key
322 * does not exist.
323 */
324 toString: function () {
325 var text;
326
327 if ( !this.exists() ) {
328 // Use ⧼key⧽ as text if key does not exist
329 // Err on the side of safety, ensure that the output
330 // is always html safe in the event the message key is
331 // missing, since in that case its highly likely the
332 // message key is user-controlled.
333 // '⧼' is used instead of '<' to side-step any
334 // double-escaping issues.
335 // (Keep synchronised with Message::toString() in PHP.)
336 return '⧼' + mw.html.escape( this.key ) + '⧽';
337 }
338
339 if ( this.format === 'plain' || this.format === 'text' || this.format === 'parse' ) {
340 text = this.parser();
341 }
342
343 if ( this.format === 'escaped' ) {
344 text = this.parser();
345 text = mw.html.escape( text );
346 }
347
348 return text;
349 },
350
351 /**
352 * Change format to 'parse' and convert message to string
353 *
354 * If jqueryMsg is loaded, this parses the message text from wikitext
355 * (where supported) to HTML
356 *
357 * Otherwise, it is equivalent to plain.
358 *
359 * @return {string} String form of parsed message
360 */
361 parse: function () {
362 this.format = 'parse';
363 return this.toString();
364 },
365
366 /**
367 * Change format to 'plain' and convert message to string
368 *
369 * This substitutes parameters, but otherwise does not change the
370 * message text.
371 *
372 * @return {string} String form of plain message
373 */
374 plain: function () {
375 this.format = 'plain';
376 return this.toString();
377 },
378
379 /**
380 * Change format to 'text' and convert message to string
381 *
382 * If jqueryMsg is loaded, {{-transformation is done where supported
383 * (such as {{plural:}}, {{gender:}}, {{int:}}).
384 *
385 * Otherwise, it is equivalent to plain
386 *
387 * @return {string} String form of text message
388 */
389 text: function () {
390 this.format = 'text';
391 return this.toString();
392 },
393
394 /**
395 * Change the format to 'escaped' and convert message to string
396 *
397 * This is equivalent to using the 'text' format (see #text), then
398 * HTML-escaping the output.
399 *
400 * @return {string} String form of html escaped message
401 */
402 escaped: function () {
403 this.format = 'escaped';
404 return this.toString();
405 },
406
407 /**
408 * Check if a message exists
409 *
410 * @see mw.Map#exists
411 * @return {boolean}
412 */
413 exists: function () {
414 return this.map.exists( this.key );
415 }
416 };
417
418 defineFallbacks();
419
420 /* eslint-disable no-console */
421 log = ( function () {
422 /**
423 * Write a verbose message to the browser's console in debug mode.
424 *
425 * This method is mainly intended for verbose logging. It is a no-op in production mode.
426 * In ResourceLoader debug mode, it will use the browser's console if available, with
427 * fallback to creating a console interface in the DOM and logging messages there.
428 *
429 * See {@link mw.log} for other logging methods.
430 *
431 * @member mw
432 * @param {...string} msg Messages to output to console.
433 */
434 var log = function () {},
435 console = window.console;
436
437 // Note: Keep list of methods in sync with restoration in mediawiki.log.js
438 // when adding or removing mw.log methods below!
439
440 /**
441 * Collection of methods to help log messages to the console.
442 *
443 * @class mw.log
444 * @singleton
445 */
446
447 /**
448 * Write a message to the browser console's warning channel.
449 *
450 * This method is a no-op in browsers that don't implement the Console API.
451 *
452 * @param {...string} msg Messages to output to console
453 */
454 log.warn = console && console.warn && Function.prototype.bind ?
455 Function.prototype.bind.call( console.warn, console ) :
456 $.noop;
457
458 /**
459 * Write a message to the browser console's error channel.
460 *
461 * Most browsers also print a stacktrace when calling this method if the
462 * argument is an Error object.
463 *
464 * This method is a no-op in browsers that don't implement the Console API.
465 *
466 * @since 1.26
467 * @param {Error|...string} msg Messages to output to console
468 */
469 log.error = console && console.error && Function.prototype.bind ?
470 Function.prototype.bind.call( console.error, console ) :
471 $.noop;
472
473 /**
474 * Create a property on a host object that, when accessed, will produce
475 * a deprecation warning in the console.
476 *
477 * @param {Object} obj Host object of deprecated property
478 * @param {string} key Name of property to create in `obj`
479 * @param {Mixed} val The value this property should return when accessed
480 * @param {string} [msg] Optional text to include in the deprecation message
481 * @param {string} [logName=key] Optional custom name for the feature.
482 * This is used instead of `key` in the message and `mw.deprecate` tracking.
483 */
484 log.deprecate = !Object.defineProperty ? function ( obj, key, val ) {
485 obj[ key ] = val;
486 } : function ( obj, key, val, msg, logName ) {
487 var logged = new StringSet();
488 logName = logName || key;
489 msg = 'Use of "' + logName + '" is deprecated.' + ( msg ? ( ' ' + msg ) : '' );
490 function uniqueTrace() {
491 var trace = new Error().stack;
492 if ( logged.has( trace ) ) {
493 return false;
494 }
495 logged.add( trace );
496 return true;
497 }
498 // Support: Safari 5.0
499 // Throws "not supported on DOM Objects" for Node or Element objects (incl. document)
500 // Safari 4.0 doesn't have this method, and it was fixed in Safari 5.1.
501 try {
502 Object.defineProperty( obj, key, {
503 configurable: true,
504 enumerable: true,
505 get: function () {
506 if ( uniqueTrace() ) {
507 mw.track( 'mw.deprecate', logName );
508 mw.log.warn( msg );
509 }
510 return val;
511 },
512 set: function ( newVal ) {
513 if ( uniqueTrace() ) {
514 mw.track( 'mw.deprecate', logName );
515 mw.log.warn( msg );
516 }
517 val = newVal;
518 }
519 } );
520 } catch ( err ) {
521 obj[ key ] = val;
522 }
523 };
524
525 return log;
526 }() );
527 /* eslint-enable no-console */
528
529 /**
530 * @class mw
531 */
532 mw = {
533 redefineFallbacksForTest: function () {
534 if ( !window.QUnit ) {
535 throw new Error( 'Reset not allowed outside unit tests' );
536 }
537 defineFallbacks();
538 },
539
540 /**
541 * Get the current time, measured in milliseconds since January 1, 1970 (UTC).
542 *
543 * On browsers that implement the Navigation Timing API, this function will produce floating-point
544 * values with microsecond precision that are guaranteed to be monotonic. On all other browsers,
545 * it will fall back to using `Date`.
546 *
547 * @return {number} Current time
548 */
549 now: mwNow,
550 // mwNow is defined in startup.js
551
552 /**
553 * Format a string. Replace $1, $2 ... $N with positional arguments.
554 *
555 * Used by Message#parser().
556 *
557 * @since 1.25
558 * @param {string} formatString Format string
559 * @param {...Mixed} parameters Values for $N replacements
560 * @return {string} Formatted string
561 */
562 format: function ( formatString ) {
563 var parameters = slice.call( arguments, 1 );
564 return formatString.replace( /\$(\d+)/g, function ( str, match ) {
565 var index = parseInt( match, 10 ) - 1;
566 return parameters[ index ] !== undefined ? parameters[ index ] : '$' + match;
567 } );
568 },
569
570 /**
571 * Track an analytic event.
572 *
573 * This method provides a generic means for MediaWiki JavaScript code to capture state
574 * information for analysis. Each logged event specifies a string topic name that describes
575 * the kind of event that it is. Topic names consist of dot-separated path components,
576 * arranged from most general to most specific. Each path component should have a clear and
577 * well-defined purpose.
578 *
579 * Data handlers are registered via `mw.trackSubscribe`, and receive the full set of
580 * events that match their subcription, including those that fired before the handler was
581 * bound.
582 *
583 * @param {string} topic Topic name
584 * @param {Object} [data] Data describing the event, encoded as an object
585 */
586 track: function ( topic, data ) {
587 trackQueue.push( { topic: topic, timeStamp: mw.now(), data: data } );
588 trackCallbacks.fire( trackQueue );
589 },
590
591 /**
592 * Register a handler for subset of analytic events, specified by topic.
593 *
594 * Handlers will be called once for each tracked event, including any events that fired before the
595 * handler was registered; 'this' is set to a plain object with a 'timeStamp' property indicating
596 * the exact time at which the event fired, a string 'topic' property naming the event, and a
597 * 'data' property which is an object of event-specific data. The event topic and event data are
598 * also passed to the callback as the first and second arguments, respectively.
599 *
600 * @param {string} topic Handle events whose name starts with this string prefix
601 * @param {Function} callback Handler to call for each matching tracked event
602 * @param {string} callback.topic
603 * @param {Object} [callback.data]
604 */
605 trackSubscribe: function ( topic, callback ) {
606 var seen = 0;
607 function handler( trackQueue ) {
608 var event;
609 for ( ; seen < trackQueue.length; seen++ ) {
610 event = trackQueue[ seen ];
611 if ( event.topic.indexOf( topic ) === 0 ) {
612 callback.call( event, event.topic, event.data );
613 }
614 }
615 }
616
617 trackHandlers.push( [ handler, callback ] );
618
619 trackCallbacks.add( handler );
620 },
621
622 /**
623 * Stop handling events for a particular handler
624 *
625 * @param {Function} callback
626 */
627 trackUnsubscribe: function ( callback ) {
628 trackHandlers = trackHandlers.filter( function ( fns ) {
629 if ( fns[ 1 ] === callback ) {
630 trackCallbacks.remove( fns[ 0 ] );
631 // Ensure the tuple is removed to avoid holding on to closures
632 return false;
633 }
634 return true;
635 } );
636 },
637
638 // Expose Map constructor
639 Map: Map,
640
641 // Expose Message constructor
642 Message: Message,
643
644 /**
645 * Map of configuration values.
646 *
647 * Check out [the complete list of configuration values](https://www.mediawiki.org/wiki/Manual:Interface/JavaScript#mw.config)
648 * on mediawiki.org.
649 *
650 * If `$wgLegacyJavaScriptGlobals` is true, this Map will add its values to the
651 * global `window` object.
652 *
653 * @property {mw.Map} config
654 */
655 // Dummy placeholder later assigned in ResourceLoaderStartUpModule
656 config: null,
657
658 /**
659 * Empty object for third-party libraries, for cases where you don't
660 * want to add a new global, or the global is bad and needs containment
661 * or wrapping.
662 *
663 * @property
664 */
665 libs: {},
666
667 /**
668 * Access container for deprecated functionality that can be moved from
669 * from their legacy location and attached to this object (e.g. a global
670 * function that is deprecated and as stop-gap can be exposed through here).
671 *
672 * This was reserved for future use but never ended up being used.
673 *
674 * @deprecated since 1.22 Let deprecated identifiers keep their original name
675 * and use mw.log#deprecate to create an access container for tracking.
676 * @property
677 */
678 legacy: {},
679
680 /**
681 * Store for messages.
682 *
683 * @property {mw.Map}
684 */
685 messages: new Map(),
686
687 /**
688 * Store for templates associated with a module.
689 *
690 * @property {mw.Map}
691 */
692 templates: new Map(),
693
694 /**
695 * Get a message object.
696 *
697 * Shortcut for `new mw.Message( mw.messages, key, parameters )`.
698 *
699 * @see mw.Message
700 * @param {string} key Key of message to get
701 * @param {...Mixed} parameters Values for $N replacements
702 * @return {mw.Message}
703 */
704 message: function ( key ) {
705 var parameters = slice.call( arguments, 1 );
706 return new Message( mw.messages, key, parameters );
707 },
708
709 /**
710 * Get a message string using the (default) 'text' format.
711 *
712 * Shortcut for `mw.message( key, parameters... ).text()`.
713 *
714 * @see mw.Message
715 * @param {string} key Key of message to get
716 * @param {...Mixed} parameters Values for $N replacements
717 * @return {string}
718 */
719 msg: function () {
720 return mw.message.apply( mw.message, arguments ).toString();
721 },
722
723 // Expose mw.log
724 log: log,
725
726 /**
727 * Client for ResourceLoader server end point.
728 *
729 * This client is in charge of maintaining the module registry and state
730 * machine, initiating network (batch) requests for loading modules, as
731 * well as dependency resolution and execution of source code.
732 *
733 * For more information, refer to
734 * <https://www.mediawiki.org/wiki/ResourceLoader/Features>
735 *
736 * @class mw.loader
737 * @singleton
738 */
739 loader: ( function () {
740
741 /**
742 * Fired via mw.track on various resource loading errors.
743 *
744 * @event resourceloader_exception
745 * @param {Error|Mixed} e The error that was thrown. Almost always an Error
746 * object, but in theory module code could manually throw something else, and that
747 * might also end up here.
748 * @param {string} [module] Name of the module which caused the error. Omitted if the
749 * error is not module-related or the module cannot be easily identified due to
750 * batched handling.
751 * @param {string} source Source of the error. Possible values:
752 *
753 * - style: stylesheet error (only affects old IE where a special style loading method
754 * is used)
755 * - load-callback: exception thrown by user callback
756 * - module-execute: exception thrown by module code
757 * - resolve: failed to sort dependencies for a module in mw.loader.load
758 * - store-eval: could not evaluate module code cached in localStorage
759 * - store-localstorage-init: localStorage or JSON parse error in mw.loader.store.init
760 * - store-localstorage-json: JSON conversion error in mw.loader.store.set
761 * - store-localstorage-update: localStorage or JSON conversion error in mw.loader.store.update
762 */
763
764 /**
765 * Fired via mw.track on resource loading error conditions.
766 *
767 * @event resourceloader_assert
768 * @param {string} source Source of the error. Possible values:
769 *
770 * - bug-T59567: failed to cache script due to an Opera function -> string conversion
771 * bug; see <https://phabricator.wikimedia.org/T59567> for details
772 */
773
774 /**
775 * Mapping of registered modules.
776 *
777 * See #implement and #execute for exact details on support for script, style and messages.
778 *
779 * Format:
780 *
781 * {
782 * 'moduleName': {
783 * // From mw.loader.register()
784 * 'version': '########' (hash)
785 * 'dependencies': ['required.foo', 'bar.also', ...]
786 * 'group': 'somegroup', (or) null
787 * 'source': 'local', (or) 'anotherwiki'
788 * 'skip': 'return !!window.Example', (or) null
789 * 'module': export Object
790 *
791 * // Set from execute() or mw.loader.state()
792 * 'state': 'registered', 'loaded', 'loading', 'ready', 'error', or 'missing'
793 *
794 * // Optionally added at run-time by mw.loader.implement()
795 * 'skipped': true
796 * 'script': closure, array of urls, or string
797 * 'style': { ... } (see #execute)
798 * 'messages': { 'key': 'value', ... }
799 * }
800 * }
801 *
802 * State machine:
803 *
804 * - `registered`:
805 * The module is known to the system but not yet required.
806 * Meta data is registered via mw.loader#register. Calls to that method are
807 * generated server-side by the startup module.
808 * - `loading`:
809 * The module was required through mw.loader (either directly or as dependency of
810 * another module). The client will fetch module contents from the server.
811 * The contents are then stashed in the registry via mw.loader#implement.
812 * - `loaded`:
813 * The module has been loaded from the server and stashed via mw.loader#implement.
814 * If the module has no more dependencies in-flight, the module will be executed
815 * immediately. Otherwise execution is deferred, controlled via #handlePending.
816 * - `executing`:
817 * The module is being executed.
818 * - `ready`:
819 * The module has been successfully executed.
820 * - `error`:
821 * The module (or one of its dependencies) produced an error during execution.
822 * - `missing`:
823 * The module was registered client-side and requested, but the server denied knowledge
824 * of the module's existence.
825 *
826 * @property
827 * @private
828 */
829 var registry = {},
830 // Mapping of sources, keyed by source-id, values are strings.
831 //
832 // Format:
833 //
834 // {
835 // 'sourceId': 'http://example.org/w/load.php'
836 // }
837 //
838 sources = {},
839
840 // For queueModuleScript()
841 handlingPendingRequests = false,
842 pendingRequests = [],
843
844 // List of modules to be loaded
845 queue = [],
846
847 /**
848 * List of callback jobs waiting for modules to be ready.
849 *
850 * Jobs are created by #enqueue() and run by #handlePending().
851 *
852 * Typically when a job is created for a module, the job's dependencies contain
853 * both the required module and all its recursive dependencies.
854 *
855 * Format:
856 *
857 * {
858 * 'dependencies': [ module names ],
859 * 'ready': Function callback
860 * 'error': Function callback
861 * }
862 *
863 * @property {Object[]} jobs
864 * @private
865 */
866 jobs = [],
867
868 /**
869 * For #addEmbeddedCSS() and #addLink()
870 *
871 * @private
872 * @property {HTMLElement|null} marker
873 */
874 marker = document.querySelector( 'meta[name="ResourceLoaderDynamicStyles"]' ),
875
876 // For addEmbeddedCSS()
877 cssBuffer = '',
878 cssBufferTimer = null,
879 cssCallbacks = [],
880 rAF = window.requestAnimationFrame || setTimeout;
881
882 /**
883 * Create a new style element and add it to the DOM.
884 *
885 * @private
886 * @param {string} text CSS text
887 * @param {Node|null} [nextNode] The element where the style tag
888 * should be inserted before
889 * @return {HTMLElement} Reference to the created style element
890 */
891 function newStyleTag( text, nextNode ) {
892 var el = document.createElement( 'style' );
893 el.appendChild( document.createTextNode( text ) );
894 if ( nextNode && nextNode.parentNode ) {
895 nextNode.parentNode.insertBefore( el, nextNode );
896 } else {
897 document.head.appendChild( el );
898 }
899 return el;
900 }
901
902 /**
903 * Add a bit of CSS text to the current browser page.
904 *
905 * The CSS will be appended to an existing ResourceLoader-created `<style>` tag
906 * or create a new one based on whether the given `cssText` is safe for extension.
907 *
908 * @private
909 * @param {string} [cssText=cssBuffer] If called without cssText,
910 * the internal buffer will be inserted instead.
911 * @param {Function} [callback]
912 */
913 function addEmbeddedCSS( cssText, callback ) {
914 function fireCallbacks() {
915 var i,
916 oldCallbacks = cssCallbacks;
917 // Reset cssCallbacks variable so it's not polluted by any calls to
918 // addEmbeddedCSS() from one of the callbacks (T105973)
919 cssCallbacks = [];
920 for ( i = 0; i < oldCallbacks.length; i++ ) {
921 oldCallbacks[ i ]();
922 }
923 }
924
925 if ( callback ) {
926 cssCallbacks.push( callback );
927 }
928
929 // Yield once before creating the <style> tag. This lets multiple stylesheets
930 // accumulate into one buffer, allowing us to reduce how often new stylesheets
931 // are inserted in the browser. Appending a stylesheet and waiting for the
932 // browser to repaint is fairly expensive. (T47810)
933 if ( cssText ) {
934 // Don't extend the buffer if the item needs its own stylesheet.
935 // Keywords like `@import` are only valid at the start of a stylesheet (T37562).
936 if ( !cssBuffer || cssText.slice( 0, '@import'.length ) !== '@import' ) {
937 // Linebreak for somewhat distinguishable sections
938 cssBuffer += '\n' + cssText;
939 if ( !cssBufferTimer ) {
940 cssBufferTimer = rAF( function () {
941 // Wrap in anonymous function that takes no arguments
942 // Support: Firefox < 13
943 // Firefox 12 has non-standard behaviour of passing a number
944 // as first argument to a setTimeout callback.
945 // http://benalman.com/news/2009/07/the-mysterious-firefox-settime/
946 addEmbeddedCSS();
947 } );
948 }
949 return;
950 }
951
952 // This is a scheduled flush for the buffer
953 } else {
954 cssBufferTimer = null;
955 cssText = cssBuffer;
956 cssBuffer = '';
957 }
958
959 newStyleTag( cssText, marker );
960
961 fireCallbacks();
962 }
963
964 /**
965 * @private
966 * @param {Array} modules List of module names
967 * @return {string} Hash of concatenated version hashes.
968 */
969 function getCombinedVersion( modules ) {
970 var hashes = modules.map( function ( module ) {
971 return registry[ module ].version;
972 } );
973 return fnv132( hashes.join( '' ) );
974 }
975
976 /**
977 * Determine whether all dependencies are in state 'ready', which means we may
978 * execute the module or job now.
979 *
980 * @private
981 * @param {Array} modules Names of modules to be checked
982 * @return {boolean} True if all modules are in state 'ready', false otherwise
983 */
984 function allReady( modules ) {
985 var i;
986 for ( i = 0; i < modules.length; i++ ) {
987 if ( mw.loader.getState( modules[ i ] ) !== 'ready' ) {
988 return false;
989 }
990 }
991 return true;
992 }
993
994 /**
995 * Determine whether all dependencies are in state 'ready', which means we may
996 * execute the module or job now.
997 *
998 * @private
999 * @param {Array} modules Names of modules to be checked
1000 * @return {boolean} True if no modules are in state 'error' or 'missing', false otherwise
1001 */
1002 function anyFailed( modules ) {
1003 var i, state;
1004 for ( i = 0; i < modules.length; i++ ) {
1005 state = mw.loader.getState( modules[ i ] );
1006 if ( state === 'error' || state === 'missing' ) {
1007 return true;
1008 }
1009 }
1010 return false;
1011 }
1012
1013 /**
1014 * A module has entered state 'ready', 'error', or 'missing'. Automatically update
1015 * pending jobs and modules that depend upon this module. If the given module failed,
1016 * propagate the 'error' state up the dependency tree. Otherwise, go ahead and execute
1017 * all jobs/modules now having their dependencies satisfied.
1018 *
1019 * Jobs that depend on a failed module, will have their error callback ran (if any).
1020 *
1021 * @private
1022 * @param {string} module Name of module that entered one of the states 'ready', 'error', or 'missing'.
1023 */
1024 function handlePending( module ) {
1025 var j, job, hasErrors, m, stateChange;
1026
1027 if ( registry[ module ].state === 'error' || registry[ module ].state === 'missing' ) {
1028 // If the current module failed, mark all dependent modules also as failed.
1029 // Iterate until steady-state to propagate the error state upwards in the
1030 // dependency tree.
1031 do {
1032 stateChange = false;
1033 for ( m in registry ) {
1034 if ( registry[ m ].state !== 'error' && registry[ m ].state !== 'missing' ) {
1035 if ( anyFailed( registry[ m ].dependencies ) ) {
1036 registry[ m ].state = 'error';
1037 stateChange = true;
1038 }
1039 }
1040 }
1041 } while ( stateChange );
1042 }
1043
1044 // Execute all jobs whose dependencies are either all satisfied or contain at least one failed module.
1045 for ( j = 0; j < jobs.length; j++ ) {
1046 hasErrors = anyFailed( jobs[ j ].dependencies );
1047 if ( hasErrors || allReady( jobs[ j ].dependencies ) ) {
1048 // All dependencies satisfied, or some have errors
1049 job = jobs[ j ];
1050 jobs.splice( j, 1 );
1051 j -= 1;
1052 try {
1053 if ( hasErrors ) {
1054 if ( typeof job.error === 'function' ) {
1055 job.error( new Error( 'Module ' + module + ' has failed dependencies' ), [ module ] );
1056 }
1057 } else {
1058 if ( typeof job.ready === 'function' ) {
1059 job.ready();
1060 }
1061 }
1062 } catch ( e ) {
1063 // A user-defined callback raised an exception.
1064 // Swallow it to protect our state machine!
1065 mw.track( 'resourceloader.exception', { exception: e, module: module, source: 'load-callback' } );
1066 }
1067 }
1068 }
1069
1070 if ( registry[ module ].state === 'ready' ) {
1071 // The current module became 'ready'. Set it in the module store, and recursively execute all
1072 // dependent modules that are loaded and now have all dependencies satisfied.
1073 mw.loader.store.set( module, registry[ module ] );
1074 for ( m in registry ) {
1075 if ( registry[ m ].state === 'loaded' && allReady( registry[ m ].dependencies ) ) {
1076 execute( m );
1077 }
1078 }
1079 }
1080 }
1081
1082 /**
1083 * Resolve dependencies and detect circular references.
1084 *
1085 * @private
1086 * @param {string} module Name of the top-level module whose dependencies shall be
1087 * resolved and sorted.
1088 * @param {Array} resolved Returns a topological sort of the given module and its
1089 * dependencies, such that later modules depend on earlier modules. The array
1090 * contains the module names. If the array contains already some module names,
1091 * this function appends its result to the pre-existing array.
1092 * @param {StringSet} [unresolved] Used to track the current dependency
1093 * chain, and to report loops in the dependency graph.
1094 * @throws {Error} If any unregistered module or a dependency loop is encountered
1095 */
1096 function sortDependencies( module, resolved, unresolved ) {
1097 var i, deps, skip;
1098
1099 if ( !hasOwn.call( registry, module ) ) {
1100 throw new Error( 'Unknown dependency: ' + module );
1101 }
1102
1103 if ( registry[ module ].skip !== null ) {
1104 // eslint-disable-next-line no-new-func
1105 skip = new Function( registry[ module ].skip );
1106 registry[ module ].skip = null;
1107 if ( skip() ) {
1108 registry[ module ].skipped = true;
1109 registry[ module ].dependencies = [];
1110 registry[ module ].state = 'ready';
1111 handlePending( module );
1112 return;
1113 }
1114 }
1115
1116 if ( resolved.indexOf( module ) !== -1 ) {
1117 // Module already resolved; nothing to do
1118 return;
1119 }
1120 // Create unresolved if not passed in
1121 if ( !unresolved ) {
1122 unresolved = new StringSet();
1123 }
1124 // Tracks down dependencies
1125 deps = registry[ module ].dependencies;
1126 for ( i = 0; i < deps.length; i++ ) {
1127 if ( resolved.indexOf( deps[ i ] ) === -1 ) {
1128 if ( unresolved.has( deps[ i ] ) ) {
1129 throw new Error( mw.format(
1130 'Circular reference detected: $1 -> $2',
1131 module,
1132 deps[ i ]
1133 ) );
1134 }
1135
1136 unresolved.add( module );
1137 sortDependencies( deps[ i ], resolved, unresolved );
1138 }
1139 }
1140 resolved.push( module );
1141 }
1142
1143 /**
1144 * Get names of module that a module depends on, in their proper dependency order.
1145 *
1146 * @private
1147 * @param {string[]} modules Array of string module names
1148 * @return {Array} List of dependencies, including 'module'.
1149 * @throws {Error} If an unregistered module or a dependency loop is encountered
1150 */
1151 function resolve( modules ) {
1152 var i, resolved = [];
1153 for ( i = 0; i < modules.length; i++ ) {
1154 sortDependencies( modules[ i ], resolved );
1155 }
1156 return resolved;
1157 }
1158
1159 /**
1160 * Like #resolve(), except it will silently ignore modules that
1161 * are missing or have missing dependencies.
1162 *
1163 * @private
1164 * @param {string[]} modules Array of string module names
1165 * @return {Array} List of dependencies.
1166 */
1167 function resolveStubbornly( modules ) {
1168 var i, saved, resolved = [];
1169 for ( i = 0; i < modules.length; i++ ) {
1170 saved = resolved.slice();
1171 try {
1172 sortDependencies( modules[ i ], resolved );
1173 } catch ( err ) {
1174 // This module is unknown or has unknown dependencies.
1175 // Undo any incomplete resolutions made and keep going.
1176 resolved = saved;
1177 mw.track( 'resourceloader.exception', {
1178 exception: err,
1179 source: 'resolve'
1180 } );
1181 }
1182 }
1183 return resolved;
1184 }
1185
1186 /**
1187 * Load and execute a script.
1188 *
1189 * @private
1190 * @param {string} src URL to script, will be used as the src attribute in the script tag
1191 * @param {Function} [callback] Callback to run after request resolution
1192 */
1193 function addScript( src, callback ) {
1194 var script = document.createElement( 'script' );
1195 script.src = src;
1196 script.onload = script.onerror = function () {
1197 if ( script.parentNode ) {
1198 script.parentNode.removeChild( script );
1199 }
1200 script = null;
1201 if ( callback ) {
1202 callback();
1203 callback = null;
1204 }
1205 };
1206 document.head.appendChild( script );
1207 }
1208
1209 /**
1210 * Queue the loading and execution of a script for a particular module.
1211 *
1212 * @private
1213 * @param {string} src URL of the script
1214 * @param {string} moduleName Name of currently executing module
1215 * @param {Function} callback Callback to run after addScript() resolution
1216 */
1217 function queueModuleScript( src, moduleName, callback ) {
1218 pendingRequests.push( function () {
1219 if ( hasOwn.call( registry, moduleName ) ) {
1220 // Emulate runScript() part of execute()
1221 window.require = mw.loader.require;
1222 window.module = registry[ moduleName ].module;
1223 }
1224 addScript( src, function () {
1225 // 'module.exports' should not persist after the file is executed to
1226 // avoid leakage to unrelated code. 'require' should be kept, however,
1227 // as asynchronous access to 'require' is allowed and expected. (T144879)
1228 delete window.module;
1229 callback();
1230 // Start the next one (if any)
1231 if ( pendingRequests[ 0 ] ) {
1232 pendingRequests.shift()();
1233 } else {
1234 handlingPendingRequests = false;
1235 }
1236 } );
1237 } );
1238 if ( !handlingPendingRequests && pendingRequests[ 0 ] ) {
1239 handlingPendingRequests = true;
1240 pendingRequests.shift()();
1241 }
1242 }
1243
1244 /**
1245 * Utility function for execute()
1246 *
1247 * @ignore
1248 * @param {string} [media] Media attribute
1249 * @param {string} url URL
1250 */
1251 function addLink( media, url ) {
1252 var el = document.createElement( 'link' );
1253
1254 el.rel = 'stylesheet';
1255 if ( media && media !== 'all' ) {
1256 el.media = media;
1257 }
1258 // If you end up here from an IE exception "SCRIPT: Invalid property value.",
1259 // see #addEmbeddedCSS, T33676, T43331, and T49277 for details.
1260 el.href = url;
1261
1262 if ( marker && marker.parentNode ) {
1263 marker.parentNode.insertBefore( el, marker );
1264 } else {
1265 document.head.appendChild( el );
1266 }
1267 }
1268
1269 /**
1270 * Executes a loaded module, making it ready to use
1271 *
1272 * @private
1273 * @param {string} module Module name to execute
1274 */
1275 function execute( module ) {
1276 var key, value, media, i, urls, cssHandle, checkCssHandles, runScript,
1277 cssHandlesRegistered = false;
1278
1279 if ( !hasOwn.call( registry, module ) ) {
1280 throw new Error( 'Module has not been registered yet: ' + module );
1281 }
1282 if ( registry[ module ].state !== 'loaded' ) {
1283 throw new Error( 'Module in state "' + registry[ module ].state + '" may not be executed: ' + module );
1284 }
1285
1286 registry[ module ].state = 'executing';
1287
1288 runScript = function () {
1289 var script, markModuleReady, nestedAddScript;
1290
1291 script = registry[ module ].script;
1292 markModuleReady = function () {
1293 registry[ module ].state = 'ready';
1294 handlePending( module );
1295 };
1296 nestedAddScript = function ( arr, callback, i ) {
1297 // Recursively call queueModuleScript() in its own callback
1298 // for each element of arr.
1299 if ( i >= arr.length ) {
1300 // We're at the end of the array
1301 callback();
1302 return;
1303 }
1304
1305 queueModuleScript( arr[ i ], module, function () {
1306 nestedAddScript( arr, callback, i + 1 );
1307 } );
1308 };
1309
1310 try {
1311 if ( Array.isArray( script ) ) {
1312 nestedAddScript( script, markModuleReady, 0 );
1313 } else if ( typeof script === 'function' ) {
1314 // Pass jQuery twice so that the signature of the closure which wraps
1315 // the script can bind both '$' and 'jQuery'.
1316 script( $, $, mw.loader.require, registry[ module ].module );
1317 markModuleReady();
1318
1319 } else if ( typeof script === 'string' ) {
1320 // Site and user modules are legacy scripts that run in the global scope.
1321 // This is transported as a string instead of a function to avoid needing
1322 // to use string manipulation to undo the function wrapper.
1323 $.globalEval( script );
1324 markModuleReady();
1325
1326 } else {
1327 // Module without script
1328 markModuleReady();
1329 }
1330 } catch ( e ) {
1331 // Use mw.track instead of mw.log because these errors are common in production mode
1332 // (e.g. undefined variable), and mw.log is only enabled in debug mode.
1333 registry[ module ].state = 'error';
1334 mw.track( 'resourceloader.exception', { exception: e, module: module, source: 'module-execute' } );
1335 handlePending( module );
1336 }
1337 };
1338
1339 // Add localizations to message system
1340 if ( registry[ module ].messages ) {
1341 mw.messages.set( registry[ module ].messages );
1342 }
1343
1344 // Initialise templates
1345 if ( registry[ module ].templates ) {
1346 mw.templates.set( module, registry[ module ].templates );
1347 }
1348
1349 // Make sure we don't run the scripts until all stylesheet insertions have completed.
1350 ( function () {
1351 var pending = 0;
1352 checkCssHandles = function () {
1353 // cssHandlesRegistered ensures we don't take off too soon, e.g. when
1354 // one of the cssHandles is fired while we're still creating more handles.
1355 if ( cssHandlesRegistered && pending === 0 && runScript ) {
1356 if ( module === 'user' ) {
1357 // Implicit dependency on the site module. Not real dependency because
1358 // it should run after 'site' regardless of whether it succeeds or fails.
1359 mw.loader.using( [ 'site' ] ).always( runScript );
1360 } else {
1361 runScript();
1362 }
1363 runScript = undefined; // Revoke
1364 }
1365 };
1366 cssHandle = function () {
1367 var check = checkCssHandles;
1368 pending++;
1369 return function () {
1370 if ( check ) {
1371 pending--;
1372 check();
1373 check = undefined; // Revoke
1374 }
1375 };
1376 };
1377 }() );
1378
1379 // Process styles (see also mw.loader.implement)
1380 // * back-compat: { <media>: css }
1381 // * back-compat: { <media>: [url, ..] }
1382 // * { "css": [css, ..] }
1383 // * { "url": { <media>: [url, ..] } }
1384 if ( registry[ module ].style ) {
1385 for ( key in registry[ module ].style ) {
1386 value = registry[ module ].style[ key ];
1387 media = undefined;
1388
1389 if ( key !== 'url' && key !== 'css' ) {
1390 // Backwards compatibility, key is a media-type
1391 if ( typeof value === 'string' ) {
1392 // back-compat: { <media>: css }
1393 // Ignore 'media' because it isn't supported (nor was it used).
1394 // Strings are pre-wrapped in "@media". The media-type was just ""
1395 // (because it had to be set to something).
1396 // This is one of the reasons why this format is no longer used.
1397 addEmbeddedCSS( value, cssHandle() );
1398 } else {
1399 // back-compat: { <media>: [url, ..] }
1400 media = key;
1401 key = 'bc-url';
1402 }
1403 }
1404
1405 // Array of css strings in key 'css',
1406 // or back-compat array of urls from media-type
1407 if ( Array.isArray( value ) ) {
1408 for ( i = 0; i < value.length; i++ ) {
1409 if ( key === 'bc-url' ) {
1410 // back-compat: { <media>: [url, ..] }
1411 addLink( media, value[ i ] );
1412 } else if ( key === 'css' ) {
1413 // { "css": [css, ..] }
1414 addEmbeddedCSS( value[ i ], cssHandle() );
1415 }
1416 }
1417 // Not an array, but a regular object
1418 // Array of urls inside media-type key
1419 } else if ( typeof value === 'object' ) {
1420 // { "url": { <media>: [url, ..] } }
1421 for ( media in value ) {
1422 urls = value[ media ];
1423 for ( i = 0; i < urls.length; i++ ) {
1424 addLink( media, urls[ i ] );
1425 }
1426 }
1427 }
1428 }
1429 }
1430
1431 // Kick off.
1432 cssHandlesRegistered = true;
1433 checkCssHandles();
1434 }
1435
1436 /**
1437 * Add one or more modules to the module load queue.
1438 *
1439 * See also #work().
1440 *
1441 * @private
1442 * @param {string|string[]} dependencies Module name or array of string module names
1443 * @param {Function} [ready] Callback to execute when all dependencies are ready
1444 * @param {Function} [error] Callback to execute when any dependency fails
1445 */
1446 function enqueue( dependencies, ready, error ) {
1447 // Allow calling by single module name
1448 if ( typeof dependencies === 'string' ) {
1449 dependencies = [ dependencies ];
1450 }
1451
1452 // Add ready and error callbacks if they were given
1453 if ( ready !== undefined || error !== undefined ) {
1454 jobs.push( {
1455 // Narrow down the list to modules that are worth waiting for
1456 dependencies: dependencies.filter( function ( module ) {
1457 var state = mw.loader.getState( module );
1458 return state === 'registered' || state === 'loaded' || state === 'loading' || state === 'executing';
1459 } ),
1460 ready: ready,
1461 error: error
1462 } );
1463 }
1464
1465 dependencies.forEach( function ( module ) {
1466 var state = mw.loader.getState( module );
1467 // Only queue modules that are still in the initial 'registered' state
1468 // (not ones already loading, ready or error).
1469 if ( state === 'registered' && queue.indexOf( module ) === -1 ) {
1470 // Private modules must be embedded in the page. Don't bother queuing
1471 // these as the server will deny them anyway (T101806).
1472 if ( registry[ module ].group === 'private' ) {
1473 registry[ module ].state = 'error';
1474 handlePending( module );
1475 return;
1476 }
1477 queue.push( module );
1478 }
1479 } );
1480
1481 mw.loader.work();
1482 }
1483
1484 function sortQuery( o ) {
1485 var key,
1486 sorted = {},
1487 a = [];
1488
1489 for ( key in o ) {
1490 a.push( key );
1491 }
1492 a.sort();
1493 for ( key = 0; key < a.length; key++ ) {
1494 sorted[ a[ key ] ] = o[ a[ key ] ];
1495 }
1496 return sorted;
1497 }
1498
1499 /**
1500 * Converts a module map of the form `{ foo: [ 'bar', 'baz' ], bar: [ 'baz, 'quux' ] }`
1501 * to a query string of the form `foo.bar,baz|bar.baz,quux`.
1502 *
1503 * See `ResourceLoader::makePackedModulesString()` in PHP, of which this is a port.
1504 * On the server, unpacking is done by `ResourceLoaderContext::expandModuleNames()`.
1505 *
1506 * Note: This is only half of the logic, the other half has to be in #batchRequest(),
1507 * because its implementation needs to keep track of potential string size in order
1508 * to decide when to split the requests due to url size.
1509 *
1510 * @private
1511 * @param {Object} moduleMap Module map
1512 * @return {Object}
1513 * @return {string} return.str Module query string
1514 * @return {Array} return.list List of module names in matching order
1515 */
1516 function buildModulesString( moduleMap ) {
1517 var p, prefix,
1518 str = [],
1519 list = [];
1520
1521 function restore( suffix ) {
1522 return p + suffix;
1523 }
1524
1525 for ( prefix in moduleMap ) {
1526 p = prefix === '' ? '' : prefix + '.';
1527 str.push( p + moduleMap[ prefix ].join( ',' ) );
1528 list.push.apply( list, moduleMap[ prefix ].map( restore ) );
1529 }
1530 return {
1531 str: str.join( '|' ),
1532 list: list
1533 };
1534 }
1535
1536 /**
1537 * Resolve indexed dependencies.
1538 *
1539 * ResourceLoader uses an optimization to save space which replaces module names in
1540 * dependency lists with the index of that module within the array of module
1541 * registration data if it exists. The benefit is a significant reduction in the data
1542 * size of the startup module. This function changes those dependency lists back to
1543 * arrays of strings.
1544 *
1545 * @private
1546 * @param {Array} modules Modules array
1547 */
1548 function resolveIndexedDependencies( modules ) {
1549 var i, j, deps;
1550 function resolveIndex( dep ) {
1551 return typeof dep === 'number' ? modules[ dep ][ 0 ] : dep;
1552 }
1553 for ( i = 0; i < modules.length; i++ ) {
1554 deps = modules[ i ][ 2 ];
1555 if ( deps ) {
1556 for ( j = 0; j < deps.length; j++ ) {
1557 deps[ j ] = resolveIndex( deps[ j ] );
1558 }
1559 }
1560 }
1561 }
1562
1563 /**
1564 * Create network requests for a batch of modules.
1565 *
1566 * This is an internal method for #work(). This must not be called directly
1567 * unless the modules are already registered, and no request is in progress,
1568 * and the module state has already been set to `loading`.
1569 *
1570 * @private
1571 * @param {string[]} batch
1572 */
1573 function batchRequest( batch ) {
1574 var reqBase, splits, maxQueryLength, b, bSource, bGroup, bSourceGroup,
1575 source, group, i, modules, sourceLoadScript,
1576 currReqBase, currReqBaseLength, moduleMap, currReqModules, l,
1577 lastDotIndex, prefix, suffix, bytesAdded;
1578
1579 /**
1580 * Start the currently drafted request to the server.
1581 *
1582 * @ignore
1583 */
1584 function doRequest() {
1585 // Optimisation: Inherit (Object.create), not copy ($.extend)
1586 var query = Object.create( currReqBase ),
1587 packed = buildModulesString( moduleMap );
1588 query.modules = packed.str;
1589 // The packing logic can change the effective order, even if the input was
1590 // sorted. As such, the call to getCombinedVersion() must use this
1591 // effective order, instead of currReqModules, as otherwise the combined
1592 // version will not match the hash expected by the server based on
1593 // combining versions from the module query string in-order. (T188076)
1594 query.version = getCombinedVersion( packed.list );
1595 query = sortQuery( query );
1596 addScript( sourceLoadScript + '?' + $.param( query ) );
1597 }
1598
1599 if ( !batch.length ) {
1600 return;
1601 }
1602
1603 // Always order modules alphabetically to help reduce cache
1604 // misses for otherwise identical content.
1605 batch.sort();
1606
1607 // Query parameters common to all requests
1608 reqBase = {
1609 skin: mw.config.get( 'skin' ),
1610 lang: mw.config.get( 'wgUserLanguage' ),
1611 debug: mw.config.get( 'debug' )
1612 };
1613 maxQueryLength = mw.config.get( 'wgResourceLoaderMaxQueryLength', 2000 );
1614
1615 // Split module list by source and by group.
1616 splits = {};
1617 for ( b = 0; b < batch.length; b++ ) {
1618 bSource = registry[ batch[ b ] ].source;
1619 bGroup = registry[ batch[ b ] ].group;
1620 if ( !hasOwn.call( splits, bSource ) ) {
1621 splits[ bSource ] = {};
1622 }
1623 if ( !hasOwn.call( splits[ bSource ], bGroup ) ) {
1624 splits[ bSource ][ bGroup ] = [];
1625 }
1626 bSourceGroup = splits[ bSource ][ bGroup ];
1627 bSourceGroup.push( batch[ b ] );
1628 }
1629
1630 for ( source in splits ) {
1631
1632 sourceLoadScript = sources[ source ];
1633
1634 for ( group in splits[ source ] ) {
1635
1636 // Cache access to currently selected list of
1637 // modules for this group from this source.
1638 modules = splits[ source ][ group ];
1639
1640 // Query parameters common to requests for this module group
1641 // Optimisation: Inherit (Object.create), not copy ($.extend)
1642 currReqBase = Object.create( reqBase );
1643 // User modules require a user name in the query string.
1644 if ( group === 'user' && mw.config.get( 'wgUserName' ) !== null ) {
1645 currReqBase.user = mw.config.get( 'wgUserName' );
1646 }
1647
1648 // In addition to currReqBase, doRequest() will also add 'modules' and 'version'.
1649 // > '&modules='.length === 9
1650 // > '&version=1234567'.length === 16
1651 // > 9 + 16 = 25
1652 currReqBaseLength = $.param( currReqBase ).length + 25;
1653
1654 // We may need to split up the request to honor the query string length limit,
1655 // so build it piece by piece.
1656 l = currReqBaseLength;
1657 moduleMap = {}; // { prefix: [ suffixes ] }
1658 currReqModules = [];
1659
1660 for ( i = 0; i < modules.length; i++ ) {
1661 // Determine how many bytes this module would add to the query string
1662 lastDotIndex = modules[ i ].lastIndexOf( '.' );
1663 // If lastDotIndex is -1, substr() returns an empty string
1664 prefix = modules[ i ].substr( 0, lastDotIndex );
1665 suffix = modules[ i ].slice( lastDotIndex + 1 );
1666 bytesAdded = hasOwn.call( moduleMap, prefix ) ?
1667 suffix.length + 3 : // '%2C'.length == 3
1668 modules[ i ].length + 3; // '%7C'.length == 3
1669
1670 // If the url would become too long, create a new one, but don't create empty requests
1671 if ( maxQueryLength > 0 && currReqModules.length && l + bytesAdded > maxQueryLength ) {
1672 // Dispatch what we've got...
1673 doRequest();
1674 // .. and start again.
1675 l = currReqBaseLength;
1676 moduleMap = {};
1677 currReqModules = [];
1678
1679 mw.track( 'resourceloader.splitRequest', { maxQueryLength: maxQueryLength } );
1680 }
1681 if ( !hasOwn.call( moduleMap, prefix ) ) {
1682 moduleMap[ prefix ] = [];
1683 }
1684 l += bytesAdded;
1685 moduleMap[ prefix ].push( suffix );
1686 currReqModules.push( modules[ i ] );
1687 }
1688 // If there's anything left in moduleMap, request that too
1689 if ( currReqModules.length ) {
1690 doRequest();
1691 }
1692 }
1693 }
1694 }
1695
1696 /**
1697 * @private
1698 * @param {string[]} implementations Array containing pieces of JavaScript code in the
1699 * form of calls to mw.loader#implement().
1700 * @param {Function} cb Callback in case of failure
1701 * @param {Error} cb.err
1702 */
1703 function asyncEval( implementations, cb ) {
1704 if ( !implementations.length ) {
1705 return;
1706 }
1707 mw.requestIdleCallback( function () {
1708 try {
1709 $.globalEval( implementations.join( ';' ) );
1710 } catch ( err ) {
1711 cb( err );
1712 }
1713 } );
1714 }
1715
1716 /**
1717 * Make a versioned key for a specific module.
1718 *
1719 * @private
1720 * @param {string} module Module name
1721 * @return {string|null} Module key in format '`[name]@[version]`',
1722 * or null if the module does not exist
1723 */
1724 function getModuleKey( module ) {
1725 return hasOwn.call( registry, module ) ?
1726 ( module + '@' + registry[ module ].version ) : null;
1727 }
1728
1729 /**
1730 * @private
1731 * @param {string} key Module name or '`[name]@[version]`'
1732 * @return {Object}
1733 */
1734 function splitModuleKey( key ) {
1735 var index = key.indexOf( '@' );
1736 if ( index === -1 ) {
1737 return {
1738 name: key,
1739 version: ''
1740 };
1741 }
1742 return {
1743 name: key.slice( 0, index ),
1744 version: key.slice( index + 1 )
1745 };
1746 }
1747
1748 /* Public Members */
1749 return {
1750 /**
1751 * The module registry is exposed as an aid for debugging and inspecting page
1752 * state; it is not a public interface for modifying the registry.
1753 *
1754 * @see #registry
1755 * @property
1756 * @private
1757 */
1758 moduleRegistry: registry,
1759
1760 /**
1761 * @inheritdoc #newStyleTag
1762 * @method
1763 */
1764 addStyleTag: newStyleTag,
1765
1766 /**
1767 * Start loading of all queued module dependencies.
1768 *
1769 * @protected
1770 */
1771 work: function () {
1772 var q, batch, implementations, sourceModules;
1773
1774 batch = [];
1775
1776 // Appends a list of modules from the queue to the batch
1777 for ( q = 0; q < queue.length; q++ ) {
1778 // Only load modules which are registered
1779 if ( hasOwn.call( registry, queue[ q ] ) && registry[ queue[ q ] ].state === 'registered' ) {
1780 // Prevent duplicate entries
1781 if ( batch.indexOf( queue[ q ] ) === -1 ) {
1782 batch.push( queue[ q ] );
1783 // Mark registered modules as loading
1784 registry[ queue[ q ] ].state = 'loading';
1785 }
1786 }
1787 }
1788
1789 // Now that the queue has been processed into a batch, clear the queue.
1790 // This MUST happen before we initiate any eval or network request. Otherwise,
1791 // it is possible for a cached script to instantly trigger the same work queue
1792 // again; all before we've cleared it causing each request to include modules
1793 // which are already loaded.
1794 queue = [];
1795
1796 if ( !batch.length ) {
1797 return;
1798 }
1799
1800 mw.loader.store.init();
1801 if ( mw.loader.store.enabled ) {
1802 implementations = [];
1803 sourceModules = [];
1804 batch = batch.filter( function ( module ) {
1805 var implementation = mw.loader.store.get( module );
1806 if ( implementation ) {
1807 implementations.push( implementation );
1808 sourceModules.push( module );
1809 return false;
1810 }
1811 return true;
1812 } );
1813 asyncEval( implementations, function ( err ) {
1814 var failed;
1815 // Not good, the cached mw.loader.implement calls failed! This should
1816 // never happen, barring ResourceLoader bugs, browser bugs and PEBKACs.
1817 // Depending on how corrupt the string is, it is likely that some
1818 // modules' implement() succeeded while the ones after the error will
1819 // never run and leave their modules in the 'loading' state forever.
1820 mw.loader.store.stats.failed++;
1821
1822 // Since this is an error not caused by an individual module but by
1823 // something that infected the implement call itself, don't take any
1824 // risks and clear everything in this cache.
1825 mw.loader.store.clear();
1826
1827 mw.track( 'resourceloader.exception', { exception: err, source: 'store-eval' } );
1828 // Re-add the failed ones that are still pending back to the batch
1829 failed = sourceModules.filter( function ( module ) {
1830 return registry[ module ].state === 'loading';
1831 } );
1832 batchRequest( failed );
1833 } );
1834 }
1835
1836 batchRequest( batch );
1837 },
1838
1839 /**
1840 * Register a source.
1841 *
1842 * The #work() method will use this information to split up requests by source.
1843 *
1844 * mw.loader.addSource( 'mediawikiwiki', '//www.mediawiki.org/w/load.php' );
1845 *
1846 * @param {string|Object} id Source ID, or object mapping ids to load urls
1847 * @param {string} loadUrl Url to a load.php end point
1848 * @throws {Error} If source id is already registered
1849 */
1850 addSource: function ( id, loadUrl ) {
1851 var source;
1852 // Allow multiple additions
1853 if ( typeof id === 'object' ) {
1854 for ( source in id ) {
1855 mw.loader.addSource( source, id[ source ] );
1856 }
1857 return;
1858 }
1859
1860 if ( hasOwn.call( sources, id ) ) {
1861 throw new Error( 'source already registered: ' + id );
1862 }
1863
1864 sources[ id ] = loadUrl;
1865 },
1866
1867 /**
1868 * Register a module, letting the system know about it and its properties.
1869 *
1870 * The startup modules contain calls to this method.
1871 *
1872 * When using multiple module registration by passing an array, dependencies that
1873 * are specified as references to modules within the array will be resolved before
1874 * the modules are registered.
1875 *
1876 * @param {string|Array} module Module name or array of arrays, each containing
1877 * a list of arguments compatible with this method
1878 * @param {string|number} version Module version hash (falls backs to empty string)
1879 * Can also be a number (timestamp) for compatibility with MediaWiki 1.25 and earlier.
1880 * @param {string|Array} dependencies One string or array of strings of module
1881 * names on which this module depends.
1882 * @param {string} [group=null] Group which the module is in
1883 * @param {string} [source='local'] Name of the source
1884 * @param {string} [skip=null] Script body of the skip function
1885 */
1886 register: function ( module, version, dependencies, group, source, skip ) {
1887 var i, deps;
1888 // Allow multiple registration
1889 if ( typeof module === 'object' ) {
1890 resolveIndexedDependencies( module );
1891 for ( i = 0; i < module.length; i++ ) {
1892 // module is an array of module names
1893 if ( typeof module[ i ] === 'string' ) {
1894 mw.loader.register( module[ i ] );
1895 // module is an array of arrays
1896 } else if ( typeof module[ i ] === 'object' ) {
1897 mw.loader.register.apply( mw.loader, module[ i ] );
1898 }
1899 }
1900 return;
1901 }
1902 if ( hasOwn.call( registry, module ) ) {
1903 throw new Error( 'module already registered: ' + module );
1904 }
1905 if ( typeof dependencies === 'string' ) {
1906 // A single module name
1907 deps = [ dependencies ];
1908 } else if ( typeof dependencies === 'object' ) {
1909 // Array of module names
1910 deps = dependencies;
1911 }
1912 // List the module as registered
1913 registry[ module ] = {
1914 // Exposed to execute() for mw.loader.implement() closures.
1915 // Import happens via require().
1916 module: {
1917 exports: {}
1918 },
1919 version: version !== undefined ? String( version ) : '',
1920 dependencies: deps || [],
1921 group: typeof group === 'string' ? group : null,
1922 source: typeof source === 'string' ? source : 'local',
1923 state: 'registered',
1924 skip: typeof skip === 'string' ? skip : null
1925 };
1926 },
1927
1928 /**
1929 * Implement a module given the components that make up the module.
1930 *
1931 * When #load() or #using() requests one or more modules, the server
1932 * response contain calls to this function.
1933 *
1934 * @param {string} module Name of module and current module version. Formatted
1935 * as '`[name]@[version]`". This version should match the requested version
1936 * (from #batchRequest and #registry). This avoids race conditions (T117587).
1937 * For back-compat with MediaWiki 1.27 and earlier, the version may be omitted.
1938 * @param {Function|Array|string} [script] Function with module code, list of URLs
1939 * to load via `<script src>`, or string of module code for `$.globalEval()`.
1940 * @param {Object} [style] Should follow one of the following patterns:
1941 *
1942 * { "css": [css, ..] }
1943 * { "url": { <media>: [url, ..] } }
1944 *
1945 * And for backwards compatibility (needs to be supported forever due to caching):
1946 *
1947 * { <media>: css }
1948 * { <media>: [url, ..] }
1949 *
1950 * The reason css strings are not concatenated anymore is T33676. We now check
1951 * whether it's safe to extend the stylesheet.
1952 *
1953 * @protected
1954 * @param {Object} [messages] List of key/value pairs to be added to mw#messages.
1955 * @param {Object} [templates] List of key/value pairs to be added to mw#templates.
1956 */
1957 implement: function ( module, script, style, messages, templates ) {
1958 var split = splitModuleKey( module ),
1959 name = split.name,
1960 version = split.version;
1961 // Automatically register module
1962 if ( !hasOwn.call( registry, name ) ) {
1963 mw.loader.register( name );
1964 }
1965 // Check for duplicate implementation
1966 if ( hasOwn.call( registry, name ) && registry[ name ].script !== undefined ) {
1967 throw new Error( 'module already implemented: ' + name );
1968 }
1969 if ( version ) {
1970 // Without this reset, if there is a version mismatch between the
1971 // requested and received module version, then mw.loader.store would
1972 // cache the response under the requested key. Thus poisoning the cache
1973 // indefinitely with a stale value. (T117587)
1974 registry[ name ].version = version;
1975 }
1976 // Attach components
1977 registry[ name ].script = script || null;
1978 registry[ name ].style = style || null;
1979 registry[ name ].messages = messages || null;
1980 registry[ name ].templates = templates || null;
1981 // The module may already have been marked as erroneous
1982 if ( registry[ name ].state !== 'error' && registry[ name ].state !== 'missing' ) {
1983 registry[ name ].state = 'loaded';
1984 if ( allReady( registry[ name ].dependencies ) ) {
1985 execute( name );
1986 }
1987 }
1988 },
1989
1990 /**
1991 * Execute a function as soon as one or more required modules are ready.
1992 *
1993 * Example of inline dependency on OOjs:
1994 *
1995 * mw.loader.using( 'oojs', function () {
1996 * OO.compare( [ 1 ], [ 1 ] );
1997 * } );
1998 *
1999 * Example of inline dependency obtained via `require()`:
2000 *
2001 * mw.loader.using( [ 'mediawiki.util' ], function ( require ) {
2002 * var util = require( 'mediawiki.util' );
2003 * } );
2004 *
2005 * Since MediaWiki 1.23 this also returns a promise.
2006 *
2007 * Since MediaWiki 1.28 the promise is resolved with a `require` function.
2008 *
2009 * @param {string|Array} dependencies Module name or array of modules names the
2010 * callback depends on to be ready before executing
2011 * @param {Function} [ready] Callback to execute when all dependencies are ready
2012 * @param {Function} [error] Callback to execute if one or more dependencies failed
2013 * @return {jQuery.Promise} With a `require` function
2014 */
2015 using: function ( dependencies, ready, error ) {
2016 var deferred = $.Deferred();
2017
2018 // Allow calling with a single dependency as a string
2019 if ( typeof dependencies === 'string' ) {
2020 dependencies = [ dependencies ];
2021 }
2022
2023 if ( ready ) {
2024 deferred.done( ready );
2025 }
2026 if ( error ) {
2027 deferred.fail( error );
2028 }
2029
2030 try {
2031 // Resolve entire dependency map
2032 dependencies = resolve( dependencies );
2033 } catch ( e ) {
2034 return deferred.reject( e ).promise();
2035 }
2036 if ( allReady( dependencies ) ) {
2037 // Run ready immediately
2038 deferred.resolve( mw.loader.require );
2039 } else if ( anyFailed( dependencies ) ) {
2040 // Execute error immediately if any dependencies have errors
2041 deferred.reject(
2042 new Error( 'One or more dependencies failed to load' ),
2043 dependencies
2044 );
2045 } else {
2046 // Not all dependencies are ready, add to the load queue
2047 enqueue( dependencies, function () {
2048 deferred.resolve( mw.loader.require );
2049 }, deferred.reject );
2050 }
2051
2052 return deferred.promise();
2053 },
2054
2055 /**
2056 * Load an external script or one or more modules.
2057 *
2058 * This method takes a list of unrelated modules. Use cases:
2059 *
2060 * - A web page will be composed of many different widgets. These widgets independently
2061 * queue their ResourceLoader modules (`OutputPage::addModules()`). If any of them
2062 * have problems, or are no longer known (e.g. cached HTML), the other modules
2063 * should still be loaded.
2064 * - This method is used for preloading, which must not throw. Later code that
2065 * calls #using() will handle the error.
2066 *
2067 * @param {string|Array} modules Either the name of a module, array of modules,
2068 * or a URL of an external script or style
2069 * @param {string} [type='text/javascript'] MIME type to use if calling with a URL of an
2070 * external script or style; acceptable values are "text/css" and
2071 * "text/javascript"; if no type is provided, text/javascript is assumed.
2072 */
2073 load: function ( modules, type ) {
2074 var filtered, l;
2075
2076 // Allow calling with a url or single dependency as a string
2077 if ( typeof modules === 'string' ) {
2078 // "https://example.org/x.js", "http://example.org/x.js", "//example.org/x.js", "/x.js"
2079 if ( /^(https?:)?\/?\//.test( modules ) ) {
2080 if ( type === 'text/css' ) {
2081 l = document.createElement( 'link' );
2082 l.rel = 'stylesheet';
2083 l.href = modules;
2084 document.head.appendChild( l );
2085 return;
2086 }
2087 if ( type === 'text/javascript' || type === undefined ) {
2088 addScript( modules );
2089 return;
2090 }
2091 // Unknown type
2092 throw new Error( 'invalid type for external url, must be text/css or text/javascript. not ' + type );
2093 }
2094 // Called with single module
2095 modules = [ modules ];
2096 }
2097
2098 // Filter out top-level modules that are unknown or failed to load before.
2099 filtered = modules.filter( function ( module ) {
2100 var state = mw.loader.getState( module );
2101 return state !== 'error' && state !== 'missing';
2102 } );
2103 // Resolve remaining list using the known dependency tree.
2104 // This also filters out modules with unknown dependencies. (T36853)
2105 filtered = resolveStubbornly( filtered );
2106 // If all modules are ready, or if any modules have errors, nothing to be done.
2107 if ( allReady( filtered ) || anyFailed( filtered ) ) {
2108 return;
2109 }
2110 if ( filtered.length === 0 ) {
2111 return;
2112 }
2113 // Some modules are not yet ready, add to module load queue.
2114 enqueue( filtered, undefined, undefined );
2115 },
2116
2117 /**
2118 * Change the state of one or more modules.
2119 *
2120 * @param {string|Object} module Module name or object of module name/state pairs
2121 * @param {string} state State name
2122 */
2123 state: function ( module, state ) {
2124 var m;
2125
2126 if ( typeof module === 'object' ) {
2127 for ( m in module ) {
2128 mw.loader.state( m, module[ m ] );
2129 }
2130 return;
2131 }
2132 if ( !hasOwn.call( registry, module ) ) {
2133 mw.loader.register( module );
2134 }
2135 registry[ module ].state = state;
2136 if ( state === 'ready' || state === 'error' || state === 'missing' ) {
2137 // Make sure pending modules depending on this one get executed if their
2138 // dependencies are now fulfilled!
2139 handlePending( module );
2140 }
2141 },
2142
2143 /**
2144 * Get the version of a module.
2145 *
2146 * @param {string} module Name of module
2147 * @return {string|null} The version, or null if the module (or its version) is not
2148 * in the registry.
2149 */
2150 getVersion: function ( module ) {
2151 return hasOwn.call( registry, module ) ? registry[ module ].version : null;
2152 },
2153
2154 /**
2155 * Get the state of a module.
2156 *
2157 * @param {string} module Name of module
2158 * @return {string|null} The state, or null if the module (or its state) is not
2159 * in the registry.
2160 */
2161 getState: function ( module ) {
2162 return hasOwn.call( registry, module ) ? registry[ module ].state : null;
2163 },
2164
2165 /**
2166 * Get the names of all registered modules.
2167 *
2168 * @return {Array}
2169 */
2170 getModuleNames: function () {
2171 return Object.keys( registry );
2172 },
2173
2174 /**
2175 * Get the exported value of a module.
2176 *
2177 * This static method is publicly exposed for debugging purposes
2178 * only and must not be used in production code. In production code,
2179 * please use the dynamically provided `require()` function instead.
2180 *
2181 * In case of lazy-loaded modules via mw.loader#using(), the returned
2182 * Promise provides the function, see #using() for examples.
2183 *
2184 * @private
2185 * @since 1.27
2186 * @param {string} moduleName Module name
2187 * @return {Mixed} Exported value
2188 */
2189 require: function ( moduleName ) {
2190 var state = mw.loader.getState( moduleName );
2191
2192 // Only ready modules can be required
2193 if ( state !== 'ready' ) {
2194 // Module may've forgotten to declare a dependency
2195 throw new Error( 'Module "' + moduleName + '" is not loaded.' );
2196 }
2197
2198 return registry[ moduleName ].module.exports;
2199 },
2200
2201 /**
2202 * @inheritdoc mw.inspect#runReports
2203 * @method
2204 */
2205 inspect: function () {
2206 var args = slice.call( arguments );
2207 mw.loader.using( 'mediawiki.inspect', function () {
2208 mw.inspect.runReports.apply( mw.inspect, args );
2209 } );
2210 },
2211
2212 /**
2213 * On browsers that implement the localStorage API, the module store serves as a
2214 * smart complement to the browser cache. Unlike the browser cache, the module store
2215 * can slice a concatenated response from ResourceLoader into its constituent
2216 * modules and cache each of them separately, using each module's versioning scheme
2217 * to determine when the cache should be invalidated.
2218 *
2219 * @singleton
2220 * @class mw.loader.store
2221 */
2222 store: {
2223 // Whether the store is in use on this page.
2224 enabled: null,
2225
2226 // Modules whose string representation exceeds 100 kB are
2227 // ineligible for storage. See bug T66721.
2228 MODULE_SIZE_MAX: 100 * 1000,
2229
2230 // The contents of the store, mapping '[name]@[version]' keys
2231 // to module implementations.
2232 items: {},
2233
2234 // Cache hit stats
2235 stats: { hits: 0, misses: 0, expired: 0, failed: 0 },
2236
2237 /**
2238 * Construct a JSON-serializable object representing the content of the store.
2239 *
2240 * @return {Object} Module store contents.
2241 */
2242 toJSON: function () {
2243 return { items: mw.loader.store.items, vary: mw.loader.store.getVary() };
2244 },
2245
2246 /**
2247 * Get the localStorage key for the entire module store. The key references
2248 * $wgDBname to prevent clashes between wikis which share a common host.
2249 *
2250 * @return {string} localStorage item key
2251 */
2252 getStoreKey: function () {
2253 return 'MediaWikiModuleStore:' + mw.config.get( 'wgDBname' );
2254 },
2255
2256 /**
2257 * Get a key on which to vary the module cache.
2258 *
2259 * @return {string} String of concatenated vary conditions.
2260 */
2261 getVary: function () {
2262 return [
2263 mw.config.get( 'skin' ),
2264 mw.config.get( 'wgResourceLoaderStorageVersion' ),
2265 mw.config.get( 'wgUserLanguage' )
2266 ].join( ':' );
2267 },
2268
2269 /**
2270 * Initialize the store.
2271 *
2272 * Retrieves store from localStorage and (if successfully retrieved) decoding
2273 * the stored JSON value to a plain object.
2274 *
2275 * The try / catch block is used for JSON & localStorage feature detection.
2276 * See the in-line documentation for Modernizr's localStorage feature detection
2277 * code for a full account of why we need a try / catch:
2278 * <https://github.com/Modernizr/Modernizr/blob/v2.7.1/modernizr.js#L771-L796>.
2279 */
2280 init: function () {
2281 var raw, data;
2282
2283 if ( mw.loader.store.enabled !== null ) {
2284 // Init already ran
2285 return;
2286 }
2287
2288 if (
2289 // Disabled because localStorage quotas are tight and (in Firefox's case)
2290 // shared by multiple origins.
2291 // See T66721, and <https://bugzilla.mozilla.org/show_bug.cgi?id=1064466>.
2292 /Firefox|Opera/.test( navigator.userAgent ) ||
2293
2294 // Disabled by configuration.
2295 !mw.config.get( 'wgResourceLoaderStorageEnabled' )
2296 ) {
2297 // Clear any previous store to free up space. (T66721)
2298 mw.loader.store.clear();
2299 mw.loader.store.enabled = false;
2300 return;
2301 }
2302 if ( mw.config.get( 'debug' ) ) {
2303 // Disable module store in debug mode
2304 mw.loader.store.enabled = false;
2305 return;
2306 }
2307
2308 try {
2309 raw = localStorage.getItem( mw.loader.store.getStoreKey() );
2310 // If we get here, localStorage is available; mark enabled
2311 mw.loader.store.enabled = true;
2312 data = JSON.parse( raw );
2313 if ( data && typeof data.items === 'object' && data.vary === mw.loader.store.getVary() ) {
2314 mw.loader.store.items = data.items;
2315 return;
2316 }
2317 } catch ( e ) {
2318 mw.track( 'resourceloader.exception', { exception: e, source: 'store-localstorage-init' } );
2319 }
2320
2321 if ( raw === undefined ) {
2322 // localStorage failed; disable store
2323 mw.loader.store.enabled = false;
2324 } else {
2325 mw.loader.store.update();
2326 }
2327 },
2328
2329 /**
2330 * Retrieve a module from the store and update cache hit stats.
2331 *
2332 * @param {string} module Module name
2333 * @return {string|boolean} Module implementation or false if unavailable
2334 */
2335 get: function ( module ) {
2336 var key;
2337
2338 if ( !mw.loader.store.enabled ) {
2339 return false;
2340 }
2341
2342 key = getModuleKey( module );
2343 if ( key in mw.loader.store.items ) {
2344 mw.loader.store.stats.hits++;
2345 return mw.loader.store.items[ key ];
2346 }
2347 mw.loader.store.stats.misses++;
2348 return false;
2349 },
2350
2351 /**
2352 * Stringify a module and queue it for storage.
2353 *
2354 * @param {string} module Module name
2355 * @param {Object} descriptor The module's descriptor as set in the registry
2356 * @return {boolean} Module was set
2357 */
2358 set: function ( module, descriptor ) {
2359 var args, key, src;
2360
2361 if ( !mw.loader.store.enabled ) {
2362 return false;
2363 }
2364
2365 key = getModuleKey( module );
2366
2367 if (
2368 // Already stored a copy of this exact version
2369 key in mw.loader.store.items ||
2370 // Module failed to load
2371 descriptor.state !== 'ready' ||
2372 // Unversioned, private, or site-/user-specific
2373 !descriptor.version ||
2374 descriptor.group === 'private' ||
2375 descriptor.group === 'user' ||
2376 // Partial descriptor
2377 // (e.g. skipped module, or style module with state=ready)
2378 [ descriptor.script, descriptor.style, descriptor.messages,
2379 descriptor.templates ].indexOf( undefined ) !== -1
2380 ) {
2381 // Decline to store
2382 return false;
2383 }
2384
2385 try {
2386 args = [
2387 JSON.stringify( key ),
2388 typeof descriptor.script === 'function' ?
2389 String( descriptor.script ) :
2390 JSON.stringify( descriptor.script ),
2391 JSON.stringify( descriptor.style ),
2392 JSON.stringify( descriptor.messages ),
2393 JSON.stringify( descriptor.templates )
2394 ];
2395 // Attempted workaround for a possible Opera bug (bug T59567).
2396 // This regex should never match under sane conditions.
2397 if ( /^\s*\(/.test( args[ 1 ] ) ) {
2398 args[ 1 ] = 'function' + args[ 1 ];
2399 mw.track( 'resourceloader.assert', { source: 'bug-T59567' } );
2400 }
2401 } catch ( e ) {
2402 mw.track( 'resourceloader.exception', { exception: e, source: 'store-localstorage-json' } );
2403 return false;
2404 }
2405
2406 src = 'mw.loader.implement(' + args.join( ',' ) + ');';
2407 if ( src.length > mw.loader.store.MODULE_SIZE_MAX ) {
2408 return false;
2409 }
2410 mw.loader.store.items[ key ] = src;
2411 mw.loader.store.update();
2412 return true;
2413 },
2414
2415 /**
2416 * Iterate through the module store, removing any item that does not correspond
2417 * (in name and version) to an item in the module registry.
2418 *
2419 * @return {boolean} Store was pruned
2420 */
2421 prune: function () {
2422 var key, module;
2423
2424 if ( !mw.loader.store.enabled ) {
2425 return false;
2426 }
2427
2428 for ( key in mw.loader.store.items ) {
2429 module = key.slice( 0, key.indexOf( '@' ) );
2430 if ( getModuleKey( module ) !== key ) {
2431 mw.loader.store.stats.expired++;
2432 delete mw.loader.store.items[ key ];
2433 } else if ( mw.loader.store.items[ key ].length > mw.loader.store.MODULE_SIZE_MAX ) {
2434 // This value predates the enforcement of a size limit on cached modules.
2435 delete mw.loader.store.items[ key ];
2436 }
2437 }
2438 return true;
2439 },
2440
2441 /**
2442 * Clear the entire module store right now.
2443 */
2444 clear: function () {
2445 mw.loader.store.items = {};
2446 try {
2447 localStorage.removeItem( mw.loader.store.getStoreKey() );
2448 } catch ( ignored ) {}
2449 },
2450
2451 /**
2452 * Sync in-memory store back to localStorage.
2453 *
2454 * This function debounces updates. When called with a flush already pending,
2455 * the call is coalesced into the pending update. The call to
2456 * localStorage.setItem will be naturally deferred until the page is quiescent.
2457 *
2458 * Because localStorage is shared by all pages from the same origin, if multiple
2459 * pages are loaded with different module sets, the possibility exists that
2460 * modules saved by one page will be clobbered by another. But the impact would
2461 * be minor and the problem would be corrected by subsequent page views.
2462 *
2463 * @method
2464 */
2465 update: ( function () {
2466 var hasPendingWrite = false;
2467
2468 function flushWrites() {
2469 var data, key;
2470 if ( !hasPendingWrite || !mw.loader.store.enabled ) {
2471 return;
2472 }
2473
2474 mw.loader.store.prune();
2475 key = mw.loader.store.getStoreKey();
2476 try {
2477 // Replacing the content of the module store might fail if the new
2478 // contents would exceed the browser's localStorage size limit. To
2479 // avoid clogging the browser with stale data, always remove the old
2480 // value before attempting to set the new one.
2481 localStorage.removeItem( key );
2482 data = JSON.stringify( mw.loader.store );
2483 localStorage.setItem( key, data );
2484 } catch ( e ) {
2485 mw.track( 'resourceloader.exception', { exception: e, source: 'store-localstorage-update' } );
2486 }
2487
2488 hasPendingWrite = false;
2489 }
2490
2491 return function () {
2492 if ( !hasPendingWrite ) {
2493 hasPendingWrite = true;
2494 mw.requestIdleCallback( flushWrites );
2495 }
2496 };
2497 }() )
2498 }
2499 };
2500 }() ),
2501
2502 /**
2503 * HTML construction helper functions
2504 *
2505 * @example
2506 *
2507 * var Html, output;
2508 *
2509 * Html = mw.html;
2510 * output = Html.element( 'div', {}, new Html.Raw(
2511 * Html.element( 'img', { src: '<' } )
2512 * ) );
2513 * mw.log( output ); // <div><img src="&lt;"/></div>
2514 *
2515 * @class mw.html
2516 * @singleton
2517 */
2518 html: ( function () {
2519 function escapeCallback( s ) {
2520 switch ( s ) {
2521 case '\'':
2522 return '&#039;';
2523 case '"':
2524 return '&quot;';
2525 case '<':
2526 return '&lt;';
2527 case '>':
2528 return '&gt;';
2529 case '&':
2530 return '&amp;';
2531 }
2532 }
2533
2534 return {
2535 /**
2536 * Escape a string for HTML.
2537 *
2538 * Converts special characters to HTML entities.
2539 *
2540 * mw.html.escape( '< > \' & "' );
2541 * // Returns &lt; &gt; &#039; &amp; &quot;
2542 *
2543 * @param {string} s The string to escape
2544 * @return {string} HTML
2545 */
2546 escape: function ( s ) {
2547 return s.replace( /['"<>&]/g, escapeCallback );
2548 },
2549
2550 /**
2551 * Create an HTML element string, with safe escaping.
2552 *
2553 * @param {string} name The tag name.
2554 * @param {Object} [attrs] An object with members mapping element names to values
2555 * @param {string|mw.html.Raw|mw.html.Cdata|null} [contents=null] The contents of the element.
2556 *
2557 * - string: Text to be escaped.
2558 * - null: The element is treated as void with short closing form, e.g. `<br/>`.
2559 * - this.Raw: The raw value is directly included.
2560 * - this.Cdata: The raw value is directly included. An exception is
2561 * thrown if it contains any illegal ETAGO delimiter.
2562 * See <https://www.w3.org/TR/html401/appendix/notes.html#h-B.3.2>.
2563 * @return {string} HTML
2564 */
2565 element: function ( name, attrs, contents ) {
2566 var v, attrName, s = '<' + name;
2567
2568 if ( attrs ) {
2569 for ( attrName in attrs ) {
2570 v = attrs[ attrName ];
2571 // Convert name=true, to name=name
2572 if ( v === true ) {
2573 v = attrName;
2574 // Skip name=false
2575 } else if ( v === false ) {
2576 continue;
2577 }
2578 s += ' ' + attrName + '="' + this.escape( String( v ) ) + '"';
2579 }
2580 }
2581 if ( contents === undefined || contents === null ) {
2582 // Self close tag
2583 s += '/>';
2584 return s;
2585 }
2586 // Regular open tag
2587 s += '>';
2588 switch ( typeof contents ) {
2589 case 'string':
2590 // Escaped
2591 s += this.escape( contents );
2592 break;
2593 case 'number':
2594 case 'boolean':
2595 // Convert to string
2596 s += String( contents );
2597 break;
2598 default:
2599 if ( contents instanceof this.Raw ) {
2600 // Raw HTML inclusion
2601 s += contents.value;
2602 } else if ( contents instanceof this.Cdata ) {
2603 // CDATA
2604 if ( /<\/[a-zA-z]/.test( contents.value ) ) {
2605 throw new Error( 'mw.html.element: Illegal end tag found in CDATA' );
2606 }
2607 s += contents.value;
2608 } else {
2609 throw new Error( 'mw.html.element: Invalid type of contents' );
2610 }
2611 }
2612 s += '</' + name + '>';
2613 return s;
2614 },
2615
2616 /**
2617 * Wrapper object for raw HTML passed to mw.html.element().
2618 *
2619 * @class mw.html.Raw
2620 * @constructor
2621 * @param {string} value
2622 */
2623 Raw: function ( value ) {
2624 this.value = value;
2625 },
2626
2627 /**
2628 * Wrapper object for CDATA element contents passed to mw.html.element()
2629 *
2630 * @class mw.html.Cdata
2631 * @constructor
2632 * @param {string} value
2633 */
2634 Cdata: function ( value ) {
2635 this.value = value;
2636 }
2637 };
2638 }() ),
2639
2640 // Skeleton user object, extended by the 'mediawiki.user' module.
2641 /**
2642 * @class mw.user
2643 * @singleton
2644 */
2645 user: {
2646 /**
2647 * @property {mw.Map}
2648 */
2649 options: new Map(),
2650 /**
2651 * @property {mw.Map}
2652 */
2653 tokens: new Map()
2654 },
2655
2656 // OOUI widgets specific to MediaWiki
2657 widgets: {},
2658
2659 /**
2660 * Registry and firing of events.
2661 *
2662 * MediaWiki has various interface components that are extended, enhanced
2663 * or manipulated in some other way by extensions, gadgets and even
2664 * in core itself.
2665 *
2666 * This framework helps streamlining the timing of when these other
2667 * code paths fire their plugins (instead of using document-ready,
2668 * which can and should be limited to firing only once).
2669 *
2670 * Features like navigating to other wiki pages, previewing an edit
2671 * and editing itself – without a refresh – can then retrigger these
2672 * hooks accordingly to ensure everything still works as expected.
2673 *
2674 * Example usage:
2675 *
2676 * mw.hook( 'wikipage.content' ).add( fn ).remove( fn );
2677 * mw.hook( 'wikipage.content' ).fire( $content );
2678 *
2679 * Handlers can be added and fired for arbitrary event names at any time. The same
2680 * event can be fired multiple times. The last run of an event is memorized
2681 * (similar to `$(document).ready` and `$.Deferred().done`).
2682 * This means if an event is fired, and a handler added afterwards, the added
2683 * function will be fired right away with the last given event data.
2684 *
2685 * Like Deferreds and Promises, the mw.hook object is both detachable and chainable.
2686 * Thus allowing flexible use and optimal maintainability and authority control.
2687 * You can pass around the `add` and/or `fire` method to another piece of code
2688 * without it having to know the event name (or `mw.hook` for that matter).
2689 *
2690 * var h = mw.hook( 'bar.ready' );
2691 * new mw.Foo( .. ).fetch( { callback: h.fire } );
2692 *
2693 * Note: Events are documented with an underscore instead of a dot in the event
2694 * name due to jsduck not supporting dots in that position.
2695 *
2696 * @class mw.hook
2697 */
2698 hook: ( function () {
2699 var lists = {};
2700
2701 /**
2702 * Create an instance of mw.hook.
2703 *
2704 * @method hook
2705 * @member mw
2706 * @param {string} name Name of hook.
2707 * @return {mw.hook}
2708 */
2709 return function ( name ) {
2710 var list = hasOwn.call( lists, name ) ?
2711 lists[ name ] :
2712 lists[ name ] = $.Callbacks( 'memory' );
2713
2714 return {
2715 /**
2716 * Register a hook handler
2717 *
2718 * @param {...Function} handler Function to bind.
2719 * @chainable
2720 */
2721 add: list.add,
2722
2723 /**
2724 * Unregister a hook handler
2725 *
2726 * @param {...Function} handler Function to unbind.
2727 * @chainable
2728 */
2729 remove: list.remove,
2730
2731 // eslint-disable-next-line valid-jsdoc
2732 /**
2733 * Run a hook.
2734 *
2735 * @param {...Mixed} data
2736 * @chainable
2737 */
2738 fire: function () {
2739 return list.fireWith.call( this, null, slice.call( arguments ) );
2740 }
2741 };
2742 };
2743 }() )
2744 };
2745
2746 // Alias $j to jQuery for backwards compatibility
2747 // @deprecated since 1.23 Use $ or jQuery instead
2748 mw.log.deprecate( window, '$j', $, 'Use $ or jQuery instead.' );
2749
2750 /**
2751 * Log a message to window.console, if possible.
2752 *
2753 * Useful to force logging of some errors that are otherwise hard to detect (i.e., this logs
2754 * also in production mode). Gets console references in each invocation instead of caching the
2755 * reference, so that debugging tools loaded later are supported (e.g. Firebug Lite in IE).
2756 *
2757 * @private
2758 * @param {string} topic Stream name passed by mw.track
2759 * @param {Object} data Data passed by mw.track
2760 * @param {Error} [data.exception]
2761 * @param {string} data.source Error source
2762 * @param {string} [data.module] Name of module which caused the error
2763 */
2764 function logError( topic, data ) {
2765 /* eslint-disable no-console */
2766 var msg,
2767 e = data.exception,
2768 source = data.source,
2769 module = data.module,
2770 console = window.console;
2771
2772 if ( console && console.log ) {
2773 msg = ( e ? 'Exception' : 'Error' ) + ' in ' + source;
2774 if ( module ) {
2775 msg += ' in module ' + module;
2776 }
2777 msg += ( e ? ':' : '.' );
2778 console.log( msg );
2779
2780 // If we have an exception object, log it to the warning channel to trigger
2781 // proper stacktraces in browsers that support it.
2782 if ( e && console.warn ) {
2783 console.warn( e );
2784 }
2785 }
2786 /* eslint-enable no-console */
2787 }
2788
2789 // Subscribe to error streams
2790 mw.trackSubscribe( 'resourceloader.exception', logError );
2791 mw.trackSubscribe( 'resourceloader.assert', logError );
2792
2793 /**
2794 * Fired when all modules associated with the page have finished loading.
2795 *
2796 * @event resourceloader_loadEnd
2797 * @member mw.hook
2798 */
2799 $( function () {
2800 var loading, modules;
2801
2802 modules = mw.loader.getModuleNames().filter( function ( module ) {
2803 return mw.loader.getState( module ) === 'loading';
2804 } );
2805 // We only need a callback, not any actual module. First try a single using()
2806 // for all loading modules. If one fails, fall back to tracking each module
2807 // separately via $.when(), this is expensive.
2808 loading = mw.loader.using( modules ).catch( function () {
2809 var all = modules.map( function ( module ) {
2810 return mw.loader.using( module ).catch( function () {
2811 return $.Deferred().resolve();
2812 } );
2813 } );
2814 return $.when.apply( $, all );
2815 } );
2816 loading.then( function () {
2817 if ( window.performance && performance.mark ) {
2818 performance.mark( 'mwLoadEnd' );
2819 }
2820 mw.hook( 'resourceloader.loadEnd' ).fire();
2821 } );
2822 } );
2823
2824 // Attach to window and globally alias
2825 window.mw = window.mediaWiki = mw;
2826 }( jQuery ) );