MediaWiki REL1_39
ApiQueryCategories.php
Go to the documentation of this file.
1<?php
25
32
37 public function __construct( ApiQuery $query, $moduleName ) {
38 parent::__construct( $query, $moduleName, 'cl' );
39 }
40
41 public function execute() {
42 $this->run();
43 }
44
45 public function getCacheMode( $params ) {
46 return 'public';
47 }
48
49 public function executeGenerator( $resultPageSet ) {
50 $this->run( $resultPageSet );
51 }
52
56 private function run( $resultPageSet = null ) {
57 $pages = $this->getPageSet()->getGoodPages();
58 if ( $pages === [] ) {
59 return; // nothing to do
60 }
61
62 $params = $this->extractRequestParams();
63 $prop = array_fill_keys( (array)$params['prop'], true );
64 $show = array_fill_keys( (array)$params['show'], true );
65
66 $this->addFields( [
67 'cl_from',
68 'cl_to'
69 ] );
70
71 $this->addFieldsIf( [ 'cl_sortkey', 'cl_sortkey_prefix' ], isset( $prop['sortkey'] ) );
72 $this->addFieldsIf( 'cl_timestamp', isset( $prop['timestamp'] ) );
73
74 $this->addTables( 'categorylinks' );
75 $this->addWhereFld( 'cl_from', array_keys( $pages ) );
76 if ( $params['categories'] ) {
77 $cats = [];
78 foreach ( $params['categories'] as $cat ) {
79 $title = Title::newFromText( $cat );
80 if ( !$title || $title->getNamespace() !== NS_CATEGORY ) {
81 $this->addWarning( [ 'apiwarn-invalidcategory', wfEscapeWikiText( $cat ) ] );
82 } else {
83 $cats[] = $title->getDBkey();
84 }
85 }
86 if ( !$cats ) {
87 // No titles so no results
88 return;
89 }
90 $this->addWhereFld( 'cl_to', $cats );
91 }
92
93 if ( $params['continue'] !== null ) {
94 $cont = explode( '|', $params['continue'] );
95 $this->dieContinueUsageIf( count( $cont ) != 2 );
96 $op = $params['dir'] == 'descending' ? '<' : '>';
97 $clfrom = (int)$cont[0];
98 $clto = $this->getDB()->addQuotes( $cont[1] );
99 $this->addWhere(
100 "cl_from $op $clfrom OR " .
101 "(cl_from = $clfrom AND " .
102 "cl_to $op= $clto)"
103 );
104 }
105
106 if ( isset( $show['hidden'] ) && isset( $show['!hidden'] ) ) {
107 $this->dieWithError( 'apierror-show' );
108 }
109 if ( isset( $show['hidden'] ) || isset( $show['!hidden'] ) || isset( $prop['hidden'] ) ) {
110 $this->addOption( 'STRAIGHT_JOIN' );
111 $this->addTables( [ 'page', 'page_props' ] );
112 $this->addFieldsIf( 'pp_propname', isset( $prop['hidden'] ) );
113 $this->addJoinConds( [
114 'page' => [ 'LEFT JOIN', [
115 'page_namespace' => NS_CATEGORY,
116 'page_title = cl_to' ] ],
117 'page_props' => [ 'LEFT JOIN', [
118 'pp_page=page_id',
119 'pp_propname' => 'hiddencat' ] ]
120 ] );
121 if ( isset( $show['hidden'] ) ) {
122 $this->addWhere( [ 'pp_propname IS NOT NULL' ] );
123 } elseif ( isset( $show['!hidden'] ) ) {
124 $this->addWhere( [ 'pp_propname IS NULL' ] );
125 }
126 }
127
128 $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
129 // Don't order by cl_from if it's constant in the WHERE clause
130 if ( count( $pages ) === 1 ) {
131 $this->addOption( 'ORDER BY', 'cl_to' . $sort );
132 } else {
133 $this->addOption( 'ORDER BY', [
134 'cl_from' . $sort,
135 'cl_to' . $sort
136 ] );
137 }
138 $this->addOption( 'LIMIT', $params['limit'] + 1 );
139
140 $res = $this->select( __METHOD__ );
141
142 $count = 0;
143 if ( $resultPageSet === null ) {
144 foreach ( $res as $row ) {
145 if ( ++$count > $params['limit'] ) {
146 // We've reached the one extra which shows that
147 // there are additional pages to be had. Stop here...
148 $this->setContinueEnumParameter( 'continue', $row->cl_from . '|' . $row->cl_to );
149 break;
150 }
151
152 $title = Title::makeTitle( NS_CATEGORY, $row->cl_to );
153 $vals = [];
155 if ( isset( $prop['sortkey'] ) ) {
156 $vals['sortkey'] = bin2hex( $row->cl_sortkey );
157 $vals['sortkeyprefix'] = $row->cl_sortkey_prefix;
158 }
159 if ( isset( $prop['timestamp'] ) ) {
160 $vals['timestamp'] = wfTimestamp( TS_ISO_8601, $row->cl_timestamp );
161 }
162 if ( isset( $prop['hidden'] ) ) {
163 $vals['hidden'] = $row->pp_propname !== null;
164 }
165
166 $fit = $this->addPageSubItem( $row->cl_from, $vals );
167 if ( !$fit ) {
168 $this->setContinueEnumParameter( 'continue', $row->cl_from . '|' . $row->cl_to );
169 break;
170 }
171 }
172 } else {
173 $titles = [];
174 foreach ( $res as $row ) {
175 if ( ++$count > $params['limit'] ) {
176 // We've reached the one extra which shows that
177 // there are additional pages to be had. Stop here...
178 $this->setContinueEnumParameter( 'continue', $row->cl_from . '|' . $row->cl_to );
179 break;
180 }
181
182 $titles[] = Title::makeTitle( NS_CATEGORY, $row->cl_to );
183 }
184 $resultPageSet->populateFromTitles( $titles );
185 }
186 }
187
188 public function getAllowedParams() {
189 return [
190 'prop' => [
191 ParamValidator::PARAM_ISMULTI => true,
192 ParamValidator::PARAM_TYPE => [
193 'sortkey',
194 'timestamp',
195 'hidden',
196 ],
198 ],
199 'show' => [
200 ParamValidator::PARAM_ISMULTI => true,
201 ParamValidator::PARAM_TYPE => [
202 'hidden',
203 '!hidden',
204 ]
205 ],
206 'limit' => [
207 ParamValidator::PARAM_DEFAULT => 10,
208 ParamValidator::PARAM_TYPE => 'limit',
209 IntegerDef::PARAM_MIN => 1,
210 IntegerDef::PARAM_MAX => ApiBase::LIMIT_BIG1,
211 IntegerDef::PARAM_MAX2 => ApiBase::LIMIT_BIG2
212 ],
213 'continue' => [
214 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
215 ],
216 'categories' => [
217 ParamValidator::PARAM_ISMULTI => true,
218 ],
219 'dir' => [
220 ParamValidator::PARAM_DEFAULT => 'ascending',
221 ParamValidator::PARAM_TYPE => [
222 'ascending',
223 'descending'
224 ]
225 ],
226 ];
227 }
228
229 protected function getExamplesMessages() {
230 return [
231 'action=query&prop=categories&titles=Albert%20Einstein'
232 => 'apihelp-query+categories-example-simple',
233 'action=query&generator=categories&titles=Albert%20Einstein&prop=info'
234 => 'apihelp-query+categories-example-generator',
235 ];
236 }
237
238 public function getHelpUrls() {
239 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Categories';
240 }
241}
const NS_CATEGORY
Definition Defines.php:78
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
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_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
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
addWarning( $msg, $code=null, $data=null)
Add a warning for this module.
Definition ApiBase.php:1372
const LIMIT_BIG2
Fast query, apihighlimits limit.
Definition ApiBase.php:223
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
addFields( $value)
Add a set of fields to select to the internal array.
addPageSubItem( $pageId, $item, $elemname=null)
Same as addPageSubItems(), but one element of $data at a time.
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.
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 categories the set of pages belong to.
executeGenerator( $resultPageSet)
Execute this module as a generator.
__construct(ApiQuery $query, $moduleName)
getHelpUrls()
Return links to more detailed help pages about the module.
getExamplesMessages()
Returns usage examples for this module.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
getPageSet()
Get the PageSet object to work on.
This is the main query class.
Definition ApiQuery.php:41
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition Title.php:370
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.