2006-10-20 07:10:18 +00:00
|
|
|
<?php
|
2010-02-24 14:45:19 +00:00
|
|
|
/**
|
2010-12-22 20:52:06 +00:00
|
|
|
*
|
2006-10-20 07:10:18 +00:00
|
|
|
*
|
2010-08-07 19:59:42 +00:00
|
|
|
* Created on Oct 19, 2006
|
|
|
|
|
*
|
2010-02-24 14:45:19 +00:00
|
|
|
* Copyright © 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
|
2006-10-20 07:10:18 +00:00
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
2010-06-21 13:13:32 +00:00
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2006-10-20 07:10:18 +00:00
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
2010-08-07 19:59:42 +00:00
|
|
|
*
|
|
|
|
|
* @file
|
2006-10-20 07:10:18 +00:00
|
|
|
*/
|
|
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( !defined( 'MEDIAWIKI' ) ) {
|
2006-10-20 07:10:18 +00:00
|
|
|
// Eclipse helper - will be ignored in production
|
2010-02-24 14:45:19 +00:00
|
|
|
require_once( 'ApiQueryBase.php' );
|
2006-10-20 07:10:18 +00:00
|
|
|
}
|
|
|
|
|
|
2007-04-20 08:55:14 +00:00
|
|
|
/**
|
2007-05-20 23:31:44 +00:00
|
|
|
* A query action to enumerate the recent changes that were done to the wiki.
|
|
|
|
|
* Various filters are supported.
|
2008-04-14 07:45:50 +00:00
|
|
|
*
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup API
|
2007-04-20 08:55:14 +00:00
|
|
|
*/
|
2006-10-20 07:10:18 +00:00
|
|
|
class ApiQueryRecentChanges extends ApiQueryBase {
|
|
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
public function __construct( $query, $moduleName ) {
|
2010-02-24 14:45:19 +00:00
|
|
|
parent::__construct( $query, $moduleName, 'rc' );
|
2006-10-20 07:10:18 +00:00
|
|
|
}
|
|
|
|
|
|
2010-08-28 01:09:21 +00:00
|
|
|
private $fld_comment = false, $fld_parsedcomment = false, $fld_user = false, $fld_userid = false,
|
|
|
|
|
$fld_flags = false, $fld_timestamp = false, $fld_title = false, $fld_ids = false,
|
|
|
|
|
$fld_sizes = false, $fld_redirect = false, $fld_patrolled = false, $fld_loginfo = false, $fld_tags = false;
|
2010-10-09 00:01:45 +00:00
|
|
|
|
|
|
|
|
private $tokenFunctions;
|
|
|
|
|
|
2009-03-28 19:08:47 +00:00
|
|
|
/**
|
|
|
|
|
* Get an array mapping token names to their handler functions.
|
|
|
|
|
* The prototype for a token function is func($pageid, $title, $rc)
|
|
|
|
|
* it should return a token or false (permission denied)
|
|
|
|
|
* @return array(tokenname => function)
|
|
|
|
|
*/
|
2008-09-04 15:17:51 +00:00
|
|
|
protected function getTokenFunctions() {
|
|
|
|
|
// Don't call the hooks twice
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( isset( $this->tokenFunctions ) ) {
|
2008-09-04 15:17:51 +00:00
|
|
|
return $this->tokenFunctions;
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2008-09-04 15:17:51 +00:00
|
|
|
|
|
|
|
|
// If we're in JSON callback mode, no tokens can be obtained
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( !is_null( $this->getMain()->getRequest()->getVal( 'callback' ) ) ) {
|
2008-09-04 15:17:51 +00:00
|
|
|
return array();
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2008-09-04 15:17:51 +00:00
|
|
|
|
|
|
|
|
$this->tokenFunctions = array(
|
|
|
|
|
'patrol' => array( 'ApiQueryRecentChanges', 'getPatrolToken' )
|
|
|
|
|
);
|
2010-01-11 15:55:52 +00:00
|
|
|
wfRunHooks( 'APIQueryRecentChangesTokens', array( &$this->tokenFunctions ) );
|
2008-09-04 15:17:51 +00:00
|
|
|
return $this->tokenFunctions;
|
|
|
|
|
}
|
2010-02-24 14:45:19 +00:00
|
|
|
|
|
|
|
|
public static function getPatrolToken( $pageid, $title, $rc ) {
|
2008-09-04 15:17:51 +00:00
|
|
|
global $wgUser;
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( !$wgUser->useRCPatrol() && ( !$wgUser->useNPPatrol() ||
|
2010-02-24 14:45:19 +00:00
|
|
|
$rc->getAttribute( 'rc_type' ) != RC_NEW ) )
|
|
|
|
|
{
|
2008-09-04 15:17:51 +00:00
|
|
|
return false;
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
|
|
|
|
|
2010-12-09 21:29:03 +00:00
|
|
|
// The patrol token is always the same, let's exploit that
|
|
|
|
|
static $cachedPatrolToken = null;
|
|
|
|
|
if ( is_null( $cachedPatrolToken ) ) {
|
|
|
|
|
$cachedPatrolToken = $wgUser->editToken( 'patrol' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $cachedPatrolToken;
|
2008-09-04 15:17:51 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2009-09-03 16:15:55 +00:00
|
|
|
/**
|
|
|
|
|
* Sets internal state to include the desired properties in the output.
|
2010-10-20 18:50:33 +00:00
|
|
|
* @param $prop Array associative array of properties, only keys are used here
|
2009-09-03 16:15:55 +00:00
|
|
|
*/
|
|
|
|
|
public function initProperties( $prop ) {
|
2010-02-24 14:45:19 +00:00
|
|
|
$this->fld_comment = isset( $prop['comment'] );
|
|
|
|
|
$this->fld_parsedcomment = isset( $prop['parsedcomment'] );
|
|
|
|
|
$this->fld_user = isset( $prop['user'] );
|
2010-08-28 01:09:21 +00:00
|
|
|
$this->fld_userid = isset( $prop['userid'] );
|
2010-02-24 14:45:19 +00:00
|
|
|
$this->fld_flags = isset( $prop['flags'] );
|
|
|
|
|
$this->fld_timestamp = isset( $prop['timestamp'] );
|
|
|
|
|
$this->fld_title = isset( $prop['title'] );
|
|
|
|
|
$this->fld_ids = isset( $prop['ids'] );
|
|
|
|
|
$this->fld_sizes = isset( $prop['sizes'] );
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->fld_redirect = isset( $prop['redirect'] );
|
|
|
|
|
$this->fld_patrolled = isset( $prop['patrolled'] );
|
|
|
|
|
$this->fld_loginfo = isset( $prop['loginfo'] );
|
|
|
|
|
$this->fld_tags = isset( $prop['tags'] );
|
2009-09-03 16:15:55 +00:00
|
|
|
}
|
|
|
|
|
|
2007-10-12 00:15:21 +00:00
|
|
|
/**
|
|
|
|
|
* Generates and outputs the result of this query based upon the provided parameters.
|
|
|
|
|
*/
|
2006-10-20 07:10:18 +00:00
|
|
|
public function execute() {
|
2010-07-25 19:45:52 +00:00
|
|
|
global $wgUser;
|
2007-10-12 00:15:21 +00:00
|
|
|
/* Get the parameters of the request. */
|
2008-12-17 16:34:01 +00:00
|
|
|
$params = $this->extractRequestParams();
|
2006-10-20 07:10:18 +00:00
|
|
|
|
2007-10-12 00:15:21 +00:00
|
|
|
/* Build our basic query. Namely, something along the lines of:
|
2008-05-10 10:49:26 +00:00
|
|
|
* SELECT * FROM recentchanges WHERE rc_timestamp > $start
|
2008-04-14 07:45:50 +00:00
|
|
|
* AND rc_timestamp < $end AND rc_namespace = $namespace
|
2007-10-12 00:15:21 +00:00
|
|
|
* AND rc_deleted = '0'
|
|
|
|
|
*/
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addTables( 'recentchanges' );
|
2010-02-05 04:40:57 +00:00
|
|
|
$index = array( 'recentchanges' => 'rc_timestamp' ); // May change
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addWhereRange( 'rc_timestamp', $params['dir'], $params['start'], $params['end'] );
|
|
|
|
|
$this->addWhereFld( 'rc_namespace', $params['namespace'] );
|
|
|
|
|
$this->addWhereFld( 'rc_deleted', 0 );
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( !is_null( $params['type'] ) ) {
|
|
|
|
|
$this->addWhereFld( 'rc_type', $this->parseRCType( $params['type'] ) );
|
|
|
|
|
}
|
2006-10-20 07:10:18 +00:00
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( !is_null( $params['show'] ) ) {
|
|
|
|
|
$show = array_flip( $params['show'] );
|
2007-10-12 00:15:21 +00:00
|
|
|
|
|
|
|
|
/* Check for conflicting parameters. */
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( ( isset( $show['minor'] ) && isset( $show['!minor'] ) )
|
|
|
|
|
|| ( isset( $show['bot'] ) && isset( $show['!bot'] ) )
|
|
|
|
|
|| ( isset( $show['anon'] ) && isset( $show['!anon'] ) )
|
|
|
|
|
|| ( isset( $show['redirect'] ) && isset( $show['!redirect'] ) )
|
|
|
|
|
|| ( isset( $show['patrolled'] ) && isset( $show['!patrolled'] ) )
|
|
|
|
|
)
|
|
|
|
|
{
|
2010-02-14 15:19:45 +00:00
|
|
|
$this->dieUsageMsg( array( 'show' ) );
|
2007-10-12 00:15:21 +00:00
|
|
|
}
|
2010-02-24 14:45:19 +00:00
|
|
|
|
2008-05-07 19:30:59 +00:00
|
|
|
// Check permissions
|
2010-07-14 19:00:54 +00:00
|
|
|
if ( isset( $show['patrolled'] ) || isset( $show['!patrolled'] ) ) {
|
|
|
|
|
if ( !$wgUser->useRCPatrol() && !$wgUser->useNPPatrol() ) {
|
|
|
|
|
$this->dieUsage( 'You need the patrol right to request the patrolled flag', 'permissiondenied' );
|
|
|
|
|
}
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2006-11-04 06:53:52 +00:00
|
|
|
|
2007-10-12 00:15:21 +00:00
|
|
|
/* Add additional conditions to query depending upon parameters. */
|
2010-02-24 14:45:19 +00:00
|
|
|
$this->addWhereIf( 'rc_minor = 0', isset( $show['!minor'] ) );
|
|
|
|
|
$this->addWhereIf( 'rc_minor != 0', isset( $show['minor'] ) );
|
|
|
|
|
$this->addWhereIf( 'rc_bot = 0', isset( $show['!bot'] ) );
|
|
|
|
|
$this->addWhereIf( 'rc_bot != 0', isset( $show['bot'] ) );
|
|
|
|
|
$this->addWhereIf( 'rc_user = 0', isset( $show['anon'] ) );
|
|
|
|
|
$this->addWhereIf( 'rc_user != 0', isset( $show['!anon'] ) );
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addWhereIf( 'rc_patrolled = 0', isset( $show['!patrolled'] ) );
|
|
|
|
|
$this->addWhereIf( 'rc_patrolled != 0', isset( $show['patrolled'] ) );
|
2010-02-24 14:45:19 +00:00
|
|
|
$this->addWhereIf( 'page_is_redirect = 1', isset( $show['redirect'] ) );
|
|
|
|
|
|
2008-04-07 13:27:33 +00:00
|
|
|
// Don't throw log entries out the window here
|
2010-02-24 14:45:19 +00:00
|
|
|
$this->addWhereIf( 'page_is_redirect = 0 OR page_is_redirect IS NULL', isset( $show['!redirect'] ) );
|
2006-10-20 07:10:18 +00:00
|
|
|
}
|
2010-02-24 14:45:19 +00:00
|
|
|
|
2010-08-13 19:44:47 +00:00
|
|
|
if ( !is_null( $params['user'] ) && !is_null( $params['excludeuser'] ) ) {
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->dieUsage( 'user and excludeuser cannot be used together', 'user-excludeuser' );
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !is_null( $params['user'] ) ) {
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addWhereFld( 'rc_user_text', $params['user'] );
|
2010-02-03 23:30:19 +00:00
|
|
|
$index['recentchanges'] = 'rc_user_text';
|
2009-06-19 08:03:52 +00:00
|
|
|
}
|
2010-02-24 14:45:19 +00:00
|
|
|
|
|
|
|
|
if ( !is_null( $params['excludeuser'] ) ) {
|
2009-06-19 08:03:52 +00:00
|
|
|
// We don't use the rc_user_text index here because
|
|
|
|
|
// * it would require us to sort by rc_user_text before rc_timestamp
|
|
|
|
|
// * the != condition doesn't throw out too many rows anyway
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addWhere( 'rc_user_text != ' . $this->getDB()->addQuotes( $params['excludeuser'] ) );
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2008-12-17 15:35:57 +00:00
|
|
|
|
2009-06-19 08:03:52 +00:00
|
|
|
/* Add the fields we're concerned with to our query. */
|
2010-02-24 14:45:19 +00:00
|
|
|
$this->addFields( array(
|
2006-10-20 07:10:18 +00:00
|
|
|
'rc_timestamp',
|
|
|
|
|
'rc_namespace',
|
|
|
|
|
'rc_title',
|
2008-09-04 15:17:51 +00:00
|
|
|
'rc_cur_id',
|
2006-10-20 07:10:18 +00:00
|
|
|
'rc_type',
|
|
|
|
|
'rc_moved_to_ns',
|
2010-10-23 17:22:38 +00:00
|
|
|
'rc_moved_to_title',
|
|
|
|
|
'rc_deleted'
|
2010-01-11 15:55:52 +00:00
|
|
|
) );
|
2006-10-20 07:10:18 +00:00
|
|
|
|
2007-10-12 00:15:21 +00:00
|
|
|
/* Determine what properties we need to display. */
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( !is_null( $params['prop'] ) ) {
|
|
|
|
|
$prop = array_flip( $params['prop'] );
|
2007-05-21 04:34:48 +00:00
|
|
|
|
2007-10-12 00:15:21 +00:00
|
|
|
/* Set up internal members based upon params. */
|
2009-09-03 16:15:55 +00:00
|
|
|
$this->initProperties( $prop );
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2010-07-31 19:53:43 +00:00
|
|
|
if ( $this->fld_patrolled && !$wgUser->useRCPatrol() && !$wgUser->useNPPatrol() ) {
|
2010-02-24 14:45:19 +00:00
|
|
|
$this->dieUsage( 'You need the patrol right to request the patrolled flag', 'permissiondenied' );
|
|
|
|
|
}
|
2007-10-12 00:15:21 +00:00
|
|
|
|
|
|
|
|
/* Add fields to our query if they are specified as a needed parameter. */
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addFieldsIf( 'rc_id', $this->fld_ids );
|
|
|
|
|
$this->addFieldsIf( 'rc_this_oldid', $this->fld_ids );
|
|
|
|
|
$this->addFieldsIf( 'rc_last_oldid', $this->fld_ids );
|
2010-01-31 23:06:35 +00:00
|
|
|
$this->addFieldsIf( 'rc_comment', $this->fld_comment || $this->fld_parsedcomment );
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addFieldsIf( 'rc_user', $this->fld_user );
|
2010-08-28 01:09:21 +00:00
|
|
|
$this->addFieldsIf( 'rc_user_text', $this->fld_user || $this->fld_userid );
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addFieldsIf( 'rc_minor', $this->fld_flags );
|
|
|
|
|
$this->addFieldsIf( 'rc_bot', $this->fld_flags );
|
|
|
|
|
$this->addFieldsIf( 'rc_new', $this->fld_flags );
|
|
|
|
|
$this->addFieldsIf( 'rc_old_len', $this->fld_sizes );
|
|
|
|
|
$this->addFieldsIf( 'rc_new_len', $this->fld_sizes );
|
|
|
|
|
$this->addFieldsIf( 'rc_patrolled', $this->fld_patrolled );
|
|
|
|
|
$this->addFieldsIf( 'rc_logid', $this->fld_loginfo );
|
|
|
|
|
$this->addFieldsIf( 'rc_log_type', $this->fld_loginfo );
|
|
|
|
|
$this->addFieldsIf( 'rc_log_action', $this->fld_loginfo );
|
|
|
|
|
$this->addFieldsIf( 'rc_params', $this->fld_loginfo );
|
2010-07-31 19:53:43 +00:00
|
|
|
if ( $this->fld_redirect || isset( $show['redirect'] ) || isset( $show['!redirect'] ) ) {
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addTables( 'page' );
|
|
|
|
|
$this->addJoinConds( array( 'page' => array( 'LEFT JOIN', array( 'rc_namespace=page_namespace', 'rc_title=page_title' ) ) ) );
|
|
|
|
|
$this->addFields( 'page_is_redirect' );
|
2008-04-07 13:01:57 +00:00
|
|
|
}
|
2006-10-21 08:26:32 +00:00
|
|
|
}
|
2010-02-24 14:45:19 +00:00
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $this->fld_tags ) {
|
|
|
|
|
$this->addTables( 'tag_summary' );
|
|
|
|
|
$this->addJoinConds( array( 'tag_summary' => array( 'LEFT JOIN', array( 'rc_id=ts_rc_id' ) ) ) );
|
|
|
|
|
$this->addFields( 'ts_tags' );
|
2009-11-01 10:42:41 +00:00
|
|
|
}
|
2010-02-24 14:45:19 +00:00
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( !is_null( $params['tag'] ) ) {
|
|
|
|
|
$this->addTables( 'change_tag' );
|
|
|
|
|
$this->addJoinConds( array( 'change_tag' => array( 'INNER JOIN', array( 'rc_id=ct_rc_id' ) ) ) );
|
|
|
|
|
$this->addWhereFld( 'ct_tag' , $params['tag'] );
|
2010-02-03 23:30:19 +00:00
|
|
|
global $wgOldChangeTagsIndex;
|
2010-02-24 14:45:19 +00:00
|
|
|
$index['change_tag'] = $wgOldChangeTagsIndex ? 'ct_tag' : 'change_tag_tag_id';
|
2009-11-01 10:42:41 +00:00
|
|
|
}
|
2010-02-24 14:45:19 +00:00
|
|
|
|
2008-12-17 16:34:01 +00:00
|
|
|
$this->token = $params['token'];
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addOption( 'LIMIT', $params['limit'] + 1 );
|
2010-02-03 23:30:19 +00:00
|
|
|
$this->addOption( 'USE INDEX', $index );
|
2007-10-12 00:15:21 +00:00
|
|
|
|
2006-10-20 07:10:18 +00:00
|
|
|
$count = 0;
|
2007-10-12 00:15:21 +00:00
|
|
|
/* Perform the actual query. */
|
2010-01-11 15:55:52 +00:00
|
|
|
$res = $this->select( __METHOD__ );
|
2007-10-12 00:15:21 +00:00
|
|
|
|
|
|
|
|
/* Iterate through the rows, adding data extracted from them to our query result. */
|
2010-06-20 18:48:34 +00:00
|
|
|
foreach ( $res as $row ) {
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( ++ $count > $params['limit'] ) {
|
2006-10-20 07:10:18 +00:00
|
|
|
// We've reached the one extra which shows that there are additional pages to be had. Stop here...
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->rc_timestamp ) );
|
2006-10-20 07:10:18 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2007-10-12 00:15:21 +00:00
|
|
|
/* Extract the data from a single row. */
|
2010-01-11 15:55:52 +00:00
|
|
|
$vals = $this->extractRowInfo( $row );
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-10-12 00:15:21 +00:00
|
|
|
/* Add that row's data to our final output. */
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( !$vals ) {
|
* API: BREAKING CHANGE: (bug 11430) Return fewer results than the limit in some cases to prevent running out of memory
* This means queries could possibly return fewer results than the limit and still set a query-continue
* Add iicontinue, rvcontinue, cicontinue, incontinue, amfrom to faciliate query-continue for these modules
* Implemented by blocking additions to the ApiResult object if they would make it too large
** Important things like query-continue values and warnings are exempt from this check
** RSS feeds and exported XML are also exempted (size-checking them would be too messy)
** Result size is checked against $wgAPIMaxResultSize, which defaults to 8 MB
For those who really care, per-file details follow:
ApiResult.php:
* Introduced ApiResult::$mSize which keeps track of the result size.
* Introduced ApiResult::size() which calculates an array's size
(which is the sum of the strlen()s of its elements).
* ApiResult::addValue() now checks that the result size stays below
$wgAPIMaxResultSize. If the item won't fit, it won't be added and addValue()
will return false. Callers should check the return value and set a
query-continue if it's false.
* Closed the back door that is ApiResult::getData(): callers can't manipulate
the data array directly anymore so they can't bypass the result size limit.
* Added ApiResult::setIndexedTagName_internal() which will call
setIndexedTagName() on an array already in the result. This is needed for the
'new' order of adding results, which means addValue()ing one result at a time
until you hit the limit or run out, then calling this function to set the tag
name.
* Added ApiResult::disableSizeCheck() and enableSizeCheck() which disable and
enable size checking in addValue(). This is used for stuff like query-continue
elements and warnings which shouldn't count towards the result size.
* Added ApiResult::unsetValue() which removes an element from the result and
decreases $mSize.
ApiBase.php:
* Like ApiResult::getData(), ApiBase::getResultData() no longer returns a
reference.
* Use ApiResult::disableSizeCheck() in ApiBase::setWarning()
ApiQueryBase.php:
* Added ApiQueryBase::addPageSubItem(), which adds page subitems one item
at a time.
* addPageSubItem() and addPageSubItems() now return whether the subitem
fit in the result.
* Use ApiResult::disableSizeCheck() in setContinueEnumParameter()
ApiMain.php:
* Use ApiResult::disableSizeCheck() in ApiMain::substituteResultWithError()
* Use getParameter() rather than $mRequest to obtain requestid
DefaultSettings.php:
* Added $wgAPIMaxResultSize, with a default value of 8 MB
ApiQuery*.php:
* Added results one at a time, and set a query-continue if the result is full.
ApiQueryLangLinks.php and friends:
* Migrated from addPageSubItems() to addPageSubItem(). This eliminates the
need for $lastId.
ApiQueryAllLinks.php, ApiQueryWatchlist.php, ApiQueryAllimages.php, ApiQuerySearch.php:
* Renamed $data to something more appropriate ($pageids, $ids or $titles)
ApiQuerySiteinfo.php:
* Abuse siprop as a query-continue parameter and set it to all props that
couldn't be processed.
ApiQueryRandom.php:
* Doesn't do continuations, because the result is supposed to be random.
* Be smart enough to not run the second query if the results of the first
didn't fit.
ApiQueryImageInfo.php, ApiQueryRevisions.php, ApiQueryCategoryInfo.php, ApiQueryInfo.php:
* Added continue parameter which basically skips the first so many items
ApiQueryBacklinks.php:
* Throw the result in a big array first and addValue() that one element at a time if necessary
** This is necessary because the results aren't retrieved in order
* Introduced $this->pageMap to map namespace and title to page ID
* Rewritten extractRowInfo() and extractRedirRowInfo() a little
* Declared all private member variables explicitly
ApiQueryDeletedrevs.php:
* Use a pagemap just like in Backlinks
* Introduce fake page IDs and keep track of them so we know where to add what
** This doesn't change the output format, because the fake page IDs start at 0 and are consecutive
ApiQueryAllmessages.php:
* Add amfrom to facilitate query-continue
ApiQueryUsers.php:
* Rewrite: put the getOtherUsersInfo() code in execute()
2009-02-05 14:30:59 +00:00
|
|
|
continue;
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2010-01-11 15:55:52 +00:00
|
|
|
$fit = $this->getResult()->addValue( array( 'query', $this->getModuleName() ), null, $vals );
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( !$fit ) {
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->rc_timestamp ) );
|
* API: BREAKING CHANGE: (bug 11430) Return fewer results than the limit in some cases to prevent running out of memory
* This means queries could possibly return fewer results than the limit and still set a query-continue
* Add iicontinue, rvcontinue, cicontinue, incontinue, amfrom to faciliate query-continue for these modules
* Implemented by blocking additions to the ApiResult object if they would make it too large
** Important things like query-continue values and warnings are exempt from this check
** RSS feeds and exported XML are also exempted (size-checking them would be too messy)
** Result size is checked against $wgAPIMaxResultSize, which defaults to 8 MB
For those who really care, per-file details follow:
ApiResult.php:
* Introduced ApiResult::$mSize which keeps track of the result size.
* Introduced ApiResult::size() which calculates an array's size
(which is the sum of the strlen()s of its elements).
* ApiResult::addValue() now checks that the result size stays below
$wgAPIMaxResultSize. If the item won't fit, it won't be added and addValue()
will return false. Callers should check the return value and set a
query-continue if it's false.
* Closed the back door that is ApiResult::getData(): callers can't manipulate
the data array directly anymore so they can't bypass the result size limit.
* Added ApiResult::setIndexedTagName_internal() which will call
setIndexedTagName() on an array already in the result. This is needed for the
'new' order of adding results, which means addValue()ing one result at a time
until you hit the limit or run out, then calling this function to set the tag
name.
* Added ApiResult::disableSizeCheck() and enableSizeCheck() which disable and
enable size checking in addValue(). This is used for stuff like query-continue
elements and warnings which shouldn't count towards the result size.
* Added ApiResult::unsetValue() which removes an element from the result and
decreases $mSize.
ApiBase.php:
* Like ApiResult::getData(), ApiBase::getResultData() no longer returns a
reference.
* Use ApiResult::disableSizeCheck() in ApiBase::setWarning()
ApiQueryBase.php:
* Added ApiQueryBase::addPageSubItem(), which adds page subitems one item
at a time.
* addPageSubItem() and addPageSubItems() now return whether the subitem
fit in the result.
* Use ApiResult::disableSizeCheck() in setContinueEnumParameter()
ApiMain.php:
* Use ApiResult::disableSizeCheck() in ApiMain::substituteResultWithError()
* Use getParameter() rather than $mRequest to obtain requestid
DefaultSettings.php:
* Added $wgAPIMaxResultSize, with a default value of 8 MB
ApiQuery*.php:
* Added results one at a time, and set a query-continue if the result is full.
ApiQueryLangLinks.php and friends:
* Migrated from addPageSubItems() to addPageSubItem(). This eliminates the
need for $lastId.
ApiQueryAllLinks.php, ApiQueryWatchlist.php, ApiQueryAllimages.php, ApiQuerySearch.php:
* Renamed $data to something more appropriate ($pageids, $ids or $titles)
ApiQuerySiteinfo.php:
* Abuse siprop as a query-continue parameter and set it to all props that
couldn't be processed.
ApiQueryRandom.php:
* Doesn't do continuations, because the result is supposed to be random.
* Be smart enough to not run the second query if the results of the first
didn't fit.
ApiQueryImageInfo.php, ApiQueryRevisions.php, ApiQueryCategoryInfo.php, ApiQueryInfo.php:
* Added continue parameter which basically skips the first so many items
ApiQueryBacklinks.php:
* Throw the result in a big array first and addValue() that one element at a time if necessary
** This is necessary because the results aren't retrieved in order
* Introduced $this->pageMap to map namespace and title to page ID
* Rewritten extractRowInfo() and extractRedirRowInfo() a little
* Declared all private member variables explicitly
ApiQueryDeletedrevs.php:
* Use a pagemap just like in Backlinks
* Introduce fake page IDs and keep track of them so we know where to add what
** This doesn't change the output format, because the fake page IDs start at 0 and are consecutive
ApiQueryAllmessages.php:
* Add amfrom to facilitate query-continue
ApiQueryUsers.php:
* Rewrite: put the getOtherUsersInfo() code in execute()
2009-02-05 14:30:59 +00:00
|
|
|
break;
|
|
|
|
|
}
|
2006-10-20 07:10:18 +00:00
|
|
|
}
|
2007-10-12 00:15:21 +00:00
|
|
|
|
|
|
|
|
/* Format the result */
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->getResult()->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'rc' );
|
2006-10-20 07:10:18 +00:00
|
|
|
}
|
|
|
|
|
|
2007-10-12 00:15:21 +00:00
|
|
|
/**
|
|
|
|
|
* Extracts from a single sql row the data needed to describe one recent change.
|
|
|
|
|
*
|
|
|
|
|
* @param $row The row from which to extract the data.
|
|
|
|
|
* @return An array mapping strings (descriptors) to their respective string values.
|
2009-09-03 16:15:55 +00:00
|
|
|
* @access public
|
2007-10-12 00:15:21 +00:00
|
|
|
*/
|
2010-01-11 15:55:52 +00:00
|
|
|
public function extractRowInfo( $row ) {
|
2007-10-12 00:15:21 +00:00
|
|
|
/* If page was moved somewhere, get the title of the move target. */
|
2007-05-21 04:34:48 +00:00
|
|
|
$movedToTitle = false;
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( isset( $row->rc_moved_to_title ) && $row->rc_moved_to_title !== '' )
|
2010-02-24 14:45:19 +00:00
|
|
|
{
|
|
|
|
|
$movedToTitle = Title::makeTitle( $row->rc_moved_to_ns, $row->rc_moved_to_title );
|
|
|
|
|
}
|
2007-05-21 04:34:48 +00:00
|
|
|
|
2007-10-12 00:15:21 +00:00
|
|
|
/* Determine the title of the page that has been changed. */
|
2010-02-24 14:45:19 +00:00
|
|
|
$title = Title::makeTitle( $row->rc_namespace, $row->rc_title );
|
2007-10-12 00:15:21 +00:00
|
|
|
|
|
|
|
|
/* Our output data. */
|
2010-02-24 14:45:19 +00:00
|
|
|
$vals = array();
|
2007-05-21 04:34:48 +00:00
|
|
|
|
2010-02-24 14:45:19 +00:00
|
|
|
$type = intval( $row->rc_type );
|
2007-10-11 23:59:00 +00:00
|
|
|
|
|
|
|
|
/* Determine what kind of change this was. */
|
|
|
|
|
switch ( $type ) {
|
2010-01-23 22:47:49 +00:00
|
|
|
case RC_EDIT:
|
|
|
|
|
$vals['type'] = 'edit';
|
|
|
|
|
break;
|
|
|
|
|
case RC_NEW:
|
|
|
|
|
$vals['type'] = 'new';
|
|
|
|
|
break;
|
|
|
|
|
case RC_MOVE:
|
|
|
|
|
$vals['type'] = 'move';
|
|
|
|
|
break;
|
|
|
|
|
case RC_LOG:
|
|
|
|
|
$vals['type'] = 'log';
|
|
|
|
|
break;
|
|
|
|
|
case RC_MOVE_OVER_REDIRECT:
|
|
|
|
|
$vals['type'] = 'move over redirect';
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
$vals['type'] = $type;
|
2007-10-11 23:59:00 +00:00
|
|
|
}
|
2007-05-21 04:34:48 +00:00
|
|
|
|
2007-10-12 00:15:21 +00:00
|
|
|
/* Create a new entry in the result for the title. */
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $this->fld_title ) {
|
2010-02-24 14:45:19 +00:00
|
|
|
ApiQueryBase::addTitleInfo( $vals, $title );
|
|
|
|
|
if ( $movedToTitle ) {
|
|
|
|
|
ApiQueryBase::addTitleInfo( $vals, $movedToTitle, 'new_' );
|
|
|
|
|
}
|
2007-05-21 04:34:48 +00:00
|
|
|
}
|
|
|
|
|
|
2007-10-12 00:15:21 +00:00
|
|
|
/* Add ids, such as rcid, pageid, revid, and oldid to the change's info. */
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $this->fld_ids ) {
|
|
|
|
|
$vals['rcid'] = intval( $row->rc_id );
|
|
|
|
|
$vals['pageid'] = intval( $row->rc_cur_id );
|
|
|
|
|
$vals['revid'] = intval( $row->rc_this_oldid );
|
2007-05-21 04:34:48 +00:00
|
|
|
$vals['old_revid'] = intval( $row->rc_last_oldid );
|
|
|
|
|
}
|
|
|
|
|
|
2007-10-12 00:15:21 +00:00
|
|
|
/* Add user data and 'anon' flag, if use is anonymous. */
|
2010-08-28 01:09:21 +00:00
|
|
|
if ( $this->fld_user || $this->fld_userid ) {
|
|
|
|
|
|
|
|
|
|
if ( $this->fld_user ) {
|
|
|
|
|
$vals['user'] = $row->rc_user_text;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $this->fld_userid ) {
|
|
|
|
|
$vals['userid'] = $row->rc_user;
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( !$row->rc_user ) {
|
2007-05-21 04:34:48 +00:00
|
|
|
$vals['anon'] = '';
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2007-05-21 04:34:48 +00:00
|
|
|
}
|
|
|
|
|
|
2007-10-12 00:15:21 +00:00
|
|
|
/* Add flags, such as new, minor, bot. */
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $this->fld_flags ) {
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( $row->rc_bot ) {
|
2007-05-21 04:34:48 +00:00
|
|
|
$vals['bot'] = '';
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
|
|
|
|
if ( $row->rc_new ) {
|
2007-05-21 04:34:48 +00:00
|
|
|
$vals['new'] = '';
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
|
|
|
|
if ( $row->rc_minor ) {
|
2007-05-21 04:34:48 +00:00
|
|
|
$vals['minor'] = '';
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2007-05-21 04:34:48 +00:00
|
|
|
}
|
|
|
|
|
|
2007-10-12 00:15:21 +00:00
|
|
|
/* Add sizes of each revision. (Only available on 1.10+) */
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $this->fld_sizes ) {
|
|
|
|
|
$vals['oldlen'] = intval( $row->rc_old_len );
|
|
|
|
|
$vals['newlen'] = intval( $row->rc_new_len );
|
2007-05-21 04:34:48 +00:00
|
|
|
}
|
2007-10-12 00:15:21 +00:00
|
|
|
|
|
|
|
|
/* Add the timestamp. */
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( $this->fld_timestamp ) {
|
2010-01-11 15:55:52 +00:00
|
|
|
$vals['timestamp'] = wfTimestamp( TS_ISO_8601, $row->rc_timestamp );
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2007-05-21 04:34:48 +00:00
|
|
|
|
2007-10-12 00:15:21 +00:00
|
|
|
/* Add edit summary / log summary. */
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( $this->fld_comment && isset( $row->rc_comment ) ) {
|
2007-05-21 04:34:48 +00:00
|
|
|
$vals['comment'] = $row->rc_comment;
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
|
|
|
|
|
2010-01-31 23:06:35 +00:00
|
|
|
if ( $this->fld_parsedcomment && isset( $row->rc_comment ) ) {
|
|
|
|
|
global $wgUser;
|
|
|
|
|
$vals['parsedcomment'] = $wgUser->getSkin()->formatComment( $row->rc_comment, $title );
|
2007-05-21 04:34:48 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( $this->fld_redirect ) {
|
|
|
|
|
if ( $row->page_is_redirect ) {
|
2008-04-07 13:01:57 +00:00
|
|
|
$vals['redirect'] = '';
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
|
|
|
|
}
|
2008-04-07 13:01:57 +00:00
|
|
|
|
2008-02-24 20:23:33 +00:00
|
|
|
/* Add the patrolled flag */
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( $this->fld_patrolled && $row->rc_patrolled == 1 ) {
|
2008-02-24 20:23:33 +00:00
|
|
|
$vals['patrolled'] = '';
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
|
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $this->fld_loginfo && $row->rc_type == RC_LOG ) {
|
|
|
|
|
$vals['logid'] = intval( $row->rc_logid );
|
2008-09-06 12:18:36 +00:00
|
|
|
$vals['logtype'] = $row->rc_log_type;
|
|
|
|
|
$vals['logaction'] = $row->rc_log_action;
|
2010-02-24 14:45:19 +00:00
|
|
|
ApiQueryLogEvents::addLogParams(
|
|
|
|
|
$this->getResult(),
|
2008-09-06 12:18:36 +00:00
|
|
|
$vals, $row->rc_params,
|
2010-02-24 14:45:19 +00:00
|
|
|
$row->rc_log_type, $row->rc_timestamp
|
|
|
|
|
);
|
2008-09-06 12:18:36 +00:00
|
|
|
}
|
2010-02-24 14:45:19 +00:00
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $this->fld_tags ) {
|
|
|
|
|
if ( $row->ts_tags ) {
|
|
|
|
|
$tags = explode( ',', $row->ts_tags );
|
|
|
|
|
$this->getResult()->setIndexedTagName( $tags, 'tag' );
|
2009-11-01 10:42:41 +00:00
|
|
|
$vals['tags'] = $tags;
|
|
|
|
|
} else {
|
|
|
|
|
$vals['tags'] = array();
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-02-24 14:45:19 +00:00
|
|
|
|
|
|
|
|
if ( !is_null( $this->token ) ) {
|
2008-09-04 15:17:51 +00:00
|
|
|
$tokenFunctions = $this->getTokenFunctions();
|
2010-02-24 14:45:19 +00:00
|
|
|
foreach ( $this->token as $t ) {
|
2010-01-11 15:55:52 +00:00
|
|
|
$val = call_user_func( $tokenFunctions[$t], $row->rc_cur_id,
|
|
|
|
|
$title, RecentChange::newFromRow( $row ) );
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( $val === false ) {
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->setWarning( "Action '$t' is not allowed for the current user" );
|
2010-02-24 14:45:19 +00:00
|
|
|
} else {
|
2008-09-04 15:17:51 +00:00
|
|
|
$vals[$t . 'token'] = $val;
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2008-09-04 15:17:51 +00:00
|
|
|
}
|
|
|
|
|
}
|
2007-05-21 04:34:48 +00:00
|
|
|
|
|
|
|
|
return $vals;
|
|
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2010-02-24 14:45:19 +00:00
|
|
|
private function parseRCType( $type ) {
|
|
|
|
|
if ( is_array( $type ) ) {
|
|
|
|
|
$retval = array();
|
|
|
|
|
foreach ( $type as $t ) {
|
|
|
|
|
$retval[] = $this->parseRCType( $t );
|
2007-10-12 14:03:43 +00:00
|
|
|
}
|
2010-02-24 14:45:19 +00:00
|
|
|
return $retval;
|
|
|
|
|
}
|
|
|
|
|
switch( $type ) {
|
|
|
|
|
case 'edit':
|
|
|
|
|
return RC_EDIT;
|
|
|
|
|
case 'new':
|
|
|
|
|
return RC_NEW;
|
|
|
|
|
case 'log':
|
|
|
|
|
return RC_LOG;
|
|
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
}
|
2007-05-21 04:34:48 +00:00
|
|
|
|
2010-07-23 07:17:56 +00:00
|
|
|
public function getCacheMode( $params ) {
|
|
|
|
|
if ( isset( $params['show'] ) ) {
|
|
|
|
|
foreach ( $params['show'] as $show ) {
|
|
|
|
|
if ( $show === 'patrolled' || $show === '!patrolled' ) {
|
|
|
|
|
return 'private';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ( isset( $params['token'] ) ) {
|
|
|
|
|
return 'private';
|
|
|
|
|
}
|
|
|
|
|
if ( !is_null( $params['prop'] ) && in_array( 'parsedcomment', $params['prop'] ) ) {
|
|
|
|
|
// formatComment() calls wfMsg() among other things
|
|
|
|
|
return 'anon-public-user-private';
|
|
|
|
|
}
|
|
|
|
|
return 'public';
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-28 19:05:26 +00:00
|
|
|
public function getAllowedParams() {
|
2010-02-24 14:45:19 +00:00
|
|
|
return array(
|
|
|
|
|
'start' => array(
|
|
|
|
|
ApiBase::PARAM_TYPE => 'timestamp'
|
2006-11-03 06:53:47 +00:00
|
|
|
),
|
2010-02-24 14:45:19 +00:00
|
|
|
'end' => array(
|
|
|
|
|
ApiBase::PARAM_TYPE => 'timestamp'
|
2006-11-03 06:53:47 +00:00
|
|
|
),
|
2010-02-24 14:45:19 +00:00
|
|
|
'dir' => array(
|
|
|
|
|
ApiBase::PARAM_DFLT => 'older',
|
|
|
|
|
ApiBase::PARAM_TYPE => array(
|
2006-10-20 07:10:18 +00:00
|
|
|
'newer',
|
|
|
|
|
'older'
|
|
|
|
|
)
|
|
|
|
|
),
|
2010-02-24 14:45:19 +00:00
|
|
|
'namespace' => array(
|
|
|
|
|
ApiBase::PARAM_ISMULTI => true,
|
|
|
|
|
ApiBase::PARAM_TYPE => 'namespace'
|
2006-10-20 07:10:18 +00:00
|
|
|
),
|
2009-06-19 08:03:52 +00:00
|
|
|
'user' => array(
|
2010-02-24 14:45:19 +00:00
|
|
|
ApiBase::PARAM_TYPE => 'user'
|
2009-06-19 08:03:52 +00:00
|
|
|
),
|
|
|
|
|
'excludeuser' => array(
|
2010-02-24 14:45:19 +00:00
|
|
|
ApiBase::PARAM_TYPE => 'user'
|
2009-06-19 08:03:52 +00:00
|
|
|
),
|
2009-11-02 08:29:26 +00:00
|
|
|
'tag' => null,
|
2010-02-24 14:45:19 +00:00
|
|
|
'prop' => array(
|
|
|
|
|
ApiBase::PARAM_ISMULTI => true,
|
|
|
|
|
ApiBase::PARAM_DFLT => 'title|timestamp|ids',
|
|
|
|
|
ApiBase::PARAM_TYPE => array(
|
2006-10-21 08:26:32 +00:00
|
|
|
'user',
|
2010-08-28 01:09:21 +00:00
|
|
|
'userid',
|
2006-10-21 08:26:32 +00:00
|
|
|
'comment',
|
2010-01-31 23:06:35 +00:00
|
|
|
'parsedcomment',
|
2007-05-21 04:34:48 +00:00
|
|
|
'flags',
|
|
|
|
|
'timestamp',
|
|
|
|
|
'title',
|
|
|
|
|
'ids',
|
2008-02-24 20:23:33 +00:00
|
|
|
'sizes',
|
2008-04-07 13:01:57 +00:00
|
|
|
'redirect',
|
2008-09-06 12:18:36 +00:00
|
|
|
'patrolled',
|
|
|
|
|
'loginfo',
|
2009-11-01 10:42:41 +00:00
|
|
|
'tags'
|
2006-10-21 08:26:32 +00:00
|
|
|
)
|
|
|
|
|
),
|
2008-09-04 15:17:51 +00:00
|
|
|
'token' => array(
|
2010-02-24 14:45:19 +00:00
|
|
|
ApiBase::PARAM_TYPE => array_keys( $this->getTokenFunctions() ),
|
|
|
|
|
ApiBase::PARAM_ISMULTI => true
|
2008-09-04 15:17:51 +00:00
|
|
|
),
|
2010-02-24 14:45:19 +00:00
|
|
|
'show' => array(
|
|
|
|
|
ApiBase::PARAM_ISMULTI => true,
|
|
|
|
|
ApiBase::PARAM_TYPE => array(
|
2006-10-20 07:10:18 +00:00
|
|
|
'minor',
|
2006-11-04 06:53:52 +00:00
|
|
|
'!minor',
|
|
|
|
|
'bot',
|
|
|
|
|
'!bot',
|
|
|
|
|
'anon',
|
2008-04-07 13:01:57 +00:00
|
|
|
'!anon',
|
|
|
|
|
'redirect',
|
2008-05-07 19:30:59 +00:00
|
|
|
'!redirect',
|
|
|
|
|
'patrolled',
|
|
|
|
|
'!patrolled'
|
2006-10-20 07:10:18 +00:00
|
|
|
)
|
|
|
|
|
),
|
2010-02-24 14:45:19 +00:00
|
|
|
'limit' => array(
|
|
|
|
|
ApiBase::PARAM_DFLT => 10,
|
|
|
|
|
ApiBase::PARAM_TYPE => 'limit',
|
|
|
|
|
ApiBase::PARAM_MIN => 1,
|
|
|
|
|
ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
|
|
|
|
|
ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
|
2007-10-12 14:03:43 +00:00
|
|
|
),
|
2010-02-24 14:45:19 +00:00
|
|
|
'type' => array(
|
|
|
|
|
ApiBase::PARAM_ISMULTI => true,
|
|
|
|
|
ApiBase::PARAM_TYPE => array(
|
2007-10-12 14:03:43 +00:00
|
|
|
'edit',
|
2008-04-14 07:45:50 +00:00
|
|
|
'new',
|
2007-10-12 14:03:43 +00:00
|
|
|
'log'
|
|
|
|
|
)
|
2009-08-19 17:34:08 +00:00
|
|
|
)
|
2006-10-20 07:10:18 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-28 19:05:26 +00:00
|
|
|
public function getParamDescription() {
|
2010-02-24 14:45:19 +00:00
|
|
|
return array(
|
2010-05-11 22:30:18 +00:00
|
|
|
'start' => 'The timestamp to start enumerating from',
|
|
|
|
|
'end' => 'The timestamp to end enumerating',
|
|
|
|
|
'dir' => 'In which direction to enumerate',
|
2006-11-03 06:53:47 +00:00
|
|
|
'namespace' => 'Filter log entries to only this namespace(s)',
|
2009-06-19 08:03:52 +00:00
|
|
|
'user' => 'Only list changes by this user',
|
|
|
|
|
'excludeuser' => 'Don\'t list changes by this user',
|
2010-06-23 19:36:26 +00:00
|
|
|
'prop' => array(
|
|
|
|
|
'Include additional pieces of information',
|
|
|
|
|
' user - Adds the user responsible for the edit and tags if they are an IP',
|
2010-08-28 01:09:21 +00:00
|
|
|
' userid - Adds the user id responsible for the edit',
|
2010-06-23 19:36:26 +00:00
|
|
|
' comment - Adds the comment for the edit',
|
|
|
|
|
' parsedcomment - Adds the parsed comment for the edit',
|
|
|
|
|
' flags - Adds flags for the edit',
|
|
|
|
|
' timestamp - Adds timestamp of the edit',
|
|
|
|
|
' title - Adds the page title of the edit',
|
2010-12-14 11:47:13 +00:00
|
|
|
' ids - Adds the page ID, recent changes ID and the new and old revision ID',
|
2010-06-23 19:36:26 +00:00
|
|
|
' sizes - Adds the new and old page length in bytes',
|
|
|
|
|
' redirect - Tags edit if page is a redirect',
|
2010-12-14 11:47:13 +00:00
|
|
|
' patrolled - Tags edits that have been patrolled',
|
2010-06-23 19:36:26 +00:00
|
|
|
' loginfo - Adds log information (logid, logtype, etc) to log entries',
|
|
|
|
|
' tags - Lists tags for the entry',
|
|
|
|
|
),
|
2008-09-04 15:17:51 +00:00
|
|
|
'token' => 'Which tokens to obtain for each change',
|
2010-02-24 14:45:19 +00:00
|
|
|
'show' => array(
|
2006-11-04 06:53:52 +00:00
|
|
|
'Show only items that meet this criteria.',
|
2010-05-11 22:30:18 +00:00
|
|
|
"For example, to see only minor edits done by logged-in users, set {$this->getModulePrefix()}show=minor|!anon"
|
2006-11-04 06:53:52 +00:00
|
|
|
),
|
2010-05-11 22:30:18 +00:00
|
|
|
'type' => 'Which types of changes to show',
|
|
|
|
|
'limit' => 'How many total changes to return',
|
|
|
|
|
'tag' => 'Only list changes tagged with this tag',
|
2006-10-20 07:10:18 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-28 19:05:26 +00:00
|
|
|
public function getDescription() {
|
2006-10-20 07:10:18 +00:00
|
|
|
return 'Enumerate recent changes';
|
|
|
|
|
}
|
2010-02-24 14:45:19 +00:00
|
|
|
|
2010-02-13 01:21:52 +00:00
|
|
|
public function getPossibleErrors() {
|
|
|
|
|
return array_merge( parent::getPossibleErrors(), array(
|
2010-02-14 15:16:09 +00:00
|
|
|
array( 'show' ),
|
2010-02-13 01:21:52 +00:00
|
|
|
array( 'code' => 'permissiondenied', 'info' => 'You need the patrol right to request the patrolled flag' ),
|
|
|
|
|
array( 'code' => 'user-excludeuser', 'info' => 'user and excludeuser cannot be used together' ),
|
|
|
|
|
) );
|
|
|
|
|
}
|
2006-10-20 07:10:18 +00:00
|
|
|
|
|
|
|
|
protected function getExamples() {
|
2010-02-24 14:45:19 +00:00
|
|
|
return array(
|
2006-11-03 04:56:42 +00:00
|
|
|
'api.php?action=query&list=recentchanges'
|
2006-10-20 07:10:18 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getVersion() {
|
2007-12-06 18:33:18 +00:00
|
|
|
return __CLASS__ . ': $Id$';
|
2006-10-20 07:10:18 +00:00
|
|
|
}
|
2009-06-19 08:03:52 +00:00
|
|
|
}
|