Followup to r53052 - Die if someone tries to use the namespace filter, rather than...
[lhc/web/wiklou.git] / includes / api / ApiQueryCategoryMembers.php
1 <?php
2
3 /*
4 * Created on June 14, 2007
5 *
6 * API for MediaWiki 1.8+
7 *
8 * Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
9 *
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.
14 *
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.
19 *
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
24 */
25
26 if (!defined('MEDIAWIKI')) {
27 // Eclipse helper - will be ignored in production
28 require_once ("ApiQueryBase.php");
29 }
30
31 /**
32 * A query module to enumerate pages that belong to a category.
33 *
34 * @ingroup API
35 */
36 class ApiQueryCategoryMembers extends ApiQueryGeneratorBase {
37
38 public function __construct($query, $moduleName) {
39 parent :: __construct($query, $moduleName, 'cm');
40 }
41
42 public function execute() {
43 $this->run();
44 }
45
46 public function executeGenerator($resultPageSet) {
47 $this->run($resultPageSet);
48 }
49
50 private function run($resultPageSet = null) {
51
52 $params = $this->extractRequestParams();
53
54 if ( !isset($params['title']) || is_null($params['title']) )
55 $this->dieUsage("The cmtitle parameter is required", 'notitle');
56 $categoryTitle = Title::newFromText($params['title']);
57
58 if ( is_null( $categoryTitle ) || $categoryTitle->getNamespace() != NS_CATEGORY )
59 $this->dieUsage("The category name you entered is not valid", 'invalidcategory');
60
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']);
66
67 if (is_null($resultPageSet)) {
68 $this->addFields(array('cl_from', 'cl_sortkey', 'page_namespace', 'page_title'));
69 $this->addFieldsIf('page_id', $fld_ids);
70 } else {
71 $this->addFields($resultPageSet->getPageTableFields()); // will include page_ id, ns, title
72 $this->addFields(array('cl_from', 'cl_sortkey'));
73 }
74
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');
80 else
81 $this->addOption('USE INDEX', 'cl_sortkey');
82
83 $this->addWhere('cl_from=page_id');
84 $this->setContinuation($params['continue'], $params['dir']);
85 $this->addWhereFld('cl_to', $categoryTitle->getDBkey());
86 # Scanning large datasets for rare categories sucks, and I already told
87 # how to have efficient subcategory access :-) ~~~~ (oh well, domas)
88 global $wgMiserMode;
89 if ( $wgMiserMode && isset($params['namespace']) ) {
90 $this->dieUsage("The cmnamespace option is disabled on this site", 'namespacedisabled');
91 }
92 $this->addWhereFld('page_namespace', $params['namespace']);
93
94 if($params['sort'] == 'timestamp')
95 $this->addWhereRange('cl_timestamp', ($params['dir'] == 'asc' ? 'newer' : 'older'), $params['start'], $params['end']);
96 else
97 {
98 $this->addWhereRange('cl_sortkey', ($params['dir'] == 'asc' ? 'newer' : 'older'), $params['startsortkey'], $params['endsortkey']);
99 $this->addWhereRange('cl_from', ($params['dir'] == 'asc' ? 'newer' : 'older'), null, null);
100 }
101
102 $limit = $params['limit'];
103 $this->addOption('LIMIT', $limit +1);
104
105 $db = $this->getDB();
106
107 $data = array ();
108 $count = 0;
109 $lastSortKey = null;
110 $res = $this->select(__METHOD__);
111 while ($row = $db->fetchObject($res)) {
112 if (++ $count > $limit) {
113 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
114 // TODO: Security issue - if the user has no right to view next title, it will still be shown
115 if ($params['sort'] == 'timestamp')
116 $this->setContinueEnumParameter('start', wfTimestamp(TS_ISO_8601, $row->cl_timestamp));
117 else
118 $this->setContinueEnumParameter('continue', $this->getContinueStr($row, $lastSortKey));
119 break;
120 }
121
122 if (is_null($resultPageSet)) {
123 $vals = array();
124 if ($fld_ids)
125 $vals['pageid'] = intval($row->page_id);
126 if ($fld_title) {
127 $title = Title :: makeTitle($row->page_namespace, $row->page_title);
128 ApiQueryBase::addTitleInfo($vals, $title);
129 }
130 if ($fld_sortkey)
131 $vals['sortkey'] = $row->cl_sortkey;
132 if ($fld_timestamp)
133 $vals['timestamp'] = wfTimestamp(TS_ISO_8601, $row->cl_timestamp);
134 $fit = $this->getResult()->addValue(array('query', $this->getModuleName()),
135 null, $vals);
136 if(!$fit)
137 {
138 if ($params['sort'] == 'timestamp')
139 $this->setContinueEnumParameter('start', wfTimestamp(TS_ISO_8601, $row->cl_timestamp));
140 else
141 $this->setContinueEnumParameter('continue', $this->getContinueStr($row, $lastSortKey));
142 break;
143 }
144 } else {
145 $resultPageSet->processDbRow($row);
146 }
147 $lastSortKey = $row->cl_sortkey; // detect duplicate sortkeys
148 }
149 $db->freeResult($res);
150
151 if (is_null($resultPageSet)) {
152 $this->getResult()->setIndexedTagName_internal(
153 array('query', $this->getModuleName()), 'cm');
154 }
155 }
156
157 private function getContinueStr($row, $lastSortKey) {
158 $ret = $row->cl_sortkey . '|';
159 if ($row->cl_sortkey == $lastSortKey) // duplicate sort key, add cl_from
160 $ret .= $row->cl_from;
161 return $ret;
162 }
163
164 /**
165 * Add DB WHERE clause to continue previous query based on 'continue' parameter
166 */
167 private function setContinuation($continue, $dir) {
168 if (is_null($continue))
169 return; // This is not a continuation request
170
171 $pos = strrpos($continue, '|');
172 $sortkey = substr($continue, 0, $pos);
173 $fromstr = substr($continue, $pos + 1);
174 $from = intval($fromstr);
175
176 if ($from == 0 && strlen($fromstr) > 0)
177 $this->dieUsage("Invalid continue param. You should pass the original value returned by the previous query", "badcontinue");
178
179 $encSortKey = $this->getDB()->addQuotes($sortkey);
180 $encFrom = $this->getDB()->addQuotes($from);
181
182 $op = ($dir == 'desc' ? '<' : '>');
183
184 if ($from != 0) {
185 // Duplicate sort key continue
186 $this->addWhere( "cl_sortkey$op$encSortKey OR (cl_sortkey=$encSortKey AND cl_from$op=$encFrom)" );
187 } else {
188 $this->addWhere( "cl_sortkey$op=$encSortKey" );
189 }
190 }
191
192 public function getAllowedParams() {
193 return array (
194 'title' => null,
195 'prop' => array (
196 ApiBase :: PARAM_DFLT => 'ids|title',
197 ApiBase :: PARAM_ISMULTI => true,
198 ApiBase :: PARAM_TYPE => array (
199 'ids',
200 'title',
201 'sortkey',
202 'timestamp',
203 )
204 ),
205 'namespace' => array (
206 ApiBase :: PARAM_ISMULTI => true,
207 ApiBase :: PARAM_TYPE => 'namespace',
208 ),
209 'continue' => null,
210 'limit' => array (
211 ApiBase :: PARAM_TYPE => 'limit',
212 ApiBase :: PARAM_DFLT => 10,
213 ApiBase :: PARAM_MIN => 1,
214 ApiBase :: PARAM_MAX => ApiBase :: LIMIT_BIG1,
215 ApiBase :: PARAM_MAX2 => ApiBase :: LIMIT_BIG2
216 ),
217 'sort' => array(
218 ApiBase :: PARAM_DFLT => 'sortkey',
219 ApiBase :: PARAM_TYPE => array(
220 'sortkey',
221 'timestamp'
222 )
223 ),
224 'dir' => array(
225 ApiBase :: PARAM_DFLT => 'asc',
226 ApiBase :: PARAM_TYPE => array(
227 'asc',
228 'desc'
229 )
230 ),
231 'start' => array(
232 ApiBase :: PARAM_TYPE => 'timestamp'
233 ),
234 'end' => array(
235 ApiBase :: PARAM_TYPE => 'timestamp'
236 ),
237 'startsortkey' => null,
238 'endsortkey' => null,
239 );
240 }
241
242 public function getParamDescription() {
243 $desc = array (
244 'title' => 'Which category to enumerate (required). Must include Category: prefix',
245 'prop' => 'What pieces of information to include',
246 'sort' => 'Property to sort by',
247 'dir' => 'In which direction to sort',
248 'start' => 'Timestamp to start listing from. Can only be used with cmsort=timestamp',
249 'end' => 'Timestamp to end listing at. Can only be used with cmsort=timestamp',
250 'startsortkey' => 'Sortkey to start listing from. Can only be used with cmsort=sortkey',
251 'endsortkey' => 'Sortkey to end listing at. Can only be used with cmsort=sortkey',
252 'continue' => 'For large categories, give the value retured from previous query',
253 'limit' => 'The maximum number of pages to return.',
254 );
255 global $wgMiserMode;
256 // We can't remove it from the param list entirely without removing it from the
257 // allowed params, but then we could only silently ignore it, which could cause
258 // problems for people unaware of the change
259 if ( $wgMiserMode )
260 $desc['namespace'] = 'Disabled on this site for performance reasons';
261 else
262 $desc['namespace'] = 'Only include pages in these namespaces';
263 return $desc;
264 }
265
266 public function getDescription() {
267 return 'List all pages in a given category';
268 }
269
270 protected function getExamples() {
271 return array (
272 "Get first 10 pages in [[Category:Physics]]:",
273 " api.php?action=query&list=categorymembers&cmtitle=Category:Physics",
274 "Get page info about first 10 pages in [[Category:Physics]]:",
275 " api.php?action=query&generator=categorymembers&gcmtitle=Category:Physics&prop=info",
276 );
277 }
278
279 public function getVersion() {
280 return __CLASS__ . ': $Id$';
281 }
282 }