(bug 27862; follow-up r77714) Make emailuser api module not freak out when SpecialEma...
[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 if ( !defined( 'MEDIAWIKI' ) ) {
28 // Eclipse helper - will be ignored in production
29 require_once( 'ApiQueryBase.php' );
30 }
31
32 /**
33 * Query module to enumerate all categories, even the ones that don't have
34 * category pages.
35 *
36 * @ingroup API
37 */
38 class ApiQueryAllCategories extends ApiQueryGeneratorBase {
39
40 public function __construct( $query, $moduleName ) {
41 parent::__construct( $query, $moduleName, 'ac' );
42 }
43
44 public function execute() {
45 $this->run();
46 }
47
48 public function getCacheMode( $params ) {
49 return 'public';
50 }
51
52 public function executeGenerator( $resultPageSet ) {
53 $this->run( $resultPageSet );
54 }
55
56 /**
57 * @param $resultPageSet ApiPageSet
58 * @return void
59 */
60 private function run( $resultPageSet = null ) {
61 $db = $this->getDB();
62 $params = $this->extractRequestParams();
63
64 $this->addTables( 'category' );
65 $this->addFields( 'cat_title' );
66
67 $dir = ( $params['dir'] == 'descending' ? 'older' : 'newer' );
68 $from = ( is_null( $params['from'] ) ? null : $this->titlePartToKey( $params['from'] ) );
69 $to = ( is_null( $params['to'] ) ? null : $this->titlePartToKey( $params['to'] ) );
70 $this->addWhereRange( 'cat_title', $dir, $from, $to );
71
72 if ( isset( $params['prefix'] ) ) {
73 $this->addWhere( 'cat_title' . $db->buildLike( $this->titlePartToKey( $params['prefix'] ), $db->anyString() ) );
74 }
75
76 $this->addOption( 'LIMIT', $params['limit'] + 1 );
77 $this->addOption( 'ORDER BY', 'cat_title' . ( $params['dir'] == 'descending' ? ' DESC' : '' ) );
78
79 $prop = array_flip( $params['prop'] );
80 $this->addFieldsIf( array( 'cat_pages', 'cat_subcats', 'cat_files' ), isset( $prop['size'] ) );
81 if ( isset( $prop['hidden'] ) ) {
82 $this->addTables( array( 'page', 'page_props' ) );
83 $this->addJoinConds( array(
84 'page' => array( 'LEFT JOIN', array(
85 'page_namespace' => NS_CATEGORY,
86 'page_title=cat_title' ) ),
87 'page_props' => array( 'LEFT JOIN', array(
88 'pp_page=page_id',
89 'pp_propname' => 'hiddencat' ) ),
90 ) );
91 $this->addFields( 'pp_propname AS cat_hidden' );
92 }
93
94 $res = $this->select( __METHOD__ );
95
96 $pages = array();
97
98 $result = $this->getResult();
99 $count = 0;
100 foreach ( $res as $row ) {
101 if ( ++ $count > $params['limit'] ) {
102 // We've reached the one extra which shows that there are additional cats to be had. Stop here...
103 // TODO: Security issue - if the user has no right to view next title, it will still be shown
104 $this->setContinueEnumParameter( 'from', $this->keyToTitle( $row->cat_title ) );
105 break;
106 }
107
108 // Normalize titles
109 $titleObj = Title::makeTitle( NS_CATEGORY, $row->cat_title );
110 if ( !is_null( $resultPageSet ) ) {
111 $pages[] = $titleObj->getPrefixedText();
112 } else {
113 $item = array();
114 $result->setContent( $item, $titleObj->getText() );
115 if ( isset( $prop['size'] ) ) {
116 $item['size'] = intval( $row->cat_pages );
117 $item['pages'] = $row->cat_pages - $row->cat_subcats - $row->cat_files;
118 $item['files'] = intval( $row->cat_files );
119 $item['subcats'] = intval( $row->cat_subcats );
120 }
121 if ( isset( $prop['hidden'] ) && $row->cat_hidden ) {
122 $item['hidden'] = '';
123 }
124 $fit = $result->addValue( array( 'query', $this->getModuleName() ), null, $item );
125 if ( !$fit ) {
126 $this->setContinueEnumParameter( 'from', $this->keyToTitle( $row->cat_title ) );
127 break;
128 }
129 }
130 }
131
132 if ( is_null( $resultPageSet ) ) {
133 $result->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'c' );
134 } else {
135 $resultPageSet->populateFromTitles( $pages );
136 }
137 }
138
139 public function getAllowedParams() {
140 return array(
141 'from' => null,
142 'to' => null,
143 'prefix' => null,
144 'dir' => array(
145 ApiBase::PARAM_DFLT => 'ascending',
146 ApiBase::PARAM_TYPE => array(
147 'ascending',
148 'descending'
149 ),
150 ),
151 'limit' => array(
152 ApiBase::PARAM_DFLT => 10,
153 ApiBase::PARAM_TYPE => 'limit',
154 ApiBase::PARAM_MIN => 1,
155 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
156 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
157 ),
158 'prop' => array(
159 ApiBase::PARAM_TYPE => array( 'size', 'hidden' ),
160 ApiBase::PARAM_DFLT => '',
161 ApiBase::PARAM_ISMULTI => true
162 ),
163 );
164 }
165
166 public function getParamDescription() {
167 return array(
168 'from' => 'The category to start enumerating from',
169 'to' => 'The category to stop enumerating at',
170 'prefix' => 'Search for all category titles that begin with this value',
171 'dir' => 'Direction to sort in',
172 'limit' => 'How many categories to return',
173 'prop' => array(
174 'Which properties to get',
175 ' size - Adds number of pages in the category',
176 ' hidden - Tags categories that are hidden with __HIDDENCAT__',
177 ),
178 );
179 }
180
181 public function getDescription() {
182 return 'Enumerate all categories';
183 }
184
185 protected function getExamples() {
186 return array(
187 'api.php?action=query&list=allcategories&acprop=size',
188 'api.php?action=query&generator=allcategories&gacprefix=List&prop=info',
189 );
190 }
191
192 public function getVersion() {
193 return __CLASS__ . ': $Id$';
194 }
195 }