Move a few braces noticed while doing CR
[lhc/web/wiklou.git] / includes / api / ApiQueryRecentChanges.php
1 <?php
2
3 /**
4 * Created on Oct 19, 2006
5 *
6 * API for MediaWiki 1.8+
7 *
8 * Copyright © 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
9 *
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.
14 *
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.
19 *
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
24 */
25
26 if ( !defined( 'MEDIAWIKI' ) ) {
27 // Eclipse helper - will be ignored in production
28 require_once( 'ApiQueryBase.php' );
29 }
30
31 /**
32 * A query action to enumerate the recent changes that were done to the wiki.
33 * Various filters are supported.
34 *
35 * @ingroup API
36 */
37 class ApiQueryRecentChanges extends ApiQueryBase {
38
39 public function __construct( $query, $moduleName ) {
40 parent::__construct( $query, $moduleName, 'rc' );
41 }
42
43 private $fld_comment = false, $fld_parsedcomment = false, $fld_user = false, $fld_flags = false,
44 $fld_timestamp = false, $fld_title = false, $fld_ids = false,
45 $fld_sizes = false;
46 /**
47 * Get an array mapping token names to their handler functions.
48 * The prototype for a token function is func($pageid, $title, $rc)
49 * it should return a token or false (permission denied)
50 * @return array(tokenname => function)
51 */
52 protected function getTokenFunctions() {
53 // Don't call the hooks twice
54 if ( isset( $this->tokenFunctions ) ) {
55 return $this->tokenFunctions;
56 }
57
58 // If we're in JSON callback mode, no tokens can be obtained
59 if ( !is_null( $this->getMain()->getRequest()->getVal( 'callback' ) ) ) {
60 return array();
61 }
62
63 $this->tokenFunctions = array(
64 'patrol' => array( 'ApiQueryRecentChanges', 'getPatrolToken' )
65 );
66 wfRunHooks( 'APIQueryRecentChangesTokens', array( &$this->tokenFunctions ) );
67 return $this->tokenFunctions;
68 }
69
70 public static function getPatrolToken( $pageid, $title, $rc ) {
71 global $wgUser;
72 if ( !$wgUser->useRCPatrol() && ( !$wgUser->useNPPatrol() ||
73 $rc->getAttribute( 'rc_type' ) != RC_NEW ) )
74 {
75 return false;
76 }
77
78 // The patrol token is always the same, let's exploit that
79 static $cachedPatrolToken = null;
80 if ( !is_null( $cachedPatrolToken ) ) {
81 return $cachedPatrolToken;
82 }
83
84 $cachedPatrolToken = $wgUser->editToken();
85 return $cachedPatrolToken;
86 }
87
88 /**
89 * Sets internal state to include the desired properties in the output.
90 * @param $prop associative array of properties, only keys are used here
91 */
92 public function initProperties( $prop ) {
93 $this->fld_comment = isset( $prop['comment'] );
94 $this->fld_parsedcomment = isset( $prop['parsedcomment'] );
95 $this->fld_user = isset( $prop['user'] );
96 $this->fld_flags = isset( $prop['flags'] );
97 $this->fld_timestamp = isset( $prop['timestamp'] );
98 $this->fld_title = isset( $prop['title'] );
99 $this->fld_ids = isset( $prop['ids'] );
100 $this->fld_sizes = isset( $prop['sizes'] );
101 $this->fld_redirect = isset( $prop['redirect'] );
102 $this->fld_patrolled = isset( $prop['patrolled'] );
103 $this->fld_loginfo = isset( $prop['loginfo'] );
104 $this->fld_tags = isset( $prop['tags'] );
105 }
106
107 /**
108 * Generates and outputs the result of this query based upon the provided parameters.
109 */
110 public function execute() {
111 global $wgUser;
112 /* Get the parameters of the request. */
113 $params = $this->extractRequestParams();
114
115 /* Build our basic query. Namely, something along the lines of:
116 * SELECT * FROM recentchanges WHERE rc_timestamp > $start
117 * AND rc_timestamp < $end AND rc_namespace = $namespace
118 * AND rc_deleted = '0'
119 */
120 $this->addTables( 'recentchanges' );
121 $index = array( 'recentchanges' => 'rc_timestamp' ); // May change
122 $this->addWhereRange( 'rc_timestamp', $params['dir'], $params['start'], $params['end'] );
123 $this->addWhereFld( 'rc_namespace', $params['namespace'] );
124 $this->addWhereFld( 'rc_deleted', 0 );
125
126 if ( !is_null( $params['type'] ) ) {
127 $this->addWhereFld( 'rc_type', $this->parseRCType( $params['type'] ) );
128 }
129
130 if ( !is_null( $params['show'] ) ) {
131 $show = array_flip( $params['show'] );
132
133 /* Check for conflicting parameters. */
134 if ( ( isset( $show['minor'] ) && isset( $show['!minor'] ) )
135 || ( isset( $show['bot'] ) && isset( $show['!bot'] ) )
136 || ( isset( $show['anon'] ) && isset( $show['!anon'] ) )
137 || ( isset( $show['redirect'] ) && isset( $show['!redirect'] ) )
138 || ( isset( $show['patrolled'] ) && isset( $show['!patrolled'] ) )
139 )
140 {
141 $this->dieUsageMsg( array( 'show' ) );
142 }
143
144 // Check permissions
145 if ( isset( $show['patrolled'] ) || isset( $show['!patrolled'] ) ) {
146 if ( !$wgUser->useRCPatrol() && !$wgUser->useNPPatrol() ) {
147 $this->dieUsage( 'You need the patrol right to request the patrolled flag', 'permissiondenied' );
148 }
149 }
150
151 /* Add additional conditions to query depending upon parameters. */
152 $this->addWhereIf( 'rc_minor = 0', isset( $show['!minor'] ) );
153 $this->addWhereIf( 'rc_minor != 0', isset( $show['minor'] ) );
154 $this->addWhereIf( 'rc_bot = 0', isset( $show['!bot'] ) );
155 $this->addWhereIf( 'rc_bot != 0', isset( $show['bot'] ) );
156 $this->addWhereIf( 'rc_user = 0', isset( $show['anon'] ) );
157 $this->addWhereIf( 'rc_user != 0', isset( $show['!anon'] ) );
158 $this->addWhereIf( 'rc_patrolled = 0', isset( $show['!patrolled'] ) );
159 $this->addWhereIf( 'rc_patrolled != 0', isset( $show['patrolled'] ) );
160 $this->addWhereIf( 'page_is_redirect = 1', isset( $show['redirect'] ) );
161
162 // Don't throw log entries out the window here
163 $this->addWhereIf( 'page_is_redirect = 0 OR page_is_redirect IS NULL', isset( $show['!redirect'] ) );
164 }
165
166 if ( !is_null( $params['user'] ) && !is_null( $param['excludeuser'] ) ) {
167 $this->dieUsage( 'user and excludeuser cannot be used together', 'user-excludeuser' );
168 }
169
170 if ( !is_null( $params['user'] ) ) {
171 $this->addWhereFld( 'rc_user_text', $params['user'] );
172 $index['recentchanges'] = 'rc_user_text';
173 }
174
175 if ( !is_null( $params['excludeuser'] ) ) {
176 // We don't use the rc_user_text index here because
177 // * it would require us to sort by rc_user_text before rc_timestamp
178 // * the != condition doesn't throw out too many rows anyway
179 $this->addWhere( 'rc_user_text != ' . $this->getDB()->addQuotes( $params['excludeuser'] ) );
180 }
181
182 /* Add the fields we're concerned with to our query. */
183 $this->addFields( array(
184 'rc_timestamp',
185 'rc_namespace',
186 'rc_title',
187 'rc_cur_id',
188 'rc_type',
189 'rc_moved_to_ns',
190 'rc_moved_to_title'
191 ) );
192
193 /* Determine what properties we need to display. */
194 if ( !is_null( $params['prop'] ) ) {
195 $prop = array_flip( $params['prop'] );
196
197 /* Set up internal members based upon params. */
198 $this->initProperties( $prop );
199
200 if ( $this->fld_patrolled && !$wgUser->useRCPatrol() && !$wgUser->useNPPatrol() ) {
201 $this->dieUsage( 'You need the patrol right to request the patrolled flag', 'permissiondenied' );
202 }
203
204 /* Add fields to our query if they are specified as a needed parameter. */
205 $this->addFieldsIf( 'rc_id', $this->fld_ids );
206 $this->addFieldsIf( 'rc_this_oldid', $this->fld_ids );
207 $this->addFieldsIf( 'rc_last_oldid', $this->fld_ids );
208 $this->addFieldsIf( 'rc_comment', $this->fld_comment || $this->fld_parsedcomment );
209 $this->addFieldsIf( 'rc_user', $this->fld_user );
210 $this->addFieldsIf( 'rc_user_text', $this->fld_user );
211 $this->addFieldsIf( 'rc_minor', $this->fld_flags );
212 $this->addFieldsIf( 'rc_bot', $this->fld_flags );
213 $this->addFieldsIf( 'rc_new', $this->fld_flags );
214 $this->addFieldsIf( 'rc_old_len', $this->fld_sizes );
215 $this->addFieldsIf( 'rc_new_len', $this->fld_sizes );
216 $this->addFieldsIf( 'rc_patrolled', $this->fld_patrolled );
217 $this->addFieldsIf( 'rc_logid', $this->fld_loginfo );
218 $this->addFieldsIf( 'rc_log_type', $this->fld_loginfo );
219 $this->addFieldsIf( 'rc_log_action', $this->fld_loginfo );
220 $this->addFieldsIf( 'rc_params', $this->fld_loginfo );
221 if ( $this->fld_redirect || isset( $show['redirect'] ) || isset( $show['!redirect'] ) ) {
222 $this->addTables( 'page' );
223 $this->addJoinConds( array( 'page' => array( 'LEFT JOIN', array( 'rc_namespace=page_namespace', 'rc_title=page_title' ) ) ) );
224 $this->addFields( 'page_is_redirect' );
225 }
226 }
227
228 if ( $this->fld_tags ) {
229 $this->addTables( 'tag_summary' );
230 $this->addJoinConds( array( 'tag_summary' => array( 'LEFT JOIN', array( 'rc_id=ts_rc_id' ) ) ) );
231 $this->addFields( 'ts_tags' );
232 }
233
234 if ( !is_null( $params['tag'] ) ) {
235 $this->addTables( 'change_tag' );
236 $this->addJoinConds( array( 'change_tag' => array( 'INNER JOIN', array( 'rc_id=ct_rc_id' ) ) ) );
237 $this->addWhereFld( 'ct_tag' , $params['tag'] );
238 global $wgOldChangeTagsIndex;
239 $index['change_tag'] = $wgOldChangeTagsIndex ? 'ct_tag' : 'change_tag_tag_id';
240 }
241
242 $this->token = $params['token'];
243 $this->addOption( 'LIMIT', $params['limit'] + 1 );
244 $this->addOption( 'USE INDEX', $index );
245
246 $count = 0;
247 /* Perform the actual query. */
248 $res = $this->select( __METHOD__ );
249
250 /* Iterate through the rows, adding data extracted from them to our query result. */
251 foreach ( $res as $row ) {
252 if ( ++ $count > $params['limit'] ) {
253 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
254 $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->rc_timestamp ) );
255 break;
256 }
257
258 /* Extract the data from a single row. */
259 $vals = $this->extractRowInfo( $row );
260
261 /* Add that row's data to our final output. */
262 if ( !$vals ) {
263 continue;
264 }
265 $fit = $this->getResult()->addValue( array( 'query', $this->getModuleName() ), null, $vals );
266 if ( !$fit ) {
267 $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->rc_timestamp ) );
268 break;
269 }
270 }
271
272 /* Format the result */
273 $this->getResult()->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'rc' );
274 }
275
276 /**
277 * Extracts from a single sql row the data needed to describe one recent change.
278 *
279 * @param $row The row from which to extract the data.
280 * @return An array mapping strings (descriptors) to their respective string values.
281 * @access public
282 */
283 public function extractRowInfo( $row ) {
284 /* If page was moved somewhere, get the title of the move target. */
285 $movedToTitle = false;
286 if ( isset( $row->rc_moved_to_title ) && $row->rc_moved_to_title !== '' )
287 {
288 $movedToTitle = Title::makeTitle( $row->rc_moved_to_ns, $row->rc_moved_to_title );
289 }
290
291 /* Determine the title of the page that has been changed. */
292 $title = Title::makeTitle( $row->rc_namespace, $row->rc_title );
293
294 /* Our output data. */
295 $vals = array();
296
297 $type = intval( $row->rc_type );
298
299 /* Determine what kind of change this was. */
300 switch ( $type ) {
301 case RC_EDIT:
302 $vals['type'] = 'edit';
303 break;
304 case RC_NEW:
305 $vals['type'] = 'new';
306 break;
307 case RC_MOVE:
308 $vals['type'] = 'move';
309 break;
310 case RC_LOG:
311 $vals['type'] = 'log';
312 break;
313 case RC_MOVE_OVER_REDIRECT:
314 $vals['type'] = 'move over redirect';
315 break;
316 default:
317 $vals['type'] = $type;
318 }
319
320 /* Create a new entry in the result for the title. */
321 if ( $this->fld_title ) {
322 ApiQueryBase::addTitleInfo( $vals, $title );
323 if ( $movedToTitle ) {
324 ApiQueryBase::addTitleInfo( $vals, $movedToTitle, 'new_' );
325 }
326 }
327
328 /* Add ids, such as rcid, pageid, revid, and oldid to the change's info. */
329 if ( $this->fld_ids ) {
330 $vals['rcid'] = intval( $row->rc_id );
331 $vals['pageid'] = intval( $row->rc_cur_id );
332 $vals['revid'] = intval( $row->rc_this_oldid );
333 $vals['old_revid'] = intval( $row->rc_last_oldid );
334 }
335
336 /* Add user data and 'anon' flag, if use is anonymous. */
337 if ( $this->fld_user ) {
338 $vals['user'] = $row->rc_user_text;
339 if ( !$row->rc_user ) {
340 $vals['anon'] = '';
341 }
342 }
343
344 /* Add flags, such as new, minor, bot. */
345 if ( $this->fld_flags ) {
346 if ( $row->rc_bot ) {
347 $vals['bot'] = '';
348 }
349 if ( $row->rc_new ) {
350 $vals['new'] = '';
351 }
352 if ( $row->rc_minor ) {
353 $vals['minor'] = '';
354 }
355 }
356
357 /* Add sizes of each revision. (Only available on 1.10+) */
358 if ( $this->fld_sizes ) {
359 $vals['oldlen'] = intval( $row->rc_old_len );
360 $vals['newlen'] = intval( $row->rc_new_len );
361 }
362
363 /* Add the timestamp. */
364 if ( $this->fld_timestamp ) {
365 $vals['timestamp'] = wfTimestamp( TS_ISO_8601, $row->rc_timestamp );
366 }
367
368 /* Add edit summary / log summary. */
369 if ( $this->fld_comment && isset( $row->rc_comment ) ) {
370 $vals['comment'] = $row->rc_comment;
371 }
372
373 if ( $this->fld_parsedcomment && isset( $row->rc_comment ) ) {
374 global $wgUser;
375 $vals['parsedcomment'] = $wgUser->getSkin()->formatComment( $row->rc_comment, $title );
376 }
377
378 if ( $this->fld_redirect ) {
379 if ( $row->page_is_redirect ) {
380 $vals['redirect'] = '';
381 }
382 }
383
384 /* Add the patrolled flag */
385 if ( $this->fld_patrolled && $row->rc_patrolled == 1 ) {
386 $vals['patrolled'] = '';
387 }
388
389 if ( $this->fld_loginfo && $row->rc_type == RC_LOG ) {
390 $vals['logid'] = intval( $row->rc_logid );
391 $vals['logtype'] = $row->rc_log_type;
392 $vals['logaction'] = $row->rc_log_action;
393 ApiQueryLogEvents::addLogParams(
394 $this->getResult(),
395 $vals, $row->rc_params,
396 $row->rc_log_type, $row->rc_timestamp
397 );
398 }
399
400 if ( $this->fld_tags ) {
401 if ( $row->ts_tags ) {
402 $tags = explode( ',', $row->ts_tags );
403 $this->getResult()->setIndexedTagName( $tags, 'tag' );
404 $vals['tags'] = $tags;
405 } else {
406 $vals['tags'] = array();
407 }
408 }
409
410 if ( !is_null( $this->token ) ) {
411 $tokenFunctions = $this->getTokenFunctions();
412 foreach ( $this->token as $t ) {
413 $val = call_user_func( $tokenFunctions[$t], $row->rc_cur_id,
414 $title, RecentChange::newFromRow( $row ) );
415 if ( $val === false ) {
416 $this->setWarning( "Action '$t' is not allowed for the current user" );
417 } else {
418 $vals[$t . 'token'] = $val;
419 }
420 }
421 }
422
423 return $vals;
424 }
425
426 private function parseRCType( $type ) {
427 if ( is_array( $type ) ) {
428 $retval = array();
429 foreach ( $type as $t ) {
430 $retval[] = $this->parseRCType( $t );
431 }
432 return $retval;
433 }
434 switch( $type ) {
435 case 'edit':
436 return RC_EDIT;
437 case 'new':
438 return RC_NEW;
439 case 'log':
440 return RC_LOG;
441 }
442 }
443
444 public function getCacheMode( $params ) {
445 if ( isset( $params['show'] ) ) {
446 foreach ( $params['show'] as $show ) {
447 if ( $show === 'patrolled' || $show === '!patrolled' ) {
448 return 'private';
449 }
450 }
451 }
452 if ( isset( $params['token'] ) ) {
453 return 'private';
454 }
455 if ( !is_null( $params['prop'] ) && in_array( 'parsedcomment', $params['prop'] ) ) {
456 // formatComment() calls wfMsg() among other things
457 return 'anon-public-user-private';
458 }
459 return 'public';
460 }
461
462 public function getAllowedParams() {
463 return array(
464 'start' => array(
465 ApiBase::PARAM_TYPE => 'timestamp'
466 ),
467 'end' => array(
468 ApiBase::PARAM_TYPE => 'timestamp'
469 ),
470 'dir' => array(
471 ApiBase::PARAM_DFLT => 'older',
472 ApiBase::PARAM_TYPE => array(
473 'newer',
474 'older'
475 )
476 ),
477 'namespace' => array(
478 ApiBase::PARAM_ISMULTI => true,
479 ApiBase::PARAM_TYPE => 'namespace'
480 ),
481 'user' => array(
482 ApiBase::PARAM_TYPE => 'user'
483 ),
484 'excludeuser' => array(
485 ApiBase::PARAM_TYPE => 'user'
486 ),
487 'tag' => null,
488 'prop' => array(
489 ApiBase::PARAM_ISMULTI => true,
490 ApiBase::PARAM_DFLT => 'title|timestamp|ids',
491 ApiBase::PARAM_TYPE => array(
492 'user',
493 'comment',
494 'parsedcomment',
495 'flags',
496 'timestamp',
497 'title',
498 'ids',
499 'sizes',
500 'redirect',
501 'patrolled',
502 'loginfo',
503 'tags'
504 )
505 ),
506 'token' => array(
507 ApiBase::PARAM_TYPE => array_keys( $this->getTokenFunctions() ),
508 ApiBase::PARAM_ISMULTI => true
509 ),
510 'show' => array(
511 ApiBase::PARAM_ISMULTI => true,
512 ApiBase::PARAM_TYPE => array(
513 'minor',
514 '!minor',
515 'bot',
516 '!bot',
517 'anon',
518 '!anon',
519 'redirect',
520 '!redirect',
521 'patrolled',
522 '!patrolled'
523 )
524 ),
525 'limit' => array(
526 ApiBase::PARAM_DFLT => 10,
527 ApiBase::PARAM_TYPE => 'limit',
528 ApiBase::PARAM_MIN => 1,
529 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
530 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
531 ),
532 'type' => array(
533 ApiBase::PARAM_ISMULTI => true,
534 ApiBase::PARAM_TYPE => array(
535 'edit',
536 'new',
537 'log'
538 )
539 )
540 );
541 }
542
543 public function getParamDescription() {
544 return array(
545 'start' => 'The timestamp to start enumerating from',
546 'end' => 'The timestamp to end enumerating',
547 'dir' => 'In which direction to enumerate',
548 'namespace' => 'Filter log entries to only this namespace(s)',
549 'user' => 'Only list changes by this user',
550 'excludeuser' => 'Don\'t list changes by this user',
551 'prop' => array(
552 'Include additional pieces of information',
553 ' user - Adds the user responsible for the edit and tags if they are an IP',
554 ' comment - Adds the comment for the edit',
555 ' parsedcomment - Adds the parsed comment for the edit',
556 ' flags - Adds flags for the edit',
557 ' timestamp - Adds timestamp of the edit',
558 ' title - Adds the page title of the edit',
559 ' ids - Adds the page id, recent changes id and the new and old revision id',
560 ' sizes - Adds the new and old page length in bytes',
561 ' redirect - Tags edit if page is a redirect',
562 ' patrolled - Tags edits have have been patrolled',
563 ' loginfo - Adds log information (logid, logtype, etc) to log entries',
564 ' tags - Lists tags for the entry',
565 ),
566 'token' => 'Which tokens to obtain for each change',
567 'show' => array(
568 'Show only items that meet this criteria.',
569 "For example, to see only minor edits done by logged-in users, set {$this->getModulePrefix()}show=minor|!anon"
570 ),
571 'type' => 'Which types of changes to show',
572 'limit' => 'How many total changes to return',
573 'tag' => 'Only list changes tagged with this tag',
574 );
575 }
576
577 public function getDescription() {
578 return 'Enumerate recent changes';
579 }
580
581 public function getPossibleErrors() {
582 return array_merge( parent::getPossibleErrors(), array(
583 array( 'show' ),
584 array( 'code' => 'permissiondenied', 'info' => 'You need the patrol right to request the patrolled flag' ),
585 array( 'code' => 'user-excludeuser', 'info' => 'user and excludeuser cannot be used together' ),
586 ) );
587 }
588
589 protected function getExamples() {
590 return array(
591 'api.php?action=query&list=recentchanges'
592 );
593 }
594
595 public function getVersion() {
596 return __CLASS__ . ': $Id$';
597 }
598 }