c2beaec6a7e5b3f28a9945b0c89f04ecd67a2f97
[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 if ( count( $cont ) != 1 ) {
64 $this->dieUsage( "Invalid continue param. You should pass the " .
65 "original value returned by the previous query", "_badcontinue" );
66 }
67 $op = $params['dir'] == 'descending' ? '<' : '>';
68 $cont_from = $db->addQuotes( $cont[0] );
69 $this->addWhere( "cat_title $op= $cont_from" );
70 }
71
72 $dir = ( $params['dir'] == 'descending' ? 'older' : 'newer' );
73 $from = ( is_null( $params['from'] ) ? null : $this->titlePartToKey( $params['from'] ) );
74 $to = ( is_null( $params['to'] ) ? null : $this->titlePartToKey( $params['to'] ) );
75 $this->addWhereRange( 'cat_title', $dir, $from, $to );
76
77 $min = $params['min'];
78 $max = $params['max'];
79 if ( $dir == 'newer' ) {
80 $this->addWhereRange( 'cat_pages', 'newer', $min, $max );
81 } else {
82 $this->addWhereRange( 'cat_pages', 'older', $max, $min);
83 }
84
85 if ( isset( $params['prefix'] ) ) {
86 $this->addWhere( 'cat_title' . $db->buildLike( $this->titlePartToKey( $params['prefix'] ), $db->anyString() ) );
87 }
88
89 $this->addOption( 'LIMIT', $params['limit'] + 1 );
90 $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
91 $this->addOption( 'ORDER BY', 'cat_title' . $sort );
92
93 $prop = array_flip( $params['prop'] );
94 $this->addFieldsIf( array( 'cat_pages', 'cat_subcats', 'cat_files' ), isset( $prop['size'] ) );
95 if ( isset( $prop['hidden'] ) ) {
96 $this->addTables( array( 'page', 'page_props' ) );
97 $this->addJoinConds( array(
98 'page' => array( 'LEFT JOIN', array(
99 'page_namespace' => NS_CATEGORY,
100 'page_title=cat_title' ) ),
101 'page_props' => array( 'LEFT JOIN', array(
102 'pp_page=page_id',
103 'pp_propname' => 'hiddencat' ) ),
104 ) );
105 $this->addFields( array( 'cat_hidden' => 'pp_propname' ) );
106 }
107
108 $res = $this->select( __METHOD__ );
109
110 $pages = array();
111
112 $result = $this->getResult();
113 $count = 0;
114 foreach ( $res as $row ) {
115 if ( ++ $count > $params['limit'] ) {
116 // We've reached the one extra which shows that there are additional cats to be had. Stop here...
117 $this->setContinueEnumParameter( 'continue', $row->cat_title );
118 break;
119 }
120
121 // Normalize titles
122 $titleObj = Title::makeTitle( NS_CATEGORY, $row->cat_title );
123 if ( !is_null( $resultPageSet ) ) {
124 $pages[] = $titleObj;
125 } else {
126 $item = array();
127 $result->setContent( $item, $titleObj->getText() );
128 if ( isset( $prop['size'] ) ) {
129 $item['size'] = intval( $row->cat_pages );
130 $item['pages'] = $row->cat_pages - $row->cat_subcats - $row->cat_files;
131 $item['files'] = intval( $row->cat_files );
132 $item['subcats'] = intval( $row->cat_subcats );
133 }
134 if ( isset( $prop['hidden'] ) && $row->cat_hidden ) {
135 $item['hidden'] = '';
136 }
137 $fit = $result->addValue( array( 'query', $this->getModuleName() ), null, $item );
138 if ( !$fit ) {
139 $this->setContinueEnumParameter( 'continue', $row->cat_title );
140 break;
141 }
142 }
143 }
144
145 if ( is_null( $resultPageSet ) ) {
146 $result->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'c' );
147 } else {
148 $resultPageSet->populateFromTitles( $pages );
149 }
150 }
151
152 public function getAllowedParams() {
153 return array(
154 'from' => null,
155 'continue' => null,
156 'to' => null,
157 'prefix' => null,
158 'dir' => array(
159 ApiBase::PARAM_DFLT => 'ascending',
160 ApiBase::PARAM_TYPE => array(
161 'ascending',
162 'descending'
163 ),
164 ),
165 'min' => array(
166 ApiBase::PARAM_DFLT => null,
167 ApiBase::PARAM_TYPE => 'integer'
168 ),
169 'max' => array(
170 ApiBase::PARAM_DFLT => null,
171 ApiBase::PARAM_TYPE => 'integer'
172 ),
173 'limit' => array(
174 ApiBase::PARAM_DFLT => 10,
175 ApiBase::PARAM_TYPE => 'limit',
176 ApiBase::PARAM_MIN => 1,
177 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
178 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
179 ),
180 'prop' => array(
181 ApiBase::PARAM_TYPE => array( 'size', 'hidden' ),
182 ApiBase::PARAM_DFLT => '',
183 ApiBase::PARAM_ISMULTI => true
184 ),
185 );
186 }
187
188 public function getParamDescription() {
189 return array(
190 'from' => 'The category to start enumerating from',
191 'continue' => 'When more results are available, use this to continue',
192 'to' => 'The category to stop enumerating at',
193 'prefix' => 'Search for all category titles that begin with this value',
194 'dir' => 'Direction to sort in',
195 'min' => 'Minimum number of category members',
196 'max' => 'Maximum number of category members',
197 'limit' => 'How many categories to return',
198 'prop' => array(
199 'Which properties to get',
200 ' size - Adds number of pages in the category',
201 ' hidden - Tags categories that are hidden with __HIDDENCAT__',
202 ),
203 );
204 }
205
206 public function getResultProperties() {
207 return array(
208 '' => array(
209 '*' => 'string'
210 ),
211 'size' => array(
212 'size' => 'integer',
213 'pages' => 'integer',
214 'files' => 'integer',
215 'subcats' => 'integer'
216 ),
217 'hidden' => array(
218 'hidden' => 'boolean'
219 )
220 );
221 }
222
223 public function getDescription() {
224 return 'Enumerate all categories';
225 }
226
227 public function getPossibleErrors() {
228 return array_merge( parent::getPossibleErrors(), array(
229 array( 'code' => '_badcontinue', 'info' => 'Invalid continue param. You should pass the original value returned by the previous query' ),
230 ) );
231 }
232
233 public function getExamples() {
234 return array(
235 'api.php?action=query&list=allcategories&acprop=size',
236 'api.php?action=query&generator=allcategories&gacprefix=List&prop=info',
237 );
238 }
239
240 public function getHelpUrls() {
241 return 'https://www.mediawiki.org/wiki/API:Allcategories';
242 }
243
244 public function getVersion() {
245 return __CLASS__ . ': $Id$';
246 }
247 }