5 * Created on May 13, 2007
7 * Copyright © 2006 Yuri Astrakhan "<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 * This query adds an "<images>" subelement to all pages with the list of
29 * images embedded into those pages.
33 class ApiQueryImages
extends ApiQueryGeneratorBase
{
35 public function __construct( ApiQuery
$query, $moduleName ) {
36 parent
::__construct( $query, $moduleName, 'im' );
39 public function execute() {
43 public function executeGenerator( $resultPageSet ) {
44 $this->run( $resultPageSet );
48 * @param ApiPageSet $resultPageSet
50 private function run( $resultPageSet = null ) {
51 if ( $this->getPageSet()->getGoodTitleCount() == 0 ) {
52 return; // nothing to do
55 $params = $this->extractRequestParams();
61 $this->addTables( 'imagelinks' );
62 $this->addWhereFld( 'il_from', array_keys( $this->getPageSet()->getGoodTitles() ) );
63 if ( !is_null( $params['continue'] ) ) {
64 $cont = explode( '|', $params['continue'] );
65 $this->dieContinueUsageIf( count( $cont ) != 2 );
66 $op = $params['dir'] == 'descending' ?
'<' : '>';
67 $ilfrom = intval( $cont[0] );
68 $ilto = $this->getDB()->addQuotes( $cont[1] );
70 "il_from $op $ilfrom OR " .
71 "(il_from = $ilfrom AND " .
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 );
81 $this->addOption( 'ORDER BY', [
86 $this->addOption( 'LIMIT', $params['limit'] +
1 );
88 if ( !is_null( $params['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 ) ] );
95 $images[] = $title->getDBkey();
98 $this->addWhereFld( 'il_to', $images );
101 $res = $this->select( __METHOD__
);
103 if ( is_null( $resultPageSet ) ) {
105 foreach ( $res as $row ) {
106 if ( ++
$count > $params['limit'] ) {
107 // We've reached the one extra which shows that
108 // there are additional pages to be had. Stop here...
109 $this->setContinueEnumParameter( 'continue', $row->il_from
. '|' . $row->il_to
);
113 ApiQueryBase
::addTitleInfo( $vals, Title
::makeTitle( NS_FILE
, $row->il_to
) );
114 $fit = $this->addPageSubItem( $row->il_from
, $vals );
116 $this->setContinueEnumParameter( 'continue', $row->il_from
. '|' . $row->il_to
);
123 foreach ( $res as $row ) {
124 if ( ++
$count > $params['limit'] ) {
125 // We've reached the one extra which shows that
126 // there are additional pages to be had. Stop here...
127 $this->setContinueEnumParameter( 'continue', $row->il_from
. '|' . $row->il_to
);
130 $titles[] = Title
::makeTitle( NS_FILE
, $row->il_to
);
132 $resultPageSet->populateFromTitles( $titles );
136 public function getCacheMode( $params ) {
140 public function getAllowedParams() {
143 ApiBase
::PARAM_DFLT
=> 10,
144 ApiBase
::PARAM_TYPE
=> 'limit',
145 ApiBase
::PARAM_MIN
=> 1,
146 ApiBase
::PARAM_MAX
=> ApiBase
::LIMIT_BIG1
,
147 ApiBase
::PARAM_MAX2
=> ApiBase
::LIMIT_BIG2
150 ApiBase
::PARAM_HELP_MSG
=> 'api-help-param-continue',
153 ApiBase
::PARAM_ISMULTI
=> true,
156 ApiBase
::PARAM_DFLT
=> 'ascending',
157 ApiBase
::PARAM_TYPE
=> [
165 protected function getExamplesMessages() {
167 'action=query&prop=images&titles=Main%20Page'
168 => 'apihelp-query+images-example-simple',
169 'action=query&generator=images&titles=Main%20Page&prop=info'
170 => 'apihelp-query+images-example-generator',
174 public function getHelpUrls() {
175 return 'https://www.mediawiki.org/wiki/API:Images';