2007-06-16 00:39:01 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Created on June 14, 2007
|
|
|
|
|
*
|
|
|
|
|
* API for MediaWiki 1.8+
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
|
|
|
|
|
*
|
|
|
|
|
* 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.,
|
|
|
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*/
|
|
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( !defined( 'MEDIAWIKI' ) ) {
|
2007-06-16 00:39:01 +00:00
|
|
|
// Eclipse helper - will be ignored in production
|
2010-01-11 15:55:52 +00:00
|
|
|
require_once ( "ApiQueryBase.php" );
|
2007-06-16 00:39:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A query module to enumerate pages that belong to a category.
|
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-06-16 00:39:01 +00:00
|
|
|
*/
|
|
|
|
|
class ApiQueryCategoryMembers extends ApiQueryGeneratorBase {
|
|
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
public function __construct( $query, $moduleName ) {
|
|
|
|
|
parent :: __construct( $query, $moduleName, 'cm' );
|
2007-06-16 00:39:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function execute() {
|
|
|
|
|
$this->run();
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
public function executeGenerator( $resultPageSet ) {
|
|
|
|
|
$this->run( $resultPageSet );
|
2007-06-16 00:39:01 +00:00
|
|
|
}
|
|
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
private function run( $resultPageSet = null ) {
|
2007-06-16 00:39:01 +00:00
|
|
|
|
|
|
|
|
$params = $this->extractRequestParams();
|
|
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( !isset( $params['title'] ) || is_null( $params['title'] ) )
|
|
|
|
|
$this->dieUsage( "The cmtitle parameter is required", 'notitle' );
|
|
|
|
|
$categoryTitle = Title::newFromText( $params['title'] );
|
2008-02-04 16:58:51 +00:00
|
|
|
|
|
|
|
|
if ( is_null( $categoryTitle ) || $categoryTitle->getNamespace() != NS_CATEGORY )
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->dieUsage( "The category name you entered is not valid", 'invalidcategory' );
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
$prop = array_flip( $params['prop'] );
|
|
|
|
|
$fld_ids = isset( $prop['ids'] );
|
|
|
|
|
$fld_title = isset( $prop['title'] );
|
|
|
|
|
$fld_sortkey = isset( $prop['sortkey'] );
|
|
|
|
|
$fld_timestamp = isset( $prop['timestamp'] );
|
2007-06-16 00:39:01 +00:00
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( is_null( $resultPageSet ) ) {
|
|
|
|
|
$this->addFields( array( 'cl_from', 'cl_sortkey', 'page_namespace', 'page_title' ) );
|
|
|
|
|
$this->addFieldsIf( 'page_id', $fld_ids );
|
2007-06-16 00:39:01 +00:00
|
|
|
} else {
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addFields( $resultPageSet->getPageTableFields() ); // will include page_ id, ns, title
|
|
|
|
|
$this->addFields( array( 'cl_from', 'cl_sortkey' ) );
|
2007-06-16 00:39:01 +00:00
|
|
|
}
|
2007-09-03 20:37:42 +00:00
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addFieldsIf( 'cl_timestamp', $fld_timestamp || $params['sort'] == 'timestamp' );
|
|
|
|
|
$this->addTables( array( 'page', 'categorylinks' ) ); // must be in this order for 'USE INDEX'
|
2007-09-04 14:30:31 +00:00
|
|
|
// Not needed after bug 10280 is applied to servers
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $params['sort'] == 'timestamp' )
|
|
|
|
|
$this->addOption( 'USE INDEX', 'cl_timestamp' );
|
2007-09-04 14:30:31 +00:00
|
|
|
else
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addOption( 'USE INDEX', 'cl_sortkey' );
|
2007-06-16 00:39:01 +00:00
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addWhere( 'cl_from=page_id' );
|
|
|
|
|
$this->setContinuation( $params['continue'], $params['dir'] );
|
|
|
|
|
$this->addWhereFld( 'cl_to', $categoryTitle->getDBkey() );
|
2010-01-23 22:52:40 +00:00
|
|
|
// Scanning large datasets for rare categories sucks, and I already told
|
|
|
|
|
// how to have efficient subcategory access :-) ~~~~ (oh well, domas)
|
2009-07-10 13:55:48 +00:00
|
|
|
global $wgMiserMode;
|
2009-07-15 10:07:02 +00:00
|
|
|
$miser_ns = array();
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $wgMiserMode ) {
|
2009-07-15 10:07:02 +00:00
|
|
|
$miser_ns = $params['namespace'];
|
2009-07-13 14:54:38 +00:00
|
|
|
} else {
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addWhereFld( 'page_namespace', $params['namespace'] );
|
2009-07-10 13:55:48 +00:00
|
|
|
}
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $params['sort'] == 'timestamp' )
|
|
|
|
|
$this->addWhereRange( 'cl_timestamp', ( $params['dir'] == 'asc' ? 'newer' : 'older' ), $params['start'], $params['end'] );
|
2008-10-17 14:26:56 +00:00
|
|
|
else
|
|
|
|
|
{
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addWhereRange( 'cl_sortkey', ( $params['dir'] == 'asc' ? 'newer' : 'older' ), $params['startsortkey'], $params['endsortkey'] );
|
|
|
|
|
$this->addWhereRange( 'cl_from', ( $params['dir'] == 'asc' ? 'newer' : 'older' ), null, null );
|
2008-10-17 14:26:56 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-06-16 00:39:01 +00:00
|
|
|
$limit = $params['limit'];
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->addOption( 'LIMIT', $limit + 1 );
|
2007-06-16 00:39:01 +00:00
|
|
|
|
|
|
|
|
$db = $this->getDB();
|
|
|
|
|
|
|
|
|
|
$data = array ();
|
|
|
|
|
$count = 0;
|
|
|
|
|
$lastSortKey = null;
|
2010-01-11 15:55:52 +00:00
|
|
|
$res = $this->select( __METHOD__ );
|
|
|
|
|
while ( $row = $db->fetchObject( $res ) ) {
|
|
|
|
|
if ( ++ $count > $limit ) {
|
2007-06-16 00:39:01 +00:00
|
|
|
// We've reached the one extra which shows that there are additional pages to be had. Stop here...
|
2007-07-08 03:35:37 +00:00
|
|
|
// TODO: Security issue - if the user has no right to view next title, it will still be shown
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $params['sort'] == 'timestamp' )
|
|
|
|
|
$this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->cl_timestamp ) );
|
2008-04-13 19:17:48 +00:00
|
|
|
else
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->setContinueEnumParameter( 'continue', $this->getContinueStr( $row, $lastSortKey ) );
|
2007-06-16 00:39:01 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-15 10:07:02 +00:00
|
|
|
// Since domas won't tell anyone what he told long ago, apply
|
|
|
|
|
// cmnamespace here. This means the query may return 0 actual
|
|
|
|
|
// results, but on the other hand it could save returning 5000
|
|
|
|
|
// useless results to the client. ~~~~
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( count( $miser_ns ) && !in_array( $row->page_namespace, $miser_ns ) )
|
2009-07-15 10:07:02 +00:00
|
|
|
continue;
|
|
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( is_null( $resultPageSet ) ) {
|
2007-07-14 19:04:31 +00:00
|
|
|
$vals = array();
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $fld_ids )
|
|
|
|
|
$vals['pageid'] = intval( $row->page_id );
|
|
|
|
|
if ( $fld_title ) {
|
|
|
|
|
$title = Title :: makeTitle( $row->page_namespace, $row->page_title );
|
|
|
|
|
ApiQueryBase::addTitleInfo( $vals, $title );
|
2007-06-16 00:39:01 +00:00
|
|
|
}
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $fld_sortkey )
|
2007-07-14 19:04:31 +00:00
|
|
|
$vals['sortkey'] = $row->cl_sortkey;
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $fld_timestamp )
|
|
|
|
|
$vals['timestamp'] = wfTimestamp( TS_ISO_8601, $row->cl_timestamp );
|
|
|
|
|
$fit = $this->getResult()->addValue( array( 'query', $this->getModuleName() ),
|
|
|
|
|
null, $vals );
|
|
|
|
|
if ( !$fit )
|
* 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
|
|
|
{
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $params['sort'] == 'timestamp' )
|
|
|
|
|
$this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->cl_timestamp ) );
|
* API: BREAKING CHANGE: (bug 11430) Return fewer results than the limit in some cases to prevent running out of memory
* This means queries could possibly return fewer results than the limit and still set a query-continue
* Add iicontinue, rvcontinue, cicontinue, incontinue, amfrom to faciliate query-continue for these modules
* Implemented by blocking additions to the ApiResult object if they would make it too large
** Important things like query-continue values and warnings are exempt from this check
** RSS feeds and exported XML are also exempted (size-checking them would be too messy)
** Result size is checked against $wgAPIMaxResultSize, which defaults to 8 MB
For those who really care, per-file details follow:
ApiResult.php:
* Introduced ApiResult::$mSize which keeps track of the result size.
* Introduced ApiResult::size() which calculates an array's size
(which is the sum of the strlen()s of its elements).
* ApiResult::addValue() now checks that the result size stays below
$wgAPIMaxResultSize. If the item won't fit, it won't be added and addValue()
will return false. Callers should check the return value and set a
query-continue if it's false.
* Closed the back door that is ApiResult::getData(): callers can't manipulate
the data array directly anymore so they can't bypass the result size limit.
* Added ApiResult::setIndexedTagName_internal() which will call
setIndexedTagName() on an array already in the result. This is needed for the
'new' order of adding results, which means addValue()ing one result at a time
until you hit the limit or run out, then calling this function to set the tag
name.
* Added ApiResult::disableSizeCheck() and enableSizeCheck() which disable and
enable size checking in addValue(). This is used for stuff like query-continue
elements and warnings which shouldn't count towards the result size.
* Added ApiResult::unsetValue() which removes an element from the result and
decreases $mSize.
ApiBase.php:
* Like ApiResult::getData(), ApiBase::getResultData() no longer returns a
reference.
* Use ApiResult::disableSizeCheck() in ApiBase::setWarning()
ApiQueryBase.php:
* Added ApiQueryBase::addPageSubItem(), which adds page subitems one item
at a time.
* addPageSubItem() and addPageSubItems() now return whether the subitem
fit in the result.
* Use ApiResult::disableSizeCheck() in setContinueEnumParameter()
ApiMain.php:
* Use ApiResult::disableSizeCheck() in ApiMain::substituteResultWithError()
* Use getParameter() rather than $mRequest to obtain requestid
DefaultSettings.php:
* Added $wgAPIMaxResultSize, with a default value of 8 MB
ApiQuery*.php:
* Added results one at a time, and set a query-continue if the result is full.
ApiQueryLangLinks.php and friends:
* Migrated from addPageSubItems() to addPageSubItem(). This eliminates the
need for $lastId.
ApiQueryAllLinks.php, ApiQueryWatchlist.php, ApiQueryAllimages.php, ApiQuerySearch.php:
* Renamed $data to something more appropriate ($pageids, $ids or $titles)
ApiQuerySiteinfo.php:
* Abuse siprop as a query-continue parameter and set it to all props that
couldn't be processed.
ApiQueryRandom.php:
* Doesn't do continuations, because the result is supposed to be random.
* Be smart enough to not run the second query if the results of the first
didn't fit.
ApiQueryImageInfo.php, ApiQueryRevisions.php, ApiQueryCategoryInfo.php, ApiQueryInfo.php:
* Added continue parameter which basically skips the first so many items
ApiQueryBacklinks.php:
* Throw the result in a big array first and addValue() that one element at a time if necessary
** This is necessary because the results aren't retrieved in order
* Introduced $this->pageMap to map namespace and title to page ID
* Rewritten extractRowInfo() and extractRedirRowInfo() a little
* Declared all private member variables explicitly
ApiQueryDeletedrevs.php:
* Use a pagemap just like in Backlinks
* Introduce fake page IDs and keep track of them so we know where to add what
** This doesn't change the output format, because the fake page IDs start at 0 and are consecutive
ApiQueryAllmessages.php:
* Add amfrom to facilitate query-continue
ApiQueryUsers.php:
* Rewrite: put the getOtherUsersInfo() code in execute()
2009-02-05 14:30:59 +00:00
|
|
|
else
|
2010-01-11 15:55:52 +00:00
|
|
|
$this->setContinueEnumParameter( 'continue', $this->getContinueStr( $row, $lastSortKey ) );
|
* 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;
|
|
|
|
|
}
|
2007-06-16 00:39:01 +00:00
|
|
|
} else {
|
2010-01-11 15:55:52 +00:00
|
|
|
$resultPageSet->processDbRow( $row );
|
2007-06-16 00:39:01 +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
|
|
|
$lastSortKey = $row->cl_sortkey; // detect duplicate sortkeys
|
2007-06-16 00:39:01 +00:00
|
|
|
}
|
2010-01-11 15:55:52 +00:00
|
|
|
$db->freeResult( $res );
|
2007-06-16 00:39:01 +00:00
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( is_null( $resultPageSet ) ) {
|
* 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
|
|
|
$this->getResult()->setIndexedTagName_internal(
|
2010-01-11 15:55:52 +00:00
|
|
|
array( 'query', $this->getModuleName() ), 'cm' );
|
2007-06-16 00:39:01 +00:00
|
|
|
}
|
|
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
private function getContinueStr( $row, $lastSortKey ) {
|
2007-06-16 00:39:01 +00:00
|
|
|
$ret = $row->cl_sortkey . '|';
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $row->cl_sortkey == $lastSortKey ) // duplicate sort key, add cl_from
|
2007-06-16 00:39:01 +00:00
|
|
|
$ret .= $row->cl_from;
|
|
|
|
|
return $ret;
|
|
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-06-16 00:39:01 +00:00
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* Add DB WHERE clause to continue previous query based on 'continue' parameter
|
2007-06-16 00:39:01 +00:00
|
|
|
*/
|
2010-01-11 15:55:52 +00:00
|
|
|
private function setContinuation( $continue, $dir ) {
|
|
|
|
|
if ( is_null( $continue ) )
|
2007-06-16 00:39:01 +00:00
|
|
|
return; // This is not a continuation request
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
$pos = strrpos( $continue, '|' );
|
|
|
|
|
$sortkey = substr( $continue, 0, $pos );
|
|
|
|
|
$fromstr = substr( $continue, $pos + 1 );
|
|
|
|
|
$from = intval( $fromstr );
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $from == 0 && strlen( $fromstr ) > 0 )
|
|
|
|
|
$this->dieUsage( "Invalid continue param. You should pass the original value returned by the previous query", "badcontinue" );
|
2007-06-16 00:39:01 +00:00
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
$encSortKey = $this->getDB()->addQuotes( $sortkey );
|
|
|
|
|
$encFrom = $this->getDB()->addQuotes( $from );
|
2008-04-29 09:01:13 +00:00
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
$op = ( $dir == 'desc' ? '<' : '>' );
|
2007-06-16 00:39:01 +00:00
|
|
|
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $from != 0 ) {
|
2007-06-16 00:39:01 +00:00
|
|
|
// Duplicate sort key continue
|
2008-04-29 09:01:13 +00:00
|
|
|
$this->addWhere( "cl_sortkey$op$encSortKey OR (cl_sortkey=$encSortKey AND cl_from$op=$encFrom)" );
|
2007-06-16 00:39:01 +00:00
|
|
|
} else {
|
2008-04-29 09:01:13 +00:00
|
|
|
$this->addWhere( "cl_sortkey$op=$encSortKey" );
|
2007-07-06 19:43:32 +00:00
|
|
|
}
|
2007-06-16 00:39:01 +00:00
|
|
|
}
|
|
|
|
|
|
2008-01-28 19:05:26 +00:00
|
|
|
public function getAllowedParams() {
|
2007-06-16 00:39:01 +00:00
|
|
|
return array (
|
2008-02-04 16:58:51 +00:00
|
|
|
'title' => null,
|
2007-06-16 00:39:01 +00:00
|
|
|
'prop' => array (
|
|
|
|
|
ApiBase :: PARAM_DFLT => 'ids|title',
|
2007-09-03 20:37:42 +00:00
|
|
|
ApiBase :: PARAM_ISMULTI => true,
|
2007-06-16 00:39:01 +00:00
|
|
|
ApiBase :: PARAM_TYPE => array (
|
|
|
|
|
'ids',
|
|
|
|
|
'title',
|
|
|
|
|
'sortkey',
|
2007-09-03 20:37:42 +00:00
|
|
|
'timestamp',
|
2007-06-16 00:39:01 +00:00
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
'namespace' => array (
|
2007-09-03 20:37:42 +00:00
|
|
|
ApiBase :: PARAM_ISMULTI => true,
|
2007-06-16 00:39:01 +00:00
|
|
|
ApiBase :: PARAM_TYPE => 'namespace',
|
|
|
|
|
),
|
|
|
|
|
'continue' => null,
|
|
|
|
|
'limit' => array (
|
|
|
|
|
ApiBase :: PARAM_TYPE => 'limit',
|
|
|
|
|
ApiBase :: PARAM_DFLT => 10,
|
|
|
|
|
ApiBase :: PARAM_MIN => 1,
|
|
|
|
|
ApiBase :: PARAM_MAX => ApiBase :: LIMIT_BIG1,
|
|
|
|
|
ApiBase :: PARAM_MAX2 => ApiBase :: LIMIT_BIG2
|
|
|
|
|
),
|
2007-09-04 14:30:31 +00:00
|
|
|
'sort' => array(
|
|
|
|
|
ApiBase :: PARAM_DFLT => 'sortkey',
|
|
|
|
|
ApiBase :: PARAM_TYPE => array(
|
|
|
|
|
'sortkey',
|
|
|
|
|
'timestamp'
|
|
|
|
|
)
|
2007-09-10 14:17:33 +00:00
|
|
|
),
|
|
|
|
|
'dir' => array(
|
|
|
|
|
ApiBase :: PARAM_DFLT => 'asc',
|
|
|
|
|
ApiBase :: PARAM_TYPE => array(
|
|
|
|
|
'asc',
|
|
|
|
|
'desc'
|
|
|
|
|
)
|
2008-02-07 15:17:42 +00:00
|
|
|
),
|
|
|
|
|
'start' => array(
|
|
|
|
|
ApiBase :: PARAM_TYPE => 'timestamp'
|
|
|
|
|
),
|
|
|
|
|
'end' => array(
|
|
|
|
|
ApiBase :: PARAM_TYPE => 'timestamp'
|
2008-10-17 14:26:56 +00:00
|
|
|
),
|
|
|
|
|
'startsortkey' => null,
|
|
|
|
|
'endsortkey' => null,
|
2007-06-16 00:39:01 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-28 19:05:26 +00:00
|
|
|
public function getParamDescription() {
|
2009-07-15 10:07:02 +00:00
|
|
|
global $wgMiserMode;
|
2009-07-10 23:46:13 +00:00
|
|
|
$desc = array (
|
2008-02-04 16:58:51 +00:00
|
|
|
'title' => 'Which category to enumerate (required). Must include Category: prefix',
|
2007-07-06 19:43:32 +00:00
|
|
|
'prop' => 'What pieces of information to include',
|
2009-07-15 10:07:02 +00:00
|
|
|
'namespace' => 'Only include pages in these namespaces',
|
2007-09-04 14:30:31 +00:00
|
|
|
'sort' => 'Property to sort by',
|
2007-09-10 14:17:33 +00:00
|
|
|
'dir' => 'In which direction to sort',
|
2008-04-29 09:01:13 +00:00
|
|
|
'start' => 'Timestamp to start listing from. Can only be used with cmsort=timestamp',
|
|
|
|
|
'end' => 'Timestamp to end listing at. Can only be used with cmsort=timestamp',
|
2008-10-17 14:26:56 +00:00
|
|
|
'startsortkey' => 'Sortkey to start listing from. Can only be used with cmsort=sortkey',
|
|
|
|
|
'endsortkey' => 'Sortkey to end listing at. Can only be used with cmsort=sortkey',
|
2007-06-16 00:39:01 +00:00
|
|
|
'continue' => 'For large categories, give the value retured from previous query',
|
|
|
|
|
'limit' => 'The maximum number of pages to return.',
|
|
|
|
|
);
|
2010-01-11 15:55:52 +00:00
|
|
|
if ( $wgMiserMode ) {
|
2009-07-15 10:07:02 +00:00
|
|
|
$desc['namespace'] = array(
|
|
|
|
|
$desc['namespace'],
|
|
|
|
|
'NOTE: Due to $wgMiserMode, using this may result in fewer than "limit" results',
|
|
|
|
|
'returned before continuing; in extreme cases, zero results may be returned.',
|
|
|
|
|
);
|
|
|
|
|
}
|
2009-07-10 23:46:13 +00:00
|
|
|
return $desc;
|
2007-06-16 00:39:01 +00:00
|
|
|
}
|
|
|
|
|
|
2008-01-28 19:05:26 +00:00
|
|
|
public function getDescription() {
|
2007-06-16 00:39:01 +00:00
|
|
|
return 'List all pages in a given category';
|
|
|
|
|
}
|
2010-02-13 01:21:52 +00:00
|
|
|
|
|
|
|
|
public function getPossibleErrors() {
|
|
|
|
|
return array_merge( parent::getPossibleErrors(), array(
|
|
|
|
|
array( 'code' => 'notitle', 'info' => 'The cmtitle parameter is required' ),
|
|
|
|
|
array( 'code' => 'invalidcategory', 'info' => 'The category name you entered is not valid' ),
|
|
|
|
|
array( 'code' => 'badcontinue', 'info' => 'Invalid continue param. You should pass the original value returned by the previous query' ),
|
|
|
|
|
) );
|
|
|
|
|
}
|
2007-06-16 00:39:01 +00:00
|
|
|
|
|
|
|
|
protected function getExamples() {
|
|
|
|
|
return array (
|
2008-02-04 16:58:51 +00:00
|
|
|
"Get first 10 pages in [[Category:Physics]]:",
|
|
|
|
|
" api.php?action=query&list=categorymembers&cmtitle=Category:Physics",
|
|
|
|
|
"Get page info about first 10 pages in [[Category:Physics]]:",
|
|
|
|
|
" api.php?action=query&generator=categorymembers&gcmtitle=Category:Physics&prop=info",
|
2007-06-16 00:39:01 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getVersion() {
|
2007-12-06 18:33:18 +00:00
|
|
|
return __CLASS__ . ': $Id$';
|
2007-06-16 00:39:01 +00:00
|
|
|
}
|
2009-07-10 23:46:13 +00:00
|
|
|
}
|