fe5f2b2376fe4a7a9943cac059525f8a4e9cf059
[lhc/web/wiklou.git] / resources / src / mediawiki / mediawiki.util.js
1 ( function ( mw, $ ) {
2 'use strict';
3
4 /**
5 * Utility library
6 * @class mw.util
7 * @singleton
8 */
9 var util = {
10
11 /**
12 * Initialisation
13 * (don't call before document ready)
14 */
15 init: function () {
16 util.$content = ( function () {
17 var i, l, $node, selectors;
18
19 selectors = [
20 // The preferred standard is class "mw-body".
21 // You may also use class "mw-body mw-body-primary" if you use
22 // mw-body in multiple locations. Or class "mw-body-primary" if
23 // you use mw-body deeper in the DOM.
24 '.mw-body-primary',
25 '.mw-body',
26
27 // If the skin has no such class, fall back to the parser output
28 '#mw-content-text',
29
30 // Should never happen... well, it could if someone is not finished writing a
31 // skin and has not yet inserted bodytext yet.
32 'body'
33 ];
34
35 for ( i = 0, l = selectors.length; i < l; i++ ) {
36 $node = $( selectors[i] );
37 if ( $node.length ) {
38 return $node.first();
39 }
40 }
41
42 // Preserve existing customized value in case it was preset
43 return util.$content;
44 }() );
45 },
46
47 /* Main body */
48
49 /**
50 * Encode the string like PHP's rawurlencode
51 *
52 * @param {string} str String to be encoded.
53 */
54 rawurlencode: function ( str ) {
55 str = String( str );
56 return encodeURIComponent( str )
57 .replace( /!/g, '%21' ).replace( /'/g, '%27' ).replace( /\(/g, '%28' )
58 .replace( /\)/g, '%29' ).replace( /\*/g, '%2A' ).replace( /~/g, '%7E' );
59 },
60
61 /**
62 * Encode page titles for use in a URL
63 *
64 * We want / and : to be included as literal characters in our title URLs
65 * as they otherwise fatally break the title.
66 *
67 * The others are decoded because we can, it's prettier and matches behaviour
68 * of `wfUrlencode` in PHP.
69 *
70 * @param {string} str String to be encoded.
71 */
72 wikiUrlencode: function ( str ) {
73 return util.rawurlencode( str )
74 .replace( /%20/g, '_' )
75 // wfUrlencode replacements
76 .replace( /%3B/g, ';' )
77 .replace( /%40/g, '@' )
78 .replace( /%24/g, '$' )
79 .replace( /%21/g, '!' )
80 .replace( /%2A/g, '*' )
81 .replace( /%28/g, '(' )
82 .replace( /%29/g, ')' )
83 .replace( /%2C/g, ',' )
84 .replace( /%2F/g, '/' )
85 .replace( /%3A/g, ':' );
86 },
87
88 /**
89 * Get the link to a page name (relative to `wgServer`),
90 *
91 * @param {string} str Page name
92 * @param {Object} [params] A mapping of query parameter names to values,
93 * e.g. `{ action: 'edit' }`
94 * @return {string} Url of the page with name of `str`
95 */
96 getUrl: function ( str, params ) {
97 var url = mw.config.get( 'wgArticlePath' ).replace(
98 '$1',
99 util.wikiUrlencode( typeof str === 'string' ? str : mw.config.get( 'wgPageName' ) )
100 );
101
102 if ( params && !$.isEmptyObject( params ) ) {
103 url += ( url.indexOf( '?' ) !== -1 ? '&' : '?' ) + $.param( params );
104 }
105
106 return url;
107 },
108
109 /**
110 * Get address to a script in the wiki root.
111 * For index.php use `mw.config.get( 'wgScript' )`.
112 *
113 * @since 1.18
114 * @param str string Name of script (eg. 'api'), defaults to 'index'
115 * @return string Address to script (eg. '/w/api.php' )
116 */
117 wikiScript: function ( str ) {
118 str = str || 'index';
119 if ( str === 'index' ) {
120 return mw.config.get( 'wgScript' );
121 } else if ( str === 'load' ) {
122 return mw.config.get( 'wgLoadScript' );
123 } else {
124 return mw.config.get( 'wgScriptPath' ) + '/' + str +
125 mw.config.get( 'wgScriptExtension' );
126 }
127 },
128
129 /**
130 * Append a new style block to the head and return the CSSStyleSheet object.
131 * Use .ownerNode to access the `<style>` element, or use mw.loader#addStyleTag.
132 * This function returns the styleSheet object for convience (due to cross-browsers
133 * difference as to where it is located).
134 *
135 * var sheet = mw.util.addCSS( '.foobar { display: none; }' );
136 * $( foo ).click( function () {
137 * // Toggle the sheet on and off
138 * sheet.disabled = !sheet.disabled;
139 * } );
140 *
141 * @param {string} text CSS to be appended
142 * @return {CSSStyleSheet} Use .ownerNode to get to the `<style>` element.
143 */
144 addCSS: function ( text ) {
145 var s = mw.loader.addStyleTag( text );
146 return s.sheet || s.styleSheet || s;
147 },
148
149 /**
150 * Grab the URL parameter value for the given parameter.
151 * Returns null if not found.
152 *
153 * @param {string} param The parameter name.
154 * @param {string} [url=document.location.href] URL to search through, defaulting to the current document's URL.
155 * @return {Mixed} Parameter value or null.
156 */
157 getParamValue: function ( param, url ) {
158 if ( url === undefined ) {
159 url = document.location.href;
160 }
161 // Get last match, stop at hash
162 var re = new RegExp( '^[^#]*[&?]' + $.escapeRE( param ) + '=([^&#]*)' ),
163 m = re.exec( url );
164 if ( m ) {
165 // Beware that decodeURIComponent is not required to understand '+'
166 // by spec, as encodeURIComponent does not produce it.
167 return decodeURIComponent( m[1].replace( /\+/g, '%20' ) );
168 }
169 return null;
170 },
171
172 /**
173 * The content wrapper of the skin (e.g. `.mw-body`).
174 *
175 * Populated on document ready by #init. To use this property,
176 * wait for `$.ready` and be sure to have a module depedendency on
177 * `mediawiki.util` and `mediawiki.page.startup` which will ensure
178 * your document ready handler fires after #init.
179 *
180 * Because of the lazy-initialised nature of this property,
181 * you're discouraged from using it.
182 *
183 * If you need just the wikipage content (not any of the
184 * extra elements output by the skin), use `$( '#mw-content-text' )`
185 * instead. Or listen to mw.hook#wikipage_content which will
186 * allow your code to re-run when the page changes (e.g. live preview
187 * or re-render after ajax save).
188 *
189 * @property {jQuery}
190 */
191 $content: null,
192
193 /**
194 * Add a link to a portlet menu on the page, such as:
195 *
196 * p-cactions (Content actions), p-personal (Personal tools),
197 * p-navigation (Navigation), p-tb (Toolbox)
198 *
199 * The first three paramters are required, the others are optional and
200 * may be null. Though providing an id and tooltip is recommended.
201 *
202 * By default the new link will be added to the end of the list. To
203 * add the link before a given existing item, pass the DOM node
204 * (e.g. `document.getElementById( 'foobar' )`) or a jQuery-selector
205 * (e.g. `'#foobar'`) for that item.
206 *
207 * mw.util.addPortletLink(
208 * 'p-tb', 'http://mediawiki.org/',
209 * 'MediaWiki.org', 't-mworg', 'Go to MediaWiki.org ', 'm', '#t-print'
210 * );
211 *
212 * @param {string} portlet ID of the target portlet ( 'p-cactions' or 'p-personal' etc.)
213 * @param {string} href Link URL
214 * @param {string} text Link text
215 * @param {string} [id] ID of the new item, should be unique and preferably have
216 * the appropriate prefix ( 'ca-', 'pt-', 'n-' or 't-' )
217 * @param {string} [tooltip] Text to show when hovering over the link, without accesskey suffix
218 * @param {string} [accesskey] Access key to activate this link (one character, try
219 * to avoid conflicts. Use `$( '[accesskey=x]' ).get()` in the console to
220 * see if 'x' is already used.
221 * @param {HTMLElement|jQuery|string} [nextnode] Element or jQuery-selector string to the item that
222 * the new item should be added before, should be another item in the same
223 * list, it will be ignored otherwise
224 *
225 * @return {HTMLElement|null} The added element (a ListItem or Anchor element,
226 * depending on the skin) or null if no element was added to the document.
227 */
228 addPortletLink: function ( portlet, href, text, id, tooltip, accesskey, nextnode ) {
229 var $item, $link, $portlet, $ul;
230
231 // Check if there's atleast 3 arguments to prevent a TypeError
232 if ( arguments.length < 3 ) {
233 return null;
234 }
235 // Setup the anchor tag
236 $link = $( '<a>' ).attr( 'href', href ).text( text );
237 if ( tooltip ) {
238 $link.attr( 'title', tooltip );
239 }
240
241 // Select the specified portlet
242 $portlet = $( '#' + portlet );
243 if ( $portlet.length === 0 ) {
244 return null;
245 }
246 // Select the first (most likely only) unordered list inside the portlet
247 $ul = $portlet.find( 'ul' ).eq( 0 );
248
249 // If it didn't have an unordered list yet, create it
250 if ( $ul.length === 0 ) {
251
252 $ul = $( '<ul>' );
253
254 // If there's no <div> inside, append it to the portlet directly
255 if ( $portlet.find( 'div:first' ).length === 0 ) {
256 $portlet.append( $ul );
257 } else {
258 // otherwise if there's a div (such as div.body or div.pBody)
259 // append the <ul> to last (most likely only) div
260 $portlet.find( 'div' ).eq( -1 ).append( $ul );
261 }
262 }
263 // Just in case..
264 if ( $ul.length === 0 ) {
265 return null;
266 }
267
268 // Unhide portlet if it was hidden before
269 $portlet.removeClass( 'emptyPortlet' );
270
271 // Wrap the anchor tag in a list item (and a span if $portlet is a Vector tab)
272 // and back up the selector to the list item
273 if ( $portlet.hasClass( 'vectorTabs' ) ) {
274 $item = $link.wrap( '<li><span></span></li>' ).parent().parent();
275 } else {
276 $item = $link.wrap( '<li></li>' ).parent();
277 }
278
279 // Implement the properties passed to the function
280 if ( id ) {
281 $item.attr( 'id', id );
282 }
283
284 if ( accesskey ) {
285 $link.attr( 'accesskey', accesskey );
286 }
287
288 if ( tooltip ) {
289 $link.attr( 'title', tooltip ).updateTooltipAccessKeys();
290 }
291
292 if ( nextnode ) {
293 // Case: nextnode is a DOM element (was the only option before MW 1.17, in wikibits.js)
294 // Case: nextnode is a CSS selector for jQuery
295 if ( nextnode.nodeType || typeof nextnode === 'string' ) {
296 nextnode = $ul.find( nextnode );
297 } else if ( !nextnode.jquery ) {
298 // Error: Invalid nextnode
299 nextnode = undefined;
300 }
301 if ( nextnode && ( nextnode.length !== 1 || nextnode[0].parentNode !== $ul[0] ) ) {
302 // Error: nextnode must resolve to a single node
303 // Error: nextnode must have the associated <ul> as its parent
304 nextnode = undefined;
305 }
306 }
307
308 // Case: nextnode is a jQuery-wrapped DOM element
309 if ( nextnode ) {
310 nextnode.before( $item );
311 } else {
312 // Fallback (this is the default behavior)
313 $ul.append( $item );
314 }
315
316 return $item[0];
317 },
318
319 /**
320 * Validate a string as representing a valid e-mail address
321 * according to HTML5 specification. Please note the specification
322 * does not validate a domain with one character.
323 *
324 * FIXME: should be moved to or replaced by a validation module.
325 *
326 * @param {string} mailtxt E-mail address to be validated.
327 * @return {boolean|null} Null if `mailtxt` was an empty string, otherwise true/false
328 * as determined by validation.
329 */
330 validateEmail: function ( mailtxt ) {
331 var rfc5322Atext, rfc1034LdhStr, html5EmailRegexp;
332
333 if ( mailtxt === '' ) {
334 return null;
335 }
336
337 // HTML5 defines a string as valid e-mail address if it matches
338 // the ABNF:
339 // 1 * ( atext / "." ) "@" ldh-str 1*( "." ldh-str )
340 // With:
341 // - atext : defined in RFC 5322 section 3.2.3
342 // - ldh-str : defined in RFC 1034 section 3.5
343 //
344 // (see STD 68 / RFC 5234 http://tools.ietf.org/html/std68)
345 // First, define the RFC 5322 'atext' which is pretty easy:
346 // atext = ALPHA / DIGIT / ; Printable US-ASCII
347 // "!" / "#" / ; characters not including
348 // "$" / "%" / ; specials. Used for atoms.
349 // "&" / "'" /
350 // "*" / "+" /
351 // "-" / "/" /
352 // "=" / "?" /
353 // "^" / "_" /
354 // "`" / "{" /
355 // "|" / "}" /
356 // "~"
357 rfc5322Atext = 'a-z0-9!#$%&\'*+\\-/=?^_`{|}~';
358
359 // Next define the RFC 1034 'ldh-str'
360 // <domain> ::= <subdomain> | " "
361 // <subdomain> ::= <label> | <subdomain> "." <label>
362 // <label> ::= <letter> [ [ <ldh-str> ] <let-dig> ]
363 // <ldh-str> ::= <let-dig-hyp> | <let-dig-hyp> <ldh-str>
364 // <let-dig-hyp> ::= <let-dig> | "-"
365 // <let-dig> ::= <letter> | <digit>
366 rfc1034LdhStr = 'a-z0-9\\-';
367
368 html5EmailRegexp = new RegExp(
369 // start of string
370 '^'
371 +
372 // User part which is liberal :p
373 '[' + rfc5322Atext + '\\.]+'
374 +
375 // 'at'
376 '@'
377 +
378 // Domain first part
379 '[' + rfc1034LdhStr + ']+'
380 +
381 // Optional second part and following are separated by a dot
382 '(?:\\.[' + rfc1034LdhStr + ']+)*'
383 +
384 // End of string
385 '$',
386 // RegExp is case insensitive
387 'i'
388 );
389 return ( mailtxt.match( html5EmailRegexp ) !== null );
390 },
391
392 /**
393 * Note: borrows from IP::isIPv4
394 *
395 * @param {string} address
396 * @param {boolean} allowBlock
397 * @return {boolean}
398 */
399 isIPv4Address: function ( address, allowBlock ) {
400 if ( typeof address !== 'string' ) {
401 return false;
402 }
403
404 var block = allowBlock ? '(?:\\/(?:3[0-2]|[12]?\\d))?' : '',
405 RE_IP_BYTE = '(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|0?[0-9]?[0-9])',
406 RE_IP_ADD = '(?:' + RE_IP_BYTE + '\\.){3}' + RE_IP_BYTE;
407
408 return address.search( new RegExp( '^' + RE_IP_ADD + block + '$' ) ) !== -1;
409 },
410
411 /**
412 * Note: borrows from IP::isIPv6
413 *
414 * @param {string} address
415 * @param {boolean} allowBlock
416 * @return {boolean}
417 */
418 isIPv6Address: function ( address, allowBlock ) {
419 if ( typeof address !== 'string' ) {
420 return false;
421 }
422
423 var block = allowBlock ? '(?:\\/(?:12[0-8]|1[01][0-9]|[1-9]?\\d))?' : '',
424 RE_IPV6_ADD =
425 '(?:' + // starts with "::" (including "::")
426 ':(?::|(?::' + '[0-9A-Fa-f]{1,4}' + '){1,7})' +
427 '|' + // ends with "::" (except "::")
428 '[0-9A-Fa-f]{1,4}' + '(?::' + '[0-9A-Fa-f]{1,4}' + '){0,6}::' +
429 '|' + // contains no "::"
430 '[0-9A-Fa-f]{1,4}' + '(?::' + '[0-9A-Fa-f]{1,4}' + '){7}' +
431 ')';
432
433 if ( address.search( new RegExp( '^' + RE_IPV6_ADD + block + '$' ) ) !== -1 ) {
434 return true;
435 }
436
437 RE_IPV6_ADD = // contains one "::" in the middle (single '::' check below)
438 '[0-9A-Fa-f]{1,4}' + '(?:::?' + '[0-9A-Fa-f]{1,4}' + '){1,6}';
439
440 return address.search( new RegExp( '^' + RE_IPV6_ADD + block + '$' ) ) !== -1
441 && address.search( /::/ ) !== -1 && address.search( /::.*::/ ) === -1;
442 }
443 };
444
445 /**
446 * @method wikiGetlink
447 * @inheritdoc #getUrl
448 * @deprecated since 1.23 Use #getUrl instead.
449 */
450 mw.log.deprecate( util, 'wikiGetlink', util.getUrl, 'Use mw.util.getUrl instead.' );
451
452 /**
453 * Access key prefix. Might be wrong for browsers implementing the accessKeyLabel property.
454 * @property {string} tooltipAccessKeyPrefix
455 * @deprecated since 1.24 Use the module jquery.accessKeyLabel instead.
456 */
457 mw.log.deprecate( util, 'tooltipAccessKeyPrefix', $.fn.updateTooltipAccessKeys.getAccessKeyPrefix(), 'Use jquery.accessKeyLabel instead.' );
458
459 /**
460 * Regex to match accesskey tooltips.
461 *
462 * Should match:
463 *
464 * - "[ctrl-option-x]"
465 * - "[alt-shift-x]"
466 * - "[ctrl-alt-x]"
467 * - "[ctrl-x]"
468 *
469 * The accesskey is matched in group $6.
470 *
471 * Will probably not work for browsers implementing the accessKeyLabel property.
472 *
473 * @property {RegExp} tooltipAccessKeyRegexp
474 * @deprecated since 1.24 Use the module jquery.accessKeyLabel instead.
475 */
476 mw.log.deprecate( util, 'tooltipAccessKeyRegexp', /\[(ctrl-)?(option-)?(alt-)?(shift-)?(esc-)?(.)\]$/, 'Use jquery.accessKeyLabel instead.' );
477
478 /**
479 * Add the appropriate prefix to the accesskey shown in the tooltip.
480 *
481 * If the `$nodes` parameter is given, only those nodes are updated;
482 * otherwise, depending on browser support, we update either all elements
483 * with accesskeys on the page or a bunch of elements which are likely to
484 * have them on core skins.
485 *
486 * @method updateTooltipAccessKeys
487 * @param {Array|jQuery} [$nodes] A jQuery object, or array of nodes to update.
488 * @deprecated since 1.24 Use the module jquery.accessKeyLabel instead.
489 */
490 mw.log.deprecate( util, 'updateTooltipAccessKeys', function ( $nodes ) {
491 if ( !$nodes ) {
492 if ( document.querySelectorAll ) {
493 // If we're running on a browser where we can do this efficiently,
494 // just find all elements that have accesskeys. We can't use jQuery's
495 // polyfill for the selector since looping over all elements on page
496 // load might be too slow.
497 $nodes = $( document.querySelectorAll( '[accesskey]' ) );
498 } else {
499 // Otherwise go through some elements likely to have accesskeys rather
500 // than looping over all of them. Unfortunately this will not fully
501 // work for custom skins with different HTML structures. Input, label
502 // and button should be rare enough that no optimizations are needed.
503 $nodes = $( '#column-one a, #mw-head a, #mw-panel a, #p-logo a, input, label, button' );
504 }
505 } else if ( !( $nodes instanceof $ ) ) {
506 $nodes = $( $nodes );
507 }
508
509 $nodes.updateTooltipAccessKeys();
510 }, 'Use jquery.accessKeyLabel instead.' );
511
512 /**
513 * Add a little box at the top of the screen to inform the user of
514 * something, replacing any previous message.
515 * Calling with no arguments, with an empty string or null will hide the message
516 *
517 * @method jsMessage
518 * @deprecated since 1.20 Use mw#notify
519 * @param {Mixed} message The DOM-element, jQuery object or HTML-string to be put inside the message box.
520 * to allow CSS/JS to hide different boxes. null = no class used.
521 */
522 mw.log.deprecate( util, 'jsMessage', function ( message ) {
523 if ( !arguments.length || message === '' || message === null ) {
524 return true;
525 }
526 if ( typeof message !== 'object' ) {
527 message = $.parseHTML( message );
528 }
529 mw.notify( message, { autoHide: true, tag: 'legacy' } );
530 return true;
531 }, 'Use mw.notify instead.' );
532
533 mw.util = util;
534
535 }( mediaWiki, jQuery ) );