2006-09-26 05:43:02 +00:00
|
|
|
<?php
|
2010-02-24 14:45:19 +00:00
|
|
|
/**
|
2010-12-22 20:52:06 +00:00
|
|
|
*
|
2006-09-26 05:43:02 +00:00
|
|
|
*
|
2010-08-07 19:59:42 +00:00
|
|
|
* Created on Sep 7, 2006
|
|
|
|
|
*
|
2012-07-15 20:13:02 +00:00
|
|
|
* Copyright © 2006 Yuri Astrakhan "<Firstname><Lastname>@gmail.com"
|
2006-09-26 05:43:02 +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-09-26 05:43:02 +00:00
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
2010-08-07 19:59:42 +00:00
|
|
|
*
|
|
|
|
|
* @file
|
2006-09-26 05:43:02 +00:00
|
|
|
*/
|
|
|
|
|
|
2007-04-20 08:55:14 +00:00
|
|
|
/**
|
2013-11-14 13:58:14 +00:00
|
|
|
* A query action to enumerate revisions of a given page, or show top revisions
|
|
|
|
|
* of multiple pages. Various pieces of information may be shown - flags,
|
|
|
|
|
* comments, and the actual wiki markup of the rev. In the enumeration mode,
|
|
|
|
|
* ranges of revisions may be requested and filtered.
|
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
|
|
|
*/
|
2014-09-29 17:47:08 +00:00
|
|
|
class ApiQueryRevisions extends ApiQueryRevisionsBase {
|
2006-09-26 05:43:02 +00:00
|
|
|
|
2014-09-29 17:47:08 +00:00
|
|
|
private $token = null;
|
2010-10-20 20:16:46 +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, 'rv' );
|
2006-09-26 05:43:02 +00:00
|
|
|
}
|
|
|
|
|
|
2010-10-20 18:50:33 +00:00
|
|
|
private $tokenFunctions;
|
|
|
|
|
|
2014-08-08 16:56:07 +00:00
|
|
|
/** @deprecated since 1.24 */
|
2008-07-04 12:07:02 +00:00
|
|
|
protected function getTokenFunctions() {
|
|
|
|
|
// tokenname => function
|
|
|
|
|
// function prototype is func($pageid, $title, $rev)
|
|
|
|
|
// should return token or false
|
|
|
|
|
|
|
|
|
|
// Don't call the hooks twice
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( isset( $this->tokenFunctions ) ) {
|
2008-07-04 12:07:02 +00:00
|
|
|
return $this->tokenFunctions;
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2008-07-05 11:18:50 +00:00
|
|
|
|
2014-12-17 11:09:04 +00:00
|
|
|
// If we're in a mode that breaks the same-origin policy, no tokens can
|
|
|
|
|
// be obtained
|
|
|
|
|
if ( $this->lacksSameOriginSecurity() ) {
|
2008-07-05 11:18:50 +00:00
|
|
|
return array();
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2008-07-05 11:18:50 +00:00
|
|
|
|
2008-07-04 12:07:02 +00:00
|
|
|
$this->tokenFunctions = array(
|
2008-09-04 15:17:51 +00:00
|
|
|
'rollback' => array( 'ApiQueryRevisions', 'getRollbackToken' )
|
2008-07-04 12:07:02 +00:00
|
|
|
);
|
2014-12-09 07:23:30 +00:00
|
|
|
Hooks::run( 'APIQueryRevisionsTokens', array( &$this->tokenFunctions ) );
|
2013-11-14 13:00:02 +00:00
|
|
|
|
2008-07-04 12:07:02 +00:00
|
|
|
return $this->tokenFunctions;
|
|
|
|
|
}
|
|
|
|
|
|
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 Revision $rev
|
|
|
|
|
* @return bool|string
|
2011-02-19 00:30:18 +00:00
|
|
|
*/
|
2010-02-24 14:45:19 +00:00
|
|
|
public static function getRollbackToken( $pageid, $title, $rev ) {
|
2008-07-04 12:07:02 +00:00
|
|
|
global $wgUser;
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( !$wgUser->isAllowed( 'rollback' ) ) {
|
2008-07-04 12:07:02 +00:00
|
|
|
return false;
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2013-11-14 13:00:02 +00:00
|
|
|
|
2011-10-27 00:46:17 +00:00
|
|
|
return $wgUser->getEditToken(
|
|
|
|
|
array( $title->getPrefixedText(), $rev->getUserText() ) );
|
2008-07-04 12:07:02 +00:00
|
|
|
}
|
|
|
|
|
|
2014-09-29 17:47:08 +00:00
|
|
|
protected function run( ApiPageSet $resultPageSet = null ) {
|
2010-01-11 15:55:52 +00:00
|
|
|
$params = $this->extractRequestParams( false );
|
2006-09-26 05:43:02 +00:00
|
|
|
|
2006-10-01 02:02:13 +00:00
|
|
|
// If any of those parameters are used, work in 'enumeration' mode.
|
2006-09-30 08:06:27 +00:00
|
|
|
// Enum mode can only be used when exactly one page is provided.
|
2008-04-14 07:45:50 +00:00
|
|
|
// Enumerating revisions on multiple pages make it extremely
|
|
|
|
|
// difficult to manage continuations and require additional SQL indexes
|
2010-01-11 15:55:52 +00:00
|
|
|
$enumRevMode = ( !is_null( $params['user'] ) || !is_null( $params['excludeuser'] ) ||
|
2013-11-14 13:00:02 +00:00
|
|
|
!is_null( $params['limit'] ) || !is_null( $params['startid'] ) ||
|
|
|
|
|
!is_null( $params['endid'] ) || $params['dir'] === 'newer' ||
|
|
|
|
|
!is_null( $params['start'] ) || !is_null( $params['end'] ) );
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2006-10-01 20:17:16 +00:00
|
|
|
$pageSet = $this->getPageSet();
|
|
|
|
|
$pageCount = $pageSet->getGoodTitleCount();
|
|
|
|
|
$revCount = $pageSet->getRevisionCount();
|
2006-09-29 07:29:13 +00:00
|
|
|
|
2006-10-01 02:02:13 +00:00
|
|
|
// Optimization -- nothing to do
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( $revCount === 0 && $pageCount === 0 ) {
|
2014-09-29 17:47:08 +00:00
|
|
|
// Nothing to do
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if ( $revCount > 0 && count( $pageSet->getLiveRevisionIDs() ) === 0 ) {
|
|
|
|
|
// We're in revisions mode but all given revisions are deleted
|
2006-10-01 02:02:13 +00:00
|
|
|
return;
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2006-10-01 02:02:13 +00:00
|
|
|
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( $revCount > 0 && $enumRevMode ) {
|
2013-11-14 13:58:14 +00:00
|
|
|
$this->dieUsage(
|
|
|
|
|
'The revids= parameter may not be used with the list options ' .
|
|
|
|
|
'(limit, startid, endid, dirNewer, start, end).',
|
|
|
|
|
'revids'
|
|
|
|
|
);
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2006-09-30 08:06:27 +00:00
|
|
|
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( $pageCount > 1 && $enumRevMode ) {
|
2013-11-14 13:58:14 +00:00
|
|
|
$this->dieUsage(
|
|
|
|
|
'titles, pageids or a generator was used to supply multiple pages, ' .
|
|
|
|
|
'but the limit, startid, endid, dirNewer, user, excludeuser, start ' .
|
|
|
|
|
'and end parameters may only be used on a single page.',
|
|
|
|
|
'multpages'
|
|
|
|
|
);
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2006-09-27 05:13:48 +00:00
|
|
|
|
2014-09-29 17:47:08 +00:00
|
|
|
// In non-enum mode, rvlimit can't be directly used. Use the maximum
|
|
|
|
|
// allowed value.
|
|
|
|
|
if ( !$enumRevMode ) {
|
|
|
|
|
$this->setParsedLimit = false;
|
|
|
|
|
$params['limit'] = 'max';
|
2009-02-28 13:25:21 +00:00
|
|
|
}
|
|
|
|
|
|
2009-06-13 06:31:38 +00:00
|
|
|
$db = $this->getDB();
|
2014-09-29 17:47:08 +00:00
|
|
|
$this->addTables( array( 'revision', 'page' ) );
|
|
|
|
|
$this->addJoinConds(
|
|
|
|
|
array( 'page' => array( 'INNER JOIN', array( 'page_id = rev_page' ) ) )
|
|
|
|
|
);
|
2010-10-23 16:41:20 +00:00
|
|
|
|
2014-09-29 17:47:08 +00:00
|
|
|
if ( $resultPageSet === null ) {
|
|
|
|
|
$this->parseParameters( $params );
|
|
|
|
|
$this->token = $params['token'];
|
|
|
|
|
$this->addFields( Revision::selectFields() );
|
|
|
|
|
if ( $this->token !== null || $pageCount > 0 ) {
|
|
|
|
|
$this->addFields( Revision::selectPageFields() );
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$this->limit = $this->getParameter( 'limit' ) ?: 10;
|
|
|
|
|
$this->addFields( array( 'rev_id', 'rev_page' ) );
|
2007-05-21 06:32:32 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2014-09-29 17:47:08 +00:00
|
|
|
if ( $this->fld_tags ) {
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addTables( 'tag_summary' );
|
2013-11-14 13:58:14 +00:00
|
|
|
$this->addJoinConds(
|
|
|
|
|
array( 'tag_summary' => array( 'LEFT JOIN', array( 'rev_id=ts_rev_id' ) ) )
|
|
|
|
|
);
|
2010-01-11 15:55:52 +00:00
|
|
|
$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' );
|
2013-11-14 13:58:14 +00:00
|
|
|
$this->addJoinConds(
|
|
|
|
|
array( 'change_tag' => array( 'INNER JOIN', array( 'rev_id=ct_rev_id' ) ) )
|
|
|
|
|
);
|
2013-02-03 18:47:42 +00:00
|
|
|
$this->addWhereFld( 'ct_tag', $params['tag'] );
|
2009-11-01 10:42:41 +00:00
|
|
|
}
|
2007-07-14 19:04:31 +00:00
|
|
|
|
2014-11-08 10:25:33 +00:00
|
|
|
if ( $this->fetchContent ) {
|
2007-07-14 19:04:31 +00:00
|
|
|
// For each page we will request, the user must have read rights for that page
|
2012-09-22 11:33:33 +00:00
|
|
|
$user = $this->getUser();
|
2013-03-11 03:45:51 +00:00
|
|
|
/** @var $title Title */
|
2010-01-11 15:55:52 +00:00
|
|
|
foreach ( $pageSet->getGoodTitles() as $title ) {
|
2012-09-22 11:33:33 +00:00
|
|
|
if ( !$title->userCan( 'read', $user ) ) {
|
2007-07-14 19:04:31 +00:00
|
|
|
$this->dieUsage(
|
|
|
|
|
'The current user is not allowed to read ' . $title->getPrefixedText(),
|
2010-01-11 15:55:52 +00:00
|
|
|
'accessdenied' );
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2007-07-14 19:04:31 +00:00
|
|
|
}
|
|
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addTables( 'text' );
|
2014-09-29 17:47:08 +00:00
|
|
|
$this->addJoinConds(
|
|
|
|
|
array( 'text' => array( 'INNER JOIN', array( 'rev_text_id=old_id' ) ) )
|
|
|
|
|
);
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addFields( 'old_id' );
|
|
|
|
|
$this->addFields( Revision::selectTextFields() );
|
2006-09-27 05:13:48 +00:00
|
|
|
}
|
|
|
|
|
|
2012-05-16 14:38:40 +00:00
|
|
|
// add user name, if needed
|
|
|
|
|
if ( $this->fld_user ) {
|
|
|
|
|
$this->addTables( 'user' );
|
|
|
|
|
$this->addJoinConds( array( 'user' => Revision::userJoinCond() ) );
|
|
|
|
|
$this->addFields( Revision::selectUserFields() );
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $enumRevMode ) {
|
2007-11-27 16:41:13 +00:00
|
|
|
// This is mostly to prevent parameter errors (and optimize SQL?)
|
2010-05-10 17:12:09 +00:00
|
|
|
if ( !is_null( $params['startid'] ) && !is_null( $params['start'] ) ) {
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->dieUsage( 'start and startid cannot be used together', 'badparams' );
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2006-09-30 08:06:27 +00:00
|
|
|
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( !is_null( $params['endid'] ) && !is_null( $params['end'] ) ) {
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->dieUsage( 'end and endid cannot be used together', 'badparams' );
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2006-09-30 08:06:27 +00:00
|
|
|
|
2010-05-10 17:12:09 +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', 'badparams' );
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2012-08-20 14:55:28 +00:00
|
|
|
// Continuing effectively uses startid. But we can't use rvstartid
|
|
|
|
|
// directly, because there is no way to tell the client to ''not''
|
|
|
|
|
// send rvstart if it sent it in the original query. So instead we
|
|
|
|
|
// send the continuation startid as rvcontinue, and ignore both
|
|
|
|
|
// rvstart and rvstartid when that is supplied.
|
|
|
|
|
if ( !is_null( $params['continue'] ) ) {
|
|
|
|
|
$params['startid'] = $params['continue'];
|
2012-11-08 18:37:06 +00:00
|
|
|
$params['start'] = null;
|
2012-08-20 14:55:28 +00:00
|
|
|
}
|
|
|
|
|
|
2006-10-02 18:27:06 +00:00
|
|
|
// This code makes an assumption that sorting by rev_id and rev_timestamp produces
|
|
|
|
|
// the same result. This way users may request revisions starting at a given time,
|
|
|
|
|
// but to page through results use the rev_id returned after each page.
|
2008-04-14 07:45:50 +00:00
|
|
|
// Switching to rev_id removes the potential problem of having more than
|
|
|
|
|
// one row with the same timestamp for the same page.
|
2006-10-02 18:27:06 +00:00
|
|
|
// The order needs to be the same as start parameter to avoid SQL filesort.
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( is_null( $params['startid'] ) && is_null( $params['endid'] ) ) {
|
2011-10-06 20:46:24 +00:00
|
|
|
$this->addTimestampWhereRange( 'rev_timestamp', $params['dir'],
|
2010-01-11 15:55:52 +00:00
|
|
|
$params['start'], $params['end'] );
|
2010-02-24 14:45:19 +00:00
|
|
|
} else {
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addWhereRange( 'rev_id', $params['dir'],
|
|
|
|
|
$params['startid'], $params['endid'] );
|
2009-02-18 15:26:09 +00:00
|
|
|
// One of start and end can be set
|
|
|
|
|
// If neither is set, this does nothing
|
2011-10-06 20:46:24 +00:00
|
|
|
$this->addTimestampWhereRange( 'rev_timestamp', $params['dir'],
|
2010-01-11 15:55:52 +00:00
|
|
|
$params['start'], $params['end'], false );
|
2009-02-18 15:26:09 +00:00
|
|
|
}
|
2006-09-29 07:29:13 +00:00
|
|
|
|
2006-09-30 08:06:27 +00:00
|
|
|
// There is only one ID, use it
|
2010-01-11 15:55:52 +00:00
|
|
|
$ids = array_keys( $pageSet->getGoodTitles() );
|
|
|
|
|
$this->addWhereFld( 'rev_page', reset( $ids ) );
|
|
|
|
|
|
|
|
|
|
if ( !is_null( $params['user'] ) ) {
|
|
|
|
|
$this->addWhereFld( 'rev_user_text', $params['user'] );
|
|
|
|
|
} elseif ( !is_null( $params['excludeuser'] ) ) {
|
|
|
|
|
$this->addWhere( 'rev_user_text != ' .
|
|
|
|
|
$db->addQuotes( $params['excludeuser'] ) );
|
2007-05-19 04:13:48 +00:00
|
|
|
}
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( !is_null( $params['user'] ) || !is_null( $params['excludeuser'] ) ) {
|
2009-02-05 11:44:10 +00:00
|
|
|
// Paranoia: avoid brute force searches (bug 17342)
|
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->getUser()->isAllowed( 'deletedhistory' ) ) {
|
|
|
|
|
$bitmask = Revision::DELETED_USER;
|
2014-06-12 22:18:51 +00:00
|
|
|
} elseif ( !$this->getUser()->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( $db->bitAnd( 'rev_deleted', $bitmask ) . " != $bitmask" );
|
|
|
|
|
}
|
2009-02-05 11:44:10 +00:00
|
|
|
}
|
2010-02-24 14:45:19 +00:00
|
|
|
} elseif ( $revCount > 0 ) {
|
2014-09-29 17:47:08 +00:00
|
|
|
$revs = $pageSet->getLiveRevisionIDs();
|
2007-05-19 01:46:13 +00:00
|
|
|
|
|
|
|
|
// Get all revision IDs
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addWhereFld( 'rev_id', array_keys( $revs ) );
|
2007-05-19 01:46:13 +00:00
|
|
|
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( !is_null( $params['continue'] ) ) {
|
2012-05-16 17:22:36 +00:00
|
|
|
$this->addWhere( 'rev_id >= ' . intval( $params['continue'] ) );
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addOption( 'ORDER BY', 'rev_id' );
|
2010-02-24 14:45:19 +00:00
|
|
|
} elseif ( $pageCount > 0 ) {
|
2008-10-24 13:05:44 +00:00
|
|
|
$titles = $pageSet->getGoodTitles();
|
2010-02-24 14:45:19 +00:00
|
|
|
|
2006-10-01 20:17:16 +00:00
|
|
|
// When working in multi-page non-enumeration mode,
|
|
|
|
|
// limit to the latest revision only
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addWhere( 'page_latest=rev_id' );
|
2010-02-24 14:45:19 +00:00
|
|
|
|
2006-10-01 20:17:16 +00:00
|
|
|
// Get all page IDs
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addWhereFld( 'page_id', array_keys( $titles ) );
|
2009-03-20 20:21:38 +00:00
|
|
|
// Every time someone relies on equality propagation, god kills a kitten :)
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addWhereFld( 'rev_page', array_keys( $titles ) );
|
2010-02-24 14:45:19 +00:00
|
|
|
|
|
|
|
|
if ( !is_null( $params['continue'] ) ) {
|
2010-01-11 15:55:52 +00:00
|
|
|
$cont = explode( '|', $params['continue'] );
|
2013-01-15 02:19:16 +00:00
|
|
|
$this->dieContinueUsageIf( count( $cont ) != 2 );
|
2010-01-11 15:55:52 +00:00
|
|
|
$pageid = intval( $cont[0] );
|
|
|
|
|
$revid = intval( $cont[1] );
|
2010-02-24 14:45:19 +00:00
|
|
|
$this->addWhere(
|
2012-05-16 17:22:36 +00:00
|
|
|
"rev_page > $pageid OR " .
|
|
|
|
|
"(rev_page = $pageid AND " .
|
|
|
|
|
"rev_id >= $revid)"
|
2010-02-24 14:45:19 +00:00
|
|
|
);
|
2009-02-10 12:32:22 +00:00
|
|
|
}
|
2012-05-05 13:29:08 +00:00
|
|
|
$this->addOption( 'ORDER BY', array(
|
|
|
|
|
'rev_page',
|
|
|
|
|
'rev_id'
|
2013-11-14 13:00:02 +00:00
|
|
|
) );
|
2010-02-24 14:45:19 +00:00
|
|
|
} else {
|
|
|
|
|
ApiBase::dieDebug( __METHOD__, 'param validation?' );
|
|
|
|
|
}
|
2006-09-30 08:06:27 +00:00
|
|
|
|
2014-09-29 17:47:08 +00:00
|
|
|
$this->addOption( 'LIMIT', $this->limit + 1 );
|
2006-09-27 05:13:48 +00:00
|
|
|
|
|
|
|
|
$count = 0;
|
2014-09-29 17:47:08 +00:00
|
|
|
$generated = array();
|
2010-01-11 15:55:52 +00:00
|
|
|
$res = $this->select( __METHOD__ );
|
2006-10-25 03:54:56 +00:00
|
|
|
|
2010-06-20 18:48:34 +00:00
|
|
|
foreach ( $res as $row ) {
|
2014-09-29 17:47:08 +00:00
|
|
|
if ( ++$count > $this->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...
|
2010-02-24 14:45:19 +00:00
|
|
|
if ( $enumRevMode ) {
|
2012-08-20 14:55:28 +00:00
|
|
|
$this->setContinueEnumParameter( 'continue', intval( $row->rev_id ) );
|
2010-02-24 14:45:19 +00:00
|
|
|
} elseif ( $revCount > 0 ) {
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->setContinueEnumParameter( 'continue', intval( $row->rev_id ) );
|
2010-02-24 14:45:19 +00:00
|
|
|
} else {
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->setContinueEnumParameter( 'continue', intval( $row->rev_page ) .
|
|
|
|
|
'|' . intval( $row->rev_id ) );
|
2010-02-24 14:45:19 +00:00
|
|
|
}
|
* 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-01 02:02:13 +00:00
|
|
|
}
|
2010-07-23 07:33:40 +00:00
|
|
|
|
2014-09-29 17:47:08 +00:00
|
|
|
if ( $resultPageSet !== null ) {
|
|
|
|
|
$generated[] = $row->rev_id;
|
2009-11-01 10:42:41 +00:00
|
|
|
} else {
|
2014-09-29 17:47:08 +00:00
|
|
|
$revision = new Revision( $row );
|
|
|
|
|
$rev = $this->extractRevisionInfo( $revision, $row );
|
|
|
|
|
|
|
|
|
|
if ( $this->token !== null ) {
|
|
|
|
|
$title = $revision->getTitle();
|
|
|
|
|
$tokenFunctions = $this->getTokenFunctions();
|
|
|
|
|
foreach ( $this->token as $t ) {
|
|
|
|
|
$val = call_user_func( $tokenFunctions[$t], $title->getArticleID(), $title, $revision );
|
|
|
|
|
if ( $val === false ) {
|
|
|
|
|
$this->setWarning( "Action '$t' is not allowed for the current user" );
|
|
|
|
|
} else {
|
|
|
|
|
$rev[$t . 'token'] = $val;
|
|
|
|
|
}
|
2012-06-13 09:58:05 +00:00
|
|
|
}
|
2008-11-21 13:55:27 +00:00
|
|
|
}
|
2012-06-13 09:58:05 +00:00
|
|
|
|
2014-09-29 17:47:08 +00:00
|
|
|
$fit = $this->addPageSubItem( $row->rev_page, $rev, 'rev' );
|
|
|
|
|
if ( !$fit ) {
|
|
|
|
|
if ( $enumRevMode ) {
|
|
|
|
|
$this->setContinueEnumParameter( 'continue', intval( $row->rev_id ) );
|
|
|
|
|
} elseif ( $revCount > 0 ) {
|
|
|
|
|
$this->setContinueEnumParameter( 'continue', intval( $row->rev_id ) );
|
|
|
|
|
} else {
|
|
|
|
|
$this->setContinueEnumParameter( 'continue', intval( $row->rev_page ) .
|
|
|
|
|
'|' . intval( $row->rev_id ) );
|
2012-06-13 09:58:05 +00:00
|
|
|
}
|
2014-09-29 17:47:08 +00:00
|
|
|
break;
|
2009-12-09 18:34:32 +00:00
|
|
|
}
|
2009-02-28 13:25:21 +00:00
|
|
|
}
|
|
|
|
|
}
|
2013-11-14 13:00:02 +00:00
|
|
|
|
2014-09-29 17:47:08 +00:00
|
|
|
if ( $resultPageSet !== null ) {
|
|
|
|
|
$resultPageSet->populateFromRevisionIDs( $generated );
|
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
|
|
|
}
|
2007-05-20 08:34:47 +00:00
|
|
|
}
|
|
|
|
|
|
2010-07-23 07:17:56 +00:00
|
|
|
public function getCacheMode( $params ) {
|
|
|
|
|
if ( isset( $params['token'] ) ) {
|
|
|
|
|
return 'private';
|
|
|
|
|
}
|
2014-09-29 17:47:08 +00:00
|
|
|
return parent::getCacheMode( $params );
|
2010-07-23 07:17:56 +00:00
|
|
|
}
|
|
|
|
|
|
2008-01-28 19:05:26 +00:00
|
|
|
public function getAllowedParams() {
|
2014-09-29 17:47:08 +00:00
|
|
|
$ret = parent::getAllowedParams() + array(
|
2010-02-24 14:45:19 +00:00
|
|
|
'startid' => array(
|
2014-09-18 17:38:23 +00:00
|
|
|
ApiBase::PARAM_TYPE => 'integer',
|
|
|
|
|
ApiBase::PARAM_HELP_MSG_INFO => array( array( 'singlepageonly' ) ),
|
2006-10-16 00:08:03 +00:00
|
|
|
),
|
2010-02-24 14:45:19 +00:00
|
|
|
'endid' => array(
|
2014-09-18 17:38:23 +00:00
|
|
|
ApiBase::PARAM_TYPE => 'integer',
|
|
|
|
|
ApiBase::PARAM_HELP_MSG_INFO => array( array( 'singlepageonly' ) ),
|
2006-10-16 00:08:03 +00:00
|
|
|
),
|
2010-02-24 14:45:19 +00:00
|
|
|
'start' => array(
|
2014-09-18 17:38:23 +00:00
|
|
|
ApiBase::PARAM_TYPE => 'timestamp',
|
|
|
|
|
ApiBase::PARAM_HELP_MSG_INFO => array( array( 'singlepageonly' ) ),
|
2006-09-26 05:43:02 +00:00
|
|
|
),
|
2010-02-24 14:45:19 +00:00
|
|
|
'end' => array(
|
2014-09-18 17:38:23 +00:00
|
|
|
ApiBase::PARAM_TYPE => 'timestamp',
|
|
|
|
|
ApiBase::PARAM_HELP_MSG_INFO => array( array( 'singlepageonly' ) ),
|
2006-09-26 05:43:02 +00:00
|
|
|
),
|
2010-02-24 14:45:19 +00:00
|
|
|
'dir' => array(
|
|
|
|
|
ApiBase::PARAM_DFLT => 'older',
|
|
|
|
|
ApiBase::PARAM_TYPE => array(
|
2006-09-26 05:43:02 +00:00
|
|
|
'newer',
|
|
|
|
|
'older'
|
2014-09-18 17:38:23 +00:00
|
|
|
),
|
2014-09-29 17:47:08 +00:00
|
|
|
ApiBase::PARAM_HELP_MSG => 'api-help-param-direction',
|
2014-09-18 17:38:23 +00:00
|
|
|
ApiBase::PARAM_HELP_MSG_INFO => array( array( 'singlepageonly' ) ),
|
2007-05-19 04:13:48 +00:00
|
|
|
),
|
|
|
|
|
'user' => array(
|
2014-09-18 17:38:23 +00:00
|
|
|
ApiBase::PARAM_TYPE => 'user',
|
|
|
|
|
ApiBase::PARAM_HELP_MSG_INFO => array( array( 'singlepageonly' ) ),
|
2007-05-19 04:13:48 +00:00
|
|
|
),
|
|
|
|
|
'excludeuser' => array(
|
2014-09-18 17:38:23 +00:00
|
|
|
ApiBase::PARAM_TYPE => 'user',
|
|
|
|
|
ApiBase::PARAM_HELP_MSG_INFO => array( array( 'singlepageonly' ) ),
|
2007-09-25 18:36:25 +00:00
|
|
|
),
|
2009-11-02 08:29:26 +00:00
|
|
|
'tag' => null,
|
2007-12-01 15:08:57 +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
|
2007-12-01 15:08:57 +00:00
|
|
|
),
|
2014-09-18 17:38:23 +00:00
|
|
|
'continue' => array(
|
|
|
|
|
ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
|
|
|
|
|
),
|
2006-09-26 05:43:02 +00:00
|
|
|
);
|
2014-09-29 17:47:08 +00:00
|
|
|
|
|
|
|
|
$ret['limit'][ApiBase::PARAM_HELP_MSG_INFO] = array( array( 'singlepageonly' ) );
|
|
|
|
|
|
|
|
|
|
return $ret;
|
2006-09-26 05:43:02 +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&prop=revisions&titles=API|Main%20Page&' .
|
|
|
|
|
'rvprop=timestamp|user|comment|content'
|
|
|
|
|
=> 'apihelp-query+revisions-example-content',
|
|
|
|
|
'action=query&prop=revisions&titles=Main%20Page&rvlimit=5&' .
|
|
|
|
|
'rvprop=timestamp|user|comment'
|
|
|
|
|
=> 'apihelp-query+revisions-example-last5',
|
|
|
|
|
'action=query&prop=revisions&titles=Main%20Page&rvlimit=5&' .
|
|
|
|
|
'rvprop=timestamp|user|comment&rvdir=newer'
|
|
|
|
|
=> 'apihelp-query+revisions-example-first5',
|
|
|
|
|
'action=query&prop=revisions&titles=Main%20Page&rvlimit=5&' .
|
|
|
|
|
'rvprop=timestamp|user|comment&rvdir=newer&rvstart=2006-05-01T00:00:00Z'
|
|
|
|
|
=> 'apihelp-query+revisions-example-first5-after',
|
|
|
|
|
'action=query&prop=revisions&titles=Main%20Page&rvlimit=5&' .
|
|
|
|
|
'rvprop=timestamp|user|comment&rvexcludeuser=127.0.0.1'
|
|
|
|
|
=> 'apihelp-query+revisions-example-first5-not-localhost',
|
|
|
|
|
'action=query&prop=revisions&titles=Main%20Page&rvlimit=5&' .
|
|
|
|
|
'rvprop=timestamp|user|comment&rvuser=MediaWiki%20default'
|
|
|
|
|
=> 'apihelp-query+revisions-example-first5-user',
|
2006-09-26 05:43:02 +00:00
|
|
|
);
|
|
|
|
|
}
|
2006-10-01 21:20:55 +00:00
|
|
|
|
2011-07-17 16:51:11 +00:00
|
|
|
public function getHelpUrls() {
|
2011-11-28 15:43:11 +00:00
|
|
|
return 'https://www.mediawiki.org/wiki/API:Properties#revisions_.2F_rv';
|
2011-07-17 16:51:11 +00:00
|
|
|
}
|
2006-09-26 05:43:02 +00:00
|
|
|
}
|