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