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
|
/*global OO*/
( function ( mw, $ ) {
/**
* This is an implementation of MessagePoster for wikitext talk pages.
*
* @class mw.messagePoster.WikitextMessagePoster
* @extends mw.messagePoster.MessagePoster
*
* @constructor
* @param {mw.Title} title Wikitext page in a talk namespace, to post to
*/
function WikitextMessagePoster( title ) {
this.api = new mw.Api();
this.title = title;
}
OO.inheritClass(
WikitextMessagePoster,
mw.messagePoster.MessagePoster
);
/**
* @inheritdoc
*/
WikitextMessagePoster.prototype.post = function ( subject, body ) {
mw.messagePoster.WikitextMessagePoster.parent.prototype.post.call( this, subject, body );
// Add signature if needed
if ( body.indexOf( '~~~' ) === -1 ) {
body += '\n\n~~~~';
}
return this.api.newSection(
this.title,
subject,
body,
{ redirect: true }
).then( function ( resp, jqXHR ) {
if ( resp.edit.result === 'Success' ) {
return $.Deferred().resolve( resp, jqXHR );
} else {
// mediawiki.api.js checks for resp.error. Are there actually cases where the
// request fails, but it's not caught there?
return $.Deferred().reject( 'api-unexpected' );
}
}, function ( code, details ) {
return $.Deferred().reject( 'api-fail', code, details );
} ).promise();
};
mw.messagePoster.factory.register( 'wikitext', WikitextMessagePoster );
mw.messagePoster.WikitextMessagePoster = WikitextMessagePoster;
}( mediaWiki, jQuery ) );
|