MediaWiki  master
ApiQueryAllCategories.php
Go to the documentation of this file.
1 <?php
26 
34 
39  public function __construct( ApiQuery $query, $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->buildComparison( $op, [ 'cat_title' => $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( 'cat_title' . $db->buildLike(
90  $this->titlePartToKey( $params['prefix'], NS_CATEGORY ),
91  $db->anyString() ) );
92  }
93 
94  $this->addOption( 'LIMIT', $params['limit'] + 1 );
95  $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
96  $this->addOption( 'ORDER BY', 'cat_title' . $sort );
97 
98  $prop = array_fill_keys( $params['prop'], true );
99  $this->addFieldsIf( [ 'cat_pages', 'cat_subcats', 'cat_files' ], isset( $prop['size'] ) );
100  if ( isset( $prop['hidden'] ) ) {
101  $this->addTables( [ 'page', 'page_props' ] );
102  $this->addJoinConds( [
103  'page' => [ 'LEFT JOIN', [
104  'page_namespace' => NS_CATEGORY,
105  'page_title=cat_title' ] ],
106  'page_props' => [ 'LEFT JOIN', [
107  'pp_page=page_id',
108  'pp_propname' => 'hiddencat' ] ],
109  ] );
110  $this->addFields( [ 'cat_hidden' => 'pp_propname' ] );
111  }
112 
113  $res = $this->select( __METHOD__ );
114 
115  $pages = [];
116 
117  $result = $this->getResult();
118  $count = 0;
119  foreach ( $res as $row ) {
120  if ( ++$count > $params['limit'] ) {
121  // We've reached the one extra which shows that there are
122  // additional cats to be had. Stop here...
123  $this->setContinueEnumParameter( 'continue', $row->cat_title );
124  break;
125  }
126 
127  // Normalize titles
128  $titleObj = Title::makeTitle( NS_CATEGORY, $row->cat_title );
129  if ( $resultPageSet !== null ) {
130  $pages[] = $titleObj;
131  } else {
132  $item = [];
133  ApiResult::setContentValue( $item, 'category', $titleObj->getText() );
134  if ( isset( $prop['size'] ) ) {
135  $item['size'] = (int)$row->cat_pages;
136  $item['pages'] = $row->cat_pages - $row->cat_subcats - $row->cat_files;
137  $item['files'] = (int)$row->cat_files;
138  $item['subcats'] = (int)$row->cat_subcats;
139  }
140  if ( isset( $prop['hidden'] ) ) {
141  $item['hidden'] = (bool)$row->cat_hidden;
142  }
143  $fit = $result->addValue( [ 'query', $this->getModuleName() ], null, $item );
144  if ( !$fit ) {
145  $this->setContinueEnumParameter( 'continue', $row->cat_title );
146  break;
147  }
148  }
149  }
150 
151  if ( $resultPageSet === null ) {
152  $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'c' );
153  } else {
154  $resultPageSet->populateFromTitles( $pages );
155  }
156  }
157 
158  public function getAllowedParams() {
159  return [
160  'from' => null,
161  'continue' => [
162  ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
163  ],
164  'to' => null,
165  'prefix' => null,
166  'dir' => [
167  ParamValidator::PARAM_DEFAULT => 'ascending',
168  ParamValidator::PARAM_TYPE => [
169  'ascending',
170  'descending'
171  ],
172  ],
173  'min' => [
174  ParamValidator::PARAM_TYPE => 'integer'
175  ],
176  'max' => [
177  ParamValidator::PARAM_TYPE => 'integer'
178  ],
179  'limit' => [
180  ParamValidator::PARAM_DEFAULT => 10,
181  ParamValidator::PARAM_TYPE => 'limit',
182  IntegerDef::PARAM_MIN => 1,
183  IntegerDef::PARAM_MAX => ApiBase::LIMIT_BIG1,
184  IntegerDef::PARAM_MAX2 => ApiBase::LIMIT_BIG2
185  ],
186  'prop' => [
187  ParamValidator::PARAM_TYPE => [ 'size', 'hidden' ],
188  ParamValidator::PARAM_DEFAULT => '',
189  ParamValidator::PARAM_ISMULTI => true,
191  ],
192  ];
193  }
194 
195  protected function getExamplesMessages() {
196  return [
197  'action=query&list=allcategories&acprop=size'
198  => 'apihelp-query+allcategories-example-size',
199  'action=query&generator=allcategories&gacprefix=List&prop=info'
200  => 'apihelp-query+allcategories-example-generator',
201  ];
202  }
203 
204  public function getHelpUrls() {
205  return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Allcategories';
206  }
207 }
const NS_CATEGORY
Definition: Defines.php:78
parseContinueParamOrDie(string $continue, array $types)
Parse the 'continue' parameter in the usual format and validate the types of each part,...
Definition: ApiBase.php:1649
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, or 'string' with PARAM_ISMULTI,...
Definition: ApiBase.php:204
const LIMIT_BIG1
Fast query, standard limit.
Definition: ApiBase.php:229
getResult()
Get the result object.
Definition: ApiBase.php:637
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition: ApiBase.php:773
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition: ApiBase.php:166
const LIMIT_BIG2
Fast query, apihighlimits limit.
Definition: ApiBase.php:231
getModuleName()
Get the name of the module being executed by this instance.
Definition: ApiBase.php:506
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.
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:42
static setContentValue(array &$arr, $name, $value, $flags=0)
Add an output value to the array by name and mark as META_CONTENT.
Definition: ApiResult.php:467
Represents a title within MediaWiki.
Definition: Title.php:82
Service for formatting and validating API parameters.
Type definition for integer types.
Definition: IntegerDef.php:23