(bug 19195) Make user IDs more readily available with the API
[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 $dir = ( $params['dir'] == 'descending' ? 'older' : 'newer' );
62 $from = ( is_null( $params['from'] ) ? null : $this->titlePartToKey( $params['from'] ) );
63 $to = ( is_null( $params['to'] ) ? null : $this->titlePartToKey( $params['to'] ) );
64 $this->addWhereRange( 'cat_title', $dir, $from, $to );
65
66 $min = $params['min'];
67 $max = $params['max'];
68 if ( $dir == 'newer' ) {
69 $this->addWhereRange( 'cat_pages', 'newer', $min, $max );
70 } else {
71 $this->addWhereRange( 'cat_pages', 'older', $max, $min);
72 }
73
74
75 if ( isset( $params['prefix'] ) ) {
76 $this->addWhere( 'cat_title' . $db->buildLike( $this->titlePartToKey( $params['prefix'] ), $db->anyString() ) );
77 }
78
79 $this->addOption( 'LIMIT', $params['limit'] + 1 );
80 $this->addOption( 'ORDER BY', 'cat_title' . ( $params['dir'] == 'descending' ? ' DESC' : '' ) );
81
82 $prop = array_flip( $params['prop'] );
83 $this->addFieldsIf( array( 'cat_pages', 'cat_subcats', 'cat_files' ), isset( $prop['size'] ) );
84 if ( isset( $prop['hidden'] ) ) {
85 $this->addTables( array( 'page', 'page_props' ) );
86 $this->addJoinConds( array(
87 'page' => array( 'LEFT JOIN', array(
88 'page_namespace' => NS_CATEGORY,
89 'page_title=cat_title' ) ),
90 'page_props' => array( 'LEFT JOIN', array(
91 'pp_page=page_id',
92 'pp_propname' => 'hiddencat' ) ),
93 ) );
94 $this->addFields( 'pp_propname AS cat_hidden' );
95 }
96
97 $res = $this->select( __METHOD__ );
98
99 $pages = array();
100
101 $result = $this->getResult();
102 $count = 0;
103 foreach ( $res as $row ) {
104 if ( ++ $count > $params['limit'] ) {
105 // We've reached the one extra which shows that there are additional cats to be had. Stop here...
106 // TODO: Security issue - if the user has no right to view next title, it will still be shown
107 $this->setContinueEnumParameter( 'from', $this->keyToTitle( $row->cat_title ) );
108 break;
109 }
110
111 // Normalize titles
112 $titleObj = Title::makeTitle( NS_CATEGORY, $row->cat_title );
113 if ( !is_null( $resultPageSet ) ) {
114 $pages[] = $titleObj->getPrefixedText();
115 } else {
116 $item = array();
117 $result->setContent( $item, $titleObj->getText() );
118 if ( isset( $prop['size'] ) ) {
119 $item['size'] = intval( $row->cat_pages );
120 $item['pages'] = $row->cat_pages - $row->cat_subcats - $row->cat_files;
121 $item['files'] = intval( $row->cat_files );
122 $item['subcats'] = intval( $row->cat_subcats );
123 }
124 if ( isset( $prop['hidden'] ) && $row->cat_hidden ) {
125 $item['hidden'] = '';
126 }
127 $fit = $result->addValue( array( 'query', $this->getModuleName() ), null, $item );
128 if ( !$fit ) {
129 $this->setContinueEnumParameter( 'from', $this->keyToTitle( $row->cat_title ) );
130 break;
131 }
132 }
133 }
134
135 if ( is_null( $resultPageSet ) ) {
136 $result->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'c' );
137 } else {
138 $resultPageSet->populateFromTitles( $pages );
139 }
140 }
141
142 public function getAllowedParams() {
143 return array(
144 'from' => null,
145 'to' => null,
146 'prefix' => null,
147 'dir' => array(
148 ApiBase::PARAM_DFLT => 'ascending',
149 ApiBase::PARAM_TYPE => array(
150 'ascending',
151 'descending'
152 ),
153 ),
154 'min' => array(
155 ApiBase::PARAM_DFLT => null,
156 ApiBase::PARAM_TYPE => 'integer'
157 ),
158 'max' => array(
159 ApiBase::PARAM_DFLT => null,
160 ApiBase::PARAM_TYPE => 'integer'
161 ),
162 'limit' => array(
163 ApiBase::PARAM_DFLT => 10,
164 ApiBase::PARAM_TYPE => 'limit',
165 ApiBase::PARAM_MIN => 1,
166 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
167 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
168 ),
169 'prop' => array(
170 ApiBase::PARAM_TYPE => array( 'size', 'hidden' ),
171 ApiBase::PARAM_DFLT => '',
172 ApiBase::PARAM_ISMULTI => true
173 ),
174 );
175 }
176
177 public function getParamDescription() {
178 return array(
179 'from' => 'The category to start enumerating from',
180 'to' => 'The category to stop enumerating at',
181 'prefix' => 'Search for all category titles that begin with this value',
182 'dir' => 'Direction to sort in',
183 'min' => 'Minimum number of category members',
184 'max' => 'Maximum number of category members',
185 'limit' => 'How many categories to return',
186 'prop' => array(
187 'Which properties to get',
188 ' size - Adds number of pages in the category',
189 ' hidden - Tags categories that are hidden with __HIDDENCAT__',
190 ),
191 );
192 }
193
194 public function getDescription() {
195 return 'Enumerate all categories';
196 }
197
198 public function getExamples() {
199 return array(
200 'api.php?action=query&list=allcategories&acprop=size',
201 'api.php?action=query&generator=allcategories&gacprefix=List&prop=info',
202 );
203 }
204
205 public function getHelpUrls() {
206 return 'https://www.mediawiki.org/wiki/API:Allcategories';
207 }
208
209 public function getVersion() {
210 return __CLASS__ . ': $Id$';
211 }
212 }