3 * Created on Oct 3, 2014
5 * Copyright © 2014 Brad Jorsch "bjorsch@wikimedia.org"
7 * Heavily based on ApiQueryDeletedrevs,
8 * Copyright © 2007 Roan Kattouw "<Firstname>.<Lastname>@gmail.com"
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * http://www.gnu.org/copyleft/gpl.html
29 * Query module to enumerate all deleted revisions.
33 class ApiQueryAllDeletedRevisions
extends ApiQueryRevisionsBase
{
35 public function __construct( ApiQuery
$query, $moduleName ) {
36 parent
::__construct( $query, $moduleName, 'adr' );
40 * @param ApiPageSet $resultPageSet
43 protected function run( ApiPageSet
$resultPageSet = null ) {
44 $user = $this->getUser();
45 // Before doing anything at all, let's check permissions
46 if ( !$user->isAllowed( 'deletedhistory' ) ) {
48 'You don\'t have permission to view deleted revision information',
54 $params = $this->extractRequestParams( false );
56 $result = $this->getResult();
58 // If the user wants no namespaces, they get no pages.
59 if ( $params['namespace'] === [] ) {
60 if ( $resultPageSet === null ) {
61 $result->addValue( 'query', $this->getModuleName(), [] );
66 // This module operates in two modes:
67 // 'user': List deleted revs by a certain user
68 // 'all': List all deleted revs in NS
70 if ( !is_null( $params['user'] ) ) {
74 if ( $mode == 'user' ) {
75 foreach ( [ 'from', 'to', 'prefix', 'excludeuser' ] as $param ) {
76 if ( !is_null( $params[$param] ) ) {
77 $p = $this->getModulePrefix();
78 $this->dieUsage( "The '{$p}{$param}' parameter cannot be used with '{$p}user'",
83 foreach ( [ 'start', 'end' ] as $param ) {
84 if ( !is_null( $params[$param] ) ) {
85 $p = $this->getModulePrefix();
86 $this->dieUsage( "The '{$p}{$param}' parameter may only be used with '{$p}user'",
92 // If we're generating titles only, we can use DISTINCT for a better
93 // query. But we can't do that in 'user' mode (wrong index), and we can
94 // only do it when sorting ASC (because MySQL apparently can't use an
95 // index backwards for grouping even though it can for ORDER BY, WTF?)
96 $dir = $params['dir'];
97 $optimizeGenerateTitles = false;
98 if ( $mode === 'all' && $params['generatetitles'] && $resultPageSet !== null ) {
99 if ( $dir === 'newer' ) {
100 $optimizeGenerateTitles = true;
102 $p = $this->getModulePrefix();
103 $this->setWarning( "For better performance when generating titles, set {$p}dir=newer" );
107 $this->addTables( 'archive' );
108 if ( $resultPageSet === null ) {
109 $this->parseParameters( $params );
110 $this->addFields( Revision
::selectArchiveFields() );
111 $this->addFields( [ 'ar_title', 'ar_namespace' ] );
113 $this->limit
= $this->getParameter( 'limit' ) ?
: 10;
114 $this->addFields( [ 'ar_title', 'ar_namespace' ] );
115 if ( $optimizeGenerateTitles ) {
116 $this->addOption( 'DISTINCT' );
118 $this->addFields( [ 'ar_timestamp', 'ar_rev_id', 'ar_id' ] );
122 if ( $this->fld_tags
) {
123 $this->addTables( 'tag_summary' );
125 [ 'tag_summary' => [ 'LEFT JOIN', [ 'ar_rev_id=ts_rev_id' ] ] ]
127 $this->addFields( 'ts_tags' );
130 if ( !is_null( $params['tag'] ) ) {
131 $this->addTables( 'change_tag' );
133 [ 'change_tag' => [ 'INNER JOIN', [ 'ar_rev_id=ct_rev_id' ] ] ]
135 $this->addWhereFld( 'ct_tag', $params['tag'] );
138 if ( $this->fetchContent
) {
139 // Modern MediaWiki has the content for deleted revs in the 'text'
140 // table using fields old_text and old_flags. But revisions deleted
141 // pre-1.5 store the content in the 'archive' table directly using
142 // fields ar_text and ar_flags, and no corresponding 'text' row. So
143 // we have to LEFT JOIN and fetch all four fields.
144 $this->addTables( 'text' );
146 [ 'text' => [ 'LEFT JOIN', [ 'ar_text_id=old_id' ] ] ]
148 $this->addFields( [ 'ar_text', 'ar_flags', 'old_text', 'old_flags' ] );
150 // This also means stricter restrictions
151 if ( !$user->isAllowedAny( 'undelete', 'deletedtext' ) ) {
153 'You don\'t have permission to view deleted revision content',
161 if ( $mode == 'all' ) {
162 if ( $params['namespace'] !== null ) {
163 $namespaces = $params['namespace'];
165 $namespaces = MWNamespace
::getValidNamespaces();
167 $this->addWhereFld( 'ar_namespace', $namespaces );
169 // For from/to/prefix, we have to consider the potential
170 // transformations of the title in all specified namespaces.
171 // Generally there will be only one transformation, but wikis with
172 // some namespaces case-sensitive could have two.
173 if ( $params['from'] !== null ||
$params['to'] !== null ) {
174 $isDirNewer = ( $dir === 'newer' );
175 $after = ( $isDirNewer ?
'>=' : '<=' );
176 $before = ( $isDirNewer ?
'<=' : '>=' );
178 foreach ( $namespaces as $ns ) {
180 if ( $params['from'] !== null ) {
181 $w[] = 'ar_title' . $after .
182 $db->addQuotes( $this->titlePartToKey( $params['from'], $ns ) );
184 if ( $params['to'] !== null ) {
185 $w[] = 'ar_title' . $before .
186 $db->addQuotes( $this->titlePartToKey( $params['to'], $ns ) );
188 $w = $db->makeList( $w, LIST_AND
);
191 if ( count( $where ) == 1 ) {
192 $where = key( $where );
193 $this->addWhere( $where );
196 foreach ( $where as $w => $ns ) {
197 $where2[] = $db->makeList( [ $w, 'ar_namespace' => $ns ], LIST_AND
);
199 $this->addWhere( $db->makeList( $where2, LIST_OR
) );
203 if ( isset( $params['prefix'] ) ) {
205 foreach ( $namespaces as $ns ) {
206 $w = 'ar_title' . $db->buildLike(
207 $this->titlePartToKey( $params['prefix'], $ns ),
211 if ( count( $where ) == 1 ) {
212 $where = key( $where );
213 $this->addWhere( $where );
216 foreach ( $where as $w => $ns ) {
217 $where2[] = $db->makeList( [ $w, 'ar_namespace' => $ns ], LIST_AND
);
219 $this->addWhere( $db->makeList( $where2, LIST_OR
) );
223 if ( $this->getConfig()->get( 'MiserMode' ) ) {
224 $miser_ns = $params['namespace'];
226 $this->addWhereFld( 'ar_namespace', $params['namespace'] );
228 $this->addTimestampWhereRange( 'ar_timestamp', $dir, $params['start'], $params['end'] );
231 if ( !is_null( $params['user'] ) ) {
232 $this->addWhereFld( 'ar_user_text', $params['user'] );
233 } elseif ( !is_null( $params['excludeuser'] ) ) {
234 $this->addWhere( 'ar_user_text != ' .
235 $db->addQuotes( $params['excludeuser'] ) );
238 if ( !is_null( $params['user'] ) ||
!is_null( $params['excludeuser'] ) ) {
239 // Paranoia: avoid brute force searches (bug 17342)
240 // (shouldn't be able to get here without 'deletedhistory', but
241 // check it again just in case)
242 if ( !$user->isAllowed( 'deletedhistory' ) ) {
243 $bitmask = Revision
::DELETED_USER
;
244 } elseif ( !$user->isAllowedAny( 'suppressrevision', 'viewsuppressed' ) ) {
245 $bitmask = Revision
::DELETED_USER | Revision
::DELETED_RESTRICTED
;
250 $this->addWhere( $db->bitAnd( 'ar_deleted', $bitmask ) . " != $bitmask" );
254 if ( !is_null( $params['continue'] ) ) {
255 $cont = explode( '|', $params['continue'] );
256 $op = ( $dir == 'newer' ?
'>' : '<' );
257 if ( $optimizeGenerateTitles ) {
258 $this->dieContinueUsageIf( count( $cont ) != 2 );
259 $ns = intval( $cont[0] );
260 $this->dieContinueUsageIf( strval( $ns ) !== $cont[0] );
261 $title = $db->addQuotes( $cont[1] );
262 $this->addWhere( "ar_namespace $op $ns OR " .
263 "(ar_namespace = $ns AND ar_title $op= $title)" );
264 } elseif ( $mode == 'all' ) {
265 $this->dieContinueUsageIf( count( $cont ) != 4 );
266 $ns = intval( $cont[0] );
267 $this->dieContinueUsageIf( strval( $ns ) !== $cont[0] );
268 $title = $db->addQuotes( $cont[1] );
269 $ts = $db->addQuotes( $db->timestamp( $cont[2] ) );
270 $ar_id = (int)$cont[3];
271 $this->dieContinueUsageIf( strval( $ar_id ) !== $cont[3] );
272 $this->addWhere( "ar_namespace $op $ns OR " .
273 "(ar_namespace = $ns AND " .
274 "(ar_title $op $title OR " .
275 "(ar_title = $title AND " .
276 "(ar_timestamp $op $ts OR " .
277 "(ar_timestamp = $ts AND " .
278 "ar_id $op= $ar_id)))))" );
280 $this->dieContinueUsageIf( count( $cont ) != 2 );
281 $ts = $db->addQuotes( $db->timestamp( $cont[0] ) );
282 $ar_id = (int)$cont[1];
283 $this->dieContinueUsageIf( strval( $ar_id ) !== $cont[1] );
284 $this->addWhere( "ar_timestamp $op $ts OR " .
285 "(ar_timestamp = $ts AND " .
286 "ar_id $op= $ar_id)" );
290 $this->addOption( 'LIMIT', $this->limit +
1 );
292 $sort = ( $dir == 'newer' ?
'' : ' DESC' );
294 if ( $optimizeGenerateTitles ) {
295 // Targeting index name_title_timestamp
296 if ( $params['namespace'] === null ||
count( array_unique( $params['namespace'] ) ) > 1 ) {
297 $orderby[] = "ar_namespace $sort";
299 $orderby[] = "ar_title $sort";
300 } elseif ( $mode == 'all' ) {
301 // Targeting index name_title_timestamp
302 if ( $params['namespace'] === null ||
count( array_unique( $params['namespace'] ) ) > 1 ) {
303 $orderby[] = "ar_namespace $sort";
305 $orderby[] = "ar_title $sort";
306 $orderby[] = "ar_timestamp $sort";
307 $orderby[] = "ar_id $sort";
309 // Targeting index usertext_timestamp
310 // 'user' is always constant.
311 $orderby[] = "ar_timestamp $sort";
312 $orderby[] = "ar_id $sort";
314 $this->addOption( 'ORDER BY', $orderby );
316 $res = $this->select( __METHOD__
);
317 $pageMap = []; // Maps ns&title to array index
321 foreach ( $res as $row ) {
322 if ( ++
$count > $this->limit
) {
324 if ( $optimizeGenerateTitles ) {
325 $this->setContinueEnumParameter( 'continue', "$row->ar_namespace|$row->ar_title" );
326 } elseif ( $mode == 'all' ) {
327 $this->setContinueEnumParameter( 'continue',
328 "$row->ar_namespace|$row->ar_title|$row->ar_timestamp|$row->ar_id"
331 $this->setContinueEnumParameter( 'continue', "$row->ar_timestamp|$row->ar_id" );
336 // Miser mode namespace check
337 if ( $miser_ns !== null && !in_array( $row->ar_namespace
, $miser_ns ) ) {
341 if ( $resultPageSet !== null ) {
342 if ( $params['generatetitles'] ) {
343 $key = "{$row->ar_namespace}:{$row->ar_title}";
344 if ( !isset( $generated[$key] ) ) {
345 $generated[$key] = Title
::makeTitle( $row->ar_namespace
, $row->ar_title
);
348 $generated[] = $row->ar_rev_id
;
351 $revision = Revision
::newFromArchiveRow( $row );
352 $rev = $this->extractRevisionInfo( $revision, $row );
354 if ( !isset( $pageMap[$row->ar_namespace
][$row->ar_title
] ) ) {
355 $index = $nextIndex++
;
356 $pageMap[$row->ar_namespace
][$row->ar_title
] = $index;
357 $title = $revision->getTitle();
359 'pageid' => $title->getArticleID(),
360 'revisions' => [ $rev ],
362 ApiResult
::setIndexedTagName( $a['revisions'], 'rev' );
363 ApiQueryBase
::addTitleInfo( $a, $title );
364 $fit = $result->addValue( [ 'query', $this->getModuleName() ], $index, $a );
366 $index = $pageMap[$row->ar_namespace
][$row->ar_title
];
367 $fit = $result->addValue(
368 [ 'query', $this->getModuleName(), $index, 'revisions' ],
372 if ( $mode == 'all' ) {
373 $this->setContinueEnumParameter( 'continue',
374 "$row->ar_namespace|$row->ar_title|$row->ar_timestamp|$row->ar_id"
377 $this->setContinueEnumParameter( 'continue', "$row->ar_timestamp|$row->ar_id" );
384 if ( $resultPageSet !== null ) {
385 if ( $params['generatetitles'] ) {
386 $resultPageSet->populateFromTitles( $generated );
388 $resultPageSet->populateFromRevisionIDs( $generated );
391 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'page' );
395 public function getAllowedParams() {
396 $ret = parent
::getAllowedParams() +
[
398 ApiBase
::PARAM_TYPE
=> 'user'
401 ApiBase
::PARAM_ISMULTI
=> true,
402 ApiBase
::PARAM_TYPE
=> 'namespace',
405 ApiBase
::PARAM_TYPE
=> 'timestamp',
406 ApiBase
::PARAM_HELP_MSG_INFO
=> [ [ 'useronly' ] ],
409 ApiBase
::PARAM_TYPE
=> 'timestamp',
410 ApiBase
::PARAM_HELP_MSG_INFO
=> [ [ 'useronly' ] ],
413 ApiBase
::PARAM_TYPE
=> [
417 ApiBase
::PARAM_DFLT
=> 'older',
418 ApiBase
::PARAM_HELP_MSG
=> 'api-help-param-direction',
421 ApiBase
::PARAM_HELP_MSG_INFO
=> [ [ 'nonuseronly' ] ],
424 ApiBase
::PARAM_HELP_MSG_INFO
=> [ [ 'nonuseronly' ] ],
427 ApiBase
::PARAM_HELP_MSG_INFO
=> [ [ 'nonuseronly' ] ],
430 ApiBase
::PARAM_TYPE
=> 'user',
431 ApiBase
::PARAM_HELP_MSG_INFO
=> [ [ 'nonuseronly' ] ],
435 ApiBase
::PARAM_HELP_MSG
=> 'api-help-param-continue',
437 'generatetitles' => [
438 ApiBase
::PARAM_DFLT
=> false
442 if ( $this->getConfig()->get( 'MiserMode' ) ) {
443 $ret['user'][ApiBase
::PARAM_HELP_MSG_APPEND
] = [
444 'apihelp-query+alldeletedrevisions-param-miser-user-namespace',
446 $ret['namespace'][ApiBase
::PARAM_HELP_MSG_APPEND
] = [
447 'apihelp-query+alldeletedrevisions-param-miser-user-namespace',
454 protected function getExamplesMessages() {
456 'action=query&list=alldeletedrevisions&adruser=Example&adrlimit=50'
457 => 'apihelp-query+alldeletedrevisions-example-user',
458 'action=query&list=alldeletedrevisions&adrdir=newer&adrnamespace=0&adrlimit=50'
459 => 'apihelp-query+alldeletedrevisions-example-ns-main',
463 public function getHelpUrls() {
464 return 'https://www.mediawiki.org/wiki/API:Alldeletedrevisions';