MediaWiki REL1_37
ApiQueryImages.php
Go to the documentation of this file.
1<?php
30
35 public function __construct( ApiQuery $query, $moduleName ) {
36 parent::__construct( $query, $moduleName, 'im' );
37 }
38
39 public function execute() {
40 $this->run();
41 }
42
43 public function executeGenerator( $resultPageSet ) {
44 $this->run( $resultPageSet );
45 }
46
50 private function run( $resultPageSet = null ) {
51 if ( $this->getPageSet()->getGoodTitleCount() == 0 ) {
52 return; // nothing to do
53 }
54
55 $params = $this->extractRequestParams();
56 $this->addFields( [
57 'il_from',
58 'il_to'
59 ] );
60
61 $this->addTables( 'imagelinks' );
62 $this->addWhereFld( 'il_from', array_keys( $this->getPageSet()->getGoodTitles() ) );
63 if ( $params['continue'] !== null ) {
64 $cont = explode( '|', $params['continue'] );
65 $this->dieContinueUsageIf( count( $cont ) != 2 );
66 $op = $params['dir'] == 'descending' ? '<' : '>';
67 $ilfrom = (int)$cont[0];
68 $ilto = $this->getDB()->addQuotes( $cont[1] );
69 $this->addWhere(
70 "il_from $op $ilfrom OR " .
71 "(il_from = $ilfrom AND " .
72 "il_to $op= $ilto)"
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( $this->getPageSet()->getGoodTitles() ) == 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' => [
148 ApiBase::PARAM_TYPE => 'limit',
152 ],
153 'continue' => [
154 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
155 ],
156 'images' => [
158 ],
159 'dir' => [
160 ApiBase::PARAM_DFLT => 'ascending',
162 'ascending',
163 'descending'
164 ]
165 ],
166 ];
167 }
168
169 protected function getExamplesMessages() {
170 return [
171 'action=query&prop=images&titles=Main%20Page'
172 => 'apihelp-query+images-example-simple',
173 'action=query&generator=images&titles=Main%20Page&prop=info'
174 => 'apihelp-query+images-example-generator',
175 ];
176 }
177
178 public function getHelpUrls() {
179 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Images';
180 }
181}
const NS_FILE
Definition Defines.php:70
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
const PARAM_MAX2
Definition ApiBase.php:89
const PARAM_MAX
Definition ApiBase.php:85
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
Definition ApiBase.php:1620
const PARAM_TYPE
Definition ApiBase.php:81
const PARAM_DFLT
Definition ApiBase.php:73
const PARAM_MIN
Definition ApiBase.php:93
const LIMIT_BIG1
Fast query, standard limit.
Definition ApiBase.php:220
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:764
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:162
addWarning( $msg, $code=null, $data=null)
Add a warning for this module.
Definition ApiBase.php:1354
const LIMIT_BIG2
Fast query, apihighlimits limit.
Definition ApiBase.php:222
const PARAM_ISMULTI
Definition ApiBase.php:77
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
addFields( $value)
Add a set of fields to select to the internal array.
addPageSubItem( $pageId, $item, $elemname=null)
Same as addPageSubItems(), but one element of $data at a time.
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
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.
addWhereFld( $field, $value)
Equivalent to addWhere( [ $field => $value ] )
addWhere( $value)
Add a set of WHERE clauses 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...
executeGenerator( $resultPageSet)
Execute this module as a generator.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
__construct(ApiQuery $query, $moduleName)
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
getExamplesMessages()
Returns usage examples for this module.
getHelpUrls()
Return links to more detailed help pages about the module.
run( $resultPageSet=null)
This is the main query class.
Definition ApiQuery.php:37