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
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (!defined('MEDIAWIKI')) {
|
|
|
|
|
// Eclipse helper - will be ignored in production
|
|
|
|
|
require_once ("ApiQueryBase.php");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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 {
|
|
|
|
|
|
|
|
|
|
public function __construct($query, $moduleName) {
|
|
|
|
|
parent :: __construct($query, $moduleName, 'cm');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function execute() {
|
|
|
|
|
$this->run();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function executeGenerator($resultPageSet) {
|
|
|
|
|
$this->run($resultPageSet);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private function run($resultPageSet = null) {
|
|
|
|
|
|
|
|
|
|
$params = $this->extractRequestParams();
|
|
|
|
|
|
2008-04-14 07:45:50 +00:00
|
|
|
if ( !isset($params['title']) || is_null($params['title']) )
|
2008-03-16 19:08:30 +00:00
|
|
|
$this->dieUsage("The cmtitle parameter is required", 'notitle');
|
2008-03-18 14:59:44 +00:00
|
|
|
$categoryTitle = Title::newFromText($params['title']);
|
2008-02-04 16:58:51 +00:00
|
|
|
|
|
|
|
|
if ( is_null( $categoryTitle ) || $categoryTitle->getNamespace() != NS_CATEGORY )
|
|
|
|
|
$this->dieUsage("The category name you entered is not valid", 'invalidcategory');
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-09-03 20:37:42 +00:00
|
|
|
$prop = array_flip($params['prop']);
|
2007-06-16 00:39:01 +00:00
|
|
|
$fld_ids = isset($prop['ids']);
|
|
|
|
|
$fld_title = isset($prop['title']);
|
|
|
|
|
$fld_sortkey = isset($prop['sortkey']);
|
2007-09-03 20:37:42 +00:00
|
|
|
$fld_timestamp = isset($prop['timestamp']);
|
2007-06-16 00:39:01 +00:00
|
|
|
|
|
|
|
|
if (is_null($resultPageSet)) {
|
2007-07-06 19:43:32 +00:00
|
|
|
$this->addFields(array('cl_from', 'cl_sortkey', 'page_namespace', 'page_title'));
|
2007-06-16 00:39:01 +00:00
|
|
|
$this->addFieldsIf('page_id', $fld_ids);
|
|
|
|
|
} else {
|
|
|
|
|
$this->addFields($resultPageSet->getPageTableFields()); // will include page_ id, ns, title
|
2007-07-06 19:43:32 +00:00
|
|
|
$this->addFields(array('cl_from', 'cl_sortkey'));
|
2007-06-16 00:39:01 +00:00
|
|
|
}
|
2007-09-03 20:37:42 +00:00
|
|
|
|
2008-04-13 19:17:48 +00:00
|
|
|
$this->addFieldsIf('cl_timestamp', $fld_timestamp || $params['sort'] == 'timestamp');
|
2008-04-14 07:45:50 +00:00
|
|
|
$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
|
|
|
|
|
if($params['sort'] == 'timestamp')
|
|
|
|
|
$this->addOption('USE INDEX', 'cl_timestamp');
|
|
|
|
|
else
|
|
|
|
|
$this->addOption('USE INDEX', 'cl_sortkey');
|
2007-06-16 00:39:01 +00:00
|
|
|
|
|
|
|
|
$this->addWhere('cl_from=page_id');
|
2008-04-29 09:01:13 +00:00
|
|
|
$this->setContinuation($params['continue'], $params['dir']);
|
2007-06-16 00:39:01 +00:00
|
|
|
$this->addWhereFld('cl_to', $categoryTitle->getDBkey());
|
|
|
|
|
$this->addWhereFld('page_namespace', $params['namespace']);
|
2008-04-29 09:01:13 +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
|
|
|
|
|
{
|
|
|
|
|
$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-04-14 07:45:50 +00:00
|
|
|
|
2007-06-16 00:39:01 +00:00
|
|
|
$limit = $params['limit'];
|
|
|
|
|
$this->addOption('LIMIT', $limit +1);
|
|
|
|
|
|
|
|
|
|
$db = $this->getDB();
|
|
|
|
|
|
|
|
|
|
$data = array ();
|
|
|
|
|
$count = 0;
|
|
|
|
|
$lastSortKey = null;
|
|
|
|
|
$res = $this->select(__METHOD__);
|
|
|
|
|
while ($row = $db->fetchObject($res)) {
|
|
|
|
|
if (++ $count > $limit) {
|
|
|
|
|
// 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
|
2008-04-13 19:17:48 +00:00
|
|
|
if ($params['sort'] == 'timestamp')
|
2008-04-29 09:01:13 +00:00
|
|
|
$this->setContinueEnumParameter('start', wfTimestamp(TS_ISO_8601, $row->cl_timestamp));
|
2008-04-13 19:17:48 +00:00
|
|
|
else
|
|
|
|
|
$this->setContinueEnumParameter('continue', $this->getContinueStr($row, $lastSortKey));
|
2007-06-16 00:39:01 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-14 07:45:50 +00:00
|
|
|
$lastSortKey = $row->cl_sortkey; // detect duplicate sortkeys
|
|
|
|
|
|
2007-06-16 00:39:01 +00:00
|
|
|
if (is_null($resultPageSet)) {
|
2007-07-14 19:04:31 +00:00
|
|
|
$vals = array();
|
|
|
|
|
if ($fld_ids)
|
2008-04-14 07:45:50 +00:00
|
|
|
$vals['pageid'] = intval($row->page_id);
|
2007-07-14 19:04:31 +00:00
|
|
|
if ($fld_title) {
|
|
|
|
|
$title = Title :: makeTitle($row->page_namespace, $row->page_title);
|
|
|
|
|
$vals['ns'] = intval($title->getNamespace());
|
|
|
|
|
$vals['title'] = $title->getPrefixedText();
|
2007-06-16 00:39:01 +00:00
|
|
|
}
|
2007-07-14 19:04:31 +00:00
|
|
|
if ($fld_sortkey)
|
|
|
|
|
$vals['sortkey'] = $row->cl_sortkey;
|
2007-09-03 20:37:42 +00:00
|
|
|
if ($fld_timestamp)
|
|
|
|
|
$vals['timestamp'] = wfTimestamp(TS_ISO_8601, $row->cl_timestamp);
|
2007-07-14 19:04:31 +00:00
|
|
|
$data[] = $vals;
|
2007-06-16 00:39:01 +00:00
|
|
|
} else {
|
|
|
|
|
$resultPageSet->processDbRow($row);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$db->freeResult($res);
|
|
|
|
|
|
|
|
|
|
if (is_null($resultPageSet)) {
|
|
|
|
|
$this->getResult()->setIndexedTagName($data, 'cm');
|
|
|
|
|
$this->getResult()->addValue('query', $this->getModuleName(), $data);
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-06-16 00:39:01 +00:00
|
|
|
private function getContinueStr($row, $lastSortKey) {
|
|
|
|
|
$ret = $row->cl_sortkey . '|';
|
|
|
|
|
if ($row->cl_sortkey == $lastSortKey) // duplicate sort key, add cl_from
|
|
|
|
|
$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
|
|
|
*/
|
2008-04-29 09:01:13 +00:00
|
|
|
private function setContinuation($continue, $dir) {
|
2007-06-16 00:39:01 +00:00
|
|
|
if (is_null($continue))
|
|
|
|
|
return; // This is not a continuation request
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2008-10-18 10:09:19 +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
|
|
|
|
2008-10-18 10:09:19 +00:00
|
|
|
if ($from == 0 && strlen($fromstr) > 0)
|
2007-06-16 00:39:01 +00:00
|
|
|
$this->dieUsage("Invalid continue param. You should pass the original value returned by the previous query", "badcontinue");
|
|
|
|
|
|
2008-10-18 10:09:19 +00:00
|
|
|
$encSortKey = $this->getDB()->addQuotes($sortkey);
|
2007-09-04 14:25:55 +00:00
|
|
|
$encFrom = $this->getDB()->addQuotes($from);
|
2008-04-29 09:01:13 +00:00
|
|
|
|
|
|
|
|
$op = ($dir == 'desc' ? '<' : '>');
|
2007-06-16 00:39:01 +00:00
|
|
|
|
|
|
|
|
if ($from != 0) {
|
|
|
|
|
// 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() {
|
2007-06-16 00:39:01 +00:00
|
|
|
return 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',
|
2007-06-16 00:39:01 +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.',
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
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';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
}
|