5 * Created on December 12, 2007
7 * Copyright © 2007 Roan Kattouw "<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
28 * Query module to enumerate all categories, even the ones that don't have
33 class ApiQueryAllCategories
extends ApiQueryGeneratorBase
{
35 public function __construct( ApiQuery
$query, $moduleName ) {
36 parent
::__construct( $query, $moduleName, 'ac' );
39 public function execute() {
43 public function getCacheMode( $params ) {
47 public function executeGenerator( $resultPageSet ) {
48 $this->run( $resultPageSet );
52 * @param ApiPageSet $resultPageSet
54 private function run( $resultPageSet = null ) {
56 $params = $this->extractRequestParams();
58 $this->addTables( 'category' );
59 $this->addFields( 'cat_title' );
61 if ( !is_null( $params['continue'] ) ) {
62 $cont = explode( '|', $params['continue'] );
63 $this->dieContinueUsageIf( count( $cont ) != 1 );
64 $op = $params['dir'] == 'descending' ?
'<' : '>';
65 $cont_from = $db->addQuotes( $cont[0] );
66 $this->addWhere( "cat_title $op= $cont_from" );
69 $dir = ( $params['dir'] == 'descending' ?
'older' : 'newer' );
70 $from = ( $params['from'] === null
72 : $this->titlePartToKey( $params['from'], NS_CATEGORY
) );
73 $to = ( $params['to'] === null
75 : $this->titlePartToKey( $params['to'], NS_CATEGORY
) );
76 $this->addWhereRange( 'cat_title', $dir, $from, $to );
78 $min = $params['min'];
79 $max = $params['max'];
80 if ( $dir == 'newer' ) {
81 $this->addWhereRange( 'cat_pages', 'newer', $min, $max );
83 $this->addWhereRange( 'cat_pages', 'older', $max, $min );
86 if ( isset( $params['prefix'] ) ) {
87 $this->addWhere( 'cat_title' . $db->buildLike(
88 $this->titlePartToKey( $params['prefix'], NS_CATEGORY
),
92 $this->addOption( 'LIMIT', $params['limit'] +
1 );
93 $sort = ( $params['dir'] == 'descending' ?
' DESC' : '' );
94 $this->addOption( 'ORDER BY', 'cat_title' . $sort );
96 $prop = array_flip( $params['prop'] );
97 $this->addFieldsIf( array( 'cat_pages', 'cat_subcats', 'cat_files' ), isset( $prop['size'] ) );
98 if ( isset( $prop['hidden'] ) ) {
99 $this->addTables( array( 'page', 'page_props' ) );
100 $this->addJoinConds( array(
101 'page' => array( 'LEFT JOIN', array(
102 'page_namespace' => NS_CATEGORY
,
103 'page_title=cat_title' ) ),
104 'page_props' => array( 'LEFT JOIN', array(
106 'pp_propname' => 'hiddencat' ) ),
108 $this->addFields( array( 'cat_hidden' => 'pp_propname' ) );
111 $res = $this->select( __METHOD__
);
115 $result = $this->getResult();
117 foreach ( $res as $row ) {
118 if ( ++
$count > $params['limit'] ) {
119 // We've reached the one extra which shows that there are
120 // additional cats to be had. Stop here...
121 $this->setContinueEnumParameter( 'continue', $row->cat_title
);
126 $titleObj = Title
::makeTitle( NS_CATEGORY
, $row->cat_title
);
127 if ( !is_null( $resultPageSet ) ) {
128 $pages[] = $titleObj;
131 ApiResult
::setContentValue( $item, 'category', $titleObj->getText() );
132 if ( isset( $prop['size'] ) ) {
133 $item['size'] = intval( $row->cat_pages
);
134 $item['pages'] = $row->cat_pages
- $row->cat_subcats
- $row->cat_files
;
135 $item['files'] = intval( $row->cat_files
);
136 $item['subcats'] = intval( $row->cat_subcats
);
138 if ( isset( $prop['hidden'] ) ) {
139 $item['hidden'] = (bool)$row->cat_hidden
;
141 $fit = $result->addValue( array( 'query', $this->getModuleName() ), null, $item );
143 $this->setContinueEnumParameter( 'continue', $row->cat_title
);
149 if ( is_null( $resultPageSet ) ) {
150 $result->addIndexedTagName( array( 'query', $this->getModuleName() ), 'c' );
152 $resultPageSet->populateFromTitles( $pages );
156 public function getAllowedParams() {
160 ApiBase
::PARAM_HELP_MSG
=> 'api-help-param-continue',
165 ApiBase
::PARAM_DFLT
=> 'ascending',
166 ApiBase
::PARAM_TYPE
=> array(
172 ApiBase
::PARAM_TYPE
=> 'integer'
175 ApiBase
::PARAM_TYPE
=> 'integer'
178 ApiBase
::PARAM_DFLT
=> 10,
179 ApiBase
::PARAM_TYPE
=> 'limit',
180 ApiBase
::PARAM_MIN
=> 1,
181 ApiBase
::PARAM_MAX
=> ApiBase
::LIMIT_BIG1
,
182 ApiBase
::PARAM_MAX2
=> ApiBase
::LIMIT_BIG2
185 ApiBase
::PARAM_TYPE
=> array( 'size', 'hidden' ),
186 ApiBase
::PARAM_DFLT
=> '',
187 ApiBase
::PARAM_ISMULTI
=> true,
188 ApiBase
::PARAM_HELP_MSG_PER_VALUE
=> array(),
193 protected function getExamplesMessages() {
195 'action=query&list=allcategories&acprop=size'
196 => 'apihelp-query+allcategories-example-size',
197 'action=query&generator=allcategories&gacprefix=List&prop=info'
198 => 'apihelp-query+allcategories-example-generator',
202 public function getHelpUrls() {
203 return 'https://www.mediawiki.org/wiki/API:Allcategories';