5 * Created on Jun 20, 2007
7 * Copyright © 2007 Roan Kattouw "<Firstname>.<Lastname>@gmail.com"
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.
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.
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
30 class ApiRollback
extends ApiBase
{
35 private $mTitleObj = null;
40 private $mUser = null;
42 public function execute() {
43 $this->useTransactionalTimeLimit();
45 $user = $this->getUser();
46 $params = $this->extractRequestParams();
48 $titleObj = $this->getRbTitle( $params );
49 $pageObj = WikiPage
::factory( $titleObj );
50 $summary = $params['summary'];
53 // If change tagging was requested, check that the user is allowed to tag,
54 // and the tags are valid
55 if ( count( $params['tags'] ) ) {
56 $tagStatus = ChangeTags
::canAddTagsAccompanyingChange( $params['tags'], $user );
57 if ( !$tagStatus->isOK() ) {
58 $this->dieStatus( $tagStatus );
62 $retval = $pageObj->doRollback(
63 $this->getRbUser( $params ),
72 // We don't care about multiple errors, just report one of them
74 if ( isset( $retval[0][0] ) &&
75 ( $retval[0][0] == 'alreadyrolled' ||
$retval[0][0] == 'cantrollback' )
78 $userMessage = $this->msg( $error[0], array_slice( $error, 1 ) );
79 // dieUsageMsg() doesn't support $extraData
80 $errorCode = $error[0];
81 $errorInfo = isset( ApiBase
::$messageMap[$errorCode] ) ?
82 ApiBase
::$messageMap[$errorCode]['info'] :
84 $this->dieUsage( $errorInfo, $errorCode, 0, [
85 'messageHtml' => $userMessage->parseAsBlock()
89 $this->dieUsageMsg( reset( $retval ) );
92 $watch = 'preferences';
93 if ( isset( $params['watchlist'] ) ) {
94 $watch = $params['watchlist'];
98 $this->setWatch( $watch, $titleObj, 'watchrollback' );
101 'title' => $titleObj->getPrefixedText(),
102 'pageid' => intval( $details['current']->getPage() ),
103 'summary' => $details['summary'],
104 'revid' => intval( $details['newid'] ),
105 // The revision being reverted (previously the current revision of the page)
106 'old_revid' => intval( $details['current']->getID() ),
107 // The revision being restored (the last revision before revision(s) by the reverted user)
108 'last_revid' => intval( $details['target']->getID() )
111 $oldUser = $details['current']->getUserText( Revision
::FOR_THIS_USER
);
112 $lastUser = $details['target']->getUserText( Revision
::FOR_THIS_USER
);
113 $diffUrl = $titleObj->getFullURL( [
114 'diff' => $info['revid'],
115 'oldid' => $info['old_revid'],
118 $info['messageHtml'] = $this->msg( 'rollback-success-notify' )
119 ->params( $oldUser, $lastUser, $diffUrl )
122 $this->getResult()->addValue( null, $this->getModuleName(), $info );
125 public function mustBePosted() {
129 public function isWriteMode() {
133 public function getAllowedParams() {
137 ApiBase
::PARAM_TYPE
=> 'integer'
140 ApiBase
::PARAM_TYPE
=> 'tags',
141 ApiBase
::PARAM_ISMULTI
=> true,
144 ApiBase
::PARAM_TYPE
=> 'user',
145 ApiBase
::PARAM_REQUIRED
=> true
150 ApiBase
::PARAM_DFLT
=> 'preferences',
151 ApiBase
::PARAM_TYPE
=> [
159 // Standard definition automatically inserted
160 ApiBase
::PARAM_HELP_MSG_APPEND
=> [ 'api-help-param-token-webui' ],
165 public function needsToken() {
170 * @param array $params
174 private function getRbUser( array $params ) {
175 if ( $this->mUser
!== null ) {
179 // We need to be able to revert IPs, but getCanonicalName rejects them
180 $this->mUser
= User
::isIP( $params['user'] )
182 : User
::getCanonicalName( $params['user'] );
183 if ( !$this->mUser
) {
184 $this->dieUsageMsg( [ 'invaliduser', $params['user'] ] );
191 * @param array $params
195 private function getRbTitle( array $params ) {
196 if ( $this->mTitleObj
!== null ) {
197 return $this->mTitleObj
;
200 $this->requireOnlyOneParameter( $params, 'title', 'pageid' );
202 if ( isset( $params['title'] ) ) {
203 $this->mTitleObj
= Title
::newFromText( $params['title'] );
204 if ( !$this->mTitleObj ||
$this->mTitleObj
->isExternal() ) {
205 $this->dieUsageMsg( [ 'invalidtitle', $params['title'] ] );
207 } elseif ( isset( $params['pageid'] ) ) {
208 $this->mTitleObj
= Title
::newFromID( $params['pageid'] );
209 if ( !$this->mTitleObj
) {
210 $this->dieUsageMsg( [ 'nosuchpageid', $params['pageid'] ] );
214 if ( !$this->mTitleObj
->exists() ) {
215 $this->dieUsageMsg( 'notanarticle' );
218 return $this->mTitleObj
;
221 protected function getExamplesMessages() {
223 'action=rollback&title=Main%20Page&user=Example&token=123ABC' =>
224 'apihelp-rollback-example-simple',
225 'action=rollback&title=Main%20Page&user=192.0.2.5&' .
226 'token=123ABC&summary=Reverting%20vandalism&markbot=1' =>
227 'apihelp-rollback-example-summary',
231 public function getHelpUrls() {
232 return 'https://www.mediawiki.org/wiki/API:Rollback';