MediaWiki master
ApiQueryImages.php
Go to the documentation of this file.
1<?php
23namespace MediaWiki\Api;
24
28
36
37 public function __construct( ApiQuery $query, string $moduleName ) {
38 parent::__construct( $query, $moduleName, 'im' );
39 }
40
41 public function execute() {
42 $this->run();
43 }
44
45 public function executeGenerator( $resultPageSet ) {
46 $this->run( $resultPageSet );
47 }
48
52 private function run( $resultPageSet = null ) {
53 $pages = $this->getPageSet()->getGoodPages();
54 if ( $pages === [] ) {
55 return; // nothing to do
56 }
57
59 $this->addFields( [
60 'il_from',
61 'il_to'
62 ] );
63
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 ] ) );
74 }
75
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 ] );
85 }
86 $this->addOption( 'LIMIT', $params['limit'] + 1 );
87
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();
96 }
97 }
98 if ( !$images ) {
99 // No titles so no results
100 return;
101 }
102 $this->addWhereFld( 'il_to', $images );
103 }
104
105 $res = $this->select( __METHOD__ );
106
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;
115 }
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;
122 }
123 }
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;
133 }
134 $titles[] = Title::makeTitle( NS_FILE, $row->il_to );
135 }
136 $resultPageSet->populateFromTitles( $titles );
137 }
138 }
139
140 public function getCacheMode( $params ) {
141 return 'public';
142 }
143
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
152 ],
153 'continue' => [
154 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
155 ],
156 'images' => [
157 ParamValidator::PARAM_ISMULTI => true,
158 ],
159 'dir' => [
160 ParamValidator::PARAM_DEFAULT => 'ascending',
161 ParamValidator::PARAM_TYPE => [
162 'ascending',
163 'descending'
164 ]
165 ],
166 ];
167 }
168
169 protected function getExamplesMessages() {
170 $title = Title::newMainPage()->getPrefixedText();
171 $mp = rawurlencode( $title );
172
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',
178 ];
179 }
180
181 public function getHelpUrls() {
182 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Images';
183 }
184}
185
187class_alias( ApiQueryImages::class, 'ApiQueryImages' );
const NS_FILE
Definition Defines.php:71
wfEscapeWikiText( $input)
Escapes the given text so that it may be output using addWikiText() without any linking,...
array $params
The job parameters.
run()
Run the job.
parseContinueParamOrDie(string $continue, array $types)
Parse the 'continue' parameter in the usual format and validate the types of each part,...
Definition ApiBase.php:1768
addWarning( $msg, $code=null, $data=null)
Add a warning for this module.
Definition ApiBase.php:1495
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:184
const LIMIT_BIG2
Fast query, apihighlimits limit.
Definition ApiBase.php:251
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:851
const LIMIT_BIG1
Fast query, standard limit.
Definition ApiBase.php:249
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
addPageSubItem( $pageId, $item, $elemname=null)
Same as addPageSubItems(), but one element of $data at a time.
getDB()
Get the Query database connection (read-only)
select( $method, $extraQuery=[], ?array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
addWhere( $value)
Add a set of WHERE clauses to the internal array.
addWhereFld( $field, $value)
Equivalent to addWhere( [ $field => $value ] )
addFields( $value)
Add a set of fields to select to the internal array.
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
getPageSet()
Get the PageSet object to work on.
This query adds an "<images>" subelement to all pages with the list of images embedded into those pag...
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
getHelpUrls()
Return links to more detailed help pages about the module.
executeGenerator( $resultPageSet)
Execute this module as a generator.
getExamplesMessages()
Returns usage examples for this module.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
__construct(ApiQuery $query, string $moduleName)
This is the main query class.
Definition ApiQuery.php:48
Represents a title within MediaWiki.
Definition Title.php:78
Service for formatting and validating API parameters.
Type definition for integer types.