-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmediawiki.js
1702 lines (1566 loc) · 53 KB
/
mediawiki.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Core MediaWiki JavaScript Library
*/
var mw = ( function ( $, undefined ) {
"use strict";
/* Private Members */
var hasOwn = Object.prototype.hasOwnProperty,
slice = Array.prototype.slice;
/* Object constructors */
/**
* Map
*
* Creates an object that can be read from or written to from prototype functions
* that allow both single and multiple variables at once.
*
* @param global boolean Whether to store the values in the global window
* object or a exclusively in the object property 'values'.
* @return Map
*/
function Map( global ) {
this.values = global === true ? window : {};
return this;
}
Map.prototype = {
/**
* Get the value of one or multiple a keys.
*
* If called with no arguments, all values will be returned.
*
* @param selection mixed String key or array of keys to get values for.
* @param fallback mixed Value to use in case key(s) do not exist (optional).
* @return mixed If selection was a string returns the value or null,
* If selection was an array, returns an object of key/values (value is null if not found),
* If selection was not passed or invalid, will return the 'values' object member (be careful as
* objects are always passed by reference in JavaScript!).
* @return Values as a string or object, null if invalid/inexistant.
*/
get: function ( selection, fallback ) {
var results, i;
if ( $.isArray( selection ) ) {
selection = $.makeArray( selection );
results = {};
for ( i = 0; i < selection.length; i += 1 ) {
results[selection[i]] = this.get( selection[i], fallback );
}
return results;
} else if ( typeof selection === 'string' ) {
if ( this.values[selection] === undefined ) {
if ( fallback !== undefined ) {
return fallback;
}
return null;
}
return this.values[selection];
}
if ( selection === undefined ) {
return this.values;
} else {
return null; // invalid selection key
}
},
/**
* Sets one or multiple key/value pairs.
*
* @param selection {mixed} String key or array of keys to set values for.
* @param value {mixed} Value to set (optional, only in use when key is a string)
* @return {Boolean} This returns true on success, false on failure.
*/
set: function ( selection, value ) {
var s;
if ( $.isPlainObject( selection ) ) {
for ( s in selection ) {
this.values[s] = selection[s];
}
return true;
} else if ( typeof selection === 'string' && value !== undefined ) {
this.values[selection] = value;
return true;
}
return false;
},
/**
* Checks if one or multiple keys exist.
*
* @param selection {mixed} String key or array of keys to check
* @return {Boolean} Existence of key(s)
*/
exists: function ( selection ) {
var s;
if ( $.isArray( selection ) ) {
for ( s = 0; s < selection.length; s += 1 ) {
if ( this.values[selection[s]] === undefined ) {
return false;
}
}
return true;
} else {
return this.values[selection] !== undefined;
}
}
};
/**
* Object constructor for messages.
*
* Similar to the Message class in MediaWiki PHP.
*
* Format defaults to 'text'.
*
* @example
*
* var obj, str;
* mw.messages.set( {
* 'hello': 'Hello world',
* 'hello-user': 'Hello, $1!',
* 'welcome-user': 'Welcome back to $2, $1! Last visit by $1: $3'
* } );
*
* obj = new mw.Message( mw.messages, 'hello' );
* mw.log( obj.text() );
* // Hello world
*
* obj = new mw.Message( mw.messages, 'hello-user', [ 'John Doe' ] );
* mw.log( obj.text() );
* // Hello, John Doe!
*
* obj = new mw.Message( mw.messages, 'welcome-user', [ 'John Doe', 'Wikipedia', '2 hours ago' ] );
* mw.log( obj.text() );
* // Welcome back to Wikipedia, John Doe! Last visit by John Doe: 2 hours ago
*
* // Using mw.message shortcut
* obj = mw.message( 'hello-user', 'John Doe' );
* mw.log( obj.text() );
* // Hello, John Doe!
*
* // Using mw.msg shortcut
* str = mw.msg( 'hello-user', 'John Doe' );
* mw.log( str );
* // Hello, John Doe!
*
* // Different formats
* obj = new mw.Message( mw.messages, 'hello-user', [ 'John "Wiki" <3 Doe' ] );
*
* obj.format = 'text';
* str = obj.toString();
* // Same as:
* str = obj.text();
*
* mw.log( str );
* // Hello, John "Wiki" <3 Doe!
*
* mw.log( obj.escaped() );
* // Hello, John "Wiki" <3 Doe!
*
* @class mw.Message
*
* @constructor
* @param {mw.Map} map Message storage
* @param {string} key
* @param {Array} [parameters]
*/
function Message( map, key, parameters ) {
this.format = 'text';
this.map = map;
this.key = key;
this.parameters = parameters === undefined ? [] : slice.call( parameters );
return this;
}
Message.prototype = {
/**
* Simple message parser, does $N replacement and nothing else.
*
* This may be overridden to provide a more complex message parser.
*
* The primary override is in mediawiki.jqueryMsg.
*
* This function will not be called for nonexistent messages.
*
* @param {string} messageContent - message content
* @param {boolean} insertRaw (default: false) - Raw params are stored separately and should be put in place
* after message escaping happen. This param is flag which decided which params should be inserted normal vs raw
*/
parser: function ( messageContent, insertRaw ) {
messageContent = typeof messageContent !== 'undefined' ? messageContent : this.map.get( this.key );
insertRaw = typeof insertRaw !== 'undefined' ? insertRaw: false;
var parameters = this.parameters;
return messageContent.replace( /\$(\d+)/g, function ( str, match ) {
var index = parseInt( match, 10 ) - 1,
defaultOut = '$' + match;
if (parameters[index] !== undefined) {
// Decide if raw params should be inserted at this point
if (typeof(parameters[index]) === 'object' && parameters[index].hasOwnProperty('raw')) {
return insertRaw ? parameters[index].raw : defaultOut;
} else {
return parameters[index];
}
} else {
return defaultOut;
}
} );
},
/**
* Appends (does not replace) parameters for replacement to the .parameters property.
*
* @param {Array} parameters
* @chainable
*/
params: function ( parameters ) {
var i;
for ( i = 0; i < parameters.length; i += 1 ) {
this.parameters.push( parameters[i] );
}
return this;
},
/**
* Appends (does not replace) raw parameters (they won't be escaped when using escaped format) for replacement
* to the .parameters property.
*
* @param {Array} parameters
* @chainable
*/
rawParams: function ( parameters ) {
var i;
for ( i = 0; i < parameters.length; i += 1 ) {
this.parameters.push( { raw: parameters[i] } );
}
return this;
},
/**
* Converts message object to its string form based on the state of format.
*
* @return {string} Message as a string in the current form or `<key>` if key does not exist.
*/
toString: function () {
var text;
if ( !this.exists() ) {
// Use <key> as text if key does not exist
if ( this.format === 'escaped' || this.format === 'parse' ) {
// format 'escaped' and 'parse' need to have the brackets and key html escaped
return mw.html.escape( '<' + this.key + '>' );
}
return '<' + this.key + '>';
}
text = this.parser( this.map.get( this.key ), false );
if ( this.format === 'escaped' ) {
text = mw.html.escape( text );
}
// The raw replacesments shouldn't go through any more transformations
this.format = 'plain';
text = this.parser( text, true );
return text;
},
/**
* Changes format to 'parse' and converts message to string
*
* If jqueryMsg is loaded, this parses the message text from wikitext
* (where supported) to HTML
*
* Otherwise, it is equivalent to plain.
*
* @return {string} String form of parsed message
*/
parse: function () {
this.format = 'parse';
return this.toString();
},
/**
* Changes format to 'plain' and converts message to string
*
* This substitutes parameters, but otherwise does not change the
* message text.
*
* @return {string} String form of plain message
*/
plain: function () {
this.format = 'plain';
return this.toString();
},
/**
* Changes format to 'text' and converts message to string
*
* If jqueryMsg is loaded, {{-transformation is done where supported
* (such as {{plural:}}, {{gender:}}, {{int:}}).
*
* Otherwise, it is equivalent to plain.
*/
text: function () {
this.format = 'text';
return this.toString();
},
/**
* Changes the format to 'escaped' and converts message to string
*
* This is equivalent to using the 'text' format (see text method), then
* HTML-escaping the output, then inserting raw params defined by .rawParams() method.
*
* @return {string} String form of html escaped message
*/
escaped: function () {
this.format = 'escaped';
return this.toString();
},
/**
* Checks if message exists
*
* @see mw.Map#exists
* @return {boolean}
*/
exists: function () {
return this.map.exists( this.key );
}
};
return {
/* Public Members */
/**
* Dummy function which in debug mode can be replaced with a function that
* emulates console.log in console-less environments.
*/
log: function() { },
/**
* @var constructor Make the Map constructor publicly available.
*/
Map: Map,
/**
* @var constructor Make the Message constructor publicly available.
*/
Message: Message,
/**
* List of configuration values
*
* Dummy placeholder. Initiated in startUp module as a new instance of mw.Map().
* If $wgLegacyJavaScriptGlobals is true, this Map will have its values
* in the global window object.
*/
config: null,
/**
* @var object
*
* Empty object that plugins can be installed in.
*/
libs: {},
/* Extension points */
legacy: {},
/**
* Localization system
*/
messages: new Map(),
/* Public Methods */
/**
* Get a message object.
*
* Shorcut for `new mw.Message( mw.messages, key, parameters )`.
*
* @see mw.Message
* @param {string} key Key of message to get
* @param {Mixed...} parameters Parameters for the $N replacements in messages.
* @return {mw.Message}
*/
message: function ( key ) {
// Variadic arguments
var parameters = slice.call( arguments, 1 );
return new Message( mw.messages, key, parameters );
},
/**
* Get a message string using the (default) 'text' format.
*
* Shortcut for `mw.message( key, parameters... ).text()`.
*
* @see mw.Message
* @param {string} key Key of message to get
* @param {Mixed...} parameters Parameters for the $N replacements in messages.
* @return {string}
*/
msg: function () {
return mw.message.apply( mw.message, arguments ).toString();
},
/**
* Client-side module loader which integrates with the MediaWiki ResourceLoader
*/
loader: ( function() {
/* Private Members */
/**
* Mapping of registered modules
*
* The jquery module is pre-registered, because it must have already
* been provided for this object to have been built, and in debug mode
* jquery would have been provided through a unique loader request,
* making it impossible to hold back registration of jquery until after
* mediawiki.
*
* For exact details on support for script, style and messages, look at
* mw.loader.implement.
*
* Format:
* {
* 'moduleName': {
* 'version': ############## (unix timestamp),
* 'dependencies': ['required.foo', 'bar.also', ...], (or) function() {}
* 'group': 'somegroup', (or) null,
* 'source': 'local', 'someforeignwiki', (or) null
* 'state': 'registered', 'loading', 'loaded', 'ready', 'error' or 'missing'
* 'script': ...,
* 'style': ...,
* 'messages': { 'key': 'value' },
* }
* }
*/
var registry = {},
/**
* Mapping of sources, keyed by source-id, values are objects.
* Format:
* {
* 'sourceId': {
* 'loadScript': 'http://foo.bar/w/load.php'
* }
* }
*/
sources = {},
// List of modules which will be loaded as when ready
batch = [],
// List of modules to be loaded
queue = [],
// List of callback functions waiting for modules to be ready to be called
jobs = [],
// Flag indicating that document ready has occured
ready = false,
// Selector cache for the marker element. Use getMarker() to get/use the marker!
$marker = null;
/* Cache document ready status */
$(document).ready( function () {
ready = true;
} );
/* Private methods */
function getMarker() {
// Cached ?
if ( $marker ) {
return $marker;
} else {
$marker = $( 'meta[name="ResourceLoaderDynamicStyles"]' );
if ( $marker.length ) {
return $marker;
}
mw.log( 'getMarker> No <meta name="ResourceLoaderDynamicStyles"> found, inserting dynamically.' );
$marker = $( '<meta>' ).attr( 'name', 'ResourceLoaderDynamicStyles' ).appendTo( 'head' );
return $marker;
}
}
function addInlineCSS( css, media ) {
var $style = getMarker().prev(),
$newStyle,
attrs = { 'type': 'text/css', 'media': media };
if ( $style.is( 'style' ) && $style.data( 'ResourceLoaderDynamicStyleTag' ) === true ) {
// There's already a dynamic <style> tag present, append to it
// This recycling of <style> tags is for bug 31676 (can't have
// more than 32 <style> tags in IE)
// Also, calling .append() on a <style> tag explodes with a JS error in IE,
// so if the .append() fails we fall back to building a new <style> tag and
// replacing the existing one
try {
// Do cdata sanitization on the provided CSS, and prepend a double newline
css = $( mw.html.element( 'style', {}, new mw.html.Cdata( "\n\n" + css ) ) ).html();
$style.append( css );
} catch ( e ) {
// Generate a new tag with the combined CSS
css = $style.html() + "\n\n" + css;
$newStyle = $( mw.html.element( 'style', attrs, new mw.html.Cdata( css ) ) )
.data( 'ResourceLoaderDynamicStyleTag', true );
// Prevent a flash of unstyled content by inserting the new tag
// before removing the old one
$style.after( $newStyle );
$style.remove();
}
} else {
// Create a new <style> tag and insert it
$style = $( mw.html.element( 'style', attrs, new mw.html.Cdata( css ) ) );
$style.data( 'ResourceLoaderDynamicStyleTag', true );
getMarker().before( $style );
}
}
function compare( a, b ) {
var i;
if ( a.length !== b.length ) {
return false;
}
for ( i = 0; i < b.length; i += 1 ) {
if ( $.isArray( a[i] ) ) {
if ( !compare( a[i], b[i] ) ) {
return false;
}
}
if ( a[i] !== b[i] ) {
return false;
}
}
return true;
}
/**
* Generates an ISO8601 "basic" string from a UNIX timestamp
*/
function formatVersionNumber( timestamp ) {
var pad = function ( a, b, c ) {
return [a < 10 ? '0' + a : a, b < 10 ? '0' + b : b, c < 10 ? '0' + c : c].join( '' );
},
d = new Date();
d.setTime( timestamp * 1000 );
return [
pad( d.getUTCFullYear(), d.getUTCMonth() + 1, d.getUTCDate() ), 'T',
pad( d.getUTCHours(), d.getUTCMinutes(), d.getUTCSeconds() ), 'Z'
].join( '' );
}
/**
* Recursively resolves dependencies and detects circular references
*/
function recurse( module, resolved, unresolved ) {
var n, deps, len;
if ( registry[module] === undefined ) {
throw new Error( 'Unknown dependency: ' + module );
}
// Resolves dynamic loader function and replaces it with its own results
if ( $.isFunction( registry[module].dependencies ) ) {
registry[module].dependencies = registry[module].dependencies();
// Ensures the module's dependencies are always in an array
if ( typeof registry[module].dependencies !== 'object' ) {
registry[module].dependencies = [registry[module].dependencies];
}
}
// Tracks down dependencies
deps = registry[module].dependencies;
len = deps.length;
for ( n = 0; n < len; n += 1 ) {
if ( $.inArray( deps[n], resolved ) === -1 ) {
if ( $.inArray( deps[n], unresolved ) !== -1 ) {
throw new Error(
'Circular reference detected: ' + module +
' -> ' + deps[n]
);
}
// Add to unresolved
unresolved[unresolved.length] = module;
recurse( deps[n], resolved, unresolved );
// module is at the end of unresolved
unresolved.pop();
}
}
resolved[resolved.length] = module;
}
/**
* Gets a list of module names that a module depends on in their proper dependency order
*
* @param module string module name or array of string module names
* @return list of dependencies, including 'module'.
* @throws Error if circular reference is detected
*/
function resolve( module ) {
var modules, m, deps, n, resolved;
// Allow calling with an array of module names
if ( $.isArray( module ) ) {
modules = [];
for ( m = 0; m < module.length; m += 1 ) {
deps = resolve( module[m] );
for ( n = 0; n < deps.length; n += 1 ) {
modules[modules.length] = deps[n];
}
}
return modules;
} else if ( typeof module === 'string' ) {
resolved = [];
recurse( module, resolved, [] );
return resolved;
}
throw new Error( 'Invalid module argument: ' + module );
}
/**
* Narrows a list of module names down to those matching a specific
* state (see comment on top of this scope for a list of valid states).
* One can also filter for 'unregistered', which will return the
* modules names that don't have a registry entry.
*
* @param states string or array of strings of module states to filter by
* @param modules array list of module names to filter (optional, by default the entire
* registry is used)
* @return array list of filtered module names
*/
function filter( states, modules ) {
var list, module, s, m;
// Allow states to be given as a string
if ( typeof states === 'string' ) {
states = [states];
}
// If called without a list of modules, build and use a list of all modules
list = [];
if ( modules === undefined ) {
modules = [];
for ( module in registry ) {
modules[modules.length] = module;
}
}
// Build a list of modules which are in one of the specified states
for ( s = 0; s < states.length; s += 1 ) {
for ( m = 0; m < modules.length; m += 1 ) {
if ( registry[modules[m]] === undefined ) {
// Module does not exist
if ( states[s] === 'unregistered' ) {
// OK, undefined
list[list.length] = modules[m];
}
} else {
// Module exists, check state
if ( registry[modules[m]].state === states[s] ) {
// OK, correct state
list[list.length] = modules[m];
}
}
}
}
return list;
}
/**
* Automatically executes jobs and modules which are pending with satistifed dependencies.
*
* This is used when dependencies are satisfied, such as when a module is executed.
*/
function handlePending( module ) {
var j, r;
try {
// Run jobs whose dependencies have just been met
for ( j = 0; j < jobs.length; j += 1 ) {
if ( compare(
filter( 'ready', jobs[j].dependencies ),
jobs[j].dependencies ) )
{
var callback = jobs[j].ready;
jobs.splice( j, 1 );
j -= 1;
if ( $.isFunction( callback ) ) {
callback();
}
}
}
// Execute modules whose dependencies have just been met
for ( r in registry ) {
if ( registry[r].state === 'loaded' ) {
if ( compare(
filter( ['ready'], registry[r].dependencies ),
registry[r].dependencies ) )
{
execute( r );
}
}
}
} catch ( e ) {
// Run error callbacks of jobs affected by this condition
for ( j = 0; j < jobs.length; j += 1 ) {
if ( $.inArray( module, jobs[j].dependencies ) !== -1 ) {
if ( $.isFunction( jobs[j].error ) ) {
jobs[j].error( e, module );
}
jobs.splice( j, 1 );
j -= 1;
}
}
throw e;
}
}
/**
* Adds a script tag to the DOM, either using document.write or low-level DOM manipulation,
* depending on whether document-ready has occured yet and whether we are in async mode.
*
* @param src String: URL to script, will be used as the src attribute in the script tag
* @param callback Function: Optional callback which will be run when the script is done
*/
function addScript( src, callback, async ) {
var done = false, script, head;
if ( ready || async ) {
// jQuery's getScript method is NOT better than doing this the old-fashioned way
// because jQuery will eval the script's code, and errors will not have sane
// line numbers.
script = document.createElement( 'script' );
script.setAttribute( 'src', src );
script.setAttribute( 'type', 'text/javascript' );
if ( $.isFunction( callback ) ) {
// Attach handlers for all browsers (based on jQuery.ajax)
script.onload = script.onreadystatechange = function() {
if (
!done
&& (
!script.readyState
|| /loaded|complete/.test( script.readyState )
)
) {
done = true;
callback();
// Handle memory leak in IE. This seems to fail in
// IE7 sometimes (Permission Denied error when
// accessing script.parentNode) so wrap it in
// a try catch.
try {
script.onload = script.onreadystatechange = null;
if ( script.parentNode ) {
script.parentNode.removeChild( script );
}
// Dereference the script
script = undefined;
} catch ( e ) { }
}
};
}
if ( window.opera ) {
// Appending to the <head> blocks rendering completely in Opera,
// so append to the <body> after document ready. This means the
// scripts only start loading after the document has been rendered,
// but so be it. Opera users don't deserve faster web pages if their
// browser makes it impossible
$( function() { document.body.appendChild( script ); } );
} else {
// IE-safe way of getting the <head> . document.documentElement.head doesn't
// work in scripts that run in the <head>
head = document.getElementsByTagName( 'head' )[0];
( document.body || head ).appendChild( script );
}
} else {
document.write( mw.html.element(
'script', { 'type': 'text/javascript', 'src': src }, ''
) );
if ( $.isFunction( callback ) ) {
// Document.write is synchronous, so this is called when it's done
// FIXME: that's a lie. doc.write isn't actually synchronous
callback();
}
}
}
/**
* Executes a loaded module, making it ready to use
*
* @param module string module name to execute
*/
function execute( module, callback ) {
var style, media, i, script, markModuleReady, nestedAddScript;
if ( registry[module] === undefined ) {
throw new Error( 'Module has not been registered yet: ' + module );
} else if ( registry[module].state === 'registered' ) {
throw new Error( 'Module has not been requested from the server yet: ' + module );
} else if ( registry[module].state === 'loading' ) {
throw new Error( 'Module has not completed loading yet: ' + module );
} else if ( registry[module].state === 'ready' ) {
throw new Error( 'Module has already been loaded: ' + module );
}
// Add styles
if ( $.isPlainObject( registry[module].style ) ) {
for ( media in registry[module].style ) {
style = registry[module].style[media];
if ( $.isArray( style ) ) {
for ( i = 0; i < style.length; i += 1 ) {
getMarker().before( mw.html.element( 'link', {
'type': 'text/css',
'media': media,
'rel': 'stylesheet',
'href': style[i]
} ) );
}
} else if ( typeof style === 'string' ) {
addInlineCSS( style, media );
}
}
}
// Add localizations to message system
if ( $.isPlainObject( registry[module].messages ) ) {
mw.messages.set( registry[module].messages );
}
// Execute script
try {
script = registry[module].script;
markModuleReady = function() {
registry[module].state = 'ready';
handlePending( module );
if ( $.isFunction( callback ) ) {
callback();
}
};
nestedAddScript = function ( arr, callback, async, i ) {
// Recursively call addScript() in its own callback
// for each element of arr.
if ( i >= arr.length ) {
// We're at the end of the array
callback();
return;
}
addScript( arr[i], function() {
nestedAddScript( arr, callback, async, i + 1 );
}, async );
};
if ( $.isArray( script ) ) {
registry[module].state = 'loading';
nestedAddScript( script, markModuleReady, registry[module].async, 0 );
} else if ( $.isFunction( script ) ) {
script( $ );
markModuleReady();
}
} catch ( e ) {
// This needs to NOT use mw.log because these errors are common in production mode
// and not in debug mode, such as when a symbol that should be global isn't exported
if ( window.console && typeof window.console.log === 'function' ) {
console.log( 'mw.loader::execute> Exception thrown by ' + module + ': ' + e.message, e );
}
registry[module].state = 'error';
}
}
/**
* Adds a dependencies to the queue with optional callbacks to be run
* when the dependencies are ready or fail
*
* @param dependencies string module name or array of string module names
* @param ready function callback to execute when all dependencies are ready
* @param error function callback to execute when any dependency fails
* @param async (optional) If true, load modules asynchronously even if
* document ready has not yet occurred
*/
function request( dependencies, ready, error, async ) {
var regItemDeps, regItemDepLen, n;
// Allow calling by single module name
if ( typeof dependencies === 'string' ) {
dependencies = [dependencies];
if ( registry[dependencies[0]] !== undefined ) {
// Cache repetitively accessed deep level object member
regItemDeps = registry[dependencies[0]].dependencies;
// Cache to avoid looped access to length property
regItemDepLen = regItemDeps.length;
for ( n = 0; n < regItemDepLen; n += 1 ) {
dependencies[dependencies.length] = regItemDeps[n];
}
}
}
// Add ready and error callbacks if they were given
if ( arguments.length > 1 ) {
jobs[jobs.length] = {
'dependencies': filter(
['registered', 'loading', 'loaded'],
dependencies
),
'ready': ready,
'error': error
};
}
// Queue up any dependencies that are registered
dependencies = filter( ['registered'], dependencies );
for ( n = 0; n < dependencies.length; n += 1 ) {
if ( $.inArray( dependencies[n], queue ) === -1 ) {
queue[queue.length] = dependencies[n];
if ( async ) {
// Mark this module as async in the registry
registry[dependencies[n]].async = true;
}
}
}
// Work the queue
mw.loader.work();
}
function sortQuery(o) {
var sorted = {}, key, a = [];
for ( key in o ) {
if ( hasOwn.call( o, key ) ) {
a.push( key );
}
}
a.sort();
for ( key = 0; key < a.length; key += 1 ) {
sorted[a[key]] = o[a[key]];
}
return sorted;
}
/**
* Converts a module map of the form { foo: [ 'bar', 'baz' ], bar: [ 'baz, 'quux' ] }
* to a query string of the form foo.bar,baz|bar.baz,quux
*/
function buildModulesString( moduleMap ) {
var arr = [], p, prefix;
for ( prefix in moduleMap ) {
p = prefix === '' ? '' : prefix + '.';
arr.push( p + moduleMap[prefix].join( ',' ) );
}
return arr.join( '|' );
}
/**
* Asynchronously append a script tag to the end of the body
* that invokes load.php
* @param moduleMap {Object}: Module map, see buildModulesString()
* @param currReqBase {Object}: Object with other parameters (other than 'modules') to use in the request
* @param sourceLoadScript {String}: URL of load.php
* @param async {Boolean}: If true, use an asynchrounous request even if document ready has not yet occurred
*/
function doRequest( moduleMap, currReqBase, sourceLoadScript, async ) {
var request = $.extend(
{ 'modules': buildModulesString( moduleMap ) },
currReqBase
);
request = sortQuery( request );
// Wikia - change begin - @author: wladek - support for loading shared assets from nocookie.net with rewrite
if ( sourceLoadScript.substr(sourceLoadScript.length-1) == '/' ) {
var modules = request.modules;
delete request.modules
request = sortQuery( request );
var params = encodeURIComponent( $.param(request) );
addScript( sourceLoadScript + params + '/' + modules, null, async );
return;
}
// Wikia - change end
// Asynchronously append a script tag to the end of the body
// Append &* to avoid triggering the IE6 extension check
addScript( sourceLoadScript + '?' + $.param( request ) + '&*', null, async );
}
/* Public Methods */
return {
/**
* Requests dependencies from server, loading and executing when things when ready.
*/
work: function () {
var reqBase, splits, maxQueryLength, q, b, bSource, bGroup, bSourceGroup,
source, group, g, i, modules, maxVersion, sourceLoadScript,
currReqBase, currReqBaseLength, moduleMap, l,
lastDotIndex, prefix, suffix, bytesAdded, async;