summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Translate/resources/js/ext.translate.translationstashstorage.js
blob: 17350cf2881aa702581b6572b480de96783921a0 (plain)
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
( function () {
	'use strict';

	/**
	 * This class can save translation to translation stash.
	 *
	 * @since 2013.10
	 */
	var TranslationStashStorage = function () {
		// No-op for now. Could take api module as param for example.
	};

	TranslationStashStorage.prototype = {
		/**
		 * Save the translation.
		 *
		 * @param {string} title The title of the page including language code
		 *   to store the translation.
		 * @param {string} translation The translation of the message
		 * @return {jQuery.Promise}
		 */
		save: function ( title, translation ) {
			var api = new mw.Api();

			return api.postWithToken( 'csrf', {
				action: 'translationstash',
				subaction: 'add',
				title: title,
				translation: translation
			} ).then( function () {
				// Fake normal save API
				return { edit: { result: 'Success' } };
			} );
		},

		/**
		 * Get the current users translations.
		 *
		 * @param {string} user User name
		 * @return {jQuery.Promise}
		 */
		getUserTranslations: function ( user ) {
			var api = new mw.Api();

			return api.postWithToken( 'csrf', {
				action: 'translationstash',
				subaction: 'query',
				username: user
			} ).promise();
		}

	};

	mw.translate = mw.translate || {};
	mw.translate.TranslationStashStorage = TranslationStashStorage;

}() );