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