MediaWiki REL1_37
ApiQueryAllCategories.php
Go to the documentation of this file.
1<?php
30
35 public function __construct( ApiQuery $query, $moduleName ) {
36 parent::__construct( $query, $moduleName, 'ac' );
37 }
38
39 public function execute() {
40 $this->run();
41 }
42
43 public function getCacheMode( $params ) {
44 return 'public';
45 }
46
47 public function executeGenerator( $resultPageSet ) {
48 $this->run( $resultPageSet );
49 }
50
54 private function run( $resultPageSet = null ) {
55 $db = $this->getDB();
56 $params = $this->extractRequestParams();
57
58 $this->addTables( 'category' );
59 $this->addFields( 'cat_title' );
60
61 if ( $params['continue'] !== null ) {
62 $cont = explode( '|', $params['continue'] );
63 $this->dieContinueUsageIf( count( $cont ) != 1 );
64 $op = $params['dir'] == 'descending' ? '<' : '>';
65 $cont_from = $db->addQuotes( $cont[0] );
66 $this->addWhere( "cat_title $op= $cont_from" );
67 }
68
69 $dir = ( $params['dir'] == 'descending' ? 'older' : 'newer' );
70 $from = ( $params['from'] === null
71 ? null
72 : $this->titlePartToKey( $params['from'], NS_CATEGORY ) );
73 $to = ( $params['to'] === null
74 ? null
75 : $this->titlePartToKey( $params['to'], NS_CATEGORY ) );
76 $this->addWhereRange( 'cat_title', $dir, $from, $to );
77
78 $min = $params['min'];
79 $max = $params['max'];
80 if ( $dir == 'newer' ) {
81 $this->addWhereRange( 'cat_pages', 'newer', $min, $max );
82 } else {
83 $this->addWhereRange( 'cat_pages', 'older', $max, $min );
84 }
85
86 if ( isset( $params['prefix'] ) ) {
87 $this->addWhere( 'cat_title' . $db->buildLike(
88 $this->titlePartToKey( $params['prefix'], NS_CATEGORY ),
89 $db->anyString() ) );
90 }
91
92 $this->addOption( 'LIMIT', $params['limit'] + 1 );
93 $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
94 $this->addOption( 'ORDER BY', 'cat_title' . $sort );
95
96 $prop = array_fill_keys( $params['prop'], true );
97 $this->addFieldsIf( [ 'cat_pages', 'cat_subcats', 'cat_files' ], isset( $prop['size'] ) );
98 if ( isset( $prop['hidden'] ) ) {
99 $this->addTables( [ 'page', 'page_props' ] );
100 $this->addJoinConds( [
101 'page' => [ 'LEFT JOIN', [
102 'page_namespace' => NS_CATEGORY,
103 'page_title=cat_title' ] ],
104 'page_props' => [ 'LEFT JOIN', [
105 'pp_page=page_id',
106 'pp_propname' => 'hiddencat' ] ],
107 ] );
108 $this->addFields( [ 'cat_hidden' => 'pp_propname' ] );
109 }
110
111 $res = $this->select( __METHOD__ );
112
113 $pages = [];
114
115 $result = $this->getResult();
116 $count = 0;
117 foreach ( $res as $row ) {
118 if ( ++$count > $params['limit'] ) {
119 // We've reached the one extra which shows that there are
120 // additional cats to be had. Stop here...
121 $this->setContinueEnumParameter( 'continue', $row->cat_title );
122 break;
123 }
124
125 // Normalize titles
126 $titleObj = Title::makeTitle( NS_CATEGORY, $row->cat_title );
127 if ( $resultPageSet !== null ) {
128 $pages[] = $titleObj;
129 } else {
130 $item = [];
131 ApiResult::setContentValue( $item, 'category', $titleObj->getText() );
132 if ( isset( $prop['size'] ) ) {
133 $item['size'] = (int)$row->cat_pages;
134 $item['pages'] = $row->cat_pages - $row->cat_subcats - $row->cat_files;
135 $item['files'] = (int)$row->cat_files;
136 $item['subcats'] = (int)$row->cat_subcats;
137 }
138 if ( isset( $prop['hidden'] ) ) {
139 $item['hidden'] = (bool)$row->cat_hidden;
140 }
141 $fit = $result->addValue( [ 'query', $this->getModuleName() ], null, $item );
142 if ( !$fit ) {
143 $this->setContinueEnumParameter( 'continue', $row->cat_title );
144 break;
145 }
146 }
147 }
148
149 if ( $resultPageSet === null ) {
150 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'c' );
151 } else {
152 $resultPageSet->populateFromTitles( $pages );
153 }
154 }
155
156 public function getAllowedParams() {
157 return [
158 'from' => null,
159 'continue' => [
160 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
161 ],
162 'to' => null,
163 'prefix' => null,
164 'dir' => [
165 ApiBase::PARAM_DFLT => 'ascending',
167 'ascending',
168 'descending'
169 ],
170 ],
171 'min' => [
172 ApiBase::PARAM_TYPE => 'integer'
173 ],
174 'max' => [
175 ApiBase::PARAM_TYPE => 'integer'
176 ],
177 'limit' => [
179 ApiBase::PARAM_TYPE => 'limit',
183 ],
184 'prop' => [
185 ApiBase::PARAM_TYPE => [ 'size', 'hidden' ],
189 ],
190 ];
191 }
192
193 protected function getExamplesMessages() {
194 return [
195 'action=query&list=allcategories&acprop=size'
196 => 'apihelp-query+allcategories-example-size',
197 'action=query&generator=allcategories&gacprefix=List&prop=info'
198 => 'apihelp-query+allcategories-example-generator',
199 ];
200 }
201
202 public function getHelpUrls() {
203 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Allcategories';
204 }
205}
const NS_CATEGORY
Definition Defines.php:78
const PARAM_MAX2
Definition ApiBase.php:89
const PARAM_MAX
Definition ApiBase.php:85
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
Definition ApiBase.php:1620
const PARAM_TYPE
Definition ApiBase.php:81
const PARAM_DFLT
Definition ApiBase.php:73
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:195
const PARAM_MIN
Definition ApiBase.php:93
const LIMIT_BIG1
Fast query, standard limit.
Definition ApiBase.php:220
getResult()
Get the result object.
Definition ApiBase.php:628
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:764
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:162
const LIMIT_BIG2
Fast query, apihighlimits limit.
Definition ApiBase.php:222
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:497
const PARAM_ISMULTI
Definition ApiBase.php:77
Query module to enumerate all categories, even the ones that don't have category pages.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
__construct(ApiQuery $query, $moduleName)
executeGenerator( $resultPageSet)
Execute this module as a generator.
getExamplesMessages()
Returns usage examples for this module.
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.
getHelpUrls()
Return links to more detailed help pages about the module.
run( $resultPageSet=null)
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.
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.
addFieldsIf( $value, $condition)
Same as addFields(), but add the fields only if a condition is met.
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
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.
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
This is the main query class.
Definition ApiQuery.php:37