* Added flag "top" to list=usercontribs if the user is the last contributor to the...
[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 {
80 $this->addOption('USE INDEX', 'cl_timestamp');
81 // cl_timestamp will be added by addWhereRange() later
82 $this->addOption('ORDER BY', 'cl_to');
83 }
84 else
85 {
86 $dir = ($params['dir'] == 'desc' ? ' DESC' : '');
87 $this->addOption('USE INDEX', 'cl_sortkey');
88 $this->addOption('ORDER BY', 'cl_to, cl_sortkey' . $dir . ', cl_from' . $dir);
89 }
90
91 $this->addWhere('cl_from=page_id');
92 $this->setContinuation($params['continue'], $params['dir']);
93 $this->addWhereFld('cl_to', $categoryTitle->getDBkey());
94 $this->addWhereFld('page_namespace', $params['namespace']);
95 if($params['sort'] == 'timestamp')
96 $this->addWhereRange('cl_timestamp', ($params['dir'] == 'asc' ? 'newer' : 'older'), $params['start'], $params['end']);
97
98 $limit = $params['limit'];
99 $this->addOption('LIMIT', $limit +1);
100
101 $db = $this->getDB();
102
103 $data = array ();
104 $count = 0;
105 $lastSortKey = null;
106 $res = $this->select(__METHOD__);
107 while ($row = $db->fetchObject($res)) {
108 if (++ $count > $limit) {
109 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
110 // TODO: Security issue - if the user has no right to view next title, it will still be shown
111 if ($params['sort'] == 'timestamp')
112 $this->setContinueEnumParameter('start', wfTimestamp(TS_ISO_8601, $row->cl_timestamp));
113 else
114 $this->setContinueEnumParameter('continue', $this->getContinueStr($row, $lastSortKey));
115 break;
116 }
117
118 $lastSortKey = $row->cl_sortkey; // detect duplicate sortkeys
119
120 if (is_null($resultPageSet)) {
121 $vals = array();
122 if ($fld_ids)
123 $vals['pageid'] = intval($row->page_id);
124 if ($fld_title) {
125 $title = Title :: makeTitle($row->page_namespace, $row->page_title);
126 $vals['ns'] = intval($title->getNamespace());
127 $vals['title'] = $title->getPrefixedText();
128 }
129 if ($fld_sortkey)
130 $vals['sortkey'] = $row->cl_sortkey;
131 if ($fld_timestamp)
132 $vals['timestamp'] = wfTimestamp(TS_ISO_8601, $row->cl_timestamp);
133 $data[] = $vals;
134 } else {
135 $resultPageSet->processDbRow($row);
136 }
137 }
138 $db->freeResult($res);
139
140 if (is_null($resultPageSet)) {
141 $this->getResult()->setIndexedTagName($data, 'cm');
142 $this->getResult()->addValue('query', $this->getModuleName(), $data);
143 }
144 }
145
146 private function getContinueStr($row, $lastSortKey) {
147 $ret = $row->cl_sortkey . '|';
148 if ($row->cl_sortkey == $lastSortKey) // duplicate sort key, add cl_from
149 $ret .= $row->cl_from;
150 return $ret;
151 }
152
153 /**
154 * Add DB WHERE clause to continue previous query based on 'continue' parameter
155 */
156 private function setContinuation($continue, $dir) {
157 if (is_null($continue))
158 return; // This is not a continuation request
159
160 $continueList = explode('|', $continue);
161 $hasError = count($continueList) != 2;
162 $from = 0;
163 if (!$hasError && strlen($continueList[1]) > 0) {
164 $from = intval($continueList[1]);
165 $hasError = ($from == 0);
166 }
167
168 if ($hasError)
169 $this->dieUsage("Invalid continue param. You should pass the original value returned by the previous query", "badcontinue");
170
171 $encSortKey = $this->getDB()->addQuotes($continueList[0]);
172 $encFrom = $this->getDB()->addQuotes($from);
173
174 $op = ($dir == 'desc' ? '<' : '>');
175
176 if ($from != 0) {
177 // Duplicate sort key continue
178 $this->addWhere( "cl_sortkey$op$encSortKey OR (cl_sortkey=$encSortKey AND cl_from$op=$encFrom)" );
179 } else {
180 $this->addWhere( "cl_sortkey$op=$encSortKey" );
181 }
182 }
183
184 public function getAllowedParams() {
185 return array (
186 'title' => null,
187 'prop' => array (
188 ApiBase :: PARAM_DFLT => 'ids|title',
189 ApiBase :: PARAM_ISMULTI => true,
190 ApiBase :: PARAM_TYPE => array (
191 'ids',
192 'title',
193 'sortkey',
194 'timestamp',
195 )
196 ),
197 'namespace' => array (
198 ApiBase :: PARAM_ISMULTI => true,
199 ApiBase :: PARAM_TYPE => 'namespace',
200 ),
201 'continue' => null,
202 'limit' => array (
203 ApiBase :: PARAM_TYPE => 'limit',
204 ApiBase :: PARAM_DFLT => 10,
205 ApiBase :: PARAM_MIN => 1,
206 ApiBase :: PARAM_MAX => ApiBase :: LIMIT_BIG1,
207 ApiBase :: PARAM_MAX2 => ApiBase :: LIMIT_BIG2
208 ),
209 'sort' => array(
210 ApiBase :: PARAM_DFLT => 'sortkey',
211 ApiBase :: PARAM_TYPE => array(
212 'sortkey',
213 'timestamp'
214 )
215 ),
216 'dir' => array(
217 ApiBase :: PARAM_DFLT => 'asc',
218 ApiBase :: PARAM_TYPE => array(
219 'asc',
220 'desc'
221 )
222 ),
223 'start' => array(
224 ApiBase :: PARAM_TYPE => 'timestamp'
225 ),
226 'end' => array(
227 ApiBase :: PARAM_TYPE => 'timestamp'
228 )
229 );
230 }
231
232 public function getParamDescription() {
233 return array (
234 'title' => 'Which category to enumerate (required). Must include Category: prefix',
235 'prop' => 'What pieces of information to include',
236 'namespace' => 'Only include pages in these namespaces',
237 'sort' => 'Property to sort by',
238 'dir' => 'In which direction to sort',
239 'start' => 'Timestamp to start listing from. Can only be used with cmsort=timestamp',
240 'end' => 'Timestamp to end listing at. Can only be used with cmsort=timestamp',
241 'continue' => 'For large categories, give the value retured from previous query',
242 'limit' => 'The maximum number of pages to return.',
243 );
244 }
245
246 public function getDescription() {
247 return 'List all pages in a given category';
248 }
249
250 protected function getExamples() {
251 return array (
252 "Get first 10 pages in [[Category:Physics]]:",
253 " api.php?action=query&list=categorymembers&cmtitle=Category:Physics",
254 "Get page info about first 10 pages in [[Category:Physics]]:",
255 " api.php?action=query&generator=categorymembers&gcmtitle=Category:Physics&prop=info",
256 );
257 }
258
259 public function getVersion() {
260 return __CLASS__ . ': $Id$';
261 }
262 }