Merge "PrefixSearch: Remove unnecessary wfSuppressWarnings()"
[lhc/web/wiklou.git] / resources / src / mediawiki.api / mediawiki.api.js
1 ( function ( mw, $ ) {
2
3 // We allow people to omit these default parameters from API requests
4 // there is very customizable error handling here, on a per-call basis
5 // wondering, would it be simpler to make it easy to clone the api object,
6 // change error handling, and use that instead?
7 var defaultOptions = {
8
9 // Query parameters for API requests
10 parameters: {
11 action: 'query',
12 format: 'json'
13 },
14
15 // Ajax options for jQuery.ajax()
16 ajax: {
17 url: mw.util.wikiScript( 'api' ),
18
19 timeout: 30 * 1000, // 30 seconds
20
21 dataType: 'json'
22 }
23 },
24 // Keyed by ajax url and symbolic name for the individual request
25 deferreds = {};
26
27 // Pre-populate with fake ajax deferreds to save http requests for tokens
28 // we already have on the page via the user.tokens module (bug 34733).
29 deferreds[ defaultOptions.ajax.url ] = {};
30 $.each( mw.user.tokens.get(), function ( key, value ) {
31 // This requires #getToken to use the same key as user.tokens.
32 // Format: token-type + "Token" (eg. editToken, patrolToken, watchToken).
33 deferreds[ defaultOptions.ajax.url ][ key ] = $.Deferred()
34 .resolve( value )
35 .promise( { abort: function () {} } );
36 } );
37
38 /**
39 * Constructor to create an object to interact with the API of a particular MediaWiki server.
40 * mw.Api objects represent the API of a particular MediaWiki server.
41 *
42 * TODO: Share API objects with exact same config.
43 *
44 * var api = new mw.Api();
45 * api.get( {
46 * action: 'query',
47 * meta: 'userinfo'
48 * } ).done ( function ( data ) {
49 * console.log( data );
50 * } );
51 *
52 * @class
53 *
54 * @constructor
55 * @param {Object} options See defaultOptions documentation above. Ajax options can also be
56 * overridden for each individual request to {@link jQuery#ajax} later on.
57 */
58 mw.Api = function ( options ) {
59
60 if ( options === undefined ) {
61 options = {};
62 }
63
64 // Force a string if we got a mw.Uri object
65 if ( options.ajax && options.ajax.url !== undefined ) {
66 options.ajax.url = String( options.ajax.url );
67 }
68
69 options.parameters = $.extend( {}, defaultOptions.parameters, options.parameters );
70 options.ajax = $.extend( {}, defaultOptions.ajax, options.ajax );
71
72 this.defaults = options;
73 };
74
75 mw.Api.prototype = {
76
77 /**
78 * Normalize the ajax options for compatibility and/or convenience methods.
79 *
80 * @param {Object} [arg] An object contaning one or more of options.ajax.
81 * @return {Object} Normalized ajax options.
82 */
83 normalizeAjaxOptions: function ( arg ) {
84 // Arg argument is usually empty
85 // (before MW 1.20 it was used to pass ok callbacks)
86 var opts = arg || {};
87 // Options can also be a success callback handler
88 if ( typeof arg === 'function' ) {
89 opts = { ok: arg };
90 }
91 return opts;
92 },
93
94 /**
95 * Perform API get request
96 *
97 * @param {Object} parameters
98 * @param {Object|Function} [ajaxOptions]
99 * @return {jQuery.Promise}
100 */
101 get: function ( parameters, ajaxOptions ) {
102 ajaxOptions = this.normalizeAjaxOptions( ajaxOptions );
103 ajaxOptions.type = 'GET';
104 return this.ajax( parameters, ajaxOptions );
105 },
106
107 /**
108 * Perform API post request
109 *
110 * TODO: Post actions for non-local hostnames will need proxy.
111 *
112 * @param {Object} parameters
113 * @param {Object|Function} [ajaxOptions]
114 * @return {jQuery.Promise}
115 */
116 post: function ( parameters, ajaxOptions ) {
117 ajaxOptions = this.normalizeAjaxOptions( ajaxOptions );
118 ajaxOptions.type = 'POST';
119 return this.ajax( parameters, ajaxOptions );
120 },
121
122 /**
123 * Perform the API call.
124 *
125 * @param {Object} parameters
126 * @param {Object} [ajaxOptions]
127 * @return {jQuery.Promise} Done: API response data and the jqXHR object.
128 * Fail: Error code
129 */
130 ajax: function ( parameters, ajaxOptions ) {
131 var token,
132 apiDeferred = $.Deferred(),
133 msg = 'Use of mediawiki.api callback params is deprecated. Use the Promise instead.',
134 xhr, key, formData;
135
136 parameters = $.extend( {}, this.defaults.parameters, parameters );
137 ajaxOptions = $.extend( {}, this.defaults.ajax, ajaxOptions );
138
139 // Ensure that token parameter is last (per [[mw:API:Edit#Token]]).
140 if ( parameters.token ) {
141 token = parameters.token;
142 delete parameters.token;
143 }
144
145 // If multipart/form-data has been requested and emulation is possible, emulate it
146 if (
147 ajaxOptions.type === 'POST' &&
148 window.FormData &&
149 ajaxOptions.contentType === 'multipart/form-data'
150 ) {
151
152 formData = new FormData();
153
154 for ( key in parameters ) {
155 formData.append( key, parameters[key] );
156 }
157 // If we extracted a token parameter, add it back in.
158 if ( token ) {
159 formData.append( 'token', token );
160 }
161
162 ajaxOptions.data = formData;
163
164 // Prevent jQuery from mangling our FormData object
165 ajaxOptions.processData = false;
166 // Prevent jQuery from overriding the Content-Type header
167 ajaxOptions.contentType = false;
168 } else {
169 // Some deployed MediaWiki >= 1.17 forbid periods in URLs, due to an IE XSS bug
170 // So let's escape them here. See bug #28235
171 // This works because jQuery accepts data as a query string or as an Object
172 ajaxOptions.data = $.param( parameters ).replace( /\./g, '%2E' );
173
174 // If we extracted a token parameter, add it back in.
175 if ( token ) {
176 ajaxOptions.data += '&token=' + encodeURIComponent( token );
177 }
178
179 if ( ajaxOptions.contentType === 'multipart/form-data' ) {
180 // We were asked to emulate but can't, so drop the Content-Type header, otherwise
181 // it'll be wrong and the server will fail to decode the POST body
182 delete ajaxOptions.contentType;
183 }
184 }
185
186 // Backwards compatibility: Before MediaWiki 1.20,
187 // callbacks were done with the 'ok' and 'err' property in ajaxOptions.
188 if ( ajaxOptions.ok ) {
189 mw.track( 'mw.deprecate', 'api.cbParam' );
190 mw.log.warn( msg );
191 apiDeferred.done( ajaxOptions.ok );
192 delete ajaxOptions.ok;
193 }
194 if ( ajaxOptions.err ) {
195 mw.track( 'mw.deprecate', 'api.cbParam' );
196 mw.log.warn( msg );
197 apiDeferred.fail( ajaxOptions.err );
198 delete ajaxOptions.err;
199 }
200
201 // Make the AJAX request
202 xhr = $.ajax( ajaxOptions )
203 // If AJAX fails, reject API call with error code 'http'
204 // and details in second argument.
205 .fail( function ( xhr, textStatus, exception ) {
206 apiDeferred.reject( 'http', {
207 xhr: xhr,
208 textStatus: textStatus,
209 exception: exception
210 } );
211 } )
212 // AJAX success just means "200 OK" response, also check API error codes
213 .done( function ( result, textStatus, jqXHR ) {
214 if ( result === undefined || result === null || result === '' ) {
215 apiDeferred.reject( 'ok-but-empty',
216 'OK response but empty result (check HTTP headers?)'
217 );
218 } else if ( result.error ) {
219 var code = result.error.code === undefined ? 'unknown' : result.error.code;
220 apiDeferred.reject( code, result );
221 } else {
222 apiDeferred.resolve( result, jqXHR );
223 }
224 } );
225
226 // Return the Promise
227 return apiDeferred.promise( { abort: xhr.abort } ).fail( function ( code, details ) {
228 mw.log( 'mw.Api error: ', code, details );
229 } );
230 },
231
232 /**
233 * Post to API with specified type of token. If we have no token, get one and try to post.
234 * If we have a cached token try using that, and if it fails, blank out the
235 * cached token and start over. For example to change an user option you could do:
236 *
237 * new mw.Api().postWithToken( 'options', {
238 * action: 'options',
239 * optionname: 'gender',
240 * optionvalue: 'female'
241 * } );
242 *
243 * @param {string} tokenType The name of the token, like options or edit.
244 * @param {Object} params API parameters
245 * @return {jQuery.Promise} See #post
246 * @since 1.22
247 */
248 postWithToken: function ( tokenType, params ) {
249 var api = this;
250
251 return api.getToken( tokenType ).then( function ( token ) {
252 params.token = token;
253 return api.post( params ).then(
254 // If no error, return to caller as-is
255 null,
256 // Error handler
257 function ( code ) {
258 if ( code === 'badtoken' ) {
259 // Clear from cache
260 deferreds[ this.defaults.ajax.url ][ tokenType + 'Token' ] =
261 params.token = undefined;
262
263 // Try again, once
264 return api.getToken( tokenType ).then( function ( token ) {
265 params.token = token;
266 return api.post( params );
267 } );
268 }
269
270 // Different error, pass on to let caller handle the error code
271 return this;
272 }
273 );
274 } );
275 },
276
277 /**
278 * Get a token for a certain action from the API.
279 *
280 * @param {string} type Token type
281 * @return {jQuery.Promise}
282 * @return {Function} return.done
283 * @return {string} return.done.token Received token.
284 * @since 1.22
285 */
286 getToken: function ( type ) {
287 var apiPromise,
288 deferredGroup = deferreds[ this.defaults.ajax.url ],
289 d = deferredGroup && deferredGroup[ type + 'Token' ];
290
291 if ( !d ) {
292 d = $.Deferred();
293
294 apiPromise = this.get( { action: 'tokens', type: type } )
295 .done( function ( data ) {
296 // If token type is not available for this user,
297 // key '...token' is missing or can contain Boolean false
298 if ( data.tokens && data.tokens[type + 'token'] ) {
299 d.resolve( data.tokens[type + 'token'] );
300 } else {
301 d.reject( 'token-missing', data );
302 }
303 } )
304 .fail( d.reject );
305
306 // Attach abort handler
307 d.abort = apiPromise.abort;
308
309 // Store deferred now so that we can use this again even if it isn't ready yet
310 if ( !deferredGroup ) {
311 deferredGroup = deferreds[ this.defaults.ajax.url ] = {};
312 }
313 deferredGroup[ type + 'Token' ] = d;
314 }
315
316 return d.promise( { abort: d.abort } );
317 }
318 };
319
320 /**
321 * @static
322 * @property {Array}
323 * List of errors we might receive from the API.
324 * For now, this just documents our expectation that there should be similar messages
325 * available.
326 */
327 mw.Api.errors = [
328 // occurs when POST aborted
329 // jQuery 1.4 can't distinguish abort or lost connection from 200 OK + empty result
330 'ok-but-empty',
331
332 // timeout
333 'timeout',
334
335 // really a warning, but we treat it like an error
336 'duplicate',
337 'duplicate-archive',
338
339 // upload succeeded, but no image info.
340 // this is probably impossible, but might as well check for it
341 'noimageinfo',
342 // remote errors, defined in API
343 'uploaddisabled',
344 'nomodule',
345 'mustbeposted',
346 'badaccess-groups',
347 'stashfailed',
348 'missingresult',
349 'missingparam',
350 'invalid-file-key',
351 'copyuploaddisabled',
352 'mustbeloggedin',
353 'empty-file',
354 'file-too-large',
355 'filetype-missing',
356 'filetype-banned',
357 'filetype-banned-type',
358 'filename-tooshort',
359 'illegal-filename',
360 'verification-error',
361 'hookaborted',
362 'unknown-error',
363 'internal-error',
364 'overwrite',
365 'badtoken',
366 'fetchfileerror',
367 'fileexists-shared-forbidden',
368 'invalidtitle',
369 'notloggedin'
370 ];
371
372 /**
373 * @static
374 * @property {Array}
375 * List of warnings we might receive from the API.
376 * For now, this just documents our expectation that there should be similar messages
377 * available.
378 */
379 mw.Api.warnings = [
380 'duplicate',
381 'exists'
382 ];
383
384 }( mediaWiki, jQuery ) );