Check validity and availability of usernames during signup via AJAX
[lhc/web/wiklou.git] / includes / api / ApiRollback.php
1 <?php
2 /**
3 *
4 *
5 * Created on Jun 20, 2007
6 *
7 * Copyright © 2007 Roan Kattouw "<Firstname>.<Lastname>@gmail.com"
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 */
26
27 /**
28 * @ingroup API
29 */
30 class ApiRollback extends ApiBase {
31
32 /**
33 * @var Title
34 */
35 private $mTitleObj = null;
36
37 /**
38 * @var User
39 */
40 private $mUser = null;
41
42 public function execute() {
43 $params = $this->extractRequestParams();
44
45 // User and title already validated in call to getTokenSalt from Main
46 $titleObj = $this->getRbTitle();
47 $pageObj = WikiPage::factory( $titleObj );
48 $summary = $params['summary'];
49 $details = array();
50 $retval = $pageObj->doRollback(
51 $this->getRbUser(),
52 $summary,
53 $params['token'],
54 $params['markbot'],
55 $details,
56 $this->getUser()
57 );
58
59 if ( $retval ) {
60 // We don't care about multiple errors, just report one of them
61 $this->dieUsageMsg( reset( $retval ) );
62 }
63
64 $this->setWatch( $params['watchlist'], $titleObj );
65
66 $info = array(
67 'title' => $titleObj->getPrefixedText(),
68 'pageid' => intval( $details['current']->getPage() ),
69 'summary' => $details['summary'],
70 'revid' => intval( $details['newid'] ),
71 'old_revid' => intval( $details['current']->getID() ),
72 'last_revid' => intval( $details['target']->getID() )
73 );
74
75 $this->getResult()->addValue( null, $this->getModuleName(), $info );
76 }
77
78 public function mustBePosted() {
79 return true;
80 }
81
82 public function isWriteMode() {
83 return true;
84 }
85
86 public function getAllowedParams() {
87 return array(
88 'title' => array(
89 ApiBase::PARAM_TYPE => 'string',
90 ApiBase::PARAM_REQUIRED => true
91 ),
92 'user' => array(
93 ApiBase::PARAM_TYPE => 'string',
94 ApiBase::PARAM_REQUIRED => true
95 ),
96 'token' => array(
97 ApiBase::PARAM_TYPE => 'string',
98 ApiBase::PARAM_REQUIRED => true
99 ),
100 'summary' => '',
101 'markbot' => false,
102 'watchlist' => array(
103 ApiBase::PARAM_DFLT => 'preferences',
104 ApiBase::PARAM_TYPE => array(
105 'watch',
106 'unwatch',
107 'preferences',
108 'nochange'
109 ),
110 ),
111 );
112 }
113
114 public function getParamDescription() {
115 return array(
116 'title' => 'Title of the page you want to rollback.',
117 'user' => 'Name of the user whose edits are to be rolled back. If ' .
118 'set incorrectly, you\'ll get a badtoken error.',
119 'token' => 'A rollback token previously retrieved through ' .
120 "{$this->getModulePrefix()}prop=revisions",
121 'summary' => 'Custom edit summary. If empty, default summary will be used',
122 'markbot' => 'Mark the reverted edits and the revert as bot edits',
123 'watchlist' => 'Unconditionally add or remove the page from your watchlist, ' .
124 'use preferences or do not change watch',
125 );
126 }
127
128 public function getResultProperties() {
129 return array(
130 '' => array(
131 'title' => 'string',
132 'pageid' => 'integer',
133 'summary' => 'string',
134 'revid' => 'integer',
135 'old_revid' => 'integer',
136 'last_revid' => 'integer'
137 )
138 );
139 }
140
141 public function getDescription() {
142 return array(
143 'Undo the last edit to the page. If the last user who edited the page made',
144 'multiple edits in a row, they will all be rolled back'
145 );
146 }
147
148 public function getPossibleErrors() {
149 return array_merge( parent::getPossibleErrors(), array(
150 array( 'invalidtitle', 'title' ),
151 array( 'notanarticle' ),
152 array( 'invaliduser', 'user' ),
153 ) );
154 }
155
156 public function needsToken() {
157 return true;
158 }
159
160 public function getTokenSalt() {
161 return array( $this->getRbTitle()->getPrefixedText(), $this->getRbUser() );
162 }
163
164 private function getRbUser() {
165 if ( $this->mUser !== null ) {
166 return $this->mUser;
167 }
168
169 $params = $this->extractRequestParams();
170
171 // We need to be able to revert IPs, but getCanonicalName rejects them
172 $this->mUser = User::isIP( $params['user'] )
173 ? $params['user']
174 : User::getCanonicalName( $params['user'] );
175 if ( !$this->mUser ) {
176 $this->dieUsageMsg( array( 'invaliduser', $params['user'] ) );
177 }
178
179 return $this->mUser;
180 }
181
182 /**
183 * @return Title
184 */
185 private function getRbTitle() {
186 if ( $this->mTitleObj !== null ) {
187 return $this->mTitleObj;
188 }
189
190 $params = $this->extractRequestParams();
191
192 $this->mTitleObj = Title::newFromText( $params['title'] );
193
194 if ( !$this->mTitleObj || $this->mTitleObj->isExternal() ) {
195 $this->dieUsageMsg( array( 'invalidtitle', $params['title'] ) );
196 }
197 if ( !$this->mTitleObj->exists() ) {
198 $this->dieUsageMsg( 'notanarticle' );
199 }
200
201 return $this->mTitleObj;
202 }
203
204 public function getExamples() {
205 return array(
206 'api.php?action=rollback&title=Main%20Page&user=Catrope&token=123ABC',
207 'api.php?action=rollback&title=Main%20Page&user=217.121.114.116&' .
208 'token=123ABC&summary=Reverting%20vandalism&markbot=1'
209 );
210 }
211
212 public function getHelpUrls() {
213 return 'https://www.mediawiki.org/wiki/API:Rollback';
214 }
215 }