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