mwdocgen: support multiple --file values
[lhc/web/wiklou.git] / includes / api / ApiQueryCategories.php
1 <?php
2 /**
3 *
4 *
5 * Created on May 13, 2007
6 *
7 * Copyright © 2006 Yuri Astrakhan "<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 * A query module to enumerate categories the set of pages belong to.
29 *
30 * @ingroup API
31 */
32 class ApiQueryCategories extends ApiQueryGeneratorBase {
33
34 public function __construct( $query, $moduleName ) {
35 parent::__construct( $query, $moduleName, 'cl' );
36 }
37
38 public function execute() {
39 $this->run();
40 }
41
42 public function getCacheMode( $params ) {
43 return 'public';
44 }
45
46 public function executeGenerator( $resultPageSet ) {
47 $this->run( $resultPageSet );
48 }
49
50 /**
51 * @param $resultPageSet ApiPageSet
52 */
53 private function run( $resultPageSet = null ) {
54 if ( $this->getPageSet()->getGoodTitleCount() == 0 ) {
55 return; // nothing to do
56 }
57
58 $params = $this->extractRequestParams();
59 $prop = array_flip( (array)$params['prop'] );
60 $show = array_flip( (array)$params['show'] );
61
62 $this->addFields( array(
63 'cl_from',
64 'cl_to'
65 ) );
66
67 $this->addFieldsIf( array( 'cl_sortkey', 'cl_sortkey_prefix' ), isset( $prop['sortkey'] ) );
68 $this->addFieldsIf( 'cl_timestamp', isset( $prop['timestamp'] ) );
69
70 $this->addTables( 'categorylinks' );
71 $this->addWhereFld( 'cl_from', array_keys( $this->getPageSet()->getGoodTitles() ) );
72 if ( !is_null( $params['categories'] ) ) {
73 $cats = array();
74 foreach ( $params['categories'] as $cat ) {
75 $title = Title::newFromText( $cat );
76 if ( !$title || $title->getNamespace() != NS_CATEGORY ) {
77 $this->setWarning( "\"$cat\" is not a category" );
78 } else {
79 $cats[] = $title->getDBkey();
80 }
81 }
82 $this->addWhereFld( 'cl_to', $cats );
83 }
84
85 if ( !is_null( $params['continue'] ) ) {
86 $cont = explode( '|', $params['continue'] );
87 $this->dieContinueUsageIf( count( $cont ) != 2 );
88 $op = $params['dir'] == 'descending' ? '<' : '>';
89 $clfrom = intval( $cont[0] );
90 $clto = $this->getDB()->addQuotes( $cont[1] );
91 $this->addWhere(
92 "cl_from $op $clfrom OR " .
93 "(cl_from = $clfrom AND " .
94 "cl_to $op= $clto)"
95 );
96 }
97
98 if ( isset( $show['hidden'] ) && isset( $show['!hidden'] ) ) {
99 $this->dieUsageMsg( 'show' );
100 }
101 if ( isset( $show['hidden'] ) || isset( $show['!hidden'] ) || isset( $prop['hidden'] ) )
102 {
103 $this->addOption( 'STRAIGHT_JOIN' );
104 $this->addTables( array( 'page', 'page_props' ) );
105 $this->addFieldsIf( 'pp_propname', isset( $prop['hidden'] ) );
106 $this->addJoinConds( array(
107 'page' => array( 'LEFT JOIN', array(
108 'page_namespace' => NS_CATEGORY,
109 'page_title = cl_to' ) ),
110 'page_props' => array( 'LEFT JOIN', array(
111 'pp_page=page_id',
112 'pp_propname' => 'hiddencat' ) )
113 ) );
114 if ( isset( $show['hidden'] ) ) {
115 $this->addWhere( array( 'pp_propname IS NOT NULL' ) );
116 } elseif ( isset( $show['!hidden'] ) ) {
117 $this->addWhere( array( 'pp_propname IS NULL' ) );
118 }
119 }
120
121 $this->addOption( 'USE INDEX', array( 'categorylinks' => 'cl_from' ) );
122
123 $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
124 // Don't order by cl_from if it's constant in the WHERE clause
125 if ( count( $this->getPageSet()->getGoodTitles() ) == 1 ) {
126 $this->addOption( 'ORDER BY', 'cl_to' . $sort );
127 } else {
128 $this->addOption( 'ORDER BY', array(
129 'cl_from' . $sort,
130 'cl_to' . $sort
131 ));
132 }
133
134 $res = $this->select( __METHOD__ );
135
136 $count = 0;
137 if ( is_null( $resultPageSet ) ) {
138 foreach ( $res as $row ) {
139 if ( ++$count > $params['limit'] ) {
140 // We've reached the one extra which shows that
141 // there are additional pages to be had. Stop here...
142 $this->setContinueEnumParameter( 'continue', $row->cl_from . '|' . $row->cl_to );
143 break;
144 }
145
146 $title = Title::makeTitle( NS_CATEGORY, $row->cl_to );
147 $vals = array();
148 ApiQueryBase::addTitleInfo( $vals, $title );
149 if ( isset( $prop['sortkey'] ) ) {
150 $vals['sortkey'] = bin2hex( $row->cl_sortkey );
151 $vals['sortkeyprefix'] = $row->cl_sortkey_prefix;
152 }
153 if ( isset( $prop['timestamp'] ) ) {
154 $vals['timestamp'] = wfTimestamp( TS_ISO_8601, $row->cl_timestamp );
155 }
156 if ( isset( $prop['hidden'] ) && !is_null( $row->pp_propname ) ) {
157 $vals['hidden'] = '';
158 }
159
160 $fit = $this->addPageSubItem( $row->cl_from, $vals );
161 if ( !$fit ) {
162 $this->setContinueEnumParameter( 'continue', $row->cl_from . '|' . $row->cl_to );
163 break;
164 }
165 }
166 } else {
167 $titles = array();
168 foreach ( $res as $row ) {
169 if ( ++$count > $params['limit'] ) {
170 // We've reached the one extra which shows that
171 // there are additional pages to be had. Stop here...
172 $this->setContinueEnumParameter( 'continue', $row->cl_from . '|' . $row->cl_to );
173 break;
174 }
175
176 $titles[] = Title::makeTitle( NS_CATEGORY, $row->cl_to );
177 }
178 $resultPageSet->populateFromTitles( $titles );
179 }
180 }
181
182 public function getAllowedParams() {
183 return array(
184 'prop' => array(
185 ApiBase::PARAM_ISMULTI => true,
186 ApiBase::PARAM_TYPE => array(
187 'sortkey',
188 'timestamp',
189 'hidden',
190 )
191 ),
192 'show' => array(
193 ApiBase::PARAM_ISMULTI => true,
194 ApiBase::PARAM_TYPE => array(
195 'hidden',
196 '!hidden',
197 )
198 ),
199 'limit' => array(
200 ApiBase::PARAM_DFLT => 10,
201 ApiBase::PARAM_TYPE => 'limit',
202 ApiBase::PARAM_MIN => 1,
203 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
204 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
205 ),
206 'continue' => null,
207 'categories' => array(
208 ApiBase::PARAM_ISMULTI => true,
209 ),
210 'dir' => array(
211 ApiBase::PARAM_DFLT => 'ascending',
212 ApiBase::PARAM_TYPE => array(
213 'ascending',
214 'descending'
215 )
216 ),
217 );
218 }
219
220 public function getParamDescription() {
221 return array(
222 'prop' => array(
223 'Which additional properties to get for each category',
224 ' sortkey - Adds the sortkey (hexadecimal string) and sortkey prefix (human-readable part) for the category',
225 ' timestamp - Adds timestamp of when the category was added',
226 ' hidden - Tags categories that are hidden with __HIDDENCAT__',
227 ),
228 'limit' => 'How many categories to return',
229 'show' => 'Which kind of categories to show',
230 'continue' => 'When more results are available, use this to continue',
231 'categories' => 'Only list these categories. Useful for checking whether a certain page is in a certain category',
232 'dir' => 'The direction in which to list',
233 );
234 }
235
236 public function getResultProperties() {
237 return array(
238 '' => array(
239 'ns' => 'namespace',
240 'title' => 'string'
241 ),
242 'sortkey' => array(
243 'sortkey' => 'string',
244 'sortkeyprefix' => 'string'
245 ),
246 'timestamp' => array(
247 'timestamp' => 'timestamp'
248 ),
249 'hidden' => array(
250 'hidden' => 'boolean'
251 )
252 );
253 }
254
255 public function getDescription() {
256 return 'List all categories the page(s) belong to';
257 }
258
259 public function getPossibleErrors() {
260 return array_merge( parent::getPossibleErrors(), array(
261 array( 'show' ),
262 ) );
263 }
264
265 public function getExamples() {
266 return array(
267 'api.php?action=query&prop=categories&titles=Albert%20Einstein' => 'Get a list of categories [[Albert Einstein]] belongs to',
268 'api.php?action=query&generator=categories&titles=Albert%20Einstein&prop=info' => 'Get information about all categories used in the [[Albert Einstein]]',
269 );
270 }
271
272 public function getHelpUrls() {
273 return 'https://www.mediawiki.org/wiki/API:Properties#categories_.2F_cl';
274 }
275 }