build: Replace jscs+jshint with eslint
[lhc/web/wiklou.git] / resources / src / mediawiki / mediawiki.Uri.js
1 /**
2 * Library for simple URI parsing and manipulation.
3 *
4 * Intended to be minimal, but featureful; do not expect full RFC 3986 compliance. The use cases we
5 * have in mind are constructing 'next page' or 'previous page' URLs, detecting whether we need to
6 * use cross-domain proxies for an API, constructing simple URL-based API calls, etc. Parsing here
7 * is regex-based, so may not work on all URIs, but is good enough for most.
8 *
9 * You can modify the properties directly, then use the #toString method to extract the full URI
10 * string again. Example:
11 *
12 * var uri = new mw.Uri( 'http://example.com/mysite/mypage.php?quux=2' );
13 *
14 * if ( uri.host == 'example.com' ) {
15 * uri.host = 'foo.example.com';
16 * uri.extend( { bar: 1 } );
17 *
18 * $( 'a#id1' ).attr( 'href', uri );
19 * // anchor with id 'id1' now links to http://foo.example.com/mysite/mypage.php?bar=1&quux=2
20 *
21 * $( 'a#id2' ).attr( 'href', uri.clone().extend( { bar: 3, pif: 'paf' } ) );
22 * // anchor with id 'id2' now links to http://foo.example.com/mysite/mypage.php?bar=3&quux=2&pif=paf
23 * }
24 *
25 * Given a URI like
26 * `http://usr:pwd@www.example.com:81/dir/dir.2/index.htm?q1=0&&test1&test2=&test3=value+%28escaped%29&r=1&r=2#top`
27 * the returned object will have the following properties:
28 *
29 * protocol 'http'
30 * user 'usr'
31 * password 'pwd'
32 * host 'www.example.com'
33 * port '81'
34 * path '/dir/dir.2/index.htm'
35 * query {
36 * q1: '0',
37 * test1: null,
38 * test2: '',
39 * test3: 'value (escaped)'
40 * r: ['1', '2']
41 * }
42 * fragment 'top'
43 *
44 * (N.b., 'password' is technically not allowed for HTTP URIs, but it is possible with other kinds
45 * of URIs.)
46 *
47 * Parsing based on parseUri 1.2.2 (c) Steven Levithan <http://stevenlevithan.com>, MIT License.
48 * <http://stevenlevithan.com/demo/parseuri/js/>
49 *
50 * @class mw.Uri
51 */
52
53 /* eslint-disable no-use-before-define */
54
55 ( function ( mw, $ ) {
56 var parser, properties;
57
58 /**
59 * Function that's useful when constructing the URI string -- we frequently encounter the pattern
60 * of having to add something to the URI as we go, but only if it's present, and to include a
61 * character before or after if so.
62 *
63 * @private
64 * @static
65 * @param {string|undefined} pre To prepend
66 * @param {string} val To include
67 * @param {string} post To append
68 * @param {boolean} raw If true, val will not be encoded
69 * @return {string} Result
70 */
71 function cat( pre, val, post, raw ) {
72 if ( val === undefined || val === null || val === '' ) {
73 return '';
74 }
75
76 return pre + ( raw ? val : mw.Uri.encode( val ) ) + post;
77 }
78
79 /**
80 * Regular expressions to parse many common URIs.
81 *
82 * As they are gnarly, they have been moved to separate files to allow us to format them in the
83 * 'extended' regular expression format (which JavaScript normally doesn't support). The subset of
84 * features handled is minimal, but just the free whitespace gives us a lot.
85 *
86 * @private
87 * @static
88 * @property {Object} parser
89 */
90 parser = {
91 strict: mw.template.get( 'mediawiki.Uri', 'strict.regexp' ).render(),
92 loose: mw.template.get( 'mediawiki.Uri', 'loose.regexp' ).render()
93 };
94
95 /**
96 * The order here matches the order of captured matches in the `parser` property regexes.
97 *
98 * @private
99 * @static
100 * @property {Array} properties
101 */
102 properties = [
103 'protocol',
104 'user',
105 'password',
106 'host',
107 'port',
108 'path',
109 'query',
110 'fragment'
111 ];
112
113 /**
114 * @property {string} protocol For example `http` (always present)
115 */
116 /**
117 * @property {string|undefined} user For example `usr`
118 */
119 /**
120 * @property {string|undefined} password For example `pwd`
121 */
122 /**
123 * @property {string} host For example `www.example.com` (always present)
124 */
125 /**
126 * @property {string|undefined} port For example `81`
127 */
128 /**
129 * @property {string} path For example `/dir/dir.2/index.htm` (always present)
130 */
131 /**
132 * @property {Object} query For example `{ a: '0', b: '', c: 'value' }` (always present)
133 */
134 /**
135 * @property {string|undefined} fragment For example `top`
136 */
137
138 /**
139 * A factory method to create a Uri class with a default location to resolve relative URLs
140 * against (including protocol-relative URLs).
141 *
142 * @method
143 * @param {string|Function} documentLocation A full url, or function returning one.
144 * If passed a function, the return value may change over time and this will be honoured. (T74334)
145 * @member mw
146 */
147 mw.UriRelative = function ( documentLocation ) {
148 var getDefaultUri = ( function () {
149 // Cache
150 var href, uri;
151
152 return function () {
153 var hrefCur = typeof documentLocation === 'string' ? documentLocation : documentLocation();
154 if ( href === hrefCur ) {
155 return uri;
156 }
157 href = hrefCur;
158 uri = new Uri( href );
159 return uri;
160 };
161 }() );
162
163 /**
164 * Construct a new URI object. Throws error if arguments are illegal/impossible, or
165 * otherwise don't parse.
166 *
167 * @class mw.Uri
168 * @constructor
169 * @param {Object|string} [uri] URI string, or an Object with appropriate properties (especially
170 * another URI object to clone). Object must have non-blank `protocol`, `host`, and `path`
171 * properties. If omitted (or set to `undefined`, `null` or empty string), then an object
172 * will be created for the default `uri` of this constructor (`location.href` for mw.Uri,
173 * other values for other instances -- see mw.UriRelative for details).
174 * @param {Object|boolean} [options] Object with options, or (backwards compatibility) a boolean
175 * for strictMode
176 * @param {boolean} [options.strictMode=false] Trigger strict mode parsing of the url.
177 * @param {boolean} [options.overrideKeys=false] Whether to let duplicate query parameters
178 * override each other (`true`) or automagically convert them to an array (`false`).
179 */
180 function Uri( uri, options ) {
181 var prop,
182 defaultUri = getDefaultUri();
183
184 options = typeof options === 'object' ? options : { strictMode: !!options };
185 options = $.extend( {
186 strictMode: false,
187 overrideKeys: false
188 }, options );
189
190 if ( uri !== undefined && uri !== null && uri !== '' ) {
191 if ( typeof uri === 'string' ) {
192 this.parse( uri, options );
193 } else if ( typeof uri === 'object' ) {
194 // Copy data over from existing URI object
195 for ( prop in uri ) {
196 // Only copy direct properties, not inherited ones
197 if ( uri.hasOwnProperty( prop ) ) {
198 // Deep copy object properties
199 if ( $.isArray( uri[ prop ] ) || $.isPlainObject( uri[ prop ] ) ) {
200 this[ prop ] = $.extend( true, {}, uri[ prop ] );
201 } else {
202 this[ prop ] = uri[ prop ];
203 }
204 }
205 }
206 if ( !this.query ) {
207 this.query = {};
208 }
209 }
210 } else {
211 // If we didn't get a URI in the constructor, use the default one.
212 return defaultUri.clone();
213 }
214
215 // protocol-relative URLs
216 if ( !this.protocol ) {
217 this.protocol = defaultUri.protocol;
218 }
219 // No host given:
220 if ( !this.host ) {
221 this.host = defaultUri.host;
222 // port ?
223 if ( !this.port ) {
224 this.port = defaultUri.port;
225 }
226 }
227 if ( this.path && this.path[ 0 ] !== '/' ) {
228 // A real relative URL, relative to defaultUri.path. We can't really handle that since we cannot
229 // figure out whether the last path component of defaultUri.path is a directory or a file.
230 throw new Error( 'Bad constructor arguments' );
231 }
232 if ( !( this.protocol && this.host && this.path ) ) {
233 throw new Error( 'Bad constructor arguments' );
234 }
235 }
236
237 /**
238 * Encode a value for inclusion in a url.
239 *
240 * Standard encodeURIComponent, with extra stuff to make all browsers work similarly and more
241 * compliant with RFC 3986. Similar to rawurlencode from PHP and our JS library
242 * mw.util.rawurlencode, except this also replaces spaces with `+`.
243 *
244 * @static
245 * @param {string} s String to encode
246 * @return {string} Encoded string for URI
247 */
248 Uri.encode = function ( s ) {
249 return encodeURIComponent( s )
250 .replace( /!/g, '%21' ).replace( /'/g, '%27' ).replace( /\(/g, '%28' )
251 .replace( /\)/g, '%29' ).replace( /\*/g, '%2A' )
252 .replace( /%20/g, '+' );
253 };
254
255 /**
256 * Decode a url encoded value.
257 *
258 * Reversed #encode. Standard decodeURIComponent, with addition of replacing
259 * `+` with a space.
260 *
261 * @static
262 * @param {string} s String to decode
263 * @return {string} Decoded string
264 */
265 Uri.decode = function ( s ) {
266 return decodeURIComponent( s.replace( /\+/g, '%20' ) );
267 };
268
269 Uri.prototype = {
270
271 /**
272 * Parse a string and set our properties accordingly.
273 *
274 * @private
275 * @param {string} str URI, see constructor.
276 * @param {Object} options See constructor.
277 */
278 parse: function ( str, options ) {
279 var q, matches,
280 uri = this,
281 hasOwn = Object.prototype.hasOwnProperty;
282
283 // Apply parser regex and set all properties based on the result
284 matches = parser[ options.strictMode ? 'strict' : 'loose' ].exec( str );
285 $.each( properties, function ( i, property ) {
286 uri[ property ] = matches[ i + 1 ];
287 } );
288
289 // uri.query starts out as the query string; we will parse it into key-val pairs then make
290 // that object the "query" property.
291 // we overwrite query in uri way to make cloning easier, it can use the same list of properties.
292 q = {};
293 // using replace to iterate over a string
294 if ( uri.query ) {
295 uri.query.replace( /(?:^|&)([^&=]*)(?:(=)([^&]*))?/g, function ( $0, $1, $2, $3 ) {
296 var k, v;
297 if ( $1 ) {
298 k = Uri.decode( $1 );
299 v = ( $2 === '' || $2 === undefined ) ? null : Uri.decode( $3 );
300
301 // If overrideKeys, always (re)set top level value.
302 // If not overrideKeys but this key wasn't set before, then we set it as well.
303 if ( options.overrideKeys || !hasOwn.call( q, k ) ) {
304 q[ k ] = v;
305
306 // Use arrays if overrideKeys is false and key was already seen before
307 } else {
308 // Once before, still a string, turn into an array
309 if ( typeof q[ k ] === 'string' ) {
310 q[ k ] = [ q[ k ] ];
311 }
312 // Add to the array
313 if ( $.isArray( q[ k ] ) ) {
314 q[ k ].push( v );
315 }
316 }
317 }
318 } );
319 }
320 uri.query = q;
321 },
322
323 /**
324 * Get user and password section of a URI.
325 *
326 * @return {string}
327 */
328 getUserInfo: function () {
329 return cat( '', this.user, cat( ':', this.password, '' ) );
330 },
331
332 /**
333 * Get host and port section of a URI.
334 *
335 * @return {string}
336 */
337 getHostPort: function () {
338 return this.host + cat( ':', this.port, '' );
339 },
340
341 /**
342 * Get the userInfo, host and port section of the URI.
343 *
344 * In most real-world URLs this is simply the hostname, but the definition of 'authority' section is more general.
345 *
346 * @return {string}
347 */
348 getAuthority: function () {
349 return cat( '', this.getUserInfo(), '@' ) + this.getHostPort();
350 },
351
352 /**
353 * Get the query arguments of the URL, encoded into a string.
354 *
355 * Does not preserve the original order of arguments passed in the URI. Does handle escaping.
356 *
357 * @return {string}
358 */
359 getQueryString: function () {
360 var args = [];
361 $.each( this.query, function ( key, val ) {
362 var k = Uri.encode( key ),
363 vals = $.isArray( val ) ? val : [ val ];
364 $.each( vals, function ( i, v ) {
365 if ( v === null ) {
366 args.push( k );
367 } else if ( k === 'title' ) {
368 args.push( k + '=' + mw.util.wikiUrlencode( v ) );
369 } else {
370 args.push( k + '=' + Uri.encode( v ) );
371 }
372 } );
373 } );
374 return args.join( '&' );
375 },
376
377 /**
378 * Get everything after the authority section of the URI.
379 *
380 * @return {string}
381 */
382 getRelativePath: function () {
383 return this.path + cat( '?', this.getQueryString(), '', true ) + cat( '#', this.fragment, '' );
384 },
385
386 /**
387 * Get the entire URI string.
388 *
389 * May not be precisely the same as input due to order of query arguments.
390 *
391 * @return {string} The URI string
392 */
393 toString: function () {
394 return this.protocol + '://' + this.getAuthority() + this.getRelativePath();
395 },
396
397 /**
398 * Clone this URI
399 *
400 * @return {Object} New URI object with same properties
401 */
402 clone: function () {
403 return new Uri( this );
404 },
405
406 /**
407 * Extend the query section of the URI with new parameters.
408 *
409 * @param {Object} parameters Query parameters to add to ours (or to override ours with) as an
410 * object
411 * @return {Object} This URI object
412 */
413 extend: function ( parameters ) {
414 $.extend( this.query, parameters );
415 return this;
416 }
417 };
418
419 return Uri;
420 };
421
422 // Default to the current browsing location (for relative URLs).
423 mw.Uri = mw.UriRelative( function () {
424 return location.href;
425 } );
426
427 }( mediaWiki, jQuery ) );