MediaWiki master
ApiQueryAllCategories.php
Go to the documentation of this file.
1<?php
23namespace MediaWiki\Api;
24
30
38
39 public function __construct( ApiQuery $query, string $moduleName ) {
40 parent::__construct( $query, $moduleName, 'ac' );
41 }
42
43 public function execute() {
44 $this->run();
45 }
46
47 public function getCacheMode( $params ) {
48 return 'public';
49 }
50
51 public function executeGenerator( $resultPageSet ) {
52 $this->run( $resultPageSet );
53 }
54
58 private function run( $resultPageSet = null ) {
59 $db = $this->getDB();
60 $params = $this->extractRequestParams();
61
62 $this->addTables( 'category' );
63 $this->addFields( 'cat_title' );
64
65 if ( $params['continue'] !== null ) {
66 $cont = $this->parseContinueParamOrDie( $params['continue'], [ 'string' ] );
67 $op = $params['dir'] == 'descending' ? '<=' : '>=';
68 $this->addWhere( $db->expr( 'cat_title', $op, $cont[0] ) );
69 }
70
71 $dir = ( $params['dir'] == 'descending' ? 'older' : 'newer' );
72 $from = ( $params['from'] === null
73 ? null
74 : $this->titlePartToKey( $params['from'], NS_CATEGORY ) );
75 $to = ( $params['to'] === null
76 ? null
77 : $this->titlePartToKey( $params['to'], NS_CATEGORY ) );
78 $this->addWhereRange( 'cat_title', $dir, $from, $to );
79
80 $min = $params['min'];
81 $max = $params['max'];
82 if ( $dir == 'newer' ) {
83 $this->addWhereRange( 'cat_pages', 'newer', $min, $max );
84 } else {
85 $this->addWhereRange( 'cat_pages', 'older', $max, $min );
86 }
87
88 if ( isset( $params['prefix'] ) ) {
89 $this->addWhere(
90 $db->expr(
91 'cat_title',
92 IExpression::LIKE,
93 new LikeValue( $this->titlePartToKey( $params['prefix'], NS_CATEGORY ), $db->anyString() )
94 )
95 );
96 }
97
98 $this->addOption( 'LIMIT', $params['limit'] + 1 );
99 $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
100 $this->addOption( 'ORDER BY', 'cat_title' . $sort );
101
102 $prop = array_fill_keys( $params['prop'], true );
103 $this->addFieldsIf( [ 'cat_pages', 'cat_subcats', 'cat_files' ], isset( $prop['size'] ) );
104 if ( isset( $prop['hidden'] ) ) {
105 $this->addTables( [ 'page', 'page_props' ] );
106 $this->addJoinConds( [
107 'page' => [ 'LEFT JOIN', [
108 'page_namespace' => NS_CATEGORY,
109 'page_title=cat_title' ] ],
110 'page_props' => [ 'LEFT JOIN', [
111 'pp_page=page_id',
112 'pp_propname' => 'hiddencat' ] ],
113 ] );
114 $this->addFields( [ 'cat_hidden' => 'pp_propname' ] );
115 }
116
117 $res = $this->select( __METHOD__ );
118
119 $pages = [];
120
121 $result = $this->getResult();
122 $count = 0;
123 foreach ( $res as $row ) {
124 if ( ++$count > $params['limit'] ) {
125 // We've reached the one extra which shows that there are
126 // additional cats to be had. Stop here...
127 $this->setContinueEnumParameter( 'continue', $row->cat_title );
128 break;
129 }
130
131 // Normalize titles
132 $titleObj = Title::makeTitle( NS_CATEGORY, $row->cat_title );
133 if ( $resultPageSet !== null ) {
134 $pages[] = $titleObj;
135 } else {
136 $item = [];
137 ApiResult::setContentValue( $item, 'category', $titleObj->getText() );
138 if ( isset( $prop['size'] ) ) {
139 $item['size'] = (int)$row->cat_pages;
140 $item['pages'] = $row->cat_pages - $row->cat_subcats - $row->cat_files;
141 $item['files'] = (int)$row->cat_files;
142 $item['subcats'] = (int)$row->cat_subcats;
143 }
144 if ( isset( $prop['hidden'] ) ) {
145 $item['hidden'] = (bool)$row->cat_hidden;
146 }
147 $fit = $result->addValue( [ 'query', $this->getModuleName() ], null, $item );
148 if ( !$fit ) {
149 $this->setContinueEnumParameter( 'continue', $row->cat_title );
150 break;
151 }
152 }
153 }
154
155 if ( $resultPageSet === null ) {
156 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'c' );
157 } else {
158 $resultPageSet->populateFromTitles( $pages );
159 }
160 }
161
162 public function getAllowedParams() {
163 return [
164 'from' => null,
165 'continue' => [
166 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
167 ],
168 'to' => null,
169 'prefix' => null,
170 'dir' => [
171 ParamValidator::PARAM_DEFAULT => 'ascending',
172 ParamValidator::PARAM_TYPE => [
173 'ascending',
174 'descending'
175 ],
176 ],
177 'min' => [
178 ParamValidator::PARAM_TYPE => 'integer'
179 ],
180 'max' => [
181 ParamValidator::PARAM_TYPE => 'integer'
182 ],
183 'limit' => [
184 ParamValidator::PARAM_DEFAULT => 10,
185 ParamValidator::PARAM_TYPE => 'limit',
186 IntegerDef::PARAM_MIN => 1,
187 IntegerDef::PARAM_MAX => ApiBase::LIMIT_BIG1,
188 IntegerDef::PARAM_MAX2 => ApiBase::LIMIT_BIG2
189 ],
190 'prop' => [
191 ParamValidator::PARAM_TYPE => [ 'size', 'hidden' ],
192 ParamValidator::PARAM_DEFAULT => '',
193 ParamValidator::PARAM_ISMULTI => true,
195 ],
196 ];
197 }
198
199 protected function getExamplesMessages() {
200 return [
201 'action=query&list=allcategories&acprop=size'
202 => 'apihelp-query+allcategories-example-size',
203 'action=query&generator=allcategories&gacprefix=List&prop=info'
204 => 'apihelp-query+allcategories-example-generator',
205 ];
206 }
207
208 public function getHelpUrls() {
209 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Allcategories';
210 }
211}
212
214class_alias( ApiQueryAllCategories::class, 'ApiQueryAllCategories' );
const NS_CATEGORY
Definition Defines.php:79
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:557
parseContinueParamOrDie(string $continue, array $types)
Parse the 'continue' parameter in the usual format and validate the types of each part,...
Definition ApiBase.php:1707
getResult()
Get the result object.
Definition ApiBase.php:696
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, or 'string' with PARAM_ISMULTI,...
Definition ApiBase.php:221
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:181
const LIMIT_BIG2
Fast query, apihighlimits limit.
Definition ApiBase.php:248
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:837
const LIMIT_BIG1
Fast query, standard limit.
Definition ApiBase.php:246
Query module to enumerate all categories, even the ones that don't have category pages.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
__construct(ApiQuery $query, string $moduleName)
getExamplesMessages()
Returns usage examples for this module.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
executeGenerator( $resultPageSet)
Execute this module as a generator.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
getHelpUrls()
Return links to more detailed help pages about the module.
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
addFieldsIf( $value, $condition)
Same as addFields(), but add the fields only if a condition is met.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
getDB()
Get the Query database connection (read-only)
select( $method, $extraQuery=[], ?array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
titlePartToKey( $titlePart, $namespace=NS_MAIN)
Convert an input title or title prefix into a dbkey.
addWhere( $value)
Add a set of WHERE clauses to the internal array.
addFields( $value)
Add a set of fields to select to the internal 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.
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
This is the main query class.
Definition ApiQuery.php:48
static setContentValue(array &$arr, $name, $value, $flags=0)
Add an output value to the array by name and mark as META_CONTENT.
Represents a title within MediaWiki.
Definition Title.php:78
Service for formatting and validating API parameters.
Type definition for integer types.
Content of like value.
Definition LikeValue.php:14
array $params
The job parameters.