Merge "Special:ListGroupRights: Display the legend at the top"
[mediawiki.git] / includes / api / ApiQueryImages.php
blobf2bf0a7b484722dde0635da426863ae24b626d94
1 <?php
2 /**
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
24 * @file
27 /**
28 * This query adds an "<images>" subelement to all pages with the list of
29 * images embedded into those pages.
31 * @ingroup API
33 class ApiQueryImages extends ApiQueryGeneratorBase {
35 public function __construct( $query, $moduleName ) {
36 parent::__construct( $query, $moduleName, 'im' );
39 public function execute() {
40 $this->run();
43 public function executeGenerator( $resultPageSet ) {
44 $this->run( $resultPageSet );
47 /**
48 * @param $resultPageSet ApiPageSet
50 private function run( $resultPageSet = null ) {
51 if ( $this->getPageSet()->getGoodTitleCount() == 0 ) {
52 return; // nothing to do
55 $params = $this->extractRequestParams();
56 $this->addFields( array(
57 'il_from',
58 'il_to'
59 ) );
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] );
69 $this->addWhere(
70 "il_from $op $ilfrom OR " .
71 "(il_from = $ilfrom AND " .
72 "il_to $op= $ilto)"
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', array(
82 'il_from' . $sort,
83 'il_to' . $sort
84 ));
86 $this->addOption( 'LIMIT', $params['limit'] + 1 );
88 if ( !is_null( $params['images'] ) ) {
89 $images = array();
90 foreach ( $params['images'] as $img ) {
91 $title = Title::newFromText( $img );
92 if ( !$title || $title->getNamespace() != NS_FILE ) {
93 $this->setWarning( "\"$img\" is not a file" );
94 } else {
95 $images[] = $title->getDBkey();
98 $this->addWhereFld( 'il_to', $images );
101 $res = $this->select( __METHOD__ );
103 if ( is_null( $resultPageSet ) ) {
104 $count = 0;
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 );
110 break;
112 $vals = array();
113 ApiQueryBase::addTitleInfo( $vals, Title::makeTitle( NS_FILE, $row->il_to ) );
114 $fit = $this->addPageSubItem( $row->il_from, $vals );
115 if ( !$fit ) {
116 $this->setContinueEnumParameter( 'continue', $row->il_from . '|' . $row->il_to );
117 break;
120 } else {
121 $titles = array();
122 $count = 0;
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 );
128 break;
130 $titles[] = Title::makeTitle( NS_FILE, $row->il_to );
132 $resultPageSet->populateFromTitles( $titles );
136 public function getCacheMode( $params ) {
137 return 'public';
140 public function getAllowedParams() {
141 return array(
142 'limit' => array(
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
149 'continue' => null,
150 'images' => array(
151 ApiBase::PARAM_ISMULTI => true,
153 'dir' => array(
154 ApiBase::PARAM_DFLT => 'ascending',
155 ApiBase::PARAM_TYPE => array(
156 'ascending',
157 'descending'
163 public function getParamDescription() {
164 return array(
165 'limit' => 'How many images to return',
166 'continue' => 'When more results are available, use this to continue',
167 'images' => 'Only list these images. Useful for checking whether a certain page has a certain Image.',
168 'dir' => 'The direction in which to list',
172 public function getResultProperties() {
173 return array(
174 '' => array(
175 'ns' => 'namespace',
176 'title' => 'string'
181 public function getDescription() {
182 return 'Returns all images contained on the given page(s)';
185 public function getExamples() {
186 return array(
187 'api.php?action=query&prop=images&titles=Main%20Page' => 'Get a list of images used in the [[Main Page]]',
188 'api.php?action=query&generator=images&titles=Main%20Page&prop=info' => 'Get information about all images used in the [[Main Page]]',
192 public function getHelpUrls() {
193 return 'https://www.mediawiki.org/wiki/API:Properties#images_.2F_im';