Merge "Exclude redirects from Special:Fewestrevisions"
[lhc/web/wiklou.git] / includes / api / ApiQueryAllDeletedRevisions.php
1 <?php
2 /**
3 * Copyright © 2014 Wikimedia Foundation and contributors
4 *
5 * Heavily based on ApiQueryDeletedrevs,
6 * Copyright © 2007 Roan Kattouw "<Firstname>.<Lastname>@gmail.com"
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
22 *
23 * @file
24 */
25
26 use MediaWiki\MediaWikiServices;
27 use MediaWiki\Revision\RevisionRecord;
28 use MediaWiki\Storage\NameTableAccessException;
29
30 /**
31 * Query module to enumerate all deleted revisions.
32 *
33 * @ingroup API
34 */
35 class ApiQueryAllDeletedRevisions extends ApiQueryRevisionsBase {
36
37 public function __construct( ApiQuery $query, $moduleName ) {
38 parent::__construct( $query, $moduleName, 'adr' );
39 }
40
41 /**
42 * @param ApiPageSet|null $resultPageSet
43 * @return void
44 */
45 protected function run( ApiPageSet $resultPageSet = null ) {
46 // Before doing anything at all, let's check permissions
47 $this->checkUserRightsAny( 'deletedhistory' );
48
49 $user = $this->getUser();
50 $db = $this->getDB();
51 $params = $this->extractRequestParams( false );
52 $services = MediaWikiServices::getInstance();
53 $revisionStore = $services->getRevisionStore();
54
55 $result = $this->getResult();
56
57 // If the user wants no namespaces, they get no pages.
58 if ( $params['namespace'] === [] ) {
59 if ( $resultPageSet === null ) {
60 $result->addValue( 'query', $this->getModuleName(), [] );
61 }
62 return;
63 }
64
65 // This module operates in two modes:
66 // 'user': List deleted revs by a certain user
67 // 'all': List all deleted revs in NS
68 $mode = 'all';
69 if ( !is_null( $params['user'] ) ) {
70 $mode = 'user';
71 }
72
73 if ( $mode == 'user' ) {
74 foreach ( [ 'from', 'to', 'prefix', 'excludeuser' ] as $param ) {
75 if ( !is_null( $params[$param] ) ) {
76 $p = $this->getModulePrefix();
77 $this->dieWithError(
78 [ 'apierror-invalidparammix-cannotusewith', $p . $param, "{$p}user" ],
79 'invalidparammix'
80 );
81 }
82 }
83 } else {
84 foreach ( [ 'start', 'end' ] as $param ) {
85 if ( !is_null( $params[$param] ) ) {
86 $p = $this->getModulePrefix();
87 $this->dieWithError(
88 [ 'apierror-invalidparammix-mustusewith', $p . $param, "{$p}user" ],
89 'invalidparammix'
90 );
91 }
92 }
93 }
94
95 // If we're generating titles only, we can use DISTINCT for a better
96 // query. But we can't do that in 'user' mode (wrong index), and we can
97 // only do it when sorting ASC (because MySQL apparently can't use an
98 // index backwards for grouping even though it can for ORDER BY, WTF?)
99 $dir = $params['dir'];
100 $optimizeGenerateTitles = false;
101 if ( $mode === 'all' && $params['generatetitles'] && $resultPageSet !== null ) {
102 if ( $dir === 'newer' ) {
103 $optimizeGenerateTitles = true;
104 } else {
105 $p = $this->getModulePrefix();
106 $this->addWarning( [ 'apiwarn-alldeletedrevisions-performance', $p ], 'performance' );
107 }
108 }
109
110 if ( $resultPageSet === null ) {
111 $this->parseParameters( $params );
112 $arQuery = $revisionStore->getArchiveQueryInfo();
113 $this->addTables( $arQuery['tables'] );
114 $this->addJoinConds( $arQuery['joins'] );
115 $this->addFields( $arQuery['fields'] );
116 $this->addFields( [ 'ar_title', 'ar_namespace' ] );
117 } else {
118 $this->limit = $this->getParameter( 'limit' ) ?: 10;
119 $this->addTables( 'archive' );
120 $this->addFields( [ 'ar_title', 'ar_namespace' ] );
121 if ( $optimizeGenerateTitles ) {
122 $this->addOption( 'DISTINCT' );
123 } else {
124 $this->addFields( [ 'ar_timestamp', 'ar_rev_id', 'ar_id' ] );
125 }
126 }
127
128 if ( $this->fld_tags ) {
129 $this->addFields( [ 'ts_tags' => ChangeTags::makeTagSummarySubquery( 'archive' ) ] );
130 }
131
132 if ( !is_null( $params['tag'] ) ) {
133 $this->addTables( 'change_tag' );
134 $this->addJoinConds(
135 [ 'change_tag' => [ 'JOIN', [ 'ar_rev_id=ct_rev_id' ] ] ]
136 );
137 $changeTagDefStore = MediaWikiServices::getInstance()->getChangeTagDefStore();
138 try {
139 $this->addWhereFld( 'ct_tag_id', $changeTagDefStore->getId( $params['tag'] ) );
140 } catch ( NameTableAccessException $exception ) {
141 // Return nothing.
142 $this->addWhere( '1=0' );
143 }
144 }
145
146 // This means stricter restrictions
147 if ( $this->fetchContent ) {
148 $this->checkUserRightsAny( [ 'deletedtext', 'undelete' ] );
149 }
150
151 $miser_ns = null;
152
153 if ( $mode == 'all' ) {
154 $namespaces = $params['namespace'] ??
155 $services->getNamespaceInfo()->getValidNamespaces();
156 $this->addWhereFld( 'ar_namespace', $namespaces );
157
158 // For from/to/prefix, we have to consider the potential
159 // transformations of the title in all specified namespaces.
160 // Generally there will be only one transformation, but wikis with
161 // some namespaces case-sensitive could have two.
162 if ( $params['from'] !== null || $params['to'] !== null ) {
163 $isDirNewer = ( $dir === 'newer' );
164 $after = ( $isDirNewer ? '>=' : '<=' );
165 $before = ( $isDirNewer ? '<=' : '>=' );
166 $where = [];
167 foreach ( $namespaces as $ns ) {
168 $w = [];
169 if ( $params['from'] !== null ) {
170 $w[] = 'ar_title' . $after .
171 $db->addQuotes( $this->titlePartToKey( $params['from'], $ns ) );
172 }
173 if ( $params['to'] !== null ) {
174 $w[] = 'ar_title' . $before .
175 $db->addQuotes( $this->titlePartToKey( $params['to'], $ns ) );
176 }
177 $w = $db->makeList( $w, LIST_AND );
178 $where[$w][] = $ns;
179 }
180 if ( count( $where ) == 1 ) {
181 $where = key( $where );
182 $this->addWhere( $where );
183 } else {
184 $where2 = [];
185 foreach ( $where as $w => $ns ) {
186 $where2[] = $db->makeList( [ $w, 'ar_namespace' => $ns ], LIST_AND );
187 }
188 $this->addWhere( $db->makeList( $where2, LIST_OR ) );
189 }
190 }
191
192 if ( isset( $params['prefix'] ) ) {
193 $where = [];
194 foreach ( $namespaces as $ns ) {
195 $w = 'ar_title' . $db->buildLike(
196 $this->titlePartToKey( $params['prefix'], $ns ),
197 $db->anyString() );
198 $where[$w][] = $ns;
199 }
200 if ( count( $where ) == 1 ) {
201 $where = key( $where );
202 $this->addWhere( $where );
203 } else {
204 $where2 = [];
205 foreach ( $where as $w => $ns ) {
206 $where2[] = $db->makeList( [ $w, 'ar_namespace' => $ns ], LIST_AND );
207 }
208 $this->addWhere( $db->makeList( $where2, LIST_OR ) );
209 }
210 }
211 } else {
212 if ( $this->getConfig()->get( 'MiserMode' ) ) {
213 $miser_ns = $params['namespace'];
214 } else {
215 $this->addWhereFld( 'ar_namespace', $params['namespace'] );
216 }
217 $this->addTimestampWhereRange( 'ar_timestamp', $dir, $params['start'], $params['end'] );
218 }
219
220 if ( !is_null( $params['user'] ) ) {
221 // Don't query by user ID here, it might be able to use the ar_usertext_timestamp index.
222 $actorQuery = ActorMigration::newMigration()
223 ->getWhere( $db, 'ar_user', User::newFromName( $params['user'], false ), false );
224 $this->addTables( $actorQuery['tables'] );
225 $this->addJoinConds( $actorQuery['joins'] );
226 $this->addWhere( $actorQuery['conds'] );
227 } elseif ( !is_null( $params['excludeuser'] ) ) {
228 // Here there's no chance of using ar_usertext_timestamp.
229 $actorQuery = ActorMigration::newMigration()
230 ->getWhere( $db, 'ar_user', User::newFromName( $params['excludeuser'], false ) );
231 $this->addTables( $actorQuery['tables'] );
232 $this->addJoinConds( $actorQuery['joins'] );
233 $this->addWhere( 'NOT(' . $actorQuery['conds'] . ')' );
234 }
235
236 if ( !is_null( $params['user'] ) || !is_null( $params['excludeuser'] ) ) {
237 // Paranoia: avoid brute force searches (T19342)
238 // (shouldn't be able to get here without 'deletedhistory', but
239 // check it again just in case)
240 if ( !$user->isAllowed( 'deletedhistory' ) ) {
241 $bitmask = RevisionRecord::DELETED_USER;
242 } elseif ( !$user->isAllowedAny( 'suppressrevision', 'viewsuppressed' ) ) {
243 $bitmask = RevisionRecord::DELETED_USER | RevisionRecord::DELETED_RESTRICTED;
244 } else {
245 $bitmask = 0;
246 }
247 if ( $bitmask ) {
248 $this->addWhere( $db->bitAnd( 'ar_deleted', $bitmask ) . " != $bitmask" );
249 }
250 }
251
252 if ( !is_null( $params['continue'] ) ) {
253 $cont = explode( '|', $params['continue'] );
254 $op = ( $dir == 'newer' ? '>' : '<' );
255 if ( $optimizeGenerateTitles ) {
256 $this->dieContinueUsageIf( count( $cont ) != 2 );
257 $ns = (int)$cont[0];
258 $this->dieContinueUsageIf( strval( $ns ) !== $cont[0] );
259 $title = $db->addQuotes( $cont[1] );
260 $this->addWhere( "ar_namespace $op $ns OR " .
261 "(ar_namespace = $ns AND ar_title $op= $title)" );
262 } elseif ( $mode == 'all' ) {
263 $this->dieContinueUsageIf( count( $cont ) != 4 );
264 $ns = (int)$cont[0];
265 $this->dieContinueUsageIf( strval( $ns ) !== $cont[0] );
266 $title = $db->addQuotes( $cont[1] );
267 $ts = $db->addQuotes( $db->timestamp( $cont[2] ) );
268 $ar_id = (int)$cont[3];
269 $this->dieContinueUsageIf( strval( $ar_id ) !== $cont[3] );
270 $this->addWhere( "ar_namespace $op $ns OR " .
271 "(ar_namespace = $ns AND " .
272 "(ar_title $op $title OR " .
273 "(ar_title = $title AND " .
274 "(ar_timestamp $op $ts OR " .
275 "(ar_timestamp = $ts AND " .
276 "ar_id $op= $ar_id)))))" );
277 } else {
278 $this->dieContinueUsageIf( count( $cont ) != 2 );
279 $ts = $db->addQuotes( $db->timestamp( $cont[0] ) );
280 $ar_id = (int)$cont[1];
281 $this->dieContinueUsageIf( strval( $ar_id ) !== $cont[1] );
282 $this->addWhere( "ar_timestamp $op $ts OR " .
283 "(ar_timestamp = $ts AND " .
284 "ar_id $op= $ar_id)" );
285 }
286 }
287
288 $this->addOption( 'LIMIT', $this->limit + 1 );
289
290 $sort = ( $dir == 'newer' ? '' : ' DESC' );
291 $orderby = [];
292 if ( $optimizeGenerateTitles ) {
293 // Targeting index name_title_timestamp
294 if ( $params['namespace'] === null || count( array_unique( $params['namespace'] ) ) > 1 ) {
295 $orderby[] = "ar_namespace $sort";
296 }
297 $orderby[] = "ar_title $sort";
298 } elseif ( $mode == 'all' ) {
299 // Targeting index name_title_timestamp
300 if ( $params['namespace'] === null || count( array_unique( $params['namespace'] ) ) > 1 ) {
301 $orderby[] = "ar_namespace $sort";
302 }
303 $orderby[] = "ar_title $sort";
304 $orderby[] = "ar_timestamp $sort";
305 $orderby[] = "ar_id $sort";
306 } else {
307 // Targeting index usertext_timestamp
308 // 'user' is always constant.
309 $orderby[] = "ar_timestamp $sort";
310 $orderby[] = "ar_id $sort";
311 }
312 $this->addOption( 'ORDER BY', $orderby );
313
314 $res = $this->select( __METHOD__ );
315 $pageMap = []; // Maps ns&title to array index
316 $count = 0;
317 $nextIndex = 0;
318 $generated = [];
319 foreach ( $res as $row ) {
320 if ( ++$count > $this->limit ) {
321 // We've had enough
322 if ( $optimizeGenerateTitles ) {
323 $this->setContinueEnumParameter( 'continue', "$row->ar_namespace|$row->ar_title" );
324 } elseif ( $mode == 'all' ) {
325 $this->setContinueEnumParameter( 'continue',
326 "$row->ar_namespace|$row->ar_title|$row->ar_timestamp|$row->ar_id"
327 );
328 } else {
329 $this->setContinueEnumParameter( 'continue', "$row->ar_timestamp|$row->ar_id" );
330 }
331 break;
332 }
333
334 // Miser mode namespace check
335 if ( $miser_ns !== null && !in_array( $row->ar_namespace, $miser_ns ) ) {
336 continue;
337 }
338
339 if ( $resultPageSet !== null ) {
340 if ( $params['generatetitles'] ) {
341 $key = "{$row->ar_namespace}:{$row->ar_title}";
342 if ( !isset( $generated[$key] ) ) {
343 $generated[$key] = Title::makeTitle( $row->ar_namespace, $row->ar_title );
344 }
345 } else {
346 $generated[] = $row->ar_rev_id;
347 }
348 } else {
349 $revision = $revisionStore->newRevisionFromArchiveRow( $row );
350 $rev = $this->extractRevisionInfo( $revision, $row );
351
352 if ( !isset( $pageMap[$row->ar_namespace][$row->ar_title] ) ) {
353 $index = $nextIndex++;
354 $pageMap[$row->ar_namespace][$row->ar_title] = $index;
355 $title = Title::newFromLinkTarget( $revision->getPageAsLinkTarget() );
356 $a = [
357 'pageid' => $title->getArticleID(),
358 'revisions' => [ $rev ],
359 ];
360 ApiResult::setIndexedTagName( $a['revisions'], 'rev' );
361 ApiQueryBase::addTitleInfo( $a, $title );
362 $fit = $result->addValue( [ 'query', $this->getModuleName() ], $index, $a );
363 } else {
364 $index = $pageMap[$row->ar_namespace][$row->ar_title];
365 $fit = $result->addValue(
366 [ 'query', $this->getModuleName(), $index, 'revisions' ],
367 null, $rev );
368 }
369 if ( !$fit ) {
370 if ( $mode == 'all' ) {
371 $this->setContinueEnumParameter( 'continue',
372 "$row->ar_namespace|$row->ar_title|$row->ar_timestamp|$row->ar_id"
373 );
374 } else {
375 $this->setContinueEnumParameter( 'continue', "$row->ar_timestamp|$row->ar_id" );
376 }
377 break;
378 }
379 }
380 }
381
382 if ( $resultPageSet !== null ) {
383 if ( $params['generatetitles'] ) {
384 $resultPageSet->populateFromTitles( $generated );
385 } else {
386 $resultPageSet->populateFromRevisionIDs( $generated );
387 }
388 } else {
389 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'page' );
390 }
391 }
392
393 public function getAllowedParams() {
394 $ret = parent::getAllowedParams() + [
395 'user' => [
396 ApiBase::PARAM_TYPE => 'user'
397 ],
398 'namespace' => [
399 ApiBase::PARAM_ISMULTI => true,
400 ApiBase::PARAM_TYPE => 'namespace',
401 ],
402 'start' => [
403 ApiBase::PARAM_TYPE => 'timestamp',
404 ApiBase::PARAM_HELP_MSG_INFO => [ [ 'useronly' ] ],
405 ],
406 'end' => [
407 ApiBase::PARAM_TYPE => 'timestamp',
408 ApiBase::PARAM_HELP_MSG_INFO => [ [ 'useronly' ] ],
409 ],
410 'dir' => [
411 ApiBase::PARAM_TYPE => [
412 'newer',
413 'older'
414 ],
415 ApiBase::PARAM_DFLT => 'older',
416 ApiBase::PARAM_HELP_MSG => 'api-help-param-direction',
417 ],
418 'from' => [
419 ApiBase::PARAM_HELP_MSG_INFO => [ [ 'nonuseronly' ] ],
420 ],
421 'to' => [
422 ApiBase::PARAM_HELP_MSG_INFO => [ [ 'nonuseronly' ] ],
423 ],
424 'prefix' => [
425 ApiBase::PARAM_HELP_MSG_INFO => [ [ 'nonuseronly' ] ],
426 ],
427 'excludeuser' => [
428 ApiBase::PARAM_TYPE => 'user',
429 ApiBase::PARAM_HELP_MSG_INFO => [ [ 'nonuseronly' ] ],
430 ],
431 'tag' => null,
432 'continue' => [
433 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
434 ],
435 'generatetitles' => [
436 ApiBase::PARAM_DFLT => false
437 ],
438 ];
439
440 if ( $this->getConfig()->get( 'MiserMode' ) ) {
441 $ret['user'][ApiBase::PARAM_HELP_MSG_APPEND] = [
442 'apihelp-query+alldeletedrevisions-param-miser-user-namespace',
443 ];
444 $ret['namespace'][ApiBase::PARAM_HELP_MSG_APPEND] = [
445 'apihelp-query+alldeletedrevisions-param-miser-user-namespace',
446 ];
447 }
448
449 return $ret;
450 }
451
452 protected function getExamplesMessages() {
453 return [
454 'action=query&list=alldeletedrevisions&adruser=Example&adrlimit=50'
455 => 'apihelp-query+alldeletedrevisions-example-user',
456 'action=query&list=alldeletedrevisions&adrdir=newer&adrnamespace=0&adrlimit=50'
457 => 'apihelp-query+alldeletedrevisions-example-ns-main',
458 ];
459 }
460
461 public function getHelpUrls() {
462 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Alldeletedrevisions';
463 }
464 }