Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / api / ApiQueryCategoryInfo.php
blobbc965e9009d771424aa51e7416e94ee29f3d9f6c
1 <?php
2 /**
3 * Copyright © 2006 Yuri Astrakhan "<Firstname><Lastname>@gmail.com"
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
23 namespace MediaWiki\Api;
25 use MediaWiki\Title\Title;
27 /**
28 * This query adds the "<categories>" subelement to all pages with the list of
29 * categories the page is in.
31 * @ingroup API
33 class ApiQueryCategoryInfo extends ApiQueryBase {
35 public function __construct( ApiQuery $query, string $moduleName ) {
36 parent::__construct( $query, $moduleName, 'ci' );
39 public function execute() {
40 $params = $this->extractRequestParams();
41 $alltitles = $this->getPageSet()->getGoodAndMissingTitlesByNamespace();
42 if ( empty( $alltitles[NS_CATEGORY] ) ) {
43 return;
45 $categories = $alltitles[NS_CATEGORY];
47 $titles = $this->getPageSet()->getGoodAndMissingPages();
48 $cattitles = [];
49 foreach ( $categories as $c ) {
50 /** @var Title $t */
51 $t = $titles[$c];
52 $cattitles[$c] = $t->getDBkey();
55 $this->addTables( [ 'category', 'page', 'page_props' ] );
56 $this->addJoinConds( [
57 'page' => [ 'LEFT JOIN', [
58 'page_namespace' => NS_CATEGORY,
59 'page_title=cat_title' ] ],
60 'page_props' => [ 'LEFT JOIN', [
61 'pp_page=page_id',
62 'pp_propname' => 'hiddencat' ] ],
63 ] );
65 $this->addFields( [
66 'cat_title',
67 'cat_pages',
68 'cat_subcats',
69 'cat_files',
70 'cat_hidden' => 'pp_propname'
71 ] );
72 $this->addWhere( [ 'cat_title' => $cattitles ] );
74 if ( $params['continue'] !== null ) {
75 $this->addWhere( $this->getDB()->expr( 'cat_title', '>=', $params['continue'] ) );
77 $this->addOption( 'ORDER BY', 'cat_title' );
79 $res = $this->select( __METHOD__ );
81 $catids = array_flip( $cattitles );
82 foreach ( $res as $row ) {
83 $vals = [];
84 $vals['size'] = (int)$row->cat_pages;
85 $vals['pages'] = $row->cat_pages - $row->cat_subcats - $row->cat_files;
86 $vals['files'] = (int)$row->cat_files;
87 $vals['subcats'] = (int)$row->cat_subcats;
88 $vals['hidden'] = (bool)$row->cat_hidden;
89 $fit = $this->addPageSubItems( $catids[$row->cat_title], $vals );
90 if ( !$fit ) {
91 $this->setContinueEnumParameter( 'continue', $row->cat_title );
92 break;
97 public function getCacheMode( $params ) {
98 return 'public';
101 public function getAllowedParams() {
102 return [
103 'continue' => [
104 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
109 protected function getExamplesMessages() {
110 return [
111 'action=query&prop=categoryinfo&titles=Category:Foo|Category:Bar'
112 => 'apihelp-query+categoryinfo-example-simple',
116 public function getHelpUrls() {
117 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Categoryinfo';
121 /** @deprecated class alias since 1.43 */
122 class_alias( ApiQueryCategoryInfo::class, 'ApiQueryCategoryInfo' );