4 * Created on June 14, 2007
6 * API for MediaWiki 1.8+
8 * Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 * http://www.gnu.org/copyleft/gpl.html
26 if (!defined('MEDIAWIKI')) {
27 // Eclipse helper - will be ignored in production
28 require_once ("ApiQueryBase.php");
32 * A query module to enumerate pages that belong to a category.
36 class ApiQueryCategoryMembers
extends ApiQueryGeneratorBase
{
38 public function __construct($query, $moduleName) {
39 parent
:: __construct($query, $moduleName, 'cm');
42 public function execute() {
46 public function executeGenerator($resultPageSet) {
47 $this->run($resultPageSet);
50 private function run($resultPageSet = null) {
52 $params = $this->extractRequestParams();
54 if ( !isset($params['title']) ||
is_null($params['title']) )
55 $this->dieUsage("The cmtitle parameter is required", 'notitle');
56 $categoryTitle = Title
::newFromText($params['title']);
58 if ( is_null( $categoryTitle ) ||
$categoryTitle->getNamespace() != NS_CATEGORY
)
59 $this->dieUsage("The category name you entered is not valid", 'invalidcategory');
61 $prop = array_flip($params['prop']);
62 $fld_ids = isset($prop['ids']);
63 $fld_title = isset($prop['title']);
64 $fld_sortkey = isset($prop['sortkey']);
65 $fld_timestamp = isset($prop['timestamp']);
67 if (is_null($resultPageSet)) {
68 $this->addFields(array('cl_from', 'cl_sortkey', 'page_namespace', 'page_title'));
69 $this->addFieldsIf('page_id', $fld_ids);
71 $this->addFields($resultPageSet->getPageTableFields()); // will include page_ id, ns, title
72 $this->addFields(array('cl_from', 'cl_sortkey'));
75 $this->addFieldsIf('cl_timestamp', $fld_timestamp ||
$params['sort'] == 'timestamp');
76 $this->addTables(array('page','categorylinks')); // must be in this order for 'USE INDEX'
77 // Not needed after bug 10280 is applied to servers
78 if($params['sort'] == 'timestamp')
79 $this->addOption('USE INDEX', 'cl_timestamp');
81 $this->addOption('USE INDEX', 'cl_sortkey');
83 $this->addWhere('cl_from=page_id');
84 $this->setContinuation($params['continue'], $params['dir']);
85 $this->addWhereFld('cl_to', $categoryTitle->getDBkey());
86 $this->addWhereFld('page_namespace', $params['namespace']);
87 if($params['sort'] == 'timestamp')
88 $this->addWhereRange('cl_timestamp', ($params['dir'] == 'asc' ?
'newer' : 'older'), $params['start'], $params['end']);
91 $this->addWhereRange('cl_sortkey', ($params['dir'] == 'asc' ?
'newer' : 'older'), $params['startsortkey'], $params['endsortkey']);
92 $this->addWhereRange('cl_from', ($params['dir'] == 'asc' ?
'newer' : 'older'), null, null);
95 $limit = $params['limit'];
96 $this->addOption('LIMIT', $limit +
1);
103 $res = $this->select(__METHOD__
);
104 while ($row = $db->fetchObject($res)) {
105 if (++
$count > $limit) {
106 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
107 // TODO: Security issue - if the user has no right to view next title, it will still be shown
108 if ($params['sort'] == 'timestamp')
109 $this->setContinueEnumParameter('start', wfTimestamp(TS_ISO_8601
, $row->cl_timestamp
));
111 $this->setContinueEnumParameter('continue', $this->getContinueStr($row, $lastSortKey));
115 if (is_null($resultPageSet)) {
118 $vals['pageid'] = intval($row->page_id
);
120 $title = Title
:: makeTitle($row->page_namespace
, $row->page_title
);
121 $vals['ns'] = intval($title->getNamespace());
122 $vals['title'] = $title->getPrefixedText();
125 $vals['sortkey'] = $row->cl_sortkey
;
127 $vals['timestamp'] = wfTimestamp(TS_ISO_8601
, $row->cl_timestamp
);
128 $fit = $this->getResult()->addValue(array('query', $this->getModuleName()),
132 if ($params['sort'] == 'timestamp')
133 $this->setContinueEnumParameter('start', wfTimestamp(TS_ISO_8601
, $row->cl_timestamp
));
135 $this->setContinueEnumParameter('continue', $this->getContinueStr($row, $lastSortKey));
139 $resultPageSet->processDbRow($row);
141 $lastSortKey = $row->cl_sortkey
; // detect duplicate sortkeys
143 $db->freeResult($res);
145 if (is_null($resultPageSet)) {
146 $this->getResult()->setIndexedTagName_internal(
147 array('query', $this->getModuleName()), 'cm');
151 private function getContinueStr($row, $lastSortKey) {
152 $ret = $row->cl_sortkey
. '|';
153 if ($row->cl_sortkey
== $lastSortKey) // duplicate sort key, add cl_from
154 $ret .= $row->cl_from
;
159 * Add DB WHERE clause to continue previous query based on 'continue' parameter
161 private function setContinuation($continue, $dir) {
162 if (is_null($continue))
163 return; // This is not a continuation request
165 $pos = strrpos($continue, '|');
166 $sortkey = substr($continue, 0, $pos);
167 $fromstr = substr($continue, $pos +
1);
168 $from = intval($fromstr);
170 if ($from == 0 && strlen($fromstr) > 0)
171 $this->dieUsage("Invalid continue param. You should pass the original value returned by the previous query", "badcontinue");
173 $encSortKey = $this->getDB()->addQuotes($sortkey);
174 $encFrom = $this->getDB()->addQuotes($from);
176 $op = ($dir == 'desc' ?
'<' : '>');
179 // Duplicate sort key continue
180 $this->addWhere( "cl_sortkey$op$encSortKey OR (cl_sortkey=$encSortKey AND cl_from$op=$encFrom)" );
182 $this->addWhere( "cl_sortkey$op=$encSortKey" );
186 public function getAllowedParams() {
190 ApiBase
:: PARAM_DFLT
=> 'ids|title',
191 ApiBase
:: PARAM_ISMULTI
=> true,
192 ApiBase
:: PARAM_TYPE
=> array (
199 'namespace' => array (
200 ApiBase
:: PARAM_ISMULTI
=> true,
201 ApiBase
:: PARAM_TYPE
=> 'namespace',
205 ApiBase
:: PARAM_TYPE
=> 'limit',
206 ApiBase
:: PARAM_DFLT
=> 10,
207 ApiBase
:: PARAM_MIN
=> 1,
208 ApiBase
:: PARAM_MAX
=> ApiBase
:: LIMIT_BIG1
,
209 ApiBase
:: PARAM_MAX2
=> ApiBase
:: LIMIT_BIG2
212 ApiBase
:: PARAM_DFLT
=> 'sortkey',
213 ApiBase
:: PARAM_TYPE
=> array(
219 ApiBase
:: PARAM_DFLT
=> 'asc',
220 ApiBase
:: PARAM_TYPE
=> array(
226 ApiBase
:: PARAM_TYPE
=> 'timestamp'
229 ApiBase
:: PARAM_TYPE
=> 'timestamp'
231 'startsortkey' => null,
232 'endsortkey' => null,
236 public function getParamDescription() {
238 'title' => 'Which category to enumerate (required). Must include Category: prefix',
239 'prop' => 'What pieces of information to include',
240 'namespace' => 'Only include pages in these namespaces',
241 'sort' => 'Property to sort by',
242 'dir' => 'In which direction to sort',
243 'start' => 'Timestamp to start listing from. Can only be used with cmsort=timestamp',
244 'end' => 'Timestamp to end listing at. Can only be used with cmsort=timestamp',
245 'startsortkey' => 'Sortkey to start listing from. Can only be used with cmsort=sortkey',
246 'endsortkey' => 'Sortkey to end listing at. Can only be used with cmsort=sortkey',
247 'continue' => 'For large categories, give the value retured from previous query',
248 'limit' => 'The maximum number of pages to return.',
252 public function getDescription() {
253 return 'List all pages in a given category';
256 protected function getExamples() {
258 "Get first 10 pages in [[Category:Physics]]:",
259 " api.php?action=query&list=categorymembers&cmtitle=Category:Physics",
260 "Get page info about first 10 pages in [[Category:Physics]]:",
261 " api.php?action=query&generator=categorymembers&gcmtitle=Category:Physics&prop=info",
265 public function getVersion() {
266 return __CLASS__
. ': $Id$';