Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / api / ApiQueryAllCategories.php
blob613225d01ff6b84969747974a41becea52806a41
1 <?php
2 /**
3 * Copyright © 2007 Roan Kattouw <roan.kattouw@gmail.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
23 namespace MediaWiki\Api;
25 use MediaWiki\Title\Title;
26 use Wikimedia\ParamValidator\ParamValidator;
27 use Wikimedia\ParamValidator\TypeDef\IntegerDef;
28 use Wikimedia\Rdbms\IExpression;
29 use Wikimedia\Rdbms\LikeValue;
31 /**
32 * Query module to enumerate all categories, even the ones that don't have
33 * category pages.
35 * @ingroup API
37 class ApiQueryAllCategories extends ApiQueryGeneratorBase {
39 public function __construct( ApiQuery $query, string $moduleName ) {
40 parent::__construct( $query, $moduleName, 'ac' );
43 public function execute() {
44 $this->run();
47 public function getCacheMode( $params ) {
48 return 'public';
51 public function executeGenerator( $resultPageSet ) {
52 $this->run( $resultPageSet );
55 /**
56 * @param ApiPageSet|null $resultPageSet
58 private function run( $resultPageSet = null ) {
59 $db = $this->getDB();
60 $params = $this->extractRequestParams();
62 $this->addTables( 'category' );
63 $this->addFields( 'cat_title' );
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] ) );
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 );
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 );
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() )
98 $this->addOption( 'LIMIT', $params['limit'] + 1 );
99 $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
100 $this->addOption( 'ORDER BY', 'cat_title' . $sort );
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' ] );
117 $res = $this->select( __METHOD__ );
119 $pages = [];
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;
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;
144 if ( isset( $prop['hidden'] ) ) {
145 $item['hidden'] = (bool)$row->cat_hidden;
147 $fit = $result->addValue( [ 'query', $this->getModuleName() ], null, $item );
148 if ( !$fit ) {
149 $this->setContinueEnumParameter( 'continue', $row->cat_title );
150 break;
155 if ( $resultPageSet === null ) {
156 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'c' );
157 } else {
158 $resultPageSet->populateFromTitles( $pages );
162 public function getAllowedParams() {
163 return [
164 'from' => null,
165 'continue' => [
166 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
168 'to' => null,
169 'prefix' => null,
170 'dir' => [
171 ParamValidator::PARAM_DEFAULT => 'ascending',
172 ParamValidator::PARAM_TYPE => [
173 'ascending',
174 'descending'
177 'min' => [
178 ParamValidator::PARAM_TYPE => 'integer'
180 'max' => [
181 ParamValidator::PARAM_TYPE => 'integer'
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
190 'prop' => [
191 ParamValidator::PARAM_TYPE => [ 'size', 'hidden' ],
192 ParamValidator::PARAM_DEFAULT => '',
193 ParamValidator::PARAM_ISMULTI => true,
194 ApiBase::PARAM_HELP_MSG_PER_VALUE => [],
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',
208 public function getHelpUrls() {
209 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Allcategories';
213 /** @deprecated class alias since 1.43 */
214 class_alias( ApiQueryAllCategories::class, 'ApiQueryAllCategories' );