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.
|
|
|
|
|
*
|
|
|
|
|
* @addtogroup API
|
|
|
|
|
*/
|
|
|
|
|
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-03-18 08:14:08 +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');
|
2007-06-16 00:39:01 +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
|
|
|
|
|
|
|
|
$this->addFieldsIf('cl_timestamp', $fld_timestamp);
|
2007-06-16 00:39:01 +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');
|
2007-09-10 14:17:33 +00:00
|
|
|
$this->addOption('ORDER BY', 'cl_to, cl_timestamp' . ($params['dir'] == 'desc' ? ' DESC' : ''));
|
2007-09-04 14:30:31 +00:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
$this->addOption('USE INDEX', 'cl_sortkey');
|
2007-09-10 14:17:33 +00:00
|
|
|
$this->addOption('ORDER BY', 'cl_to, cl_sortkey' . ($params['dir'] == 'desc' ? ' DESC' : '') . ', cl_from');
|
2007-09-04 14:30:31 +00:00
|
|
|
}
|
2007-06-16 00:39:01 +00:00
|
|
|
|
|
|
|
|
$this->addWhere('cl_from=page_id');
|
|
|
|
|
$this->setContinuation($params['continue']);
|
|
|
|
|
$this->addWhereFld('cl_to', $categoryTitle->getDBkey());
|
|
|
|
|
$this->addWhereFld('page_namespace', $params['namespace']);
|
2008-02-07 15:17:42 +00:00
|
|
|
$this->addWhereRange('cl_timestamp', ($params['dir'] == 'asc' ? 'newer' : 'older'), $params['start'], $params['end']);
|
2007-09-03 20:37:42 +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
|
2007-06-16 00:39:01 +00:00
|
|
|
$this->setContinueEnumParameter('continue', $this->getContinueStr($row, $lastSortKey));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$lastSortKey = $row->cl_sortkey; // detect duplicate sortkeys
|
|
|
|
|
|
|
|
|
|
if (is_null($resultPageSet)) {
|
2007-07-14 19:04:31 +00:00
|
|
|
$vals = array();
|
|
|
|
|
if ($fld_ids)
|
|
|
|
|
$vals['pageid'] = intval($row->page_id);
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add DB WHERE clause to continue previous query based on 'continue' parameter
|
|
|
|
|
*/
|
|
|
|
|
private function setContinuation($continue) {
|
|
|
|
|
if (is_null($continue))
|
|
|
|
|
return; // This is not a continuation request
|
|
|
|
|
|
|
|
|
|
$continueList = explode('|', $continue);
|
2007-07-06 19:43:32 +00:00
|
|
|
$hasError = count($continueList) != 2;
|
|
|
|
|
$from = 0;
|
|
|
|
|
if (!$hasError && strlen($continueList[1]) > 0) {
|
|
|
|
|
$from = intval($continueList[1]);
|
|
|
|
|
$hasError = ($from == 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($hasError)
|
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");
|
|
|
|
|
|
2007-09-04 14:25:55 +00:00
|
|
|
$encSortKey = $this->getDB()->addQuotes($continueList[0]);
|
|
|
|
|
$encFrom = $this->getDB()->addQuotes($from);
|
2007-06-16 00:39:01 +00:00
|
|
|
|
|
|
|
|
if ($from != 0) {
|
|
|
|
|
// Duplicate sort key continue
|
2007-09-04 14:25:55 +00:00
|
|
|
$this->addWhere( "cl_sortkey>$encSortKey OR (cl_sortkey=$encSortKey AND cl_from>=$encFrom)" );
|
2007-06-16 00:39:01 +00:00
|
|
|
} else {
|
2007-09-04 14:25:55 +00:00
|
|
|
$this->addWhere( "cl_sortkey>=$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'
|
2007-09-04 14:30:31 +00:00
|
|
|
)
|
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-02-07 15:17:42 +00:00
|
|
|
'start' => 'Timestamp to start listing from',
|
|
|
|
|
'end' => 'Timestamp to end listing at',
|
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
|
|
|
}
|
|
|
|
|
}
|
2007-06-29 01:19:14 +00:00
|
|
|
|