MediaWiki REL1_39
ApiQueryCategoryMembers.php
Go to the documentation of this file.
1<?php
27
34
36 private $collation;
37
43 public function __construct(
44 ApiQuery $query,
45 $moduleName,
46 CollationFactory $collationFactory
47 ) {
48 parent::__construct( $query, $moduleName, 'cm' );
49 $this->collation = $collationFactory->getCategoryCollation();
50 }
51
52 public function execute() {
53 $this->run();
54 }
55
56 public function getCacheMode( $params ) {
57 return 'public';
58 }
59
60 public function executeGenerator( $resultPageSet ) {
61 $this->run( $resultPageSet );
62 }
63
68 private function validateHexSortkey( $hexSortkey ) {
69 // A hex sortkey has an unbound number of 2 letter pairs
70 return (bool)preg_match( '/^(?:[a-fA-F0-9]{2})*$/D', $hexSortkey );
71 }
72
77 private function run( $resultPageSet = null ) {
78 $params = $this->extractRequestParams();
79
80 $categoryTitle = $this->getTitleOrPageId( $params )->getTitle();
81 if ( $categoryTitle->getNamespace() !== NS_CATEGORY ) {
82 $this->dieWithError( 'apierror-invalidcategory' );
83 }
84
85 $prop = array_fill_keys( $params['prop'], true );
86 $fld_ids = isset( $prop['ids'] );
87 $fld_title = isset( $prop['title'] );
88 $fld_sortkey = isset( $prop['sortkey'] );
89 $fld_sortkeyprefix = isset( $prop['sortkeyprefix'] );
90 $fld_timestamp = isset( $prop['timestamp'] );
91 $fld_type = isset( $prop['type'] );
92
93 if ( $resultPageSet === null ) {
94 $this->addFields( [ 'cl_from', 'cl_sortkey', 'cl_type', 'page_namespace', 'page_title' ] );
95 $this->addFieldsIf( 'page_id', $fld_ids );
96 $this->addFieldsIf( 'cl_sortkey_prefix', $fld_sortkeyprefix );
97 } else {
98 $this->addFields( $resultPageSet->getPageTableFields() ); // will include page_ id, ns, title
99 $this->addFields( [ 'cl_from', 'cl_sortkey', 'cl_type' ] );
100 }
101
102 $this->addFieldsIf( 'cl_timestamp', $fld_timestamp || $params['sort'] == 'timestamp' );
103
104 $this->addTables( [ 'page', 'categorylinks' ] ); // must be in this order for 'USE INDEX'
105
106 $this->addWhereFld( 'cl_to', $categoryTitle->getDBkey() );
107 $queryTypes = $params['type'];
108 $contWhere = false;
109
110 // Scanning large datasets for rare categories sucks, and I already told
111 // how to have efficient subcategory access :-) ~~~~ (oh well, domas)
112 $miser_ns = [];
113 if ( $this->getConfig()->get( MainConfigNames::MiserMode ) ) {
114 $miser_ns = $params['namespace'] ?: [];
115 } else {
116 $this->addWhereFld( 'page_namespace', $params['namespace'] );
117 }
118
119 $dir = in_array( $params['dir'], [ 'asc', 'ascending', 'newer' ] ) ? 'newer' : 'older';
120
121 if ( $params['sort'] == 'timestamp' ) {
122 $this->addTimestampWhereRange( 'cl_timestamp',
123 $dir,
124 $params['start'],
125 $params['end'] );
126 // Include in ORDER BY for uniqueness
127 $this->addWhereRange( 'cl_from', $dir, null, null );
128
129 if ( $params['continue'] !== null ) {
130 $cont = explode( '|', $params['continue'] );
131 $this->dieContinueUsageIf( count( $cont ) != 2 );
132 $op = ( $dir === 'newer' ? '>' : '<' );
133 $db = $this->getDB();
134 $continueTimestamp = $db->addQuotes( $db->timestamp( $cont[0] ) );
135 $continueFrom = (int)$cont[1];
136 $this->dieContinueUsageIf( $continueFrom != $cont[1] );
137 $this->addWhere( "cl_timestamp $op $continueTimestamp OR " .
138 "(cl_timestamp = $continueTimestamp AND " .
139 "cl_from $op= $continueFrom)"
140 );
141 }
142
143 $this->addOption( 'USE INDEX', [ 'categorylinks' => 'cl_timestamp' ] );
144 } else {
145 if ( $params['continue'] ) {
146 $cont = explode( '|', $params['continue'], 3 );
147 $this->dieContinueUsageIf( count( $cont ) != 3 );
148
149 // Remove the types to skip from $queryTypes
150 $contTypeIndex = array_search( $cont[0], $queryTypes );
151 $queryTypes = array_slice( $queryTypes, $contTypeIndex );
152
153 // Add a WHERE clause for sortkey and from
154 $this->dieContinueUsageIf( !$this->validateHexSortkey( $cont[1] ) );
155 $escSortkey = $this->getDB()->addQuotes( hex2bin( $cont[1] ) );
156 $from = (int)$cont[2];
157 $op = $dir == 'newer' ? '>' : '<';
158 // $contWhere is used further down
159 $contWhere = "cl_sortkey $op $escSortkey OR " .
160 "(cl_sortkey = $escSortkey AND " .
161 "cl_from $op= $from)";
162 // The below produces ORDER BY cl_sortkey, cl_from, possibly with DESC added to each of them
163 $this->addWhereRange( 'cl_sortkey', $dir, null, null );
164 $this->addWhereRange( 'cl_from', $dir, null, null );
165 } else {
166 if ( $params['startsortkeyprefix'] !== null ) {
167 $startsortkey = $this->collation->getSortKey( $params['startsortkeyprefix'] );
168 } elseif ( $params['starthexsortkey'] !== null ) {
169 if ( !$this->validateHexSortkey( $params['starthexsortkey'] ) ) {
170 $encParamName = $this->encodeParamName( 'starthexsortkey' );
171 $this->dieWithError( [ 'apierror-badparameter', $encParamName ], "badvalue_$encParamName" );
172 }
173 $startsortkey = hex2bin( $params['starthexsortkey'] );
174 } else {
175 $startsortkey = $params['startsortkey'];
176 }
177 if ( $params['endsortkeyprefix'] !== null ) {
178 $endsortkey = $this->collation->getSortKey( $params['endsortkeyprefix'] );
179 } elseif ( $params['endhexsortkey'] !== null ) {
180 if ( !$this->validateHexSortkey( $params['endhexsortkey'] ) ) {
181 $encParamName = $this->encodeParamName( 'endhexsortkey' );
182 $this->dieWithError( [ 'apierror-badparameter', $encParamName ], "badvalue_$encParamName" );
183 }
184 $endsortkey = hex2bin( $params['endhexsortkey'] );
185 } else {
186 $endsortkey = $params['endsortkey'];
187 }
188
189 // The below produces ORDER BY cl_sortkey, cl_from, possibly with DESC added to each of them
190 $this->addWhereRange( 'cl_sortkey',
191 $dir,
192 $startsortkey,
193 $endsortkey );
194 $this->addWhereRange( 'cl_from', $dir, null, null );
195 }
196 $this->addOption( 'USE INDEX', [ 'categorylinks' => 'cl_sortkey' ] );
197 }
198
199 $this->addWhere( 'cl_from=page_id' );
200
201 $limit = $params['limit'];
202 $this->addOption( 'LIMIT', $limit + 1 );
203
204 if ( $params['sort'] == 'sortkey' ) {
205 // Run a separate SELECT query for each value of cl_type.
206 // This is needed because cl_type is an enum, and MySQL has
207 // inconsistencies between ORDER BY cl_type and
208 // WHERE cl_type >= 'foo' making proper paging impossible
209 // and unindexed.
210 $rows = [];
211 $first = true;
212 foreach ( $queryTypes as $type ) {
213 $extraConds = [ 'cl_type' => $type ];
214 if ( $first && $contWhere ) {
215 // Continuation condition. Only added to the
216 // first query, otherwise we'll skip things
217 $extraConds[] = $contWhere;
218 }
219 $res = $this->select( __METHOD__, [ 'where' => $extraConds ] );
220 if ( $type === 'page' && $resultPageSet === null ) {
221 $this->executeGenderCacheFromResultWrapper( $res, __METHOD__ );
222 }
223 $rows = array_merge( $rows, iterator_to_array( $res ) );
224 if ( count( $rows ) >= $limit + 1 ) {
225 break;
226 }
227 $first = false;
228 }
229 } else {
230 // Sorting by timestamp
231 // No need to worry about per-type queries because we
232 // aren't sorting or filtering by type anyway
233 $res = $this->select( __METHOD__ );
234 if ( $resultPageSet === null ) {
235 $this->executeGenderCacheFromResultWrapper( $res, __METHOD__ );
236 }
237 $rows = iterator_to_array( $res );
238 }
239
240 $result = $this->getResult();
241 $count = 0;
242 foreach ( $rows as $row ) {
243 if ( ++$count > $limit ) {
244 // We've reached the one extra which shows that there are
245 // additional pages to be had. Stop here...
246 // @todo Security issue - if the user has no right to view next
247 // title, it will still be shown
248 if ( $params['sort'] == 'timestamp' ) {
249 $this->setContinueEnumParameter( 'continue', "$row->cl_timestamp|$row->cl_from" );
250 } else {
251 $sortkey = bin2hex( $row->cl_sortkey );
252 $this->setContinueEnumParameter( 'continue',
253 "{$row->cl_type}|$sortkey|{$row->cl_from}"
254 );
255 }
256 break;
257 }
258
259 // Since domas won't tell anyone what he told long ago, apply
260 // cmnamespace here. This means the query may return 0 actual
261 // results, but on the other hand it could save returning 5000
262 // useless results to the client. ~~~~
263 if ( count( $miser_ns ) && !in_array( $row->page_namespace, $miser_ns ) ) {
264 continue;
265 }
266
267 if ( $resultPageSet === null ) {
268 $vals = [
269 ApiResult::META_TYPE => 'assoc',
270 ];
271 if ( $fld_ids ) {
272 $vals['pageid'] = (int)$row->page_id;
273 }
274 if ( $fld_title ) {
275 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
277 }
278 if ( $fld_sortkey ) {
279 $vals['sortkey'] = bin2hex( $row->cl_sortkey );
280 }
281 if ( $fld_sortkeyprefix ) {
282 $vals['sortkeyprefix'] = $row->cl_sortkey_prefix;
283 }
284 if ( $fld_type ) {
285 $vals['type'] = $row->cl_type;
286 }
287 if ( $fld_timestamp ) {
288 $vals['timestamp'] = wfTimestamp( TS_ISO_8601, $row->cl_timestamp );
289 }
290 $fit = $result->addValue( [ 'query', $this->getModuleName() ],
291 null, $vals );
292 if ( !$fit ) {
293 if ( $params['sort'] == 'timestamp' ) {
294 $this->setContinueEnumParameter( 'continue', "$row->cl_timestamp|$row->cl_from" );
295 } else {
296 $sortkey = bin2hex( $row->cl_sortkey );
297 $this->setContinueEnumParameter( 'continue',
298 "{$row->cl_type}|$sortkey|{$row->cl_from}"
299 );
300 }
301 break;
302 }
303 } else {
304 $resultPageSet->processDbRow( $row );
305 }
306 }
307
308 if ( $resultPageSet === null ) {
309 $result->addIndexedTagName(
310 [ 'query', $this->getModuleName() ], 'cm' );
311 }
312 }
313
314 public function getAllowedParams() {
315 $ret = [
316 'title' => [
317 ParamValidator::PARAM_TYPE => 'string',
318 ],
319 'pageid' => [
320 ParamValidator::PARAM_TYPE => 'integer'
321 ],
322 'prop' => [
323 ParamValidator::PARAM_DEFAULT => 'ids|title',
324 ParamValidator::PARAM_ISMULTI => true,
325 ParamValidator::PARAM_TYPE => [
326 'ids',
327 'title',
328 'sortkey',
329 'sortkeyprefix',
330 'type',
331 'timestamp',
332 ],
334 ],
335 'namespace' => [
336 ParamValidator::PARAM_ISMULTI => true,
337 ParamValidator::PARAM_TYPE => 'namespace',
338 ],
339 'type' => [
340 ParamValidator::PARAM_ISMULTI => true,
341 ParamValidator::PARAM_DEFAULT => 'page|subcat|file',
342 ParamValidator::PARAM_TYPE => [
343 'page',
344 'subcat',
345 'file'
346 ]
347 ],
348 'continue' => [
349 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
350 ],
351 'limit' => [
352 ParamValidator::PARAM_TYPE => 'limit',
353 ParamValidator::PARAM_DEFAULT => 10,
354 IntegerDef::PARAM_MIN => 1,
355 IntegerDef::PARAM_MAX => ApiBase::LIMIT_BIG1,
356 IntegerDef::PARAM_MAX2 => ApiBase::LIMIT_BIG2
357 ],
358 'sort' => [
359 ParamValidator::PARAM_DEFAULT => 'sortkey',
360 ParamValidator::PARAM_TYPE => [
361 'sortkey',
362 'timestamp'
363 ]
364 ],
365 'dir' => [
366 ParamValidator::PARAM_DEFAULT => 'ascending',
367 ParamValidator::PARAM_TYPE => [
368 'asc',
369 'desc',
370 // Normalising with other modules
371 'ascending',
372 'descending',
373 'newer',
374 'older',
375 ]
376 ],
377 'start' => [
378 ParamValidator::PARAM_TYPE => 'timestamp'
379 ],
380 'end' => [
381 ParamValidator::PARAM_TYPE => 'timestamp'
382 ],
383 'starthexsortkey' => null,
384 'endhexsortkey' => null,
385 'startsortkeyprefix' => null,
386 'endsortkeyprefix' => null,
387 'startsortkey' => [
388 ParamValidator::PARAM_DEPRECATED => true,
389 ],
390 'endsortkey' => [
391 ParamValidator::PARAM_DEPRECATED => true,
392 ],
393 ];
394
395 if ( $this->getConfig()->get( MainConfigNames::MiserMode ) ) {
396 $ret['namespace'][ApiBase::PARAM_HELP_MSG_APPEND] = [
397 'api-help-param-limited-in-miser-mode',
398 ];
399 }
400
401 return $ret;
402 }
403
404 protected function getExamplesMessages() {
405 return [
406 'action=query&list=categorymembers&cmtitle=Category:Physics'
407 => 'apihelp-query+categorymembers-example-simple',
408 'action=query&generator=categorymembers&gcmtitle=Category:Physics&prop=info'
409 => 'apihelp-query+categorymembers-example-generator',
410 ];
411 }
412
413 public function getHelpUrls() {
414 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Categorymembers';
415 }
416}
const NS_CATEGORY
Definition Defines.php:78
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
dieWithError( $msg, $code=null, $data=null, $httpCode=0)
Abort execution with an error.
Definition ApiBase.php:1454
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
Definition ApiBase.php:1643
const PARAM_HELP_MSG_APPEND
((string|array|Message)[]) Specify additional i18n messages to append to the normal message for this ...
Definition ApiBase.php:170
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
Definition ApiBase.php:196
const LIMIT_BIG1
Fast query, standard limit.
Definition ApiBase.php:221
getResult()
Get the result object.
Definition ApiBase.php:629
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:765
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:163
const LIMIT_BIG2
Fast query, apihighlimits limit.
Definition ApiBase.php:223
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:498
getTitleOrPageId( $params, $load=false)
Get a WikiPage object from a title or pageid param, if possible.
Definition ApiBase.php:1036
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
addWhereRange( $field, $dir, $start, $end, $sort=true)
Add a WHERE clause corresponding to a range, and an ORDER BY clause to sort in the right direction.
addFields( $value)
Add a set of fields to select to the internal array.
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
addTimestampWhereRange( $field, $dir, $start, $end, $sort=true)
Add a WHERE clause corresponding to a range, similar to addWhereRange, but converts $start and $end t...
getDB()
Get the Query database connection (read-only)
executeGenderCacheFromResultWrapper(IResultWrapper $res, $fname=__METHOD__, $fieldPrefix='page')
Preprocess the result set to fill the GenderCache with the necessary information before using self::a...
select( $method, $extraQuery=[], array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
addFieldsIf( $value, $condition)
Same as addFields(), but add the fields only if a condition is met.
addWhereFld( $field, $value)
Equivalent to addWhere( [ $field => $value ] )
addWhere( $value)
Add a set of WHERE clauses to the internal array.
A query module to enumerate pages that belong to a category.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
__construct(ApiQuery $query, $moduleName, CollationFactory $collationFactory)
executeGenerator( $resultPageSet)
Execute this module as a generator.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
getCacheMode( $params)
Get the cache mode for the data generated by this module.
getExamplesMessages()
Returns usage examples for this module.
getHelpUrls()
Return links to more detailed help pages about the module.
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
encodeParamName( $paramName)
Overrides ApiBase to prepend 'g' to every generator parameter.
This is the main query class.
Definition ApiQuery.php:41
const META_TYPE
Key for the 'type' metadata item.
Common factory to construct collation classes.
A class containing constants representing the names of configuration variables.
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition Title.php:638
Service for formatting and validating API parameters.
Type definition for integer types.