5 * Created on Jul 2, 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
28 * Query module to enumerate all deleted revisions.
32 class ApiQueryDeletedrevs
extends ApiQueryBase
{
34 public function __construct( $query, $moduleName ) {
35 parent
::__construct( $query, $moduleName, 'dr' );
38 public function execute() {
39 $user = $this->getUser();
40 // Before doing anything at all, let's check permissions
41 if ( !$user->isAllowed( 'deletedhistory' ) ) {
42 $this->dieUsage( 'You don\'t have permission to view deleted revision information', 'permissiondenied' );
46 $params = $this->extractRequestParams( false );
47 $prop = array_flip( $params['prop'] );
48 $fld_parentid = isset( $prop['parentid'] );
49 $fld_revid = isset( $prop['revid'] );
50 $fld_user = isset( $prop['user'] );
51 $fld_userid = isset( $prop['userid'] );
52 $fld_comment = isset( $prop['comment'] );
53 $fld_parsedcomment = isset ( $prop['parsedcomment'] );
54 $fld_minor = isset( $prop['minor'] );
55 $fld_len = isset( $prop['len'] );
56 $fld_sha1 = isset( $prop['sha1'] );
57 $fld_content = isset( $prop['content'] );
58 $fld_token = isset( $prop['token'] );
60 $result = $this->getResult();
61 $pageSet = $this->getPageSet();
62 $titles = $pageSet->getTitles();
64 // This module operates in three modes:
65 // 'revs': List deleted revs for certain titles (1)
66 // 'user': List deleted revs by a certain user (2)
67 // 'all': List all deleted revs in NS (3)
69 if ( count( $titles ) > 0 ) {
71 } elseif ( !is_null( $params['user'] ) ) {
75 if ( $mode == 'revs' ||
$mode == 'user' ) {
76 // Ignore namespace and unique due to inability to know whether they were purposely set
77 foreach( array( 'from', 'to', 'prefix', /*'namespace',*/ 'continue', /*'unique'*/ ) as $p ) {
78 if ( !is_null( $params[$p] ) ) {
79 $this->dieUsage( "The '{$p}' parameter cannot be used in modes 1 or 2", 'badparams');
83 foreach( array( 'start', 'end' ) as $p ) {
84 if ( !is_null( $params[$p] ) ) {
85 $this->dieUsage( "The {$p} parameter cannot be used in mode 3", 'badparams');
90 if ( !is_null( $params['user'] ) && !is_null( $params['excludeuser'] ) ) {
91 $this->dieUsage( 'user and excludeuser cannot be used together', 'badparams' );
94 $this->addTables( 'archive' );
95 $this->addWhere( 'ar_deleted = 0' );
96 $this->addFields( array( 'ar_title', 'ar_namespace', 'ar_timestamp' ) );
98 $this->addFieldsIf( 'ar_parent_id', $fld_parentid );
99 $this->addFieldsIf( 'ar_rev_id', $fld_revid );
100 $this->addFieldsIf( 'ar_user_text', $fld_user );
101 $this->addFieldsIf( 'ar_user', $fld_userid );
102 $this->addFieldsIf( 'ar_comment', $fld_comment ||
$fld_parsedcomment );
103 $this->addFieldsIf( 'ar_minor_edit', $fld_minor );
104 $this->addFieldsIf( 'ar_len', $fld_len );
105 $this->addFieldsIf( 'ar_sha1', $fld_sha1 );
107 if ( $fld_content ) {
108 $this->addTables( 'text' );
109 $this->addFields( array( 'ar_text', 'ar_text_id', 'old_text', 'old_flags' ) );
110 $this->addWhere( 'ar_text_id = old_id' );
112 // This also means stricter restrictions
113 if ( !$user->isAllowed( 'undelete' ) ) {
114 $this->dieUsage( 'You don\'t have permission to view deleted revision content', 'permissiondenied' );
118 $userMax = $fld_content ? ApiBase
::LIMIT_SML1
: ApiBase
::LIMIT_BIG1
;
119 $botMax = $fld_content ? ApiBase
::LIMIT_SML2
: ApiBase
::LIMIT_BIG2
;
121 $limit = $params['limit'];
123 if ( $limit == 'max' ) {
124 $limit = $this->getMain()->canApiHighLimits() ?
$botMax : $userMax;
125 $this->getResult()->setParsedLimit( $this->getModuleName(), $limit );
128 $this->validateLimit( 'limit', $limit, 1, $userMax, $botMax );
131 // Undelete tokens are identical for all pages, so we cache one here
132 $token = $user->getEditToken( '', $this->getMain()->getRequest() );
135 $dir = $params['dir'];
137 // We need a custom WHERE clause that matches all titles.
138 if ( $mode == 'revs' ) {
139 $lb = new LinkBatch( $titles );
140 $where = $lb->constructSet( 'ar', $db );
141 $this->addWhere( $where );
142 } elseif ( $mode == 'all' ) {
143 $this->addWhereFld( 'ar_namespace', $params['namespace'] );
145 $from = is_null( $params['from'] ) ?
null : $this->titleToKey( $params['from'] );
146 $to = is_null( $params['to'] ) ?
null : $this->titleToKey( $params['to'] );
147 $this->addWhereRange( 'ar_title', $dir, $from, $to );
149 if ( isset( $params['prefix'] ) ) {
150 $this->addWhere( 'ar_title' . $db->buildLike( $this->titlePartToKey( $params['prefix'] ), $db->anyString() ) );
154 if ( !is_null( $params['user'] ) ) {
155 $this->addWhereFld( 'ar_user_text', $params['user'] );
156 } elseif ( !is_null( $params['excludeuser'] ) ) {
157 $this->addWhere( 'ar_user_text != ' .
158 $this->getDB()->addQuotes( $params['excludeuser'] ) );
161 if ( !is_null( $params['continue'] ) && ( $mode == 'all' ||
$mode == 'revs' ) ) {
162 $cont = explode( '|', $params['continue'] );
163 if ( count( $cont ) != 3 ) {
164 $this->dieUsage( 'Invalid continue param. You should pass the original value returned by the previous query', 'badcontinue' );
166 $ns = intval( $cont[0] );
167 $title = $this->getDB()->strencode( $this->titleToKey( $cont[1] ) );
168 $ts = $this->getDB()->strencode( $cont[2] );
169 $op = ( $dir == 'newer' ?
'>' : '<' );
170 $this->addWhere( "ar_namespace $op $ns OR " .
171 "(ar_namespace = $ns AND " .
172 "(ar_title $op '$title' OR " .
173 "(ar_title = '$title' AND " .
174 "ar_timestamp $op= '$ts')))" );
177 $this->addOption( 'LIMIT', $limit +
1 );
178 $this->addOption( 'USE INDEX', array( 'archive' => ( $mode == 'user' ?
'usertext_timestamp' : 'name_title_timestamp' ) ) );
179 if ( $mode == 'all' ) {
180 if ( $params['unique'] ) {
181 $this->addOption( 'GROUP BY', 'ar_title' );
183 $this->addOption( 'ORDER BY', 'ar_title, ar_timestamp' );
186 if ( $mode == 'revs' ) {
187 // Sort by ns and title in the same order as timestamp for efficiency
188 $this->addWhereRange( 'ar_namespace', $dir, null, null );
189 $this->addWhereRange( 'ar_title', $dir, null, null );
191 $this->addTimestampWhereRange( 'ar_timestamp', $dir, $params['start'], $params['end'] );
193 $res = $this->select( __METHOD__
);
194 $pageMap = array(); // Maps ns&title to (fake) pageid
197 foreach ( $res as $row ) {
198 if ( ++
$count > $limit ) {
200 if ( $mode == 'all' ||
$mode == 'revs' ) {
201 $this->setContinueEnumParameter( 'continue', intval( $row->ar_namespace
) . '|' .
202 $this->keyToTitle( $row->ar_title
) . '|' . $row->ar_timestamp
);
204 $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601
, $row->ar_timestamp
) );
210 $rev['timestamp'] = wfTimestamp( TS_ISO_8601
, $row->ar_timestamp
);
212 $rev['revid'] = intval( $row->ar_rev_id
);
214 if ( $fld_parentid && !is_null( $row->ar_parent_id
) ) {
215 $rev['parentid'] = intval( $row->ar_parent_id
);
218 $rev['user'] = $row->ar_user_text
;
221 $rev['userid'] = $row->ar_user
;
223 if ( $fld_comment ) {
224 $rev['comment'] = $row->ar_comment
;
227 $title = Title
::makeTitle( $row->ar_namespace
, $row->ar_title
);
229 if ( $fld_parsedcomment ) {
230 $rev['parsedcomment'] = Linker
::formatComment( $row->ar_comment
, $title );
232 if ( $fld_minor && $row->ar_minor_edit
== 1 ) {
236 $rev['len'] = $row->ar_len
;
239 if ( $row->ar_sha1
!= '' ) {
240 $rev['sha1'] = wfBaseConvert( $row->ar_sha1
, 36, 16, 40 );
245 if ( $fld_content ) {
246 ApiResult
::setContent( $rev, Revision
::getRevisionText( $row ) );
249 if ( !isset( $pageMap[$row->ar_namespace
][$row->ar_title
] ) ) {
250 $pageID = $newPageID++
;
251 $pageMap[$row->ar_namespace
][$row->ar_title
] = $pageID;
252 $a['revisions'] = array( $rev );
253 $result->setIndexedTagName( $a['revisions'], 'rev' );
254 ApiQueryBase
::addTitleInfo( $a, $title );
256 $a['token'] = $token;
258 $fit = $result->addValue( array( 'query', $this->getModuleName() ), $pageID, $a );
260 $pageID = $pageMap[$row->ar_namespace
][$row->ar_title
];
261 $fit = $result->addValue(
262 array( 'query', $this->getModuleName(), $pageID, 'revisions' ),
266 if ( $mode == 'all' ||
$mode == 'revs' ) {
267 $this->setContinueEnumParameter( 'continue', intval( $row->ar_namespace
) . '|' .
268 $this->keyToTitle( $row->ar_title
) . '|' . $row->ar_timestamp
);
270 $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601
, $row->ar_timestamp
) );
275 $result->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'page' );
278 public function getAllowedParams() {
281 ApiBase
::PARAM_TYPE
=> 'timestamp'
284 ApiBase
::PARAM_TYPE
=> 'timestamp',
287 ApiBase
::PARAM_TYPE
=> array(
291 ApiBase
::PARAM_DFLT
=> 'older'
299 ApiBase
::PARAM_TYPE
=> 'user'
301 'excludeuser' => array(
302 ApiBase
::PARAM_TYPE
=> 'user'
304 'namespace' => array(
305 ApiBase
::PARAM_TYPE
=> 'namespace',
306 ApiBase
::PARAM_DFLT
=> 0,
309 ApiBase
::PARAM_DFLT
=> 10,
310 ApiBase
::PARAM_TYPE
=> 'limit',
311 ApiBase
::PARAM_MIN
=> 1,
312 ApiBase
::PARAM_MAX
=> ApiBase
::LIMIT_BIG1
,
313 ApiBase
::PARAM_MAX2
=> ApiBase
::LIMIT_BIG2
316 ApiBase
::PARAM_DFLT
=> 'user|comment',
317 ApiBase
::PARAM_TYPE
=> array(
330 ApiBase
::PARAM_ISMULTI
=> true
335 public function getParamDescription() {
337 'start' => 'The timestamp to start enumerating from (1, 2)',
338 'end' => 'The timestamp to stop enumerating at (1, 2)',
339 'dir' => $this->getDirectionDescription( $this->getModulePrefix(), ' (1, 3)' ),
340 'from' => 'Start listing at this title (3)',
341 'to' => 'Stop listing at this title (3)',
342 'prefix' => 'Search for all page titles that begin with this value (3)',
343 'limit' => 'The maximum amount of revisions to list',
345 'Which properties to get',
346 ' revid - Adds the revision ID of the deleted revision',
347 ' parentid - Adds the revision ID of the previous revision to the page',
348 ' user - Adds the user who made the revision',
349 ' userid - Adds the user ID whom made the revision',
350 ' comment - Adds the comment of the revision',
351 ' parsedcomment - Adds the parsed comment of the revision',
352 ' minor - Tags if the revision is minor',
353 ' len - Adds the length (bytes) of the revision',
354 ' sha1 - Adds the SHA-1 (base 16) of the revision',
355 ' content - Adds the content of the revision',
356 ' token - Gives the edit token',
358 'namespace' => 'Only list pages in this namespace (3)',
359 'user' => 'Only list revisions by this user',
360 'excludeuser' => 'Don\'t list revisions by this user',
361 'continue' => 'When more results are available, use this to continue (3)',
362 'unique' => 'List only one revision for each page (3)',
366 public function getDescription() {
367 $p = $this->getModulePrefix();
369 'List deleted revisions.',
370 'Operates in three modes:',
371 ' 1) List deleted revisions for the given title(s), sorted by timestamp',
372 ' 2) List deleted contributions for the given user, sorted by timestamp (no titles specified)',
373 " 3) List all deleted revisions in the given namespace, sorted by title and timestamp (no titles specified, {$p}user not set)",
374 'Certain parameters only apply to some modes and are ignored in others.',
375 'For instance, a parameter marked (1) only applies to mode 1 and is ignored in modes 2 and 3',
379 public function getPossibleErrors() {
380 return array_merge( parent
::getPossibleErrors(), array(
381 array( 'code' => 'permissiondenied', 'info' => 'You don\'t have permission to view deleted revision information' ),
382 array( 'code' => 'badparams', 'info' => 'user and excludeuser cannot be used together' ),
383 array( 'code' => 'permissiondenied', 'info' => 'You don\'t have permission to view deleted revision content' ),
384 array( 'code' => 'badcontinue', 'info' => 'Invalid continue param. You should pass the original value returned by the previous query' ),
385 array( 'code' => 'badparams', 'info' => "The 'from' parameter cannot be used in modes 1 or 2" ),
386 array( 'code' => 'badparams', 'info' => "The 'to' parameter cannot be used in modes 1 or 2" ),
387 array( 'code' => 'badparams', 'info' => "The 'prefix' parameter cannot be used in modes 1 or 2" ),
388 array( 'code' => 'badparams', 'info' => "The 'continue' parameter cannot be used in modes 1 or 2" ),
389 array( 'code' => 'badparams', 'info' => "The 'start' parameter cannot be used in mode 3" ),
390 array( 'code' => 'badparams', 'info' => "The 'end' parameter cannot be used in mode 3" ),
394 public function getExamples() {
396 'api.php?action=query&list=deletedrevs&titles=Main%20Page|Talk:Main%20Page&drprop=user|comment|content'
397 => 'List the last deleted revisions of Main Page and Talk:Main Page, with content (mode 1)',
398 'api.php?action=query&list=deletedrevs&druser=Bob&drlimit=50'
399 => 'List the last 50 deleted contributions by Bob (mode 2)',
400 'api.php?action=query&list=deletedrevs&drdir=newer&drlimit=50'
401 => 'List the first 50 deleted revisions in the main namespace (mode 3)',
402 'api.php?action=query&list=deletedrevs&drdir=newer&drlimit=50&drnamespace=1&drunique='
403 => 'List the first 50 deleted pages in the Talk namespace (mode 3):',
407 public function getHelpUrls() {
408 return 'https://www.mediawiki.org/wiki/API:Deletedrevs';
411 public function getVersion() {
412 return __CLASS__
. ': $Id$';