5 * Created on July 6, 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 * A query action to get image information and upload history.
32 class ApiQueryImageInfo
extends ApiQueryBase
{
33 const TRANSFORM_LIMIT
= 50;
34 private static $transformCount = 0;
36 public function __construct( $query, $moduleName, $prefix = 'ii' ) {
37 // We allow a subclass to override the prefix, to create a related API module.
38 // Some other parts of MediaWiki construct this with a null $prefix, which used to be ignored when this only took two arguments
39 if ( is_null( $prefix ) ) {
42 parent
::__construct( $query, $moduleName, $prefix );
45 public function execute() {
46 $params = $this->extractRequestParams();
48 $prop = array_flip( $params['prop'] );
50 $scale = $this->getScale( $params );
52 $pageIds = $this->getPageSet()->getAllTitlesByNamespace();
53 if ( !empty( $pageIds[NS_FILE
] ) ) {
54 $titles = array_keys( $pageIds[NS_FILE
] );
55 asort( $titles ); // Ensure the order is always the same
58 if ( !is_null( $params['continue'] ) ) {
59 $cont = explode( '|', $params['continue'] );
60 $this->dieContinueUsageIf( count( $cont ) != 2 );
61 $fromTitle = strval( $cont[0] );
62 $fromTimestamp = $cont[1];
63 // Filter out any titles before $fromTitle
64 foreach ( $titles as $key => $title ) {
65 if ( $title < $fromTitle ) {
66 unset( $titles[$key] );
73 $result = $this->getResult();
74 //search only inside the local repo
75 if ( $params['localonly'] ) {
76 $images = RepoGroup
::singleton()->getLocalRepo()->findFiles( $titles );
78 $images = RepoGroup
::singleton()->findFiles( $titles );
80 foreach ( $titles as $title ) {
81 $pageId = $pageIds[NS_FILE
][$title];
82 $start = $title === $fromTitle ?
$fromTimestamp : $params['start'];
84 if ( !isset( $images[$title] ) ) {
86 array( 'query', 'pages', intval( $pageId ) ),
89 // The above can't fail because it doesn't increase the result size
94 $img = $images[$title];
96 if ( self
::getTransformCount() >= self
::TRANSFORM_LIMIT
) {
97 if ( count( $pageIds[NS_FILE
] ) == 1 ) {
98 // See the 'the user is screwed' comment below
99 $this->setContinueEnumParameter( 'start',
100 $start !== null ?
$start : wfTimestamp( TS_ISO_8601
, $img->getTimestamp() )
103 $this->setContinueEnumParameter( 'continue',
104 $this->getContinueStr( $img, $start ) );
109 $fit = $result->addValue(
110 array( 'query', 'pages', intval( $pageId ) ),
111 'imagerepository', $img->getRepoName()
114 if ( count( $pageIds[NS_FILE
] ) == 1 ) {
115 // The user is screwed. imageinfo can't be solely
116 // responsible for exceeding the limit in this case,
117 // so set a query-continue that just returns the same
118 // thing again. When the violating queries have been
119 // out-continued, the result will get through
120 $this->setContinueEnumParameter( 'start',
121 $start !== null ?
$start : wfTimestamp( TS_ISO_8601
, $img->getTimestamp() )
124 $this->setContinueEnumParameter( 'continue',
125 $this->getContinueStr( $img, $start ) );
130 // Check if we can make the requested thumbnail, and get transform parameters.
131 $finalThumbParams = $this->mergeThumbParams( $img, $scale, $params['urlparam'] );
133 // Get information about the current version first
134 // Check that the current version is within the start-end boundaries
137 ( is_null( $start ) ||
$img->getTimestamp() <= $start ) &&
138 ( is_null( $params['end'] ) ||
$img->getTimestamp() >= $params['end'] )
142 $fit = $this->addPageSubItem( $pageId,
143 self
::getInfo( $img, $prop, $result,
144 $finalThumbParams, $params['metadataversion'] ) );
146 if ( count( $pageIds[NS_FILE
] ) == 1 ) {
147 // See the 'the user is screwed' comment above
148 $this->setContinueEnumParameter( 'start',
149 wfTimestamp( TS_ISO_8601
, $img->getTimestamp() ) );
151 $this->setContinueEnumParameter( 'continue',
152 $this->getContinueStr( $img ) );
158 // Now get the old revisions
159 // Get one more to facilitate query-continue functionality
160 $count = ( $gotOne ?
1 : 0 );
161 $oldies = $img->getHistory( $params['limit'] - $count +
1, $start, $params['end'] );
162 /** @var $oldie File */
163 foreach ( $oldies as $oldie ) {
164 if ( ++
$count > $params['limit'] ) {
165 // We've reached the extra one which shows that there are additional pages to be had. Stop here...
166 // Only set a query-continue if there was only one title
167 if ( count( $pageIds[NS_FILE
] ) == 1 ) {
168 $this->setContinueEnumParameter( 'start',
169 wfTimestamp( TS_ISO_8601
, $oldie->getTimestamp() ) );
173 $fit = self
::getTransformCount() < self
::TRANSFORM_LIMIT
&&
174 $this->addPageSubItem( $pageId,
175 self
::getInfo( $oldie, $prop, $result,
176 $finalThumbParams, $params['metadataversion']
180 if ( count( $pageIds[NS_FILE
] ) == 1 ) {
181 $this->setContinueEnumParameter( 'start',
182 wfTimestamp( TS_ISO_8601
, $oldie->getTimestamp() ) );
184 $this->setContinueEnumParameter( 'continue',
185 $this->getContinueStr( $oldie ) );
198 * From parameters, construct a 'scale' array
199 * @param array $params Parameters passed to api.
200 * @return Array or Null: key-val array of 'width' and 'height', or null
202 public function getScale( $params ) {
203 $p = $this->getModulePrefix();
205 if ( $params['urlwidth'] != -1 ) {
207 $scale['width'] = $params['urlwidth'];
208 $scale['height'] = $params['urlheight'];
209 } elseif ( $params['urlheight'] != -1 ) {
210 // Height is specified but width isn't
211 // Don't set $scale['width']; this signals mergeThumbParams() to fill it with the image's width
213 $scale['height'] = $params['urlheight'];
216 if ( $params['urlparam'] ) {
217 $this->dieUsage( "{$p}urlparam requires {$p}urlwidth", "urlparam_no_width" );
224 /** Validate and merge scale parameters with handler thumb parameters, give error if invalid.
226 * We do this later than getScale, since we need the image
227 * to know which handler, since handlers can make their own parameters.
228 * @param File $image Image that params are for.
229 * @param array $thumbParams thumbnail parameters from getScale
230 * @param string $otherParams of otherParams (iiurlparam).
231 * @return Array of parameters for transform.
233 protected function mergeThumbParams( $image, $thumbParams, $otherParams ) {
235 if ( !isset( $thumbParams['width'] ) && isset( $thumbParams['height'] ) ) {
236 // Populate the width with the image's width, so only the height restriction applies
237 $thumbParams['width'] = $image->getWidth();
240 if ( !$otherParams ) {
243 $p = $this->getModulePrefix();
245 $h = $image->getHandler();
247 $this->setWarning( 'Could not create thumbnail because ' .
248 $image->getName() . ' does not have an associated image handler' );
252 $paramList = $h->parseParamString( $otherParams );
254 // Just set a warning (instead of dieUsage), as in many cases
255 // we could still render the image using width and height parameters,
256 // and this type of thing could happen between different versions of
258 $this->setWarning( "Could not parse {$p}urlparam for " . $image->getName()
259 . '. Using only width and height' );
263 if ( isset( $paramList['width'] ) ) {
264 if ( intval( $paramList['width'] ) != intval( $thumbParams['width'] ) ) {
265 $this->setWarning( "Ignoring width value set in {$p}urlparam ({$paramList['width']}) "
266 . "in favor of width value derived from {$p}urlwidth/{$p}urlheight ({$thumbParams['width']})" );
270 foreach ( $paramList as $name => $value ) {
271 if ( !$h->validateParam( $name, $value ) ) {
272 $this->dieUsage( "Invalid value for {$p}urlparam ($name=$value)", "urlparam" );
276 return $thumbParams +
$paramList;
280 * Get result information for an image revision
282 * @param $file File object
283 * @param array $prop of properties to get (in the keys)
284 * @param $result ApiResult object
285 * @param array $thumbParams containing 'width' and 'height' items, or null
286 * @param string $version Version of image metadata (for things like jpeg which have different versions).
287 * @return Array: result array
289 static function getInfo( $file, $prop, $result, $thumbParams = null, $version = 'latest' ) {
291 // Timestamp is shown even if the file is revdelete'd in interface
293 if ( isset( $prop['timestamp'] ) ) {
294 $vals['timestamp'] = wfTimestamp( TS_ISO_8601
, $file->getTimestamp() );
297 $user = isset( $prop['user'] );
298 $userid = isset( $prop['userid'] );
300 if ( $user ||
$userid ) {
301 if ( $file->isDeleted( File
::DELETED_USER
) ) {
302 $vals['userhidden'] = '';
305 $vals['user'] = $file->getUser();
308 $vals['userid'] = $file->getUser( 'id' );
310 if ( !$file->getUser( 'id' ) ) {
316 // This is shown even if the file is revdelete'd in interface
318 if ( isset( $prop['size'] ) ||
isset( $prop['dimensions'] ) ) {
319 $vals['size'] = intval( $file->getSize() );
320 $vals['width'] = intval( $file->getWidth() );
321 $vals['height'] = intval( $file->getHeight() );
323 $pageCount = $file->pageCount();
324 if ( $pageCount !== false ) {
325 $vals['pagecount'] = $pageCount;
329 $pcomment = isset( $prop['parsedcomment'] );
330 $comment = isset( $prop['comment'] );
332 if ( $pcomment ||
$comment ) {
333 if ( $file->isDeleted( File
::DELETED_COMMENT
) ) {
334 $vals['commenthidden'] = '';
337 $vals['parsedcomment'] = Linker
::formatComment(
338 $file->getDescription(), $file->getTitle() );
341 $vals['comment'] = $file->getDescription();
346 $url = isset( $prop['url'] );
347 $sha1 = isset( $prop['sha1'] );
348 $meta = isset( $prop['metadata'] );
349 $mime = isset( $prop['mime'] );
350 $mediatype = isset( $prop['mediatype'] );
351 $archive = isset( $prop['archivename'] );
352 $bitdepth = isset( $prop['bitdepth'] );
354 if ( ( $url ||
$sha1 ||
$meta ||
$mime ||
$mediatype ||
$archive ||
$bitdepth )
355 && $file->isDeleted( File
::DELETED_FILE
) ) {
356 $vals['filehidden'] = '';
358 //Early return, tidier than indenting all following things one level
363 if ( !is_null( $thumbParams ) ) {
364 $mto = $file->transform( $thumbParams );
365 self
::$transformCount++
;
366 if ( $mto && !$mto->isError() ) {
367 $vals['thumburl'] = wfExpandUrl( $mto->getUrl(), PROTO_CURRENT
);
369 // bug 23834 - If the URL's are the same, we haven't resized it, so shouldn't give the wanted
370 // thumbnail sizes for the thumbnail actual size
371 if ( $mto->getUrl() !== $file->getUrl() ) {
372 $vals['thumbwidth'] = intval( $mto->getWidth() );
373 $vals['thumbheight'] = intval( $mto->getHeight() );
375 $vals['thumbwidth'] = intval( $file->getWidth() );
376 $vals['thumbheight'] = intval( $file->getHeight() );
379 if ( isset( $prop['thumbmime'] ) && $file->getHandler() ) {
380 list( , $mime ) = $file->getHandler()->getThumbType(
381 $mto->getExtension(), $file->getMimeType(), $thumbParams );
382 $vals['thumbmime'] = $mime;
384 } elseif ( $mto && $mto->isError() ) {
385 $vals['thumberror'] = $mto->toText();
388 $vals['url'] = wfExpandUrl( $file->getFullURL(), PROTO_CURRENT
);
389 $vals['descriptionurl'] = wfExpandUrl( $file->getDescriptionUrl(), PROTO_CURRENT
);
393 $vals['sha1'] = wfBaseConvert( $file->getSha1(), 36, 16, 40 );
397 wfSuppressWarnings();
398 $metadata = unserialize( $file->getMetadata() );
400 if ( $metadata && $version !== 'latest' ) {
401 $metadata = $file->convertMetadataVersion( $metadata, $version );
403 $vals['metadata'] = $metadata ? self
::processMetaData( $metadata, $result ) : null;
407 $vals['mime'] = $file->getMimeType();
411 $vals['mediatype'] = $file->getMediaType();
414 if ( $archive && $file->isOld() ) {
415 $vals['archivename'] = $file->getArchiveName();
419 $vals['bitdepth'] = $file->getBitDepth();
426 * Get the count of image transformations performed
428 * If this is >= TRANSFORM_LIMIT, you should probably stop processing images.
430 * @return integer count
432 static function getTransformCount() {
433 return self
::$transformCount;
438 * @param $metadata Array
439 * @param $result ApiResult
442 public static function processMetaData( $metadata, $result ) {
444 if ( is_array( $metadata ) ) {
445 foreach ( $metadata as $key => $value ) {
446 $r = array( 'name' => $key );
447 if ( is_array( $value ) ) {
448 $r['value'] = self
::processMetaData( $value, $result );
450 $r['value'] = $value;
455 $result->setIndexedTagName( $retval, 'metadata' );
459 public function getCacheMode( $params ) {
465 * @param null|string $start
468 protected function getContinueStr( $img, $start = null ) {
469 if ( $start === null ) {
470 $start = $img->getTimestamp();
472 return $img->getOriginalTitle()->getText() . '|' . $start;
475 public function getAllowedParams() {
478 ApiBase
::PARAM_ISMULTI
=> true,
479 ApiBase
::PARAM_DFLT
=> 'timestamp|user',
480 ApiBase
::PARAM_TYPE
=> self
::getPropertyNames()
483 ApiBase
::PARAM_TYPE
=> 'limit',
484 ApiBase
::PARAM_DFLT
=> 1,
485 ApiBase
::PARAM_MIN
=> 1,
486 ApiBase
::PARAM_MAX
=> ApiBase
::LIMIT_BIG1
,
487 ApiBase
::PARAM_MAX2
=> ApiBase
::LIMIT_BIG2
490 ApiBase
::PARAM_TYPE
=> 'timestamp'
493 ApiBase
::PARAM_TYPE
=> 'timestamp'
496 ApiBase
::PARAM_TYPE
=> 'integer',
497 ApiBase
::PARAM_DFLT
=> -1
499 'urlheight' => array(
500 ApiBase
::PARAM_TYPE
=> 'integer',
501 ApiBase
::PARAM_DFLT
=> -1
503 'metadataversion' => array(
504 ApiBase
::PARAM_TYPE
=> 'string',
505 ApiBase
::PARAM_DFLT
=> '1',
508 ApiBase
::PARAM_DFLT
=> '',
509 ApiBase
::PARAM_TYPE
=> 'string',
512 'localonly' => false,
517 * Returns all possible parameters to iiprop
519 * @param array $filter List of properties to filter out
523 public static function getPropertyNames( $filter = array() ) {
524 return array_diff( array_keys( self
::getProperties() ), $filter );
528 * Returns array key value pairs of properties and their descriptions
530 * @param string $modulePrefix
533 private static function getProperties( $modulePrefix = '' ) {
535 'timestamp' => ' timestamp - Adds timestamp for the uploaded version',
536 'user' => ' user - Adds the user who uploaded the image version',
537 'userid' => ' userid - Add the user ID that uploaded the image version',
538 'comment' => ' comment - Comment on the version',
539 'parsedcomment' => ' parsedcomment - Parse the comment on the version',
540 'url' => ' url - Gives URL to the image and the description page',
541 'size' => ' size - Adds the size of the image in bytes and the height, width and page count (if applicable)',
542 'dimensions' => ' dimensions - Alias for size', // For backwards compatibility with Allimages
543 'sha1' => ' sha1 - Adds SHA-1 hash for the image',
544 'mime' => ' mime - Adds MIME type of the image',
545 'thumbmime' => ' thumbmime - Adds MIME type of the image thumbnail' .
546 ' (requires url and param ' . $modulePrefix . 'urlwidth)',
547 'mediatype' => ' mediatype - Adds the media type of the image',
548 'metadata' => ' metadata - Lists Exif metadata for the version of the image',
549 'archivename' => ' archivename - Adds the file name of the archive version for non-latest versions',
550 'bitdepth' => ' bitdepth - Adds the bit depth of the version',
555 * Returns the descriptions for the properties provided by getPropertyNames()
557 * @param array $filter List of properties to filter out
558 * @param string $modulePrefix
561 public static function getPropertyDescriptions( $filter = array(), $modulePrefix = '' ) {
563 array( 'What image information to get:' ),
564 array_values( array_diff_key( self
::getProperties( $modulePrefix ), array_flip( $filter ) ) )
569 * Return the API documentation for the parameters.
570 * @return Array parameter documentation.
572 public function getParamDescription() {
573 $p = $this->getModulePrefix();
575 'prop' => self
::getPropertyDescriptions( array(), $p ),
576 'urlwidth' => array( "If {$p}prop=url is set, a URL to an image scaled to this width will be returned.",
577 'For performance reasons if this option is used, ' .
578 'no more than ' . self
::TRANSFORM_LIMIT
. ' scaled images will be returned.' ),
579 'urlheight' => "Similar to {$p}urlwidth.",
580 'urlparam' => array( "A handler specific parameter string. For example, pdf's ",
581 "might use 'page15-100px'. {$p}urlwidth must be used and be consistent with {$p}urlparam" ),
582 'limit' => 'How many image revisions to return per image',
583 'start' => 'Timestamp to start listing from',
584 'end' => 'Timestamp to stop listing at',
585 'metadataversion' => array( "Version of metadata to use. if 'latest' is specified, use latest version.",
586 "Defaults to '1' for backwards compatibility" ),
587 'continue' => 'If the query response includes a continue value, use it here to get another page of results',
588 'localonly' => 'Look only for files in the local repository',
592 public static function getResultPropertiesFiltered( $filter = array() ) {
594 'timestamp' => array(
595 'timestamp' => 'timestamp'
598 'userhidden' => 'boolean',
603 'userhidden' => 'boolean',
604 'userid' => 'integer',
609 'width' => 'integer',
610 'height' => 'integer',
611 'pagecount' => array(
612 ApiBase
::PROP_TYPE
=> 'integer',
613 ApiBase
::PROP_NULLABLE
=> true
616 'dimensions' => array(
618 'width' => 'integer',
619 'height' => 'integer',
620 'pagecount' => array(
621 ApiBase
::PROP_TYPE
=> 'integer',
622 ApiBase
::PROP_NULLABLE
=> true
626 'commenthidden' => 'boolean',
628 ApiBase
::PROP_TYPE
=> 'string',
629 ApiBase
::PROP_NULLABLE
=> true
632 'parsedcomment' => array(
633 'commenthidden' => 'boolean',
634 'parsedcomment' => array(
635 ApiBase
::PROP_TYPE
=> 'string',
636 ApiBase
::PROP_NULLABLE
=> true
640 'filehidden' => 'boolean',
642 ApiBase
::PROP_TYPE
=> 'string',
643 ApiBase
::PROP_NULLABLE
=> true
645 'thumbwidth' => array(
646 ApiBase
::PROP_TYPE
=> 'integer',
647 ApiBase
::PROP_NULLABLE
=> true
649 'thumbheight' => array(
650 ApiBase
::PROP_TYPE
=> 'integer',
651 ApiBase
::PROP_NULLABLE
=> true
653 'thumberror' => array(
654 ApiBase
::PROP_TYPE
=> 'string',
655 ApiBase
::PROP_NULLABLE
=> true
658 ApiBase
::PROP_TYPE
=> 'string',
659 ApiBase
::PROP_NULLABLE
=> true
661 'descriptionurl' => array(
662 ApiBase
::PROP_TYPE
=> 'string',
663 ApiBase
::PROP_NULLABLE
=> true
667 'filehidden' => 'boolean',
669 ApiBase
::PROP_TYPE
=> 'string',
670 ApiBase
::PROP_NULLABLE
=> true
674 'filehidden' => 'boolean',
676 ApiBase
::PROP_TYPE
=> 'string',
677 ApiBase
::PROP_NULLABLE
=> true
680 'thumbmime' => array(
681 'filehidden' => 'boolean',
682 'thumbmime' => array(
683 ApiBase
::PROP_TYPE
=> 'string',
684 ApiBase
::PROP_NULLABLE
=> true
687 'mediatype' => array(
688 'filehidden' => 'boolean',
689 'mediatype' => array(
690 ApiBase
::PROP_TYPE
=> 'string',
691 ApiBase
::PROP_NULLABLE
=> true
694 'archivename' => array(
695 'filehidden' => 'boolean',
696 'archivename' => array(
697 ApiBase
::PROP_TYPE
=> 'string',
698 ApiBase
::PROP_NULLABLE
=> true
702 'filehidden' => 'boolean',
704 ApiBase
::PROP_TYPE
=> 'integer',
705 ApiBase
::PROP_NULLABLE
=> true
709 return array_diff_key( $props, array_flip( $filter ) );
712 public function getResultProperties() {
713 return self
::getResultPropertiesFiltered();
716 public function getDescription() {
717 return 'Returns image information and upload history';
720 public function getPossibleErrors() {
721 $p = $this->getModulePrefix();
722 return array_merge( parent
::getPossibleErrors(), array(
723 array( 'code' => "{$p}urlwidth", 'info' => "{$p}urlheight cannot be used without {$p}urlwidth" ),
724 array( 'code' => 'urlparam', 'info' => "Invalid value for {$p}urlparam" ),
725 array( 'code' => 'urlparam_no_width', 'info' => "{$p}urlparam requires {$p}urlwidth" ),
729 public function getExamples() {
731 'api.php?action=query&titles=File:Albert%20Einstein%20Head.jpg&prop=imageinfo',
732 'api.php?action=query&titles=File:Test.jpg&prop=imageinfo&iilimit=50&iiend=20071231235959&iiprop=timestamp|user|url',
736 public function getHelpUrls() {
737 return 'https://www.mediawiki.org/wiki/API:Properties#imageinfo_.2F_ii';