Merge "Make update.php file executable"
[mediawiki.git] / resources / src / mediawiki.api / mediawiki.api.js
blob6444d93f2a0b848aff7cbe469e6fda93d3eeb618
1 ( function ( mw, $ ) {
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 = {
9                         // Query parameters for API requests
10                         parameters: {
11                                 action: 'query',
12                                 format: 'json'
13                         },
15                         // Ajax options for jQuery.ajax()
16                         ajax: {
17                                 url: mw.util.wikiScript( 'api' ),
19                                 timeout: 30 * 1000, // 30 seconds
21                                 dataType: 'json'
22                         }
23                 },
24                 // Keyed by ajax url and symbolic name for the individual request
25                 deferreds = {};
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         } );
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 ) {
60                 if ( options === undefined ) {
61                         options = {};
62                 }
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                 }
69                 options.parameters = $.extend( {}, defaultOptions.parameters, options.parameters );
70                 options.ajax = $.extend( {}, defaultOptions.ajax, options.ajax );
72                 this.defaults = options;
73         };
75         mw.Api.prototype = {
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                 },
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                 },
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                 },
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;
136                         parameters = $.extend( {}, this.defaults.parameters, parameters );
137                         ajaxOptions = $.extend( {}, this.defaults.ajax, ajaxOptions );
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                         }
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                         ) {
152                                 formData = new FormData();
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                                 }
162                                 ajaxOptions.data = formData;
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' );
174                                 // If we extracted a token parameter, add it back in.
175                                 if ( token ) {
176                                         ajaxOptions.data += '&token=' + encodeURIComponent( token );
177                                 }
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                         }
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                         }
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                                 } );
226                         // Return the Promise
227                         return apiDeferred.promise( { abort: xhr.abort } ).fail( function ( code, details ) {
228                                 if ( code !== 'abort' ) {
229                                         mw.log( 'mw.Api error: ', code, details );
230                                 }
231                         } );
232                 },
234                 /**
235                  * Post to API with specified type of token. If we have no token, get one and try to post.
236                  * If we have a cached token try using that, and if it fails, blank out the
237                  * cached token and start over. For example to change an user option you could do:
238                  *
239                  *     new mw.Api().postWithToken( 'options', {
240                  *         action: 'options',
241                  *         optionname: 'gender',
242                  *         optionvalue: 'female'
243                  *     } );
244                  *
245                  * @param {string} tokenType The name of the token, like options or edit.
246                  * @param {Object} params API parameters
247                  * @return {jQuery.Promise} See #post
248                  * @since 1.22
249                  */
250                 postWithToken: function ( tokenType, params ) {
251                         var api = this;
253                         return api.getToken( tokenType ).then( function ( token ) {
254                                 params.token = token;
255                                 return api.post( params ).then(
256                                         // If no error, return to caller as-is
257                                         null,
258                                         // Error handler
259                                         function ( code ) {
260                                                 if ( code === 'badtoken' ) {
261                                                         // Clear from cache
262                                                         deferreds[ api.defaults.ajax.url ][ tokenType + 'Token' ] =
263                                                                 params.token = undefined;
265                                                         // Try again, once
266                                                         return api.getToken( tokenType ).then( function ( token ) {
267                                                                 params.token = token;
268                                                                 return api.post( params );
269                                                         } );
270                                                 }
272                                                 // Different error, pass on to let caller handle the error code
273                                                 return this;
274                                         }
275                                 );
276                         } );
277                 },
279                 /**
280                  * Get a token for a certain action from the API.
281                  *
282                  * @param {string} type Token type
283                  * @return {jQuery.Promise}
284                  * @return {Function} return.done
285                  * @return {string} return.done.token Received token.
286                  * @since 1.22
287                  */
288                 getToken: function ( type ) {
289                         var apiPromise,
290                                 deferredGroup = deferreds[ this.defaults.ajax.url ],
291                                 d = deferredGroup && deferredGroup[ type + 'Token' ];
293                         if ( !d ) {
294                                 d = $.Deferred();
296                                 apiPromise = this.get( { action: 'tokens', type: type } )
297                                         .done( function ( data ) {
298                                                 // If token type is not available for this user,
299                                                 // key '...token' is missing or can contain Boolean false
300                                                 if ( data.tokens && data.tokens[type + 'token'] ) {
301                                                         d.resolve( data.tokens[type + 'token'] );
302                                                 } else {
303                                                         d.reject( 'token-missing', data );
304                                                 }
305                                         } )
306                                         .fail( d.reject );
308                                 // Attach abort handler
309                                 d.abort = apiPromise.abort;
311                                 // Store deferred now so that we can use this again even if it isn't ready yet
312                                 if ( !deferredGroup ) {
313                                         deferredGroup = deferreds[ this.defaults.ajax.url ] = {};
314                                 }
315                                 deferredGroup[ type + 'Token' ] = d;
316                         }
318                         return d.promise( { abort: d.abort } );
319                 }
320         };
322         /**
323          * @static
324          * @property {Array}
325          * List of errors we might receive from the API.
326          * For now, this just documents our expectation that there should be similar messages
327          * available.
328          */
329         mw.Api.errors = [
330                 // occurs when POST aborted
331                 // jQuery 1.4 can't distinguish abort or lost connection from 200 OK + empty result
332                 'ok-but-empty',
334                 // timeout
335                 'timeout',
337                 // really a warning, but we treat it like an error
338                 'duplicate',
339                 'duplicate-archive',
341                 // upload succeeded, but no image info.
342                 // this is probably impossible, but might as well check for it
343                 'noimageinfo',
344                 // remote errors, defined in API
345                 'uploaddisabled',
346                 'nomodule',
347                 'mustbeposted',
348                 'badaccess-groups',
349                 'stashfailed',
350                 'missingresult',
351                 'missingparam',
352                 'invalid-file-key',
353                 'copyuploaddisabled',
354                 'mustbeloggedin',
355                 'empty-file',
356                 'file-too-large',
357                 'filetype-missing',
358                 'filetype-banned',
359                 'filetype-banned-type',
360                 'filename-tooshort',
361                 'illegal-filename',
362                 'verification-error',
363                 'hookaborted',
364                 'unknown-error',
365                 'internal-error',
366                 'overwrite',
367                 'badtoken',
368                 'fetchfileerror',
369                 'fileexists-shared-forbidden',
370                 'invalidtitle',
371                 'notloggedin'
372         ];
374         /**
375          * @static
376          * @property {Array}
377          * List of warnings we might receive from the API.
378          * For now, this just documents our expectation that there should be similar messages
379          * available.
380          */
381         mw.Api.warnings = [
382                 'duplicate',
383                 'exists'
384         ];
386 }( mediaWiki, jQuery ) );