Update button focus and hover state according to spec
[mediawiki.git] / includes / api / ApiQueryCategories.php
blob7b3e6e313df1b2a56f3c5060fa4265b5fa269686
1 <?php
2 /**
5 * Created on May 13, 2007
7 * Copyright © 2006 Yuri Astrakhan "<Firstname><Lastname>@gmail.com"
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.
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.
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
24 * @file
27 /**
28 * A query module to enumerate categories the set of pages belong to.
30 * @ingroup API
32 class ApiQueryCategories extends ApiQueryGeneratorBase {
34 public function __construct( ApiQuery $query, $moduleName ) {
35 parent::__construct( $query, $moduleName, 'cl' );
38 public function execute() {
39 $this->run();
42 public function getCacheMode( $params ) {
43 return 'public';
46 public function executeGenerator( $resultPageSet ) {
47 $this->run( $resultPageSet );
50 /**
51 * @param ApiPageSet $resultPageSet
53 private function run( $resultPageSet = null ) {
54 if ( $this->getPageSet()->getGoodTitleCount() == 0 ) {
55 return; // nothing to do
58 $params = $this->extractRequestParams();
59 $prop = array_flip( (array)$params['prop'] );
60 $show = array_flip( (array)$params['show'] );
62 $this->addFields( array(
63 'cl_from',
64 'cl_to'
65 ) );
67 $this->addFieldsIf( array( 'cl_sortkey', 'cl_sortkey_prefix' ), isset( $prop['sortkey'] ) );
68 $this->addFieldsIf( 'cl_timestamp', isset( $prop['timestamp'] ) );
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();
82 $this->addWhereFld( 'cl_to', $cats );
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)"
98 if ( isset( $show['hidden'] ) && isset( $show['!hidden'] ) ) {
99 $this->dieUsageMsg( 'show' );
101 if ( isset( $show['hidden'] ) || isset( $show['!hidden'] ) || isset( $prop['hidden'] ) ) {
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' ) );
120 $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
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' . $sort );
124 } else {
125 $this->addOption( 'ORDER BY', array(
126 'cl_from' . $sort,
127 'cl_to' . $sort
128 ) );
131 $res = $this->select( __METHOD__ );
133 $count = 0;
134 if ( is_null( $resultPageSet ) ) {
135 foreach ( $res as $row ) {
136 if ( ++$count > $params['limit'] ) {
137 // We've reached the one extra which shows that
138 // there are additional pages to be had. Stop here...
139 $this->setContinueEnumParameter( 'continue', $row->cl_from . '|' . $row->cl_to );
140 break;
143 $title = Title::makeTitle( NS_CATEGORY, $row->cl_to );
144 $vals = array();
145 ApiQueryBase::addTitleInfo( $vals, $title );
146 if ( isset( $prop['sortkey'] ) ) {
147 $vals['sortkey'] = bin2hex( $row->cl_sortkey );
148 $vals['sortkeyprefix'] = $row->cl_sortkey_prefix;
150 if ( isset( $prop['timestamp'] ) ) {
151 $vals['timestamp'] = wfTimestamp( TS_ISO_8601, $row->cl_timestamp );
153 if ( isset( $prop['hidden'] ) ) {
154 $vals['hidden'] = !is_null( $row->pp_propname );
157 $fit = $this->addPageSubItem( $row->cl_from, $vals );
158 if ( !$fit ) {
159 $this->setContinueEnumParameter( 'continue', $row->cl_from . '|' . $row->cl_to );
160 break;
163 } else {
164 $titles = array();
165 foreach ( $res as $row ) {
166 if ( ++$count > $params['limit'] ) {
167 // We've reached the one extra which shows that
168 // there are additional pages to be had. Stop here...
169 $this->setContinueEnumParameter( 'continue', $row->cl_from . '|' . $row->cl_to );
170 break;
173 $titles[] = Title::makeTitle( NS_CATEGORY, $row->cl_to );
175 $resultPageSet->populateFromTitles( $titles );
179 public function getAllowedParams() {
180 return array(
181 'prop' => array(
182 ApiBase::PARAM_ISMULTI => true,
183 ApiBase::PARAM_TYPE => array(
184 'sortkey',
185 'timestamp',
186 'hidden',
189 'show' => array(
190 ApiBase::PARAM_ISMULTI => true,
191 ApiBase::PARAM_TYPE => array(
192 'hidden',
193 '!hidden',
196 'limit' => array(
197 ApiBase::PARAM_DFLT => 10,
198 ApiBase::PARAM_TYPE => 'limit',
199 ApiBase::PARAM_MIN => 1,
200 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
201 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
203 'continue' => array(
204 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
206 'categories' => array(
207 ApiBase::PARAM_ISMULTI => true,
209 'dir' => array(
210 ApiBase::PARAM_DFLT => 'ascending',
211 ApiBase::PARAM_TYPE => array(
212 'ascending',
213 'descending'
219 protected function getExamplesMessages() {
220 return array(
221 'action=query&prop=categories&titles=Albert%20Einstein'
222 => 'apihelp-query+categories-example-simple',
223 'action=query&generator=categories&titles=Albert%20Einstein&prop=info'
224 => 'apihelp-query+categories-example-generator',
228 public function getHelpUrls() {
229 return 'https://www.mediawiki.org/wiki/API:Categories';