Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / api / ApiQueryImages.php
blob0ff1007b955af7175c119b3b8e01655fb7f4daa4
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;
26 use Wikimedia\ParamValidator\ParamValidator;
27 use Wikimedia\ParamValidator\TypeDef\IntegerDef;
29 /**
30 * This query adds an "<images>" subelement to all pages with the list of
31 * images embedded into those pages.
33 * @ingroup API
35 class ApiQueryImages extends ApiQueryGeneratorBase {
37 public function __construct( ApiQuery $query, string $moduleName ) {
38 parent::__construct( $query, $moduleName, 'im' );
41 public function execute() {
42 $this->run();
45 public function executeGenerator( $resultPageSet ) {
46 $this->run( $resultPageSet );
49 /**
50 * @param ApiPageSet|null $resultPageSet
52 private function run( $resultPageSet = null ) {
53 $pages = $this->getPageSet()->getGoodPages();
54 if ( $pages === [] ) {
55 return; // nothing to do
58 $params = $this->extractRequestParams();
59 $this->addFields( [
60 'il_from',
61 'il_to'
62 ] );
64 $this->addTables( 'imagelinks' );
65 $this->addWhereFld( 'il_from', array_keys( $pages ) );
66 if ( $params['continue'] !== null ) {
67 $db = $this->getDB();
68 $cont = $this->parseContinueParamOrDie( $params['continue'], [ 'int', 'string' ] );
69 $op = $params['dir'] == 'descending' ? '<=' : '>=';
70 $this->addWhere( $db->buildComparison( $op, [
71 'il_from' => $cont[0],
72 'il_to' => $cont[1],
73 ] ) );
76 $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
77 // Don't order by il_from if it's constant in the WHERE clause
78 if ( count( $pages ) === 1 ) {
79 $this->addOption( 'ORDER BY', 'il_to' . $sort );
80 } else {
81 $this->addOption( 'ORDER BY', [
82 'il_from' . $sort,
83 'il_to' . $sort
84 ] );
86 $this->addOption( 'LIMIT', $params['limit'] + 1 );
88 if ( $params['images'] ) {
89 $images = [];
90 foreach ( $params['images'] as $img ) {
91 $title = Title::newFromText( $img );
92 if ( !$title || $title->getNamespace() !== NS_FILE ) {
93 $this->addWarning( [ 'apiwarn-notfile', wfEscapeWikiText( $img ) ] );
94 } else {
95 $images[] = $title->getDBkey();
98 if ( !$images ) {
99 // No titles so no results
100 return;
102 $this->addWhereFld( 'il_to', $images );
105 $res = $this->select( __METHOD__ );
107 if ( $resultPageSet === null ) {
108 $count = 0;
109 foreach ( $res as $row ) {
110 if ( ++$count > $params['limit'] ) {
111 // We've reached the one extra which shows that
112 // there are additional pages to be had. Stop here...
113 $this->setContinueEnumParameter( 'continue', $row->il_from . '|' . $row->il_to );
114 break;
116 $vals = [];
117 ApiQueryBase::addTitleInfo( $vals, Title::makeTitle( NS_FILE, $row->il_to ) );
118 $fit = $this->addPageSubItem( $row->il_from, $vals );
119 if ( !$fit ) {
120 $this->setContinueEnumParameter( 'continue', $row->il_from . '|' . $row->il_to );
121 break;
124 } else {
125 $titles = [];
126 $count = 0;
127 foreach ( $res as $row ) {
128 if ( ++$count > $params['limit'] ) {
129 // We've reached the one extra which shows that
130 // there are additional pages to be had. Stop here...
131 $this->setContinueEnumParameter( 'continue', $row->il_from . '|' . $row->il_to );
132 break;
134 $titles[] = Title::makeTitle( NS_FILE, $row->il_to );
136 $resultPageSet->populateFromTitles( $titles );
140 public function getCacheMode( $params ) {
141 return 'public';
144 public function getAllowedParams() {
145 return [
146 'limit' => [
147 ParamValidator::PARAM_DEFAULT => 10,
148 ParamValidator::PARAM_TYPE => 'limit',
149 IntegerDef::PARAM_MIN => 1,
150 IntegerDef::PARAM_MAX => ApiBase::LIMIT_BIG1,
151 IntegerDef::PARAM_MAX2 => ApiBase::LIMIT_BIG2
153 'continue' => [
154 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
156 'images' => [
157 ParamValidator::PARAM_ISMULTI => true,
159 'dir' => [
160 ParamValidator::PARAM_DEFAULT => 'ascending',
161 ParamValidator::PARAM_TYPE => [
162 'ascending',
163 'descending'
169 protected function getExamplesMessages() {
170 $title = Title::newMainPage()->getPrefixedText();
171 $mp = rawurlencode( $title );
173 return [
174 "action=query&prop=images&titles={$mp}"
175 => 'apihelp-query+images-example-simple',
176 "action=query&generator=images&titles={$mp}&prop=info"
177 => 'apihelp-query+images-example-generator',
181 public function getHelpUrls() {
182 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Images';
186 /** @deprecated class alias since 1.43 */
187 class_alias( ApiQueryImages::class, 'ApiQueryImages' );