Merge "Document the block duration tooltip"
[lhc/web/wiklou.git] / includes / api / ApiQueryAllImages.php
1 <?php
2
3 /**
4 * API for MediaWiki 1.12+
5 *
6 * Created on Mar 16, 2008
7 *
8 * Copyright © 2008 Vasiliev Victor vasilvv@gmail.com,
9 * based on ApiQueryAllPages.php
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24 * http://www.gnu.org/copyleft/gpl.html
25 *
26 * @file
27 */
28
29 /**
30 * Query module to enumerate all available pages.
31 *
32 * @ingroup API
33 */
34 class ApiQueryAllImages extends ApiQueryGeneratorBase {
35 protected $mRepo;
36
37 public function __construct( $query, $moduleName ) {
38 parent::__construct( $query, $moduleName, 'ai' );
39 $this->mRepo = RepoGroup::singleton()->getLocalRepo();
40 }
41
42 /**
43 * Override parent method to make sure the repo's DB is used
44 * which may not necessarily be the same as the local DB.
45 *
46 * TODO: allow querying non-local repos.
47 * @return DatabaseBase
48 */
49 protected function getDB() {
50 return $this->mRepo->getSlaveDB();
51 }
52
53 public function execute() {
54 $this->run();
55 }
56
57 public function getCacheMode( $params ) {
58 return 'public';
59 }
60
61 /**
62 * @param $resultPageSet ApiPageSet
63 * @return void
64 */
65 public function executeGenerator( $resultPageSet ) {
66 if ( $resultPageSet->isResolvingRedirects() ) {
67 $this->dieUsage(
68 'Use "gaifilterredir=nonredirects" option instead of "redirects" ' .
69 'when using allimages as a generator',
70 'params'
71 );
72 }
73
74 $this->run( $resultPageSet );
75 }
76
77 /**
78 * @param $resultPageSet ApiPageSet
79 * @return void
80 */
81 private function run( $resultPageSet = null ) {
82 $repo = $this->mRepo;
83 if ( !$repo instanceof LocalRepo ) {
84 $this->dieUsage(
85 'Local file repository does not support querying all images',
86 'unsupportedrepo'
87 );
88 }
89
90 $prefix = $this->getModulePrefix();
91
92 $db = $this->getDB();
93
94 $params = $this->extractRequestParams();
95
96 // Table and return fields
97 $this->addTables( 'image' );
98
99 $prop = array_flip( $params['prop'] );
100 $this->addFields( LocalFile::selectFields() );
101
102 $ascendingOrder = true;
103 if ( $params['dir'] == 'descending' || $params['dir'] == 'older' ) {
104 $ascendingOrder = false;
105 }
106
107 if ( $params['sort'] == 'name' ) {
108 // Check mutually exclusive params
109 $disallowed = array( 'start', 'end', 'user' );
110 foreach ( $disallowed as $pname ) {
111 if ( isset( $params[$pname] ) ) {
112 $this->dieUsage(
113 "Parameter '{$prefix}{$pname}' can only be used with {$prefix}sort=timestamp",
114 'badparams'
115 );
116 }
117 }
118 if ( $params['filterbots'] != 'all' ) {
119 $this->dieUsage(
120 "Parameter '{$prefix}filterbots' can only be used with {$prefix}sort=timestamp",
121 'badparams'
122 );
123 }
124
125 // Pagination
126 if ( !is_null( $params['continue'] ) ) {
127 $cont = explode( '|', $params['continue'] );
128 $this->dieContinueUsageIf( count( $cont ) != 1 );
129 $op = ( $ascendingOrder ? '>' : '<' );
130 $continueFrom = $db->addQuotes( $cont[0] );
131 $this->addWhere( "img_name $op= $continueFrom" );
132 }
133
134 // Image filters
135 $from = ( is_null( $params['from'] ) ? null : $this->titlePartToKey( $params['from'] ) );
136 $to = ( is_null( $params['to'] ) ? null : $this->titlePartToKey( $params['to'] ) );
137 $this->addWhereRange( 'img_name', ( $ascendingOrder ? 'newer' : 'older' ), $from, $to );
138
139 if ( isset( $params['prefix'] ) ) {
140 $this->addWhere( 'img_name' .
141 $db->buildLike( $this->titlePartToKey( $params['prefix'] ), $db->anyString() ) );
142 }
143 } else {
144 // Check mutually exclusive params
145 $disallowed = array( 'from', 'to', 'prefix' );
146 foreach ( $disallowed as $pname ) {
147 if ( isset( $params[$pname] ) ) {
148 $this->dieUsage(
149 "Parameter '{$prefix}{$pname}' can only be used with {$prefix}sort=name",
150 'badparams'
151 );
152 }
153 }
154 if ( !is_null( $params['user'] ) && $params['filterbots'] != 'all' ) {
155 // Since filterbots checks if each user has the bot right, it
156 // doesn't make sense to use it with user
157 $this->dieUsage(
158 "Parameters '{$prefix}user' and '{$prefix}filterbots' cannot be used together",
159 'badparams'
160 );
161 }
162
163 // Pagination
164 $this->addTimestampWhereRange(
165 'img_timestamp',
166 $ascendingOrder ? 'newer' : 'older',
167 $params['start'],
168 $params['end']
169 );
170
171 // Image filters
172 if ( !is_null( $params['user'] ) ) {
173 $this->addWhereFld( 'img_user_text', $params['user'] );
174 }
175 if ( $params['filterbots'] != 'all' ) {
176 $this->addTables( 'user_groups' );
177 $this->addJoinConds( array( 'user_groups' => array(
178 'LEFT JOIN',
179 array(
180 'ug_group' => User::getGroupsWithPermission( 'bot' ),
181 'ug_user = img_user'
182 )
183 ) ) );
184 $groupCond = ( $params['filterbots'] == 'nobots' ? 'NULL' : 'NOT NULL' );
185 $this->addWhere( "ug_group IS $groupCond" );
186 }
187 }
188
189 // Filters not depending on sort
190 if ( isset( $params['minsize'] ) ) {
191 $this->addWhere( 'img_size>=' . intval( $params['minsize'] ) );
192 }
193
194 if ( isset( $params['maxsize'] ) ) {
195 $this->addWhere( 'img_size<=' . intval( $params['maxsize'] ) );
196 }
197
198 $sha1 = false;
199 if ( isset( $params['sha1'] ) ) {
200 $sha1 = strtolower( $params['sha1'] );
201 if ( !$this->validateSha1Hash( $sha1 ) ) {
202 $this->dieUsage( 'The SHA1 hash provided is not valid', 'invalidsha1hash' );
203 }
204 $sha1 = wfBaseConvert( $sha1, 16, 36, 31 );
205 } elseif ( isset( $params['sha1base36'] ) ) {
206 $sha1 = strtolower( $params['sha1base36'] );
207 if ( !$this->validateSha1Base36Hash( $sha1 ) ) {
208 $this->dieUsage( 'The SHA1Base36 hash provided is not valid', 'invalidsha1base36hash' );
209 }
210 }
211 if ( $sha1 ) {
212 $this->addWhereFld( 'img_sha1', $sha1 );
213 }
214
215 if ( !is_null( $params['mime'] ) ) {
216 global $wgMiserMode;
217 if ( $wgMiserMode ) {
218 $this->dieUsage( 'MIME search disabled in Miser Mode', 'mimesearchdisabled' );
219 }
220
221 list( $major, $minor ) = File::splitMime( $params['mime'] );
222
223 $this->addWhereFld( 'img_major_mime', $major );
224 $this->addWhereFld( 'img_minor_mime', $minor );
225 }
226
227 $limit = $params['limit'];
228 $this->addOption( 'LIMIT', $limit + 1 );
229 $sortFlag = '';
230 if ( !$ascendingOrder ) {
231 $sortFlag = ' DESC';
232 }
233 if ( $params['sort'] == 'timestamp' ) {
234 $this->addOption( 'ORDER BY', 'img_timestamp' . $sortFlag );
235 if ( !is_null( $params['user'] ) ) {
236 $this->addOption( 'USE INDEX', array( 'image' => 'img_usertext_timestamp' ) );
237 } else {
238 $this->addOption( 'USE INDEX', array( 'image' => 'img_timestamp' ) );
239 }
240 } else {
241 $this->addOption( 'ORDER BY', 'img_name' . $sortFlag );
242 }
243
244 $res = $this->select( __METHOD__ );
245
246 $titles = array();
247 $count = 0;
248 $result = $this->getResult();
249 foreach ( $res as $row ) {
250 if ( ++$count > $limit ) {
251 // We've reached the one extra which shows that there are
252 // additional pages to be had. Stop here...
253 if ( $params['sort'] == 'name' ) {
254 $this->setContinueEnumParameter( 'continue', $row->img_name );
255 } else {
256 $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->img_timestamp ) );
257 }
258 break;
259 }
260
261 if ( is_null( $resultPageSet ) ) {
262 $file = $repo->newFileFromRow( $row );
263 $info = array_merge( array( 'name' => $row->img_name ),
264 ApiQueryImageInfo::getInfo( $file, $prop, $result ) );
265 self::addTitleInfo( $info, $file->getTitle() );
266
267 $fit = $result->addValue( array( 'query', $this->getModuleName() ), null, $info );
268 if ( !$fit ) {
269 if ( $params['sort'] == 'name' ) {
270 $this->setContinueEnumParameter( 'continue', $row->img_name );
271 } else {
272 $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->img_timestamp ) );
273 }
274 break;
275 }
276 } else {
277 $titles[] = Title::makeTitle( NS_FILE, $row->img_name );
278 }
279 }
280
281 if ( is_null( $resultPageSet ) ) {
282 $result->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'img' );
283 } else {
284 $resultPageSet->populateFromTitles( $titles );
285 }
286 }
287
288 public function getAllowedParams() {
289 return array(
290 'sort' => array(
291 ApiBase::PARAM_DFLT => 'name',
292 ApiBase::PARAM_TYPE => array(
293 'name',
294 'timestamp'
295 )
296 ),
297 'dir' => array(
298 ApiBase::PARAM_DFLT => 'ascending',
299 ApiBase::PARAM_TYPE => array(
300 // sort=name
301 'ascending',
302 'descending',
303 // sort=timestamp
304 'newer',
305 'older'
306 )
307 ),
308 'from' => null,
309 'to' => null,
310 'continue' => null,
311 'start' => array(
312 ApiBase::PARAM_TYPE => 'timestamp'
313 ),
314 'end' => array(
315 ApiBase::PARAM_TYPE => 'timestamp'
316 ),
317 'prop' => array(
318 ApiBase::PARAM_TYPE => ApiQueryImageInfo::getPropertyNames( $this->propertyFilter ),
319 ApiBase::PARAM_DFLT => 'timestamp|url',
320 ApiBase::PARAM_ISMULTI => true
321 ),
322 'prefix' => null,
323 'minsize' => array(
324 ApiBase::PARAM_TYPE => 'integer',
325 ),
326 'maxsize' => array(
327 ApiBase::PARAM_TYPE => 'integer',
328 ),
329 'sha1' => null,
330 'sha1base36' => null,
331 'user' => array(
332 ApiBase::PARAM_TYPE => 'user'
333 ),
334 'filterbots' => array(
335 ApiBase::PARAM_DFLT => 'all',
336 ApiBase::PARAM_TYPE => array(
337 'all',
338 'bots',
339 'nobots'
340 )
341 ),
342 'mime' => null,
343 'limit' => array(
344 ApiBase::PARAM_DFLT => 10,
345 ApiBase::PARAM_TYPE => 'limit',
346 ApiBase::PARAM_MIN => 1,
347 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
348 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
349 ),
350 );
351 }
352
353 public function getParamDescription() {
354 $p = $this->getModulePrefix();
355
356 return array(
357 'sort' => 'Property to sort by',
358 'dir' => 'The direction in which to list',
359 'from' => "The image title to start enumerating from. Can only be used with {$p}sort=name",
360 'to' => "The image title to stop enumerating at. Can only be used with {$p}sort=name",
361 'continue' => 'When more results are available, use this to continue',
362 'start' => "The timestamp to start enumerating from. Can only be used with {$p}sort=timestamp",
363 'end' => "The timestamp to end enumerating. Can only be used with {$p}sort=timestamp",
364 'prop' => ApiQueryImageInfo::getPropertyDescriptions( $this->propertyFilter ),
365 'prefix' => "Search for all image titles that begin with this " .
366 "value. Can only be used with {$p}sort=name",
367 'minsize' => 'Limit to images with at least this many bytes',
368 'maxsize' => 'Limit to images with at most this many bytes',
369 'sha1' => "SHA1 hash of image. Overrides {$p}sha1base36",
370 'sha1base36' => 'SHA1 hash of image in base 36 (used in MediaWiki)',
371 'user' => "Only return files uploaded by this user. Can only be used " .
372 "with {$p}sort=timestamp. Cannot be used together with {$p}filterbots",
373 'filterbots' => "How to filter files uploaded by bots. Can only be " .
374 "used with {$p}sort=timestamp. Cannot be used together with {$p}user",
375 'mime' => 'What MIME type to search for. e.g. image/jpeg. Disabled in Miser Mode',
376 'limit' => 'How many images in total to return',
377 );
378 }
379
380 private $propertyFilter = array( 'archivename', 'thumbmime' );
381
382 public function getResultProperties() {
383 return array_merge(
384 array(
385 '' => array(
386 'name' => 'string',
387 'ns' => 'namespace',
388 'title' => 'string'
389 )
390 ),
391 ApiQueryImageInfo::getResultPropertiesFiltered( $this->propertyFilter )
392 );
393 }
394
395 public function getDescription() {
396 return 'Enumerate all images sequentially';
397 }
398
399 public function getPossibleErrors() {
400 $p = $this->getModulePrefix();
401
402 return array_merge( parent::getPossibleErrors(), array(
403 array(
404 'code' => 'params',
405 'info' => 'Use "gaifilterredir=nonredirects" option instead ' .
406 'of "redirects" when using allimages as a generator'
407 ),
408 array(
409 'code' => 'badparams',
410 'info' => "Parameter'{$p}start' can only be used with {$p}sort=timestamp"
411 ),
412 array(
413 'code' => 'badparams',
414 'info' => "Parameter'{$p}end' can only be used with {$p}sort=timestamp"
415 ),
416 array(
417 'code' => 'badparams',
418 'info' => "Parameter'{$p}user' can only be used with {$p}sort=timestamp"
419 ),
420 array(
421 'code' => 'badparams',
422 'info' => "Parameter'{$p}filterbots' can only be used with {$p}sort=timestamp"
423 ),
424 array(
425 'code' => 'badparams',
426 'info' => "Parameter'{$p}from' can only be used with {$p}sort=name"
427 ),
428 array(
429 'code' => 'badparams',
430 'info' => "Parameter'{$p}to' can only be used with {$p}sort=name"
431 ),
432 array(
433 'code' => 'badparams',
434 'info' => "Parameter'{$p}prefix' can only be used with {$p}sort=name"
435 ),
436 array(
437 'code' => 'badparams',
438 'info' => "Parameters '{$p}user' and '{$p}filterbots' cannot be used together"
439 ),
440 array(
441 'code' => 'unsupportedrepo',
442 'info' => 'Local file repository does not support querying all images' ),
443 array( 'code' => 'mimesearchdisabled', 'info' => 'MIME search disabled in Miser Mode' ),
444 array( 'code' => 'invalidsha1hash', 'info' => 'The SHA1 hash provided is not valid' ),
445 array(
446 'code' => 'invalidsha1base36hash',
447 'info' => 'The SHA1Base36 hash provided is not valid'
448 ),
449 ) );
450 }
451
452 public function getExamples() {
453 return array(
454 'api.php?action=query&list=allimages&aifrom=B' => array(
455 'Simple Use',
456 'Show a list of files starting at the letter "B"',
457 ),
458 'api.php?action=query&list=allimages&aiprop=user|timestamp|url&' .
459 'aisort=timestamp&aidir=older' => array(
460 'Simple Use',
461 'Show a list of recently uploaded files similar to Special:NewFiles',
462 ),
463 'api.php?action=query&generator=allimages&gailimit=4&' .
464 'gaifrom=T&prop=imageinfo' => array(
465 'Using as Generator',
466 'Show info about 4 files starting at the letter "T"',
467 ),
468 );
469 }
470
471 public function getHelpUrls() {
472 return 'https://www.mediawiki.org/wiki/API:Allimages';
473 }
474 }