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
|
|
|
|
|
*
|
2012-07-15 20:13:02 +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
|
|
|
*/
|
|
|
|
|
|
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
|
|
|
*/
|
2011-01-02 21:01:44 +00:00
|
|
|
class ApiQueryRecentChanges extends ApiQueryGeneratorBase {
|
2006-10-20 07:10:18 +00:00
|
|
|
|
2014-03-25 17:22:11 +00:00
|
|
|
public function __construct( ApiQuery $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,
|
2013-11-14 12:56:06 +00:00
|
|
|
$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, $fld_sha1 = false, $token = array();
|
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)
|
2014-08-08 16:56:07 +00:00
|
|
|
* @deprecated since 1.24
|
2014-07-24 17:42:45 +00:00
|
|
|
* @return array Array(tokenname => function)
|
2009-03-28 19:08:47 +00:00
|
|
|
*/
|
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 ) );
|
2013-11-14 12:56:06 +00:00
|
|
|
|
2008-09-04 15:17:51 +00:00
|
|
|
return $this->tokenFunctions;
|
|
|
|
|
}
|
2010-02-24 14:45:19 +00:00
|
|
|
|
2011-02-19 00:30:18 +00:00
|
|
|
/**
|
2014-08-08 16:56:07 +00:00
|
|
|
* @deprecated since 1.24
|
2014-04-15 18:12:09 +00:00
|
|
|
* @param int $pageid
|
|
|
|
|
* @param Title $title
|
|
|
|
|
* @param RecentChange|null $rc
|
2013-11-17 19:54:11 +00:00
|
|
|
* @return bool|string
|
2011-02-19 00:30:18 +00:00
|
|
|
*/
|
2012-03-28 22:02:10 +00:00
|
|
|
public static function getPatrolToken( $pageid, $title, $rc = null ) {
|
2008-09-04 15:17:51 +00:00
|
|
|
global $wgUser;
|
2012-03-28 22:02:10 +00:00
|
|
|
|
|
|
|
|
$validTokenUser = false;
|
|
|
|
|
|
|
|
|
|
if ( $rc ) {
|
|
|
|
|
if ( ( $wgUser->useRCPatrol() && $rc->getAttribute( 'rc_type' ) == RC_EDIT ) ||
|
2013-11-14 12:56:06 +00:00
|
|
|
( $wgUser->useNPPatrol() && $rc->getAttribute( 'rc_type' ) == RC_NEW )
|
|
|
|
|
) {
|
2012-03-28 22:02:10 +00:00
|
|
|
$validTokenUser = true;
|
|
|
|
|
}
|
2013-11-17 19:54:11 +00:00
|
|
|
} elseif ( $wgUser->useRCPatrol() || $wgUser->useNPPatrol() ) {
|
|
|
|
|
$validTokenUser = true;
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
|
|
|
|
|
2012-03-28 22:02:10 +00:00
|
|
|
if ( $validTokenUser ) {
|
|
|
|
|
// The patrol token is always the same, let's exploit that
|
|
|
|
|
static $cachedPatrolToken = null;
|
2013-11-17 19:54:11 +00:00
|
|
|
|
2012-03-28 22:02:10 +00:00
|
|
|
if ( is_null( $cachedPatrolToken ) ) {
|
|
|
|
|
$cachedPatrolToken = $wgUser->getEditToken( 'patrol' );
|
|
|
|
|
}
|
2013-11-14 12:56:06 +00:00
|
|
|
|
2012-03-28 22:02:10 +00:00
|
|
|
return $cachedPatrolToken;
|
2010-12-09 21:29:03 +00:00
|
|
|
}
|
2013-11-17 19:54:11 +00:00
|
|
|
|
|
|
|
|
return false;
|
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.
|
2014-07-24 17:42:45 +00:00
|
|
|
* @param array $prop 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'] );
|
2013-06-25 15:40:46 +00:00
|
|
|
$this->fld_sha1 = isset( $prop['sha1'] );
|
2009-09-03 16:15:55 +00:00
|
|
|
}
|
|
|
|
|
|
2011-01-02 21:01:44 +00:00
|
|
|
public function execute() {
|
|
|
|
|
$this->run();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function executeGenerator( $resultPageSet ) {
|
|
|
|
|
$this->run( $resultPageSet );
|
|
|
|
|
}
|
|
|
|
|
|
2007-10-12 00:15:21 +00:00
|
|
|
/**
|
|
|
|
|
* Generates and outputs the result of this query based upon the provided parameters.
|
2011-02-19 00:30:18 +00:00
|
|
|
*
|
2014-04-15 18:12:09 +00:00
|
|
|
* @param ApiPageSet $resultPageSet
|
2007-10-12 00:15:21 +00:00
|
|
|
*/
|
2011-01-02 21:01:44 +00:00
|
|
|
public function run( $resultPageSet = null ) {
|
2011-10-26 23:27:01 +00:00
|
|
|
$user = $this->getUser();
|
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
|
|
|
*/
|
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
|
2011-10-06 20:46:24 +00:00
|
|
|
$this->addTimestampWhereRange( 'rc_timestamp', $params['dir'], $params['start'], $params['end'] );
|
2012-09-05 18:09:19 +00:00
|
|
|
|
|
|
|
|
if ( !is_null( $params['continue'] ) ) {
|
|
|
|
|
$cont = explode( '|', $params['continue'] );
|
2013-12-24 20:26:47 +00:00
|
|
|
$this->dieContinueUsageIf( count( $cont ) != 2 );
|
|
|
|
|
$db = $this->getDB();
|
|
|
|
|
$timestamp = $db->addQuotes( $db->timestamp( $cont[0] ) );
|
2012-09-05 18:09:19 +00:00
|
|
|
$id = intval( $cont[1] );
|
2013-12-24 20:26:47 +00:00
|
|
|
$this->dieContinueUsageIf( $id != $cont[1] );
|
2013-04-02 14:01:53 +00:00
|
|
|
$op = $params['dir'] === 'older' ? '<' : '>';
|
2012-09-05 18:09:19 +00:00
|
|
|
$this->addWhere(
|
|
|
|
|
"rc_timestamp $op $timestamp OR " .
|
|
|
|
|
"(rc_timestamp = $timestamp AND " .
|
2013-04-02 14:01:53 +00:00
|
|
|
"rc_id $op= $id)"
|
2012-09-05 18:09:19 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-02 14:01:53 +00:00
|
|
|
$order = $params['dir'] === 'older' ? 'DESC' : 'ASC';
|
|
|
|
|
$this->addOption( 'ORDER BY', array(
|
|
|
|
|
"rc_timestamp $order",
|
|
|
|
|
"rc_id $order",
|
|
|
|
|
) );
|
2012-09-05 18:09:19 +00:00
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addWhereFld( 'rc_namespace', $params['namespace'] );
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( !is_null( $params['type'] ) ) {
|
2014-05-15 10:18:28 +00:00
|
|
|
try {
|
|
|
|
|
$this->addWhereFld( 'rc_type', RecentChange::parseToRCType( $params['type'] ) );
|
|
|
|
|
} catch ( MWException $e ) {
|
|
|
|
|
ApiBase::dieDebug( __METHOD__, $e->getMessage() );
|
|
|
|
|
}
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
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'] ) )
|
2013-11-14 12:56:06 +00:00
|
|
|
|| ( isset( $show['bot'] ) && isset( $show['!bot'] ) )
|
|
|
|
|
|| ( isset( $show['anon'] ) && isset( $show['!anon'] ) )
|
|
|
|
|
|| ( isset( $show['redirect'] ) && isset( $show['!redirect'] ) )
|
|
|
|
|
|| ( isset( $show['patrolled'] ) && isset( $show['!patrolled'] ) )
|
2013-10-25 10:11:08 +00:00
|
|
|
|| ( isset( $show['patrolled'] ) && isset( $show['unpatrolled'] ) )
|
|
|
|
|
|| ( isset( $show['!patrolled'] ) && isset( $show['unpatrolled'] ) )
|
2011-04-10 21:42:20 +00:00
|
|
|
) {
|
2011-05-19 17:51:16 +00:00
|
|
|
$this->dieUsageMsg( '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
|
2013-12-03 13:31:04 +00:00
|
|
|
if ( isset( $show['patrolled'] )
|
|
|
|
|
|| isset( $show['!patrolled'] )
|
|
|
|
|
|| isset( $show['unpatrolled'] )
|
|
|
|
|
) {
|
2011-10-26 23:27:01 +00:00
|
|
|
if ( !$user->useRCPatrol() && !$user->useNPPatrol() ) {
|
2013-11-14 13:58:14 +00:00
|
|
|
$this->dieUsage(
|
|
|
|
|
'You need the patrol right to request the patrolled flag',
|
|
|
|
|
'permissiondenied'
|
|
|
|
|
);
|
2010-07-14 19:00:54 +00:00
|
|
|
}
|
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'] ) );
|
|
|
|
|
|
2013-10-25 10:11:08 +00:00
|
|
|
if ( isset( $show['unpatrolled'] ) ) {
|
|
|
|
|
// See ChangesList:isUnpatrolled
|
|
|
|
|
if ( $user->useRCPatrol() ) {
|
|
|
|
|
$this->addWhere( 'rc_patrolled = 0' );
|
|
|
|
|
} elseif ( $user->useNPPatrol() ) {
|
|
|
|
|
$this->addWhere( 'rc_patrolled = 0' );
|
|
|
|
|
$this->addWhereFld( 'rc_type', RC_NEW );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-07 13:27:33 +00:00
|
|
|
// Don't throw log entries out the window here
|
2013-11-14 13:58:14 +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(
|
2013-12-24 20:26:47 +00:00
|
|
|
'rc_id',
|
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',
|
2010-10-23 17:22:38 +00:00
|
|
|
'rc_deleted'
|
2010-01-11 15:55:52 +00:00
|
|
|
) );
|
2006-10-20 07:10:18 +00:00
|
|
|
|
2011-04-10 21:42:20 +00:00
|
|
|
$showRedirects = false;
|
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
|
|
|
|
2011-10-26 23:27:01 +00:00
|
|
|
if ( $this->fld_patrolled && !$user->useRCPatrol() && !$user->useNPPatrol() ) {
|
2013-11-14 13:58:14 +00:00
|
|
|
$this->dieUsage(
|
|
|
|
|
'You need the patrol right to request the patrolled flag',
|
|
|
|
|
'permissiondenied'
|
|
|
|
|
);
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2007-10-12 00:15:21 +00:00
|
|
|
|
|
|
|
|
/* Add fields to our query if they are specified as a needed parameter. */
|
2012-09-05 18:09:19 +00:00
|
|
|
$this->addFieldsIf( array( 'rc_this_oldid', 'rc_last_oldid' ), $this->fld_ids );
|
2010-01-31 23:06:35 +00:00
|
|
|
$this->addFieldsIf( 'rc_comment', $this->fld_comment || $this->fld_parsedcomment );
|
2014-03-06 03:57:24 +00:00
|
|
|
$this->addFieldsIf( 'rc_user', $this->fld_user || $this->fld_userid );
|
|
|
|
|
$this->addFieldsIf( 'rc_user_text', $this->fld_user );
|
2013-02-03 18:47:42 +00:00
|
|
|
$this->addFieldsIf( array( 'rc_minor', 'rc_type', 'rc_bot' ), $this->fld_flags );
|
2011-06-01 16:40:59 +00:00
|
|
|
$this->addFieldsIf( array( 'rc_old_len', 'rc_new_len' ), $this->fld_sizes );
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addFieldsIf( 'rc_patrolled', $this->fld_patrolled );
|
2013-11-14 13:58:14 +00:00
|
|
|
$this->addFieldsIf(
|
|
|
|
|
array( 'rc_logid', 'rc_log_type', 'rc_log_action', 'rc_params' ),
|
|
|
|
|
$this->fld_loginfo
|
|
|
|
|
);
|
|
|
|
|
$showRedirects = $this->fld_redirect || isset( $show['redirect'] )
|
|
|
|
|
|| isset( $show['!redirect'] );
|
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
|
|
|
|
2013-06-25 15:40:46 +00:00
|
|
|
if ( $this->fld_sha1 ) {
|
|
|
|
|
$this->addTables( 'revision' );
|
2013-11-14 13:58:14 +00:00
|
|
|
$this->addJoinConds( array( 'revision' => array( 'LEFT JOIN',
|
|
|
|
|
array( 'rc_this_oldid=rev_id' ) ) ) );
|
2013-06-25 15:40:46 +00:00
|
|
|
$this->addFields( array( 'rev_sha1', 'rev_deleted' ) );
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-10 21:42:20 +00:00
|
|
|
if ( $params['toponly'] || $showRedirects ) {
|
|
|
|
|
$this->addTables( 'page' );
|
2013-11-14 13:58:14 +00:00
|
|
|
$this->addJoinConds( array( 'page' => array( 'LEFT JOIN',
|
|
|
|
|
array( 'rc_namespace=page_namespace', 'rc_title=page_title' ) ) ) );
|
2011-05-14 14:44:37 +00:00
|
|
|
$this->addFields( 'page_is_redirect' );
|
2011-04-10 21:42:20 +00:00
|
|
|
|
|
|
|
|
if ( $params['toponly'] ) {
|
|
|
|
|
$this->addWhere( 'rc_this_oldid = page_latest' );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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' ) ) ) );
|
2013-02-03 18:47:42 +00:00
|
|
|
$this->addWhereFld( 'ct_tag', $params['tag'] );
|
2009-11-01 10:42:41 +00:00
|
|
|
}
|
2010-02-24 14:45:19 +00:00
|
|
|
|
Improve API query RevDel handling
* ApiQueryDeletedrevs, ApiQueryFilearchive, ApiQueryRecentChanges, and
ApiQueryWatchlist will now return entires where fields have been
revision-deleted. "Hidden" indicators will be provided as appropriate.
* ApiQueryImageInfo, ApiQueryLogEvents, ApiQueryRevisions,
ApiQueryContributions will now return field values in addition to the
"hidden" indicators when the requesting user has the necessary rights.
* Modules that return "hidden" indicators will now also return a
"suppressed" indicator.
* ApiQueryImageInfo will now return info for DELETED_FILE file revisions
if the requesting user has the 'deletedtext' right.
* ApiQueryLogEvents, when searching by user or title, will now return
entries where the user or action are revision-deleted if the
requesting user has the 'deletedhistory' right.
* ApiQueryContributions now uses the correct user rights rather than
'hideuser' to determine when to show contributions where the username
was revision-deleted.
* ApiQueryContributions will now indicate when the revision text is
hidden.
* Fix a bug in ApiQueryDeletedrevs found during testing where specifying
the "content" prop along with the "tags" prop or "drtag" parameter
would cause an SQL error.
* Fix various PHP warnings in ApiQueryFilearchive caused by the lack of
ArchivedFile::selectFields() fields.
* ApiQueryImageInfo::getInfo's $metadataOpts parameter has been renamed
$opts, and now may have an option to indicate the user to use for
RevDel visibility checks.
* ApiQueryWatchlist now properly uses the actual user's rights for
checking whether wlprop=patrol is allowed, rather than using the
wlowner's rights.
Bug: 27747
Bug: 27748
Bug: 28261
Bug: 34926
Bug: 48966
Change-Id: Idec2199976f460e1c73a26d0717e9fc4ab8042bb
2013-12-18 21:58:39 +00:00
|
|
|
// Paranoia: avoid brute force searches (bug 17342)
|
|
|
|
|
if ( !is_null( $params['user'] ) || !is_null( $params['excludeuser'] ) ) {
|
|
|
|
|
if ( !$user->isAllowed( 'deletedhistory' ) ) {
|
|
|
|
|
$bitmask = Revision::DELETED_USER;
|
2014-06-12 22:18:51 +00:00
|
|
|
} elseif ( !$user->isAllowedAny( 'suppressrevision', 'viewsuppressed' ) ) {
|
Improve API query RevDel handling
* ApiQueryDeletedrevs, ApiQueryFilearchive, ApiQueryRecentChanges, and
ApiQueryWatchlist will now return entires where fields have been
revision-deleted. "Hidden" indicators will be provided as appropriate.
* ApiQueryImageInfo, ApiQueryLogEvents, ApiQueryRevisions,
ApiQueryContributions will now return field values in addition to the
"hidden" indicators when the requesting user has the necessary rights.
* Modules that return "hidden" indicators will now also return a
"suppressed" indicator.
* ApiQueryImageInfo will now return info for DELETED_FILE file revisions
if the requesting user has the 'deletedtext' right.
* ApiQueryLogEvents, when searching by user or title, will now return
entries where the user or action are revision-deleted if the
requesting user has the 'deletedhistory' right.
* ApiQueryContributions now uses the correct user rights rather than
'hideuser' to determine when to show contributions where the username
was revision-deleted.
* ApiQueryContributions will now indicate when the revision text is
hidden.
* Fix a bug in ApiQueryDeletedrevs found during testing where specifying
the "content" prop along with the "tags" prop or "drtag" parameter
would cause an SQL error.
* Fix various PHP warnings in ApiQueryFilearchive caused by the lack of
ArchivedFile::selectFields() fields.
* ApiQueryImageInfo::getInfo's $metadataOpts parameter has been renamed
$opts, and now may have an option to indicate the user to use for
RevDel visibility checks.
* ApiQueryWatchlist now properly uses the actual user's rights for
checking whether wlprop=patrol is allowed, rather than using the
wlowner's rights.
Bug: 27747
Bug: 27748
Bug: 28261
Bug: 34926
Bug: 48966
Change-Id: Idec2199976f460e1c73a26d0717e9fc4ab8042bb
2013-12-18 21:58:39 +00:00
|
|
|
$bitmask = Revision::DELETED_USER | Revision::DELETED_RESTRICTED;
|
|
|
|
|
} else {
|
|
|
|
|
$bitmask = 0;
|
|
|
|
|
}
|
|
|
|
|
if ( $bitmask ) {
|
|
|
|
|
$this->addWhere( $this->getDB()->bitAnd( 'rc_deleted', $bitmask ) . " != $bitmask" );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ( $this->getRequest()->getCheck( 'namespace' ) ) {
|
|
|
|
|
// LogPage::DELETED_ACTION hides the affected page, too.
|
|
|
|
|
if ( !$user->isAllowed( 'deletedhistory' ) ) {
|
|
|
|
|
$bitmask = LogPage::DELETED_ACTION;
|
2014-06-12 22:18:51 +00:00
|
|
|
} elseif ( !$user->isAllowedAny( 'suppressrevision', 'viewsuppressed' ) ) {
|
Improve API query RevDel handling
* ApiQueryDeletedrevs, ApiQueryFilearchive, ApiQueryRecentChanges, and
ApiQueryWatchlist will now return entires where fields have been
revision-deleted. "Hidden" indicators will be provided as appropriate.
* ApiQueryImageInfo, ApiQueryLogEvents, ApiQueryRevisions,
ApiQueryContributions will now return field values in addition to the
"hidden" indicators when the requesting user has the necessary rights.
* Modules that return "hidden" indicators will now also return a
"suppressed" indicator.
* ApiQueryImageInfo will now return info for DELETED_FILE file revisions
if the requesting user has the 'deletedtext' right.
* ApiQueryLogEvents, when searching by user or title, will now return
entries where the user or action are revision-deleted if the
requesting user has the 'deletedhistory' right.
* ApiQueryContributions now uses the correct user rights rather than
'hideuser' to determine when to show contributions where the username
was revision-deleted.
* ApiQueryContributions will now indicate when the revision text is
hidden.
* Fix a bug in ApiQueryDeletedrevs found during testing where specifying
the "content" prop along with the "tags" prop or "drtag" parameter
would cause an SQL error.
* Fix various PHP warnings in ApiQueryFilearchive caused by the lack of
ArchivedFile::selectFields() fields.
* ApiQueryImageInfo::getInfo's $metadataOpts parameter has been renamed
$opts, and now may have an option to indicate the user to use for
RevDel visibility checks.
* ApiQueryWatchlist now properly uses the actual user's rights for
checking whether wlprop=patrol is allowed, rather than using the
wlowner's rights.
Bug: 27747
Bug: 27748
Bug: 28261
Bug: 34926
Bug: 48966
Change-Id: Idec2199976f460e1c73a26d0717e9fc4ab8042bb
2013-12-18 21:58:39 +00:00
|
|
|
$bitmask = LogPage::DELETED_ACTION | LogPage::DELETED_RESTRICTED;
|
|
|
|
|
} else {
|
|
|
|
|
$bitmask = 0;
|
|
|
|
|
}
|
|
|
|
|
if ( $bitmask ) {
|
|
|
|
|
$this->addWhere( $this->getDB()->makeList( array(
|
|
|
|
|
'rc_type != ' . RC_LOG,
|
|
|
|
|
$this->getDB()->bitAnd( 'rc_deleted', $bitmask ) . " != $bitmask",
|
|
|
|
|
), LIST_OR ) );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
2011-01-02 21:01:44 +00:00
|
|
|
$titles = array();
|
|
|
|
|
|
2011-06-30 01:06:17 +00:00
|
|
|
$result = $this->getResult();
|
|
|
|
|
|
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 ) {
|
2013-11-14 12:56:06 +00:00
|
|
|
if ( ++$count > $params['limit'] ) {
|
2013-11-14 13:58:14 +00:00
|
|
|
// We've reached the one extra which shows that there are
|
|
|
|
|
// additional pages to be had. Stop here...
|
2013-12-24 20:26:47 +00:00
|
|
|
$this->setContinueEnumParameter( 'continue', "$row->rc_timestamp|$row->rc_id" );
|
2006-10-20 07:10:18 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-02 21:01:44 +00:00
|
|
|
if ( is_null( $resultPageSet ) ) {
|
|
|
|
|
/* Extract the data from a single row. */
|
|
|
|
|
$vals = $this->extractRowInfo( $row );
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2011-01-02 21:01:44 +00:00
|
|
|
/* Add that row's data to our final output. */
|
|
|
|
|
if ( !$vals ) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2011-06-30 01:06:17 +00:00
|
|
|
$fit = $result->addValue( array( 'query', $this->getModuleName() ), null, $vals );
|
2011-01-02 21:01:44 +00:00
|
|
|
if ( !$fit ) {
|
2013-12-24 20:26:47 +00:00
|
|
|
$this->setContinueEnumParameter( 'continue', "$row->rc_timestamp|$row->rc_id" );
|
2011-01-02 21:01:44 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$titles[] = Title::makeTitle( $row->rc_namespace, $row->rc_title );
|
* 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
|
|
|
}
|
2006-10-20 07:10:18 +00:00
|
|
|
}
|
2007-10-12 00:15:21 +00:00
|
|
|
|
2011-01-02 21:01:44 +00:00
|
|
|
if ( is_null( $resultPageSet ) ) {
|
|
|
|
|
/* Format the result */
|
2011-06-30 01:06:17 +00:00
|
|
|
$result->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'rc' );
|
2011-01-02 21:01:44 +00:00
|
|
|
} else {
|
|
|
|
|
$resultPageSet->populateFromTitles( $titles );
|
|
|
|
|
}
|
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.
|
|
|
|
|
*
|
2014-07-03 19:29:02 +00:00
|
|
|
* @param stdClass $row The row from which to extract the data.
|
2012-02-09 19:30:01 +00:00
|
|
|
* @return array 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
|
|
|
/* 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 );
|
Improve API query RevDel handling
* ApiQueryDeletedrevs, ApiQueryFilearchive, ApiQueryRecentChanges, and
ApiQueryWatchlist will now return entires where fields have been
revision-deleted. "Hidden" indicators will be provided as appropriate.
* ApiQueryImageInfo, ApiQueryLogEvents, ApiQueryRevisions,
ApiQueryContributions will now return field values in addition to the
"hidden" indicators when the requesting user has the necessary rights.
* Modules that return "hidden" indicators will now also return a
"suppressed" indicator.
* ApiQueryImageInfo will now return info for DELETED_FILE file revisions
if the requesting user has the 'deletedtext' right.
* ApiQueryLogEvents, when searching by user or title, will now return
entries where the user or action are revision-deleted if the
requesting user has the 'deletedhistory' right.
* ApiQueryContributions now uses the correct user rights rather than
'hideuser' to determine when to show contributions where the username
was revision-deleted.
* ApiQueryContributions will now indicate when the revision text is
hidden.
* Fix a bug in ApiQueryDeletedrevs found during testing where specifying
the "content" prop along with the "tags" prop or "drtag" parameter
would cause an SQL error.
* Fix various PHP warnings in ApiQueryFilearchive caused by the lack of
ArchivedFile::selectFields() fields.
* ApiQueryImageInfo::getInfo's $metadataOpts parameter has been renamed
$opts, and now may have an option to indicate the user to use for
RevDel visibility checks.
* ApiQueryWatchlist now properly uses the actual user's rights for
checking whether wlprop=patrol is allowed, rather than using the
wlowner's rights.
Bug: 27747
Bug: 27748
Bug: 28261
Bug: 34926
Bug: 48966
Change-Id: Idec2199976f460e1c73a26d0717e9fc4ab8042bb
2013-12-18 21:58:39 +00:00
|
|
|
$user = $this->getUser();
|
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 );
|
2014-05-15 10:18:28 +00:00
|
|
|
$vals['type'] = RecentChange::parseFromRCType( $type );
|
2007-05-21 04:34:48 +00:00
|
|
|
|
Improve API query RevDel handling
* ApiQueryDeletedrevs, ApiQueryFilearchive, ApiQueryRecentChanges, and
ApiQueryWatchlist will now return entires where fields have been
revision-deleted. "Hidden" indicators will be provided as appropriate.
* ApiQueryImageInfo, ApiQueryLogEvents, ApiQueryRevisions,
ApiQueryContributions will now return field values in addition to the
"hidden" indicators when the requesting user has the necessary rights.
* Modules that return "hidden" indicators will now also return a
"suppressed" indicator.
* ApiQueryImageInfo will now return info for DELETED_FILE file revisions
if the requesting user has the 'deletedtext' right.
* ApiQueryLogEvents, when searching by user or title, will now return
entries where the user or action are revision-deleted if the
requesting user has the 'deletedhistory' right.
* ApiQueryContributions now uses the correct user rights rather than
'hideuser' to determine when to show contributions where the username
was revision-deleted.
* ApiQueryContributions will now indicate when the revision text is
hidden.
* Fix a bug in ApiQueryDeletedrevs found during testing where specifying
the "content" prop along with the "tags" prop or "drtag" parameter
would cause an SQL error.
* Fix various PHP warnings in ApiQueryFilearchive caused by the lack of
ArchivedFile::selectFields() fields.
* ApiQueryImageInfo::getInfo's $metadataOpts parameter has been renamed
$opts, and now may have an option to indicate the user to use for
RevDel visibility checks.
* ApiQueryWatchlist now properly uses the actual user's rights for
checking whether wlprop=patrol is allowed, rather than using the
wlowner's rights.
Bug: 27747
Bug: 27748
Bug: 28261
Bug: 34926
Bug: 48966
Change-Id: Idec2199976f460e1c73a26d0717e9fc4ab8042bb
2013-12-18 21:58:39 +00:00
|
|
|
$anyHidden = false;
|
|
|
|
|
|
2007-10-12 00:15:21 +00:00
|
|
|
/* Create a new entry in the result for the title. */
|
Improve API query RevDel handling
* ApiQueryDeletedrevs, ApiQueryFilearchive, ApiQueryRecentChanges, and
ApiQueryWatchlist will now return entires where fields have been
revision-deleted. "Hidden" indicators will be provided as appropriate.
* ApiQueryImageInfo, ApiQueryLogEvents, ApiQueryRevisions,
ApiQueryContributions will now return field values in addition to the
"hidden" indicators when the requesting user has the necessary rights.
* Modules that return "hidden" indicators will now also return a
"suppressed" indicator.
* ApiQueryImageInfo will now return info for DELETED_FILE file revisions
if the requesting user has the 'deletedtext' right.
* ApiQueryLogEvents, when searching by user or title, will now return
entries where the user or action are revision-deleted if the
requesting user has the 'deletedhistory' right.
* ApiQueryContributions now uses the correct user rights rather than
'hideuser' to determine when to show contributions where the username
was revision-deleted.
* ApiQueryContributions will now indicate when the revision text is
hidden.
* Fix a bug in ApiQueryDeletedrevs found during testing where specifying
the "content" prop along with the "tags" prop or "drtag" parameter
would cause an SQL error.
* Fix various PHP warnings in ApiQueryFilearchive caused by the lack of
ArchivedFile::selectFields() fields.
* ApiQueryImageInfo::getInfo's $metadataOpts parameter has been renamed
$opts, and now may have an option to indicate the user to use for
RevDel visibility checks.
* ApiQueryWatchlist now properly uses the actual user's rights for
checking whether wlprop=patrol is allowed, rather than using the
wlowner's rights.
Bug: 27747
Bug: 27748
Bug: 28261
Bug: 34926
Bug: 48966
Change-Id: Idec2199976f460e1c73a26d0717e9fc4ab8042bb
2013-12-18 21:58:39 +00:00
|
|
|
if ( $this->fld_title || $this->fld_ids ) {
|
|
|
|
|
if ( $type === RC_LOG && ( $row->rc_deleted & LogPage::DELETED_ACTION ) ) {
|
|
|
|
|
$vals['actionhidden'] = '';
|
|
|
|
|
$anyHidden = true;
|
|
|
|
|
}
|
|
|
|
|
if ( $type !== RC_LOG ||
|
|
|
|
|
LogEventsList::userCanBitfield( $row->rc_deleted, LogPage::DELETED_ACTION, $user )
|
|
|
|
|
) {
|
|
|
|
|
if ( $this->fld_title ) {
|
|
|
|
|
ApiQueryBase::addTitleInfo( $vals, $title );
|
|
|
|
|
}
|
|
|
|
|
if ( $this->fld_ids ) {
|
|
|
|
|
$vals['pageid'] = intval( $row->rc_cur_id );
|
|
|
|
|
$vals['revid'] = intval( $row->rc_this_oldid );
|
|
|
|
|
$vals['old_revid'] = intval( $row->rc_last_oldid );
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-05-21 04:34:48 +00:00
|
|
|
}
|
|
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $this->fld_ids ) {
|
|
|
|
|
$vals['rcid'] = intval( $row->rc_id );
|
2007-05-21 04:34:48 +00:00
|
|
|
}
|
|
|
|
|
|
Improve API query RevDel handling
* ApiQueryDeletedrevs, ApiQueryFilearchive, ApiQueryRecentChanges, and
ApiQueryWatchlist will now return entires where fields have been
revision-deleted. "Hidden" indicators will be provided as appropriate.
* ApiQueryImageInfo, ApiQueryLogEvents, ApiQueryRevisions,
ApiQueryContributions will now return field values in addition to the
"hidden" indicators when the requesting user has the necessary rights.
* Modules that return "hidden" indicators will now also return a
"suppressed" indicator.
* ApiQueryImageInfo will now return info for DELETED_FILE file revisions
if the requesting user has the 'deletedtext' right.
* ApiQueryLogEvents, when searching by user or title, will now return
entries where the user or action are revision-deleted if the
requesting user has the 'deletedhistory' right.
* ApiQueryContributions now uses the correct user rights rather than
'hideuser' to determine when to show contributions where the username
was revision-deleted.
* ApiQueryContributions will now indicate when the revision text is
hidden.
* Fix a bug in ApiQueryDeletedrevs found during testing where specifying
the "content" prop along with the "tags" prop or "drtag" parameter
would cause an SQL error.
* Fix various PHP warnings in ApiQueryFilearchive caused by the lack of
ArchivedFile::selectFields() fields.
* ApiQueryImageInfo::getInfo's $metadataOpts parameter has been renamed
$opts, and now may have an option to indicate the user to use for
RevDel visibility checks.
* ApiQueryWatchlist now properly uses the actual user's rights for
checking whether wlprop=patrol is allowed, rather than using the
wlowner's rights.
Bug: 27747
Bug: 27748
Bug: 28261
Bug: 34926
Bug: 48966
Change-Id: Idec2199976f460e1c73a26d0717e9fc4ab8042bb
2013-12-18 21:58:39 +00:00
|
|
|
/* Add user data and 'anon' flag, if user is anonymous. */
|
2010-08-28 01:09:21 +00:00
|
|
|
if ( $this->fld_user || $this->fld_userid ) {
|
Improve API query RevDel handling
* ApiQueryDeletedrevs, ApiQueryFilearchive, ApiQueryRecentChanges, and
ApiQueryWatchlist will now return entires where fields have been
revision-deleted. "Hidden" indicators will be provided as appropriate.
* ApiQueryImageInfo, ApiQueryLogEvents, ApiQueryRevisions,
ApiQueryContributions will now return field values in addition to the
"hidden" indicators when the requesting user has the necessary rights.
* Modules that return "hidden" indicators will now also return a
"suppressed" indicator.
* ApiQueryImageInfo will now return info for DELETED_FILE file revisions
if the requesting user has the 'deletedtext' right.
* ApiQueryLogEvents, when searching by user or title, will now return
entries where the user or action are revision-deleted if the
requesting user has the 'deletedhistory' right.
* ApiQueryContributions now uses the correct user rights rather than
'hideuser' to determine when to show contributions where the username
was revision-deleted.
* ApiQueryContributions will now indicate when the revision text is
hidden.
* Fix a bug in ApiQueryDeletedrevs found during testing where specifying
the "content" prop along with the "tags" prop or "drtag" parameter
would cause an SQL error.
* Fix various PHP warnings in ApiQueryFilearchive caused by the lack of
ArchivedFile::selectFields() fields.
* ApiQueryImageInfo::getInfo's $metadataOpts parameter has been renamed
$opts, and now may have an option to indicate the user to use for
RevDel visibility checks.
* ApiQueryWatchlist now properly uses the actual user's rights for
checking whether wlprop=patrol is allowed, rather than using the
wlowner's rights.
Bug: 27747
Bug: 27748
Bug: 28261
Bug: 34926
Bug: 48966
Change-Id: Idec2199976f460e1c73a26d0717e9fc4ab8042bb
2013-12-18 21:58:39 +00:00
|
|
|
if ( $row->rc_deleted & Revision::DELETED_USER ) {
|
|
|
|
|
$vals['userhidden'] = '';
|
|
|
|
|
$anyHidden = true;
|
2010-08-28 01:09:21 +00:00
|
|
|
}
|
Improve API query RevDel handling
* ApiQueryDeletedrevs, ApiQueryFilearchive, ApiQueryRecentChanges, and
ApiQueryWatchlist will now return entires where fields have been
revision-deleted. "Hidden" indicators will be provided as appropriate.
* ApiQueryImageInfo, ApiQueryLogEvents, ApiQueryRevisions,
ApiQueryContributions will now return field values in addition to the
"hidden" indicators when the requesting user has the necessary rights.
* Modules that return "hidden" indicators will now also return a
"suppressed" indicator.
* ApiQueryImageInfo will now return info for DELETED_FILE file revisions
if the requesting user has the 'deletedtext' right.
* ApiQueryLogEvents, when searching by user or title, will now return
entries where the user or action are revision-deleted if the
requesting user has the 'deletedhistory' right.
* ApiQueryContributions now uses the correct user rights rather than
'hideuser' to determine when to show contributions where the username
was revision-deleted.
* ApiQueryContributions will now indicate when the revision text is
hidden.
* Fix a bug in ApiQueryDeletedrevs found during testing where specifying
the "content" prop along with the "tags" prop or "drtag" parameter
would cause an SQL error.
* Fix various PHP warnings in ApiQueryFilearchive caused by the lack of
ArchivedFile::selectFields() fields.
* ApiQueryImageInfo::getInfo's $metadataOpts parameter has been renamed
$opts, and now may have an option to indicate the user to use for
RevDel visibility checks.
* ApiQueryWatchlist now properly uses the actual user's rights for
checking whether wlprop=patrol is allowed, rather than using the
wlowner's rights.
Bug: 27747
Bug: 27748
Bug: 28261
Bug: 34926
Bug: 48966
Change-Id: Idec2199976f460e1c73a26d0717e9fc4ab8042bb
2013-12-18 21:58:39 +00:00
|
|
|
if ( Revision::userCanBitfield( $row->rc_deleted, Revision::DELETED_USER, $user ) ) {
|
|
|
|
|
if ( $this->fld_user ) {
|
|
|
|
|
$vals['user'] = $row->rc_user_text;
|
|
|
|
|
}
|
2010-08-28 01:09:21 +00:00
|
|
|
|
Improve API query RevDel handling
* ApiQueryDeletedrevs, ApiQueryFilearchive, ApiQueryRecentChanges, and
ApiQueryWatchlist will now return entires where fields have been
revision-deleted. "Hidden" indicators will be provided as appropriate.
* ApiQueryImageInfo, ApiQueryLogEvents, ApiQueryRevisions,
ApiQueryContributions will now return field values in addition to the
"hidden" indicators when the requesting user has the necessary rights.
* Modules that return "hidden" indicators will now also return a
"suppressed" indicator.
* ApiQueryImageInfo will now return info for DELETED_FILE file revisions
if the requesting user has the 'deletedtext' right.
* ApiQueryLogEvents, when searching by user or title, will now return
entries where the user or action are revision-deleted if the
requesting user has the 'deletedhistory' right.
* ApiQueryContributions now uses the correct user rights rather than
'hideuser' to determine when to show contributions where the username
was revision-deleted.
* ApiQueryContributions will now indicate when the revision text is
hidden.
* Fix a bug in ApiQueryDeletedrevs found during testing where specifying
the "content" prop along with the "tags" prop or "drtag" parameter
would cause an SQL error.
* Fix various PHP warnings in ApiQueryFilearchive caused by the lack of
ArchivedFile::selectFields() fields.
* ApiQueryImageInfo::getInfo's $metadataOpts parameter has been renamed
$opts, and now may have an option to indicate the user to use for
RevDel visibility checks.
* ApiQueryWatchlist now properly uses the actual user's rights for
checking whether wlprop=patrol is allowed, rather than using the
wlowner's rights.
Bug: 27747
Bug: 27748
Bug: 28261
Bug: 34926
Bug: 48966
Change-Id: Idec2199976f460e1c73a26d0717e9fc4ab8042bb
2013-12-18 21:58:39 +00:00
|
|
|
if ( $this->fld_userid ) {
|
|
|
|
|
$vals['userid'] = $row->rc_user;
|
|
|
|
|
}
|
2010-08-28 01:09:21 +00:00
|
|
|
|
Improve API query RevDel handling
* ApiQueryDeletedrevs, ApiQueryFilearchive, ApiQueryRecentChanges, and
ApiQueryWatchlist will now return entires where fields have been
revision-deleted. "Hidden" indicators will be provided as appropriate.
* ApiQueryImageInfo, ApiQueryLogEvents, ApiQueryRevisions,
ApiQueryContributions will now return field values in addition to the
"hidden" indicators when the requesting user has the necessary rights.
* Modules that return "hidden" indicators will now also return a
"suppressed" indicator.
* ApiQueryImageInfo will now return info for DELETED_FILE file revisions
if the requesting user has the 'deletedtext' right.
* ApiQueryLogEvents, when searching by user or title, will now return
entries where the user or action are revision-deleted if the
requesting user has the 'deletedhistory' right.
* ApiQueryContributions now uses the correct user rights rather than
'hideuser' to determine when to show contributions where the username
was revision-deleted.
* ApiQueryContributions will now indicate when the revision text is
hidden.
* Fix a bug in ApiQueryDeletedrevs found during testing where specifying
the "content" prop along with the "tags" prop or "drtag" parameter
would cause an SQL error.
* Fix various PHP warnings in ApiQueryFilearchive caused by the lack of
ArchivedFile::selectFields() fields.
* ApiQueryImageInfo::getInfo's $metadataOpts parameter has been renamed
$opts, and now may have an option to indicate the user to use for
RevDel visibility checks.
* ApiQueryWatchlist now properly uses the actual user's rights for
checking whether wlprop=patrol is allowed, rather than using the
wlowner's rights.
Bug: 27747
Bug: 27748
Bug: 28261
Bug: 34926
Bug: 48966
Change-Id: Idec2199976f460e1c73a26d0717e9fc4ab8042bb
2013-12-18 21:58:39 +00:00
|
|
|
if ( !$row->rc_user ) {
|
|
|
|
|
$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
|
|
|
}
|
2012-08-05 22:08:35 +00:00
|
|
|
if ( $row->rc_type == 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. */
|
Improve API query RevDel handling
* ApiQueryDeletedrevs, ApiQueryFilearchive, ApiQueryRecentChanges, and
ApiQueryWatchlist will now return entires where fields have been
revision-deleted. "Hidden" indicators will be provided as appropriate.
* ApiQueryImageInfo, ApiQueryLogEvents, ApiQueryRevisions,
ApiQueryContributions will now return field values in addition to the
"hidden" indicators when the requesting user has the necessary rights.
* Modules that return "hidden" indicators will now also return a
"suppressed" indicator.
* ApiQueryImageInfo will now return info for DELETED_FILE file revisions
if the requesting user has the 'deletedtext' right.
* ApiQueryLogEvents, when searching by user or title, will now return
entries where the user or action are revision-deleted if the
requesting user has the 'deletedhistory' right.
* ApiQueryContributions now uses the correct user rights rather than
'hideuser' to determine when to show contributions where the username
was revision-deleted.
* ApiQueryContributions will now indicate when the revision text is
hidden.
* Fix a bug in ApiQueryDeletedrevs found during testing where specifying
the "content" prop along with the "tags" prop or "drtag" parameter
would cause an SQL error.
* Fix various PHP warnings in ApiQueryFilearchive caused by the lack of
ArchivedFile::selectFields() fields.
* ApiQueryImageInfo::getInfo's $metadataOpts parameter has been renamed
$opts, and now may have an option to indicate the user to use for
RevDel visibility checks.
* ApiQueryWatchlist now properly uses the actual user's rights for
checking whether wlprop=patrol is allowed, rather than using the
wlowner's rights.
Bug: 27747
Bug: 27748
Bug: 28261
Bug: 34926
Bug: 48966
Change-Id: Idec2199976f460e1c73a26d0717e9fc4ab8042bb
2013-12-18 21:58:39 +00:00
|
|
|
if ( $this->fld_comment || $this->fld_parsedcomment ) {
|
|
|
|
|
if ( $row->rc_deleted & Revision::DELETED_COMMENT ) {
|
|
|
|
|
$vals['commenthidden'] = '';
|
|
|
|
|
$anyHidden = true;
|
|
|
|
|
}
|
|
|
|
|
if ( Revision::userCanBitfield( $row->rc_deleted, Revision::DELETED_COMMENT, $user ) ) {
|
|
|
|
|
if ( $this->fld_comment && isset( $row->rc_comment ) ) {
|
|
|
|
|
$vals['comment'] = $row->rc_comment;
|
|
|
|
|
}
|
2010-02-24 14:45:19 +00:00
|
|
|
|
Improve API query RevDel handling
* ApiQueryDeletedrevs, ApiQueryFilearchive, ApiQueryRecentChanges, and
ApiQueryWatchlist will now return entires where fields have been
revision-deleted. "Hidden" indicators will be provided as appropriate.
* ApiQueryImageInfo, ApiQueryLogEvents, ApiQueryRevisions,
ApiQueryContributions will now return field values in addition to the
"hidden" indicators when the requesting user has the necessary rights.
* Modules that return "hidden" indicators will now also return a
"suppressed" indicator.
* ApiQueryImageInfo will now return info for DELETED_FILE file revisions
if the requesting user has the 'deletedtext' right.
* ApiQueryLogEvents, when searching by user or title, will now return
entries where the user or action are revision-deleted if the
requesting user has the 'deletedhistory' right.
* ApiQueryContributions now uses the correct user rights rather than
'hideuser' to determine when to show contributions where the username
was revision-deleted.
* ApiQueryContributions will now indicate when the revision text is
hidden.
* Fix a bug in ApiQueryDeletedrevs found during testing where specifying
the "content" prop along with the "tags" prop or "drtag" parameter
would cause an SQL error.
* Fix various PHP warnings in ApiQueryFilearchive caused by the lack of
ArchivedFile::selectFields() fields.
* ApiQueryImageInfo::getInfo's $metadataOpts parameter has been renamed
$opts, and now may have an option to indicate the user to use for
RevDel visibility checks.
* ApiQueryWatchlist now properly uses the actual user's rights for
checking whether wlprop=patrol is allowed, rather than using the
wlowner's rights.
Bug: 27747
Bug: 27748
Bug: 28261
Bug: 34926
Bug: 48966
Change-Id: Idec2199976f460e1c73a26d0717e9fc4ab8042bb
2013-12-18 21:58:39 +00:00
|
|
|
if ( $this->fld_parsedcomment && isset( $row->rc_comment ) ) {
|
|
|
|
|
$vals['parsedcomment'] = Linker::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
|
|
|
}
|
|
|
|
|
|
Improve API query RevDel handling
* ApiQueryDeletedrevs, ApiQueryFilearchive, ApiQueryRecentChanges, and
ApiQueryWatchlist will now return entires where fields have been
revision-deleted. "Hidden" indicators will be provided as appropriate.
* ApiQueryImageInfo, ApiQueryLogEvents, ApiQueryRevisions,
ApiQueryContributions will now return field values in addition to the
"hidden" indicators when the requesting user has the necessary rights.
* Modules that return "hidden" indicators will now also return a
"suppressed" indicator.
* ApiQueryImageInfo will now return info for DELETED_FILE file revisions
if the requesting user has the 'deletedtext' right.
* ApiQueryLogEvents, when searching by user or title, will now return
entries where the user or action are revision-deleted if the
requesting user has the 'deletedhistory' right.
* ApiQueryContributions now uses the correct user rights rather than
'hideuser' to determine when to show contributions where the username
was revision-deleted.
* ApiQueryContributions will now indicate when the revision text is
hidden.
* Fix a bug in ApiQueryDeletedrevs found during testing where specifying
the "content" prop along with the "tags" prop or "drtag" parameter
would cause an SQL error.
* Fix various PHP warnings in ApiQueryFilearchive caused by the lack of
ArchivedFile::selectFields() fields.
* ApiQueryImageInfo::getInfo's $metadataOpts parameter has been renamed
$opts, and now may have an option to indicate the user to use for
RevDel visibility checks.
* ApiQueryWatchlist now properly uses the actual user's rights for
checking whether wlprop=patrol is allowed, rather than using the
wlowner's rights.
Bug: 27747
Bug: 27748
Bug: 28261
Bug: 34926
Bug: 48966
Change-Id: Idec2199976f460e1c73a26d0717e9fc4ab8042bb
2013-12-18 21:58:39 +00:00
|
|
|
if ( $this->fld_patrolled && ChangesList::isUnpatrolled( $row, $user ) ) {
|
2013-10-25 08:25:48 +00:00
|
|
|
$vals['unpatrolled'] = '';
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $this->fld_loginfo && $row->rc_type == RC_LOG ) {
|
Improve API query RevDel handling
* ApiQueryDeletedrevs, ApiQueryFilearchive, ApiQueryRecentChanges, and
ApiQueryWatchlist will now return entires where fields have been
revision-deleted. "Hidden" indicators will be provided as appropriate.
* ApiQueryImageInfo, ApiQueryLogEvents, ApiQueryRevisions,
ApiQueryContributions will now return field values in addition to the
"hidden" indicators when the requesting user has the necessary rights.
* Modules that return "hidden" indicators will now also return a
"suppressed" indicator.
* ApiQueryImageInfo will now return info for DELETED_FILE file revisions
if the requesting user has the 'deletedtext' right.
* ApiQueryLogEvents, when searching by user or title, will now return
entries where the user or action are revision-deleted if the
requesting user has the 'deletedhistory' right.
* ApiQueryContributions now uses the correct user rights rather than
'hideuser' to determine when to show contributions where the username
was revision-deleted.
* ApiQueryContributions will now indicate when the revision text is
hidden.
* Fix a bug in ApiQueryDeletedrevs found during testing where specifying
the "content" prop along with the "tags" prop or "drtag" parameter
would cause an SQL error.
* Fix various PHP warnings in ApiQueryFilearchive caused by the lack of
ArchivedFile::selectFields() fields.
* ApiQueryImageInfo::getInfo's $metadataOpts parameter has been renamed
$opts, and now may have an option to indicate the user to use for
RevDel visibility checks.
* ApiQueryWatchlist now properly uses the actual user's rights for
checking whether wlprop=patrol is allowed, rather than using the
wlowner's rights.
Bug: 27747
Bug: 27748
Bug: 28261
Bug: 34926
Bug: 48966
Change-Id: Idec2199976f460e1c73a26d0717e9fc4ab8042bb
2013-12-18 21:58:39 +00:00
|
|
|
if ( $row->rc_deleted & LogPage::DELETED_ACTION ) {
|
|
|
|
|
$vals['actionhidden'] = '';
|
|
|
|
|
$anyHidden = true;
|
|
|
|
|
}
|
|
|
|
|
if ( LogEventsList::userCanBitfield( $row->rc_deleted, LogPage::DELETED_ACTION, $user ) ) {
|
|
|
|
|
$vals['logid'] = intval( $row->rc_logid );
|
|
|
|
|
$vals['logtype'] = $row->rc_log_type;
|
|
|
|
|
$vals['logaction'] = $row->rc_log_action;
|
|
|
|
|
$logEntry = DatabaseLogEntry::newFromRow( (array)$row );
|
|
|
|
|
ApiQueryLogEvents::addLogParams(
|
|
|
|
|
$this->getResult(),
|
|
|
|
|
$vals,
|
|
|
|
|
$logEntry->getParameters(),
|
|
|
|
|
$logEntry->getType(),
|
|
|
|
|
$logEntry->getSubtype(),
|
|
|
|
|
$logEntry->getTimestamp()
|
|
|
|
|
);
|
|
|
|
|
}
|
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
|
|
|
|
2013-06-25 15:40:46 +00:00
|
|
|
if ( $this->fld_sha1 && $row->rev_sha1 !== null ) {
|
|
|
|
|
if ( $row->rev_deleted & Revision::DELETED_TEXT ) {
|
|
|
|
|
$vals['sha1hidden'] = '';
|
Improve API query RevDel handling
* ApiQueryDeletedrevs, ApiQueryFilearchive, ApiQueryRecentChanges, and
ApiQueryWatchlist will now return entires where fields have been
revision-deleted. "Hidden" indicators will be provided as appropriate.
* ApiQueryImageInfo, ApiQueryLogEvents, ApiQueryRevisions,
ApiQueryContributions will now return field values in addition to the
"hidden" indicators when the requesting user has the necessary rights.
* Modules that return "hidden" indicators will now also return a
"suppressed" indicator.
* ApiQueryImageInfo will now return info for DELETED_FILE file revisions
if the requesting user has the 'deletedtext' right.
* ApiQueryLogEvents, when searching by user or title, will now return
entries where the user or action are revision-deleted if the
requesting user has the 'deletedhistory' right.
* ApiQueryContributions now uses the correct user rights rather than
'hideuser' to determine when to show contributions where the username
was revision-deleted.
* ApiQueryContributions will now indicate when the revision text is
hidden.
* Fix a bug in ApiQueryDeletedrevs found during testing where specifying
the "content" prop along with the "tags" prop or "drtag" parameter
would cause an SQL error.
* Fix various PHP warnings in ApiQueryFilearchive caused by the lack of
ArchivedFile::selectFields() fields.
* ApiQueryImageInfo::getInfo's $metadataOpts parameter has been renamed
$opts, and now may have an option to indicate the user to use for
RevDel visibility checks.
* ApiQueryWatchlist now properly uses the actual user's rights for
checking whether wlprop=patrol is allowed, rather than using the
wlowner's rights.
Bug: 27747
Bug: 27748
Bug: 28261
Bug: 34926
Bug: 48966
Change-Id: Idec2199976f460e1c73a26d0717e9fc4ab8042bb
2013-12-18 21:58:39 +00:00
|
|
|
$anyHidden = true;
|
|
|
|
|
}
|
|
|
|
|
if ( Revision::userCanBitfield( $row->rev_deleted, Revision::DELETED_TEXT, $user ) ) {
|
|
|
|
|
if ( $row->rev_sha1 !== '' ) {
|
|
|
|
|
$vals['sha1'] = wfBaseConvert( $row->rev_sha1, 36, 16, 40 );
|
|
|
|
|
} else {
|
|
|
|
|
$vals['sha1'] = '';
|
|
|
|
|
}
|
2013-06-25 15:40:46 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
Improve API query RevDel handling
* ApiQueryDeletedrevs, ApiQueryFilearchive, ApiQueryRecentChanges, and
ApiQueryWatchlist will now return entires where fields have been
revision-deleted. "Hidden" indicators will be provided as appropriate.
* ApiQueryImageInfo, ApiQueryLogEvents, ApiQueryRevisions,
ApiQueryContributions will now return field values in addition to the
"hidden" indicators when the requesting user has the necessary rights.
* Modules that return "hidden" indicators will now also return a
"suppressed" indicator.
* ApiQueryImageInfo will now return info for DELETED_FILE file revisions
if the requesting user has the 'deletedtext' right.
* ApiQueryLogEvents, when searching by user or title, will now return
entries where the user or action are revision-deleted if the
requesting user has the 'deletedhistory' right.
* ApiQueryContributions now uses the correct user rights rather than
'hideuser' to determine when to show contributions where the username
was revision-deleted.
* ApiQueryContributions will now indicate when the revision text is
hidden.
* Fix a bug in ApiQueryDeletedrevs found during testing where specifying
the "content" prop along with the "tags" prop or "drtag" parameter
would cause an SQL error.
* Fix various PHP warnings in ApiQueryFilearchive caused by the lack of
ArchivedFile::selectFields() fields.
* ApiQueryImageInfo::getInfo's $metadataOpts parameter has been renamed
$opts, and now may have an option to indicate the user to use for
RevDel visibility checks.
* ApiQueryWatchlist now properly uses the actual user's rights for
checking whether wlprop=patrol is allowed, rather than using the
wlowner's rights.
Bug: 27747
Bug: 27748
Bug: 28261
Bug: 34926
Bug: 48966
Change-Id: Idec2199976f460e1c73a26d0717e9fc4ab8042bb
2013-12-18 21:58:39 +00:00
|
|
|
if ( $anyHidden && ( $row->rc_deleted & Revision::DELETED_RESTRICTED ) ) {
|
|
|
|
|
$vals['suppressed'] = '';
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-21 04:34:48 +00:00
|
|
|
return $vals;
|
|
|
|
|
}
|
2008-04-14 07:45:50 +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';
|
|
|
|
|
}
|
Improve API query RevDel handling
* ApiQueryDeletedrevs, ApiQueryFilearchive, ApiQueryRecentChanges, and
ApiQueryWatchlist will now return entires where fields have been
revision-deleted. "Hidden" indicators will be provided as appropriate.
* ApiQueryImageInfo, ApiQueryLogEvents, ApiQueryRevisions,
ApiQueryContributions will now return field values in addition to the
"hidden" indicators when the requesting user has the necessary rights.
* Modules that return "hidden" indicators will now also return a
"suppressed" indicator.
* ApiQueryImageInfo will now return info for DELETED_FILE file revisions
if the requesting user has the 'deletedtext' right.
* ApiQueryLogEvents, when searching by user or title, will now return
entries where the user or action are revision-deleted if the
requesting user has the 'deletedhistory' right.
* ApiQueryContributions now uses the correct user rights rather than
'hideuser' to determine when to show contributions where the username
was revision-deleted.
* ApiQueryContributions will now indicate when the revision text is
hidden.
* Fix a bug in ApiQueryDeletedrevs found during testing where specifying
the "content" prop along with the "tags" prop or "drtag" parameter
would cause an SQL error.
* Fix various PHP warnings in ApiQueryFilearchive caused by the lack of
ArchivedFile::selectFields() fields.
* ApiQueryImageInfo::getInfo's $metadataOpts parameter has been renamed
$opts, and now may have an option to indicate the user to use for
RevDel visibility checks.
* ApiQueryWatchlist now properly uses the actual user's rights for
checking whether wlprop=patrol is allowed, rather than using the
wlowner's rights.
Bug: 27747
Bug: 27748
Bug: 28261
Bug: 34926
Bug: 48966
Change-Id: Idec2199976f460e1c73a26d0717e9fc4ab8042bb
2013-12-18 21:58:39 +00:00
|
|
|
if ( $this->userCanSeeRevDel() ) {
|
|
|
|
|
return 'private';
|
|
|
|
|
}
|
2010-07-23 07:17:56 +00:00
|
|
|
if ( !is_null( $params['prop'] ) && in_array( 'parsedcomment', $params['prop'] ) ) {
|
2012-08-21 19:58:47 +00:00
|
|
|
// formatComment() calls wfMessage() among other things
|
2010-07-23 07:17:56 +00:00
|
|
|
return 'anon-public-user-private';
|
|
|
|
|
}
|
2013-11-14 12:56:06 +00:00
|
|
|
|
2010-07-23 07:17:56 +00:00
|
|
|
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'
|
2014-09-18 17:38:23 +00:00
|
|
|
),
|
|
|
|
|
ApiBase::PARAM_HELP_MSG => 'api-help-param-direction',
|
2006-10-20 07:10:18 +00:00
|
|
|
),
|
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',
|
2013-06-25 15:40:46 +00:00
|
|
|
'tags',
|
|
|
|
|
'sha1',
|
2006-10-21 08:26:32 +00:00
|
|
|
)
|
|
|
|
|
),
|
2008-09-04 15:17:51 +00:00
|
|
|
'token' => array(
|
2014-08-08 16:56:07 +00:00
|
|
|
ApiBase::PARAM_DEPRECATED => true,
|
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',
|
2013-10-25 10:11:08 +00:00
|
|
|
'!patrolled',
|
|
|
|
|
'unpatrolled'
|
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',
|
2013-01-14 23:51:33 +00:00
|
|
|
'external',
|
2008-04-14 07:45:50 +00:00
|
|
|
'new',
|
2007-10-12 14:03:43 +00:00
|
|
|
'log'
|
|
|
|
|
)
|
2011-04-10 21:42:20 +00:00
|
|
|
),
|
|
|
|
|
'toponly' => false,
|
2014-09-18 17:38:23 +00:00
|
|
|
'continue' => array(
|
|
|
|
|
ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
|
2006-11-04 06:53:52 +00:00
|
|
|
),
|
2006-10-20 07:10:18 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-28 17:17:02 +00:00
|
|
|
protected function getExamplesMessages() {
|
2010-02-24 14:45:19 +00:00
|
|
|
return array(
|
2014-09-18 17:38:23 +00:00
|
|
|
'action=query&list=recentchanges'
|
|
|
|
|
=> 'apihelp-query+recentchanges-example-simple',
|
|
|
|
|
'action=query&generator=recentchanges&grcshow=!patrolled&prop=info'
|
|
|
|
|
=> 'apihelp-query+recentchanges-example-generator',
|
2006-10-20 07:10:18 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-17 17:02:06 +00:00
|
|
|
public function getHelpUrls() {
|
2011-11-28 15:43:11 +00:00
|
|
|
return 'https://www.mediawiki.org/wiki/API:Recentchanges';
|
2011-07-17 17:02:06 +00:00
|
|
|
}
|
2009-06-19 08:03:52 +00:00
|
|
|
}
|