Merge "Propagate the favicon information to getInfo()"
[lhc/web/wiklou.git] / includes / api / ApiQueryDeletedrevs.php
1 <?php
2 /**
3 *
4 *
5 * Created on Jul 2, 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 * Query module to enumerate all deleted revisions.
29 *
30 * @ingroup API
31 */
32 class ApiQueryDeletedrevs extends ApiQueryBase {
33
34 public function __construct( $query, $moduleName ) {
35 parent::__construct( $query, $moduleName, 'dr' );
36 }
37
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(
43 'You don\'t have permission to view deleted revision information',
44 'permissiondenied'
45 );
46 }
47
48 $db = $this->getDB();
49 $params = $this->extractRequestParams( false );
50 $prop = array_flip( $params['prop'] );
51 $fld_parentid = isset( $prop['parentid'] );
52 $fld_revid = isset( $prop['revid'] );
53 $fld_user = isset( $prop['user'] );
54 $fld_userid = isset( $prop['userid'] );
55 $fld_comment = isset( $prop['comment'] );
56 $fld_parsedcomment = isset( $prop['parsedcomment'] );
57 $fld_minor = isset( $prop['minor'] );
58 $fld_len = isset( $prop['len'] );
59 $fld_sha1 = isset( $prop['sha1'] );
60 $fld_content = isset( $prop['content'] );
61 $fld_token = isset( $prop['token'] );
62 $fld_tags = isset( $prop['tags'] );
63
64 // If we're in JSON callback mode, no tokens can be obtained
65 if ( !is_null( $this->getMain()->getRequest()->getVal( 'callback' ) ) ) {
66 $fld_token = false;
67 }
68
69 // If user can't undelete, no tokens
70 if ( !$user->isAllowed( 'undelete' ) ) {
71 $fld_token = false;
72 }
73
74 $result = $this->getResult();
75 $pageSet = $this->getPageSet();
76 $titles = $pageSet->getTitles();
77
78 // This module operates in three modes:
79 // 'revs': List deleted revs for certain titles (1)
80 // 'user': List deleted revs by a certain user (2)
81 // 'all': List all deleted revs in NS (3)
82 $mode = 'all';
83 if ( count( $titles ) > 0 ) {
84 $mode = 'revs';
85 } elseif ( !is_null( $params['user'] ) ) {
86 $mode = 'user';
87 }
88
89 if ( $mode == 'revs' || $mode == 'user' ) {
90 // Ignore namespace and unique due to inability to know whether they were purposely set
91 foreach ( array( 'from', 'to', 'prefix', /*'namespace', 'unique'*/ ) as $p ) {
92 if ( !is_null( $params[$p] ) ) {
93 $this->dieUsage( "The '{$p}' parameter cannot be used in modes 1 or 2", 'badparams' );
94 }
95 }
96 } else {
97 foreach ( array( 'start', 'end' ) as $p ) {
98 if ( !is_null( $params[$p] ) ) {
99 $this->dieUsage( "The {$p} parameter cannot be used in mode 3", 'badparams' );
100 }
101 }
102 }
103
104 if ( !is_null( $params['user'] ) && !is_null( $params['excludeuser'] ) ) {
105 $this->dieUsage( 'user and excludeuser cannot be used together', 'badparams' );
106 }
107
108 $this->addTables( 'archive' );
109 $this->addFields( array( 'ar_title', 'ar_namespace', 'ar_timestamp', 'ar_deleted' ) );
110
111 $this->addFieldsIf( 'ar_parent_id', $fld_parentid );
112 $this->addFieldsIf( 'ar_rev_id', $fld_revid );
113 $this->addFieldsIf( 'ar_user_text', $fld_user );
114 $this->addFieldsIf( 'ar_user', $fld_userid );
115 $this->addFieldsIf( 'ar_comment', $fld_comment || $fld_parsedcomment );
116 $this->addFieldsIf( 'ar_minor_edit', $fld_minor );
117 $this->addFieldsIf( 'ar_len', $fld_len );
118 $this->addFieldsIf( 'ar_sha1', $fld_sha1 );
119
120 if ( $fld_tags ) {
121 $this->addTables( 'tag_summary' );
122 $this->addJoinConds(
123 array( 'tag_summary' => array( 'LEFT JOIN', array( 'ar_rev_id=ts_rev_id' ) ) )
124 );
125 $this->addFields( 'ts_tags' );
126 }
127
128 if ( !is_null( $params['tag'] ) ) {
129 $this->addTables( 'change_tag' );
130 $this->addJoinConds(
131 array( 'change_tag' => array( 'INNER JOIN', array( 'ar_rev_id=ct_rev_id' ) ) )
132 );
133 $this->addWhereFld( 'ct_tag', $params['tag'] );
134 }
135
136 if ( $fld_content ) {
137 $this->addTables( 'text' );
138 $this->addJoinConds(
139 array( 'text' => array( 'INNER JOIN', array( 'ar_text_id=old_id' ) ) )
140 );
141 $this->addFields( array( 'ar_text', 'ar_text_id', 'old_text', 'old_flags' ) );
142
143 // This also means stricter restrictions
144 if ( !$user->isAllowedAny( 'undelete', 'deletedtext' ) ) {
145 $this->dieUsage(
146 'You don\'t have permission to view deleted revision content',
147 'permissiondenied'
148 );
149 }
150 }
151 // Check limits
152 $userMax = $fld_content ? ApiBase::LIMIT_SML1 : ApiBase::LIMIT_BIG1;
153 $botMax = $fld_content ? ApiBase::LIMIT_SML2 : ApiBase::LIMIT_BIG2;
154
155 $limit = $params['limit'];
156
157 if ( $limit == 'max' ) {
158 $limit = $this->getMain()->canApiHighLimits() ? $botMax : $userMax;
159 $this->getResult()->setParsedLimit( $this->getModuleName(), $limit );
160 }
161
162 $this->validateLimit( 'limit', $limit, 1, $userMax, $botMax );
163
164 if ( $fld_token ) {
165 // Undelete tokens are identical for all pages, so we cache one here
166 $token = $user->getEditToken( '', $this->getMain()->getRequest() );
167 }
168
169 $dir = $params['dir'];
170
171 // We need a custom WHERE clause that matches all titles.
172 if ( $mode == 'revs' ) {
173 $lb = new LinkBatch( $titles );
174 $where = $lb->constructSet( 'ar', $db );
175 $this->addWhere( $where );
176 } elseif ( $mode == 'all' ) {
177 $this->addWhereFld( 'ar_namespace', $params['namespace'] );
178
179 $from = $params['from'] === null ? null : $this->titlePartToKey( $params['from'], $params['namespace'] );
180 $to = $params['to'] === null ? null : $this->titlePartToKey( $params['to'], $params['namespace'] );
181 $this->addWhereRange( 'ar_title', $dir, $from, $to );
182
183 if ( isset( $params['prefix'] ) ) {
184 $this->addWhere( 'ar_title' . $db->buildLike(
185 $this->titlePartToKey( $params['prefix'], $params['namespace'] ),
186 $db->anyString() ) );
187 }
188 }
189
190 if ( !is_null( $params['user'] ) ) {
191 $this->addWhereFld( 'ar_user_text', $params['user'] );
192 } elseif ( !is_null( $params['excludeuser'] ) ) {
193 $this->addWhere( 'ar_user_text != ' .
194 $db->addQuotes( $params['excludeuser'] ) );
195 }
196
197 if ( !is_null( $params['user'] ) || !is_null( $params['excludeuser'] ) ) {
198 // Paranoia: avoid brute force searches (bug 17342)
199 // (shouldn't be able to get here without 'deletedhistory', but
200 // check it again just in case)
201 if ( !$user->isAllowed( 'deletedhistory' ) ) {
202 $bitmask = Revision::DELETED_USER;
203 } elseif ( !$user->isAllowed( 'suppressrevision' ) ) {
204 $bitmask = Revision::DELETED_USER | Revision::DELETED_RESTRICTED;
205 } else {
206 $bitmask = 0;
207 }
208 if ( $bitmask ) {
209 $this->addWhere( $db->bitAnd( 'ar_deleted', $bitmask ) . " != $bitmask" );
210 }
211 }
212
213 if ( !is_null( $params['continue'] ) && ( $mode == 'all' || $mode == 'revs' ) ) {
214 $cont = explode( '|', $params['continue'] );
215 $this->dieContinueUsageIf( count( $cont ) != 3 );
216 $ns = intval( $cont[0] );
217 $this->dieContinueUsageIf( strval( $ns ) !== $cont[0] );
218 $title = $db->addQuotes( $cont[1] );
219 $ts = $db->addQuotes( $db->timestamp( $cont[2] ) );
220 $op = ( $dir == 'newer' ? '>' : '<' );
221 $this->addWhere( "ar_namespace $op $ns OR " .
222 "(ar_namespace = $ns AND " .
223 "(ar_title $op $title OR " .
224 "(ar_title = $title AND " .
225 "ar_timestamp $op= $ts)))" );
226 }
227
228 $this->addOption( 'LIMIT', $limit + 1 );
229 $this->addOption(
230 'USE INDEX',
231 array( 'archive' => ( $mode == 'user' ? 'usertext_timestamp' : 'name_title_timestamp' ) )
232 );
233 if ( $mode == 'all' ) {
234 if ( $params['unique'] ) {
235 $this->addOption( 'GROUP BY', 'ar_title' );
236 } else {
237 $sort = ( $dir == 'newer' ? '' : ' DESC' );
238 $this->addOption( 'ORDER BY', array(
239 'ar_title' . $sort,
240 'ar_timestamp' . $sort
241 ) );
242 }
243 } else {
244 if ( $mode == 'revs' ) {
245 // Sort by ns and title in the same order as timestamp for efficiency
246 $this->addWhereRange( 'ar_namespace', $dir, null, null );
247 $this->addWhereRange( 'ar_title', $dir, null, null );
248 }
249 $this->addTimestampWhereRange( 'ar_timestamp', $dir, $params['start'], $params['end'] );
250 }
251 $res = $this->select( __METHOD__ );
252 $pageMap = array(); // Maps ns&title to (fake) pageid
253 $count = 0;
254 $newPageID = 0;
255 foreach ( $res as $row ) {
256 if ( ++$count > $limit ) {
257 // We've had enough
258 if ( $mode == 'all' || $mode == 'revs' ) {
259 $this->setContinueEnumParameter( 'continue', intval( $row->ar_namespace ) . '|' .
260 $row->ar_title . '|' . $row->ar_timestamp );
261 } else {
262 $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->ar_timestamp ) );
263 }
264 break;
265 }
266
267 $rev = array();
268 $anyHidden = false;
269
270 $rev['timestamp'] = wfTimestamp( TS_ISO_8601, $row->ar_timestamp );
271 if ( $fld_revid ) {
272 $rev['revid'] = intval( $row->ar_rev_id );
273 }
274 if ( $fld_parentid && !is_null( $row->ar_parent_id ) ) {
275 $rev['parentid'] = intval( $row->ar_parent_id );
276 }
277 if ( $fld_user || $fld_userid ) {
278 if ( $row->ar_deleted & Revision::DELETED_USER ) {
279 $rev['userhidden'] = '';
280 $anyHidden = true;
281 }
282 if ( Revision::userCanBitfield( $row->ar_deleted, Revision::DELETED_USER, $user ) ) {
283 if ( $fld_user ) {
284 $rev['user'] = $row->ar_user_text;
285 }
286 if ( $fld_userid ) {
287 $rev['userid'] = $row->ar_user;
288 }
289 }
290 }
291
292 if ( $fld_comment || $fld_parsedcomment ) {
293 if ( $row->ar_deleted & Revision::DELETED_COMMENT ) {
294 $rev['commenthidden'] = '';
295 $anyHidden = true;
296 }
297 if ( Revision::userCanBitfield( $row->ar_deleted, Revision::DELETED_COMMENT, $user ) ) {
298 if ( $fld_comment ) {
299 $rev['comment'] = $row->ar_comment;
300 }
301 if ( $fld_parsedcomment ) {
302 $title = Title::makeTitle( $row->ar_namespace, $row->ar_title );
303 $rev['parsedcomment'] = Linker::formatComment( $row->ar_comment, $title );
304 }
305 }
306 }
307
308 if ( $fld_minor && $row->ar_minor_edit == 1 ) {
309 $rev['minor'] = '';
310 }
311 if ( $fld_len ) {
312 $rev['len'] = $row->ar_len;
313 }
314 if ( $fld_sha1 ) {
315 if ( $row->ar_deleted & Revision::DELETED_TEXT ) {
316 $rev['sha1hidden'] = '';
317 $anyHidden = true;
318 }
319 if ( Revision::userCanBitfield( $row->ar_deleted, Revision::DELETED_TEXT, $user ) ) {
320 if ( $row->ar_sha1 != '' ) {
321 $rev['sha1'] = wfBaseConvert( $row->ar_sha1, 36, 16, 40 );
322 } else {
323 $rev['sha1'] = '';
324 }
325 }
326 }
327 if ( $fld_content ) {
328 if ( $row->ar_deleted & Revision::DELETED_TEXT ) {
329 $rev['texthidden'] = '';
330 $anyHidden = true;
331 }
332 if ( Revision::userCanBitfield( $row->ar_deleted, Revision::DELETED_TEXT, $user ) ) {
333 ApiResult::setContent( $rev, Revision::getRevisionText( $row ) );
334 }
335 }
336
337 if ( $fld_tags ) {
338 if ( $row->ts_tags ) {
339 $tags = explode( ',', $row->ts_tags );
340 $this->getResult()->setIndexedTagName( $tags, 'tag' );
341 $rev['tags'] = $tags;
342 } else {
343 $rev['tags'] = array();
344 }
345 }
346
347 if ( $anyHidden && ( $row->ar_deleted & Revision::DELETED_RESTRICTED ) ) {
348 $rev['suppressed'] = '';
349 }
350
351 if ( !isset( $pageMap[$row->ar_namespace][$row->ar_title] ) ) {
352 $pageID = $newPageID++;
353 $pageMap[$row->ar_namespace][$row->ar_title] = $pageID;
354 $a['revisions'] = array( $rev );
355 $result->setIndexedTagName( $a['revisions'], 'rev' );
356 $title = Title::makeTitle( $row->ar_namespace, $row->ar_title );
357 ApiQueryBase::addTitleInfo( $a, $title );
358 if ( $fld_token ) {
359 $a['token'] = $token;
360 }
361 $fit = $result->addValue( array( 'query', $this->getModuleName() ), $pageID, $a );
362 } else {
363 $pageID = $pageMap[$row->ar_namespace][$row->ar_title];
364 $fit = $result->addValue(
365 array( 'query', $this->getModuleName(), $pageID, 'revisions' ),
366 null, $rev );
367 }
368 if ( !$fit ) {
369 if ( $mode == 'all' || $mode == 'revs' ) {
370 $this->setContinueEnumParameter( 'continue', intval( $row->ar_namespace ) . '|' .
371 $row->ar_title . '|' . $row->ar_timestamp );
372 } else {
373 $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->ar_timestamp ) );
374 }
375 break;
376 }
377 }
378 $result->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'page' );
379 }
380
381 public function getAllowedParams() {
382 return array(
383 'start' => array(
384 ApiBase::PARAM_TYPE => 'timestamp'
385 ),
386 'end' => array(
387 ApiBase::PARAM_TYPE => 'timestamp',
388 ),
389 'dir' => array(
390 ApiBase::PARAM_TYPE => array(
391 'newer',
392 'older'
393 ),
394 ApiBase::PARAM_DFLT => 'older'
395 ),
396 'from' => null,
397 'to' => null,
398 'prefix' => null,
399 'continue' => null,
400 'unique' => false,
401 'tag' => null,
402 'user' => array(
403 ApiBase::PARAM_TYPE => 'user'
404 ),
405 'excludeuser' => array(
406 ApiBase::PARAM_TYPE => 'user'
407 ),
408 'namespace' => array(
409 ApiBase::PARAM_TYPE => 'namespace',
410 ApiBase::PARAM_DFLT => NS_MAIN,
411 ),
412 'limit' => array(
413 ApiBase::PARAM_DFLT => 10,
414 ApiBase::PARAM_TYPE => 'limit',
415 ApiBase::PARAM_MIN => 1,
416 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
417 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
418 ),
419 'prop' => array(
420 ApiBase::PARAM_DFLT => 'user|comment',
421 ApiBase::PARAM_TYPE => array(
422 'revid',
423 'parentid',
424 'user',
425 'userid',
426 'comment',
427 'parsedcomment',
428 'minor',
429 'len',
430 'sha1',
431 'content',
432 'token',
433 'tags'
434 ),
435 ApiBase::PARAM_ISMULTI => true
436 ),
437 );
438 }
439
440 public function getParamDescription() {
441 return array(
442 'start' => 'The timestamp to start enumerating from (1, 2)',
443 'end' => 'The timestamp to stop enumerating at (1, 2)',
444 'dir' => $this->getDirectionDescription( $this->getModulePrefix(), ' (1, 3)' ),
445 'from' => 'Start listing at this title (3)',
446 'to' => 'Stop listing at this title (3)',
447 'prefix' => 'Search for all page titles that begin with this value (3)',
448 'limit' => 'The maximum amount of revisions to list',
449 'prop' => array(
450 'Which properties to get',
451 ' revid - Adds the revision ID of the deleted revision',
452 ' parentid - Adds the revision ID of the previous revision to the page',
453 ' user - Adds the user who made the revision',
454 ' userid - Adds the user ID whom made the revision',
455 ' comment - Adds the comment of the revision',
456 ' parsedcomment - Adds the parsed comment of the revision',
457 ' minor - Tags if the revision is minor',
458 ' len - Adds the length (bytes) of the revision',
459 ' sha1 - Adds the SHA-1 (base 16) of the revision',
460 ' content - Adds the content of the revision',
461 ' token - Gives the edit token',
462 ' tags - Tags for the revision',
463 ),
464 'namespace' => 'Only list pages in this namespace (3)',
465 'user' => 'Only list revisions by this user',
466 'excludeuser' => 'Don\'t list revisions by this user',
467 'continue' => 'When more results are available, use this to continue (1, 3)',
468 'unique' => 'List only one revision for each page (3)',
469 'tag' => 'Only list revisions tagged with this tag',
470 );
471 }
472
473 public function getResultProperties() {
474 return array(
475 '' => array(
476 'ns' => 'namespace',
477 'title' => 'string'
478 ),
479 'token' => array(
480 'token' => 'string'
481 )
482 );
483 }
484
485 public function getDescription() {
486 $p = $this->getModulePrefix();
487
488 return array(
489 'List deleted revisions.',
490 'Operates in three modes:',
491 ' 1) List deleted revisions for the given title(s), sorted by timestamp',
492 ' 2) List deleted contributions for the given user, sorted by timestamp (no titles specified)',
493 " 3) List all deleted revisions in the given namespace, sorted by title and timestamp',
494 ' (no titles specified, {$p}user not set)",
495 'Certain parameters only apply to some modes and are ignored in others.',
496 'For instance, a parameter marked (1) only applies to mode 1 and is ignored in modes 2 and 3',
497 );
498 }
499
500 public function getPossibleErrors() {
501 return array_merge( parent::getPossibleErrors(), array(
502 array(
503 'code' => 'permissiondenied',
504 'info' => 'You don\'t have permission to view deleted revision information'
505 ),
506 array( 'code' => 'badparams', 'info' => 'user and excludeuser cannot be used together'
507 ),
508 array(
509 'code' => 'permissiondenied',
510 'info' => 'You don\'t have permission to view deleted revision content'
511 ),
512 array( 'code' => 'badparams', 'info' => "The 'from' parameter cannot be used in modes 1 or 2" ),
513 array( 'code' => 'badparams', 'info' => "The 'to' parameter cannot be used in modes 1 or 2" ),
514 array(
515 'code' => 'badparams',
516 'info' => "The 'prefix' parameter cannot be used in modes 1 or 2"
517 ),
518 array( 'code' => 'badparams', 'info' => "The 'start' parameter cannot be used in mode 3" ),
519 array( 'code' => 'badparams', 'info' => "The 'end' parameter cannot be used in mode 3" ),
520 ) );
521 }
522
523 public function getExamples() {
524 return array(
525 'api.php?action=query&list=deletedrevs&titles=Main%20Page|Talk:Main%20Page&' .
526 'drprop=user|comment|content'
527 => 'List the last deleted revisions of Main Page and Talk:Main Page, with content (mode 1)',
528 'api.php?action=query&list=deletedrevs&druser=Bob&drlimit=50'
529 => 'List the last 50 deleted contributions by Bob (mode 2)',
530 'api.php?action=query&list=deletedrevs&drdir=newer&drlimit=50'
531 => 'List the first 50 deleted revisions in the main namespace (mode 3)',
532 'api.php?action=query&list=deletedrevs&drdir=newer&drlimit=50&drnamespace=1&drunique='
533 => 'List the first 50 deleted pages in the Talk namespace (mode 3):',
534 );
535 }
536
537 public function getHelpUrls() {
538 return 'https://www.mediawiki.org/wiki/API:Deletedrevs';
539 }
540 }