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