0d6c15fc885856a1f4ecd8fbe9b59d468c4f5c08
[lhc/web/wiklou.git] / includes / api / ApiQueryCategories.php
1 <?php
2
3 /**
4 * Created on May 13, 2007
5 *
6 * API for MediaWiki 1.8+
7 *
8 * Copyright © 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * http://www.gnu.org/copyleft/gpl.html
24 */
25
26 if ( !defined( 'MEDIAWIKI' ) ) {
27 // Eclipse helper - will be ignored in production
28 require_once( "ApiQueryBase.php" );
29 }
30
31 /**
32 * A query module to enumerate categories the set of pages belong to.
33 *
34 * @ingroup API
35 */
36 class ApiQueryCategories extends ApiQueryGeneratorBase {
37
38 public function __construct( $query, $moduleName ) {
39 parent::__construct( $query, $moduleName, 'cl' );
40 }
41
42 public function execute() {
43 $this->run();
44 }
45
46 public function executeGenerator( $resultPageSet ) {
47 $this->run( $resultPageSet );
48 }
49
50 private function run( $resultPageSet = null ) {
51 if ( $this->getPageSet()->getGoodTitleCount() == 0 ) {
52 return; // nothing to do
53 }
54
55 $params = $this->extractRequestParams();
56 $prop = array_flip( (array)$params['prop'] );
57 $show = array_flip( (array)$params['show'] );
58
59 $this->addFields( array(
60 'cl_from',
61 'cl_to'
62 ) );
63
64 $this->addFieldsIf( 'cl_sortkey', isset( $prop['sortkey'] ) );
65 $this->addFieldsIf( 'cl_timestamp', isset( $prop['timestamp'] ) );
66
67 $this->addTables( 'categorylinks' );
68 $this->addWhereFld( 'cl_from', array_keys( $this->getPageSet()->getGoodTitles() ) );
69 if ( !is_null( $params['categories'] ) ) {
70 $cats = array();
71 foreach ( $params['categories'] as $cat ) {
72 $title = Title::newFromText( $cat );
73 if ( !$title || $title->getNamespace() != NS_CATEGORY ) {
74 $this->setWarning( "``$cat'' is not a category" );
75 } else {
76 $cats[] = $title->getDBkey();
77 }
78 }
79 $this->addWhereFld( 'cl_to', $cats );
80 }
81
82 if ( !is_null( $params['continue'] ) ) {
83 $cont = explode( '|', $params['continue'] );
84 if ( count( $cont ) != 2 ) {
85 $this->dieUsage( "Invalid continue param. You should pass the " .
86 "original value returned by the previous query", "_badcontinue" );
87 }
88 $clfrom = intval( $cont[0] );
89 $clto = $this->getDB()->strencode( $this->titleToKey( $cont[1] ) );
90 $this->addWhere(
91 "cl_from > $clfrom OR " .
92 "(cl_from = $clfrom AND " .
93 "cl_to >= '$clto')"
94 );
95 }
96
97 if ( isset( $show['hidden'] ) && isset( $show['!hidden'] ) ) {
98 $this->dieUsageMsg( array( 'show' ) );
99 }
100 if ( isset( $show['hidden'] ) || isset( $show['!hidden'] ) || isset( $prop['hidden'] ) )
101 {
102 $this->addOption( 'STRAIGHT_JOIN' );
103 $this->addTables( array( 'page', 'page_props' ) );
104 $this->addFieldsIf( 'pp_propname', isset( $prop['hidden'] ) );
105 $this->addJoinConds( array(
106 'page' => array( 'LEFT JOIN', array(
107 'page_namespace' => NS_CATEGORY,
108 'page_title = cl_to' ) ),
109 'page_props' => array( 'LEFT JOIN', array(
110 'pp_page=page_id',
111 'pp_propname' => 'hiddencat' ) )
112 ) );
113 if ( isset( $show['hidden'] ) ) {
114 $this->addWhere( array( 'pp_propname IS NOT NULL' ) );
115 } elseif ( isset( $show['!hidden'] ) ) {
116 $this->addWhere( array( 'pp_propname IS NULL' ) );
117 }
118 }
119
120 $this->addOption( 'USE INDEX', array( 'categorylinks' => 'cl_from' ) );
121 // Don't order by cl_from if it's constant in the WHERE clause
122 if ( count( $this->getPageSet()->getGoodTitles() ) == 1 ) {
123 $this->addOption( 'ORDER BY', 'cl_to' );
124 } else {
125 $this->addOption( 'ORDER BY', "cl_from, cl_to" );
126 }
127
128 $res = $this->select( __METHOD__ );
129
130 if ( is_null( $resultPageSet ) ) {
131 $count = 0;
132 foreach ( $res as $row ) {
133 if ( ++$count > $params['limit'] ) {
134 // We've reached the one extra which shows that
135 // there are additional pages to be had. Stop here...
136 $this->setContinueEnumParameter( 'continue', $row->cl_from .
137 '|' . $this->keyToTitle( $row->cl_to ) );
138 break;
139 }
140
141 $title = Title::makeTitle( NS_CATEGORY, $row->cl_to );
142 $vals = array();
143 ApiQueryBase::addTitleInfo( $vals, $title );
144 if ( isset( $prop['sortkey'] ) ) {
145 $vals['sortkey'] = $row->cl_sortkey;
146 }
147 if ( isset( $prop['timestamp'] ) ) {
148 $vals['timestamp'] = wfTimestamp( TS_ISO_8601, $row->cl_timestamp );
149 }
150 if ( isset( $prop['hidden'] ) && !is_null( $row->pp_propname ) ) {
151 $vals['hidden'] = '';
152 }
153
154 $fit = $this->addPageSubItem( $row->cl_from, $vals );
155 if ( !$fit ) {
156 $this->setContinueEnumParameter( 'continue', $row->cl_from .
157 '|' . $this->keyToTitle( $row->cl_to ) );
158 break;
159 }
160 }
161 } else {
162 $titles = array();
163 foreach ( $res as $row ) {
164 if ( ++$count > $params['limit'] ) {
165 // We've reached the one extra which shows that
166 // there are additional pages to be had. Stop here...
167 $this->setContinueEnumParameter( 'continue', $row->cl_from .
168 '|' . $this->keyToTitle( $row->cl_to ) );
169 break;
170 }
171
172 $titles[] = Title :: makeTitle( NS_CATEGORY, $row->cl_to );
173 }
174 $resultPageSet->populateFromTitles( $titles );
175 }
176 }
177
178 public function getAllowedParams() {
179 return array(
180 'prop' => array(
181 ApiBase::PARAM_ISMULTI => true,
182 ApiBase::PARAM_TYPE => array (
183 'sortkey',
184 'timestamp',
185 'hidden',
186 )
187 ),
188 'show' => array(
189 ApiBase::PARAM_ISMULTI => true,
190 ApiBase::PARAM_TYPE => array(
191 'hidden',
192 '!hidden',
193 )
194 ),
195 'limit' => array(
196 ApiBase::PARAM_DFLT => 10,
197 ApiBase::PARAM_TYPE => 'limit',
198 ApiBase::PARAM_MIN => 1,
199 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
200 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
201 ),
202 'continue' => null,
203 'categories' => array(
204 ApiBase::PARAM_ISMULTI => true,
205 ),
206 );
207 }
208
209 public function getParamDescription() {
210 return array(
211 'prop' => array(
212 'Which additional properties to get for each category',
213 ' sortkey - Adds the sortkey for the category',
214 ' timestamp - Adds timestamp of when the category was added',
215 ' hidden - Tags categories that are hidden with __HIDDENCAT__',
216 ),
217 'limit' => 'How many categories to return',
218 'show' => 'Which kind of categories to show',
219 'continue' => 'When more results are available, use this to continue',
220 'categories' => 'Only list these categories. Useful for checking whether a certain page is in a certain category',
221 );
222 }
223
224 public function getDescription() {
225 return 'List all categories the page(s) belong to';
226 }
227
228 public function getPossibleErrors() {
229 return array_merge( parent::getPossibleErrors(), array(
230 array( 'show' ),
231 ) );
232 }
233
234 protected function getExamples() {
235 return array(
236 'Get a list of categories [[Albert Einstein]] belongs to:',
237 ' api.php?action=query&prop=categories&titles=Albert%20Einstein',
238 'Get information about all categories used in the [[Albert Einstein]]:',
239 ' api.php?action=query&generator=categories&titles=Albert%20Einstein&prop=info'
240 );
241 }
242
243 public function getVersion() {
244 return __CLASS__ . ': $Id$';
245 }
246 }