(bug 17602) fix Monobook action tabs not quite touching the page body
[lhc/web/wiklou.git] / includes / api / ApiQueryAllCategories.php
1 <?php
2 /**
3 *
4 *
5 * Created on December 12, 2007
6 *
7 * Copyright © 2007 Roan Kattouw "<Firstname>.<Lastname>@gmail.com"
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 */
26
27 /**
28 * Query module to enumerate all categories, even the ones that don't have
29 * category pages.
30 *
31 * @ingroup API
32 */
33 class ApiQueryAllCategories extends ApiQueryGeneratorBase {
34
35 public function __construct( $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
51 /**
52 * @param $resultPageSet ApiPageSet
53 */
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 ( !is_null( $params['continue'] ) ) {
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 = ( is_null( $params['from'] ) ? null : $this->titlePartToKey( $params['from'] ) );
71 $to = ( is_null( $params['to'] ) ? null : $this->titlePartToKey( $params['to'] ) );
72 $this->addWhereRange( 'cat_title', $dir, $from, $to );
73
74 $min = $params['min'];
75 $max = $params['max'];
76 if ( $dir == 'newer' ) {
77 $this->addWhereRange( 'cat_pages', 'newer', $min, $max );
78 } else {
79 $this->addWhereRange( 'cat_pages', 'older', $max, $min );
80 }
81
82 if ( isset( $params['prefix'] ) ) {
83 $this->addWhere( 'cat_title' . $db->buildLike( $this->titlePartToKey( $params['prefix'] ), $db->anyString() ) );
84 }
85
86 $this->addOption( 'LIMIT', $params['limit'] + 1 );
87 $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
88 $this->addOption( 'ORDER BY', 'cat_title' . $sort );
89
90 $prop = array_flip( $params['prop'] );
91 $this->addFieldsIf( array( 'cat_pages', 'cat_subcats', 'cat_files' ), isset( $prop['size'] ) );
92 if ( isset( $prop['hidden'] ) ) {
93 $this->addTables( array( 'page', 'page_props' ) );
94 $this->addJoinConds( array(
95 'page' => array( 'LEFT JOIN', array(
96 'page_namespace' => NS_CATEGORY,
97 'page_title=cat_title' ) ),
98 'page_props' => array( 'LEFT JOIN', array(
99 'pp_page=page_id',
100 'pp_propname' => 'hiddencat' ) ),
101 ) );
102 $this->addFields( array( 'cat_hidden' => 'pp_propname' ) );
103 }
104
105 $res = $this->select( __METHOD__ );
106
107 $pages = array();
108
109 $result = $this->getResult();
110 $count = 0;
111 foreach ( $res as $row ) {
112 if ( ++ $count > $params['limit'] ) {
113 // We've reached the one extra which shows that there are additional cats to be had. Stop here...
114 $this->setContinueEnumParameter( 'continue', $row->cat_title );
115 break;
116 }
117
118 // Normalize titles
119 $titleObj = Title::makeTitle( NS_CATEGORY, $row->cat_title );
120 if ( !is_null( $resultPageSet ) ) {
121 $pages[] = $titleObj;
122 } else {
123 $item = array();
124 $result->setContent( $item, $titleObj->getText() );
125 if ( isset( $prop['size'] ) ) {
126 $item['size'] = intval( $row->cat_pages );
127 $item['pages'] = $row->cat_pages - $row->cat_subcats - $row->cat_files;
128 $item['files'] = intval( $row->cat_files );
129 $item['subcats'] = intval( $row->cat_subcats );
130 }
131 if ( isset( $prop['hidden'] ) && $row->cat_hidden ) {
132 $item['hidden'] = '';
133 }
134 $fit = $result->addValue( array( 'query', $this->getModuleName() ), null, $item );
135 if ( !$fit ) {
136 $this->setContinueEnumParameter( 'continue', $row->cat_title );
137 break;
138 }
139 }
140 }
141
142 if ( is_null( $resultPageSet ) ) {
143 $result->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'c' );
144 } else {
145 $resultPageSet->populateFromTitles( $pages );
146 }
147 }
148
149 public function getAllowedParams() {
150 return array(
151 'from' => null,
152 'continue' => null,
153 'to' => null,
154 'prefix' => null,
155 'dir' => array(
156 ApiBase::PARAM_DFLT => 'ascending',
157 ApiBase::PARAM_TYPE => array(
158 'ascending',
159 'descending'
160 ),
161 ),
162 'min' => array(
163 ApiBase::PARAM_DFLT => null,
164 ApiBase::PARAM_TYPE => 'integer'
165 ),
166 'max' => array(
167 ApiBase::PARAM_DFLT => null,
168 ApiBase::PARAM_TYPE => 'integer'
169 ),
170 'limit' => array(
171 ApiBase::PARAM_DFLT => 10,
172 ApiBase::PARAM_TYPE => 'limit',
173 ApiBase::PARAM_MIN => 1,
174 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
175 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
176 ),
177 'prop' => array(
178 ApiBase::PARAM_TYPE => array( 'size', 'hidden' ),
179 ApiBase::PARAM_DFLT => '',
180 ApiBase::PARAM_ISMULTI => true
181 ),
182 );
183 }
184
185 public function getParamDescription() {
186 return array(
187 'from' => 'The category to start enumerating from',
188 'continue' => 'When more results are available, use this to continue',
189 'to' => 'The category to stop enumerating at',
190 'prefix' => 'Search for all category titles that begin with this value',
191 'dir' => 'Direction to sort in',
192 'min' => 'Minimum number of category members',
193 'max' => 'Maximum number of category members',
194 'limit' => 'How many categories to return',
195 'prop' => array(
196 'Which properties to get',
197 ' size - Adds number of pages in the category',
198 ' hidden - Tags categories that are hidden with __HIDDENCAT__',
199 ),
200 );
201 }
202
203 public function getResultProperties() {
204 return array(
205 '' => array(
206 '*' => 'string'
207 ),
208 'size' => array(
209 'size' => 'integer',
210 'pages' => 'integer',
211 'files' => 'integer',
212 'subcats' => 'integer'
213 ),
214 'hidden' => array(
215 'hidden' => 'boolean'
216 )
217 );
218 }
219
220 public function getDescription() {
221 return 'Enumerate all categories';
222 }
223
224 public function getExamples() {
225 return array(
226 'api.php?action=query&list=allcategories&acprop=size',
227 'api.php?action=query&generator=allcategories&gacprefix=List&prop=info',
228 );
229 }
230
231 public function getHelpUrls() {
232 return 'https://www.mediawiki.org/wiki/API:Allcategories';
233 }
234 }