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( ApiQuery
$query, $moduleName, $prefix = 'ii' ) {
37 // We allow a subclass to override the prefix, to create a related API
38 // module. Some other parts of MediaWiki construct this with a null
39 // $prefix, which used to be ignored when this only took two arguments
40 if ( is_null( $prefix ) ) {
43 parent
::__construct( $query, $moduleName, $prefix );
46 public function execute() {
47 $params = $this->extractRequestParams();
49 $prop = array_flip( $params['prop'] );
51 $scale = $this->getScale( $params );
54 'version' => $params['metadataversion'],
55 'language' => $params['extmetadatalanguage'],
56 'multilang' => $params['extmetadatamultilang'],
57 'extmetadatafilter' => $params['extmetadatafilter'],
58 'revdelUser' => $this->getUser(),
61 $pageIds = $this->getPageSet()->getGoodAndMissingTitlesByNamespace();
62 if ( !empty( $pageIds[NS_FILE
] ) ) {
63 $titles = array_keys( $pageIds[NS_FILE
] );
64 asort( $titles ); // Ensure the order is always the same
67 if ( !is_null( $params['continue'] ) ) {
68 $cont = explode( '|', $params['continue'] );
69 $this->dieContinueUsageIf( count( $cont ) != 2 );
70 $fromTitle = strval( $cont[0] );
71 $fromTimestamp = $cont[1];
72 // Filter out any titles before $fromTitle
73 foreach ( $titles as $key => $title ) {
74 if ( $title < $fromTitle ) {
75 unset( $titles[$key] );
82 $user = $this->getUser();
83 $findTitles = array_map( function ( $title ) use ( $user ) {
90 if ( $params['localonly'] ) {
91 $images = RepoGroup
::singleton()->getLocalRepo()->findFiles( $findTitles );
93 $images = RepoGroup
::singleton()->findFiles( $findTitles );
96 $result = $this->getResult();
97 foreach ( $titles as $title ) {
98 $pageId = $pageIds[NS_FILE
][$title];
99 $start = $title === $fromTitle ?
$fromTimestamp : $params['start'];
101 if ( !isset( $images[$title] ) ) {
102 if ( isset( $prop['uploadwarning'] ) ) {
103 // Uploadwarning needs info about non-existing files
104 $images[$title] = wfLocalFile( $title );
107 array( 'query', 'pages', intval( $pageId ) ),
108 'imagerepository', ''
110 // The above can't fail because it doesn't increase the result size
115 /** @var $img File */
116 $img = $images[$title];
118 if ( self
::getTransformCount() >= self
::TRANSFORM_LIMIT
) {
119 if ( count( $pageIds[NS_FILE
] ) == 1 ) {
120 // See the 'the user is screwed' comment below
121 $this->setContinueEnumParameter( 'start',
122 $start !== null ?
$start : wfTimestamp( TS_ISO_8601
, $img->getTimestamp() )
125 $this->setContinueEnumParameter( 'continue',
126 $this->getContinueStr( $img, $start ) );
131 $fit = $result->addValue(
132 array( 'query', 'pages', intval( $pageId ) ),
133 'imagerepository', $img->getRepoName()
136 if ( count( $pageIds[NS_FILE
] ) == 1 ) {
137 // The user is screwed. imageinfo can't be solely
138 // responsible for exceeding the limit in this case,
139 // so set a query-continue that just returns the same
140 // thing again. When the violating queries have been
141 // out-continued, the result will get through
142 $this->setContinueEnumParameter( 'start',
143 $start !== null ?
$start : wfTimestamp( TS_ISO_8601
, $img->getTimestamp() )
146 $this->setContinueEnumParameter( 'continue',
147 $this->getContinueStr( $img, $start ) );
152 // Check if we can make the requested thumbnail, and get transform parameters.
153 $finalThumbParams = $this->mergeThumbParams( $img, $scale, $params['urlparam'] );
155 // Get information about the current version first
156 // Check that the current version is within the start-end boundaries
159 ( is_null( $start ) ||
$img->getTimestamp() <= $start ) &&
160 ( is_null( $params['end'] ) ||
$img->getTimestamp() >= $params['end'] )
164 $fit = $this->addPageSubItem( $pageId,
165 self
::getInfo( $img, $prop, $result,
166 $finalThumbParams, $opts
170 if ( count( $pageIds[NS_FILE
] ) == 1 ) {
171 // See the 'the user is screwed' comment above
172 $this->setContinueEnumParameter( 'start',
173 wfTimestamp( TS_ISO_8601
, $img->getTimestamp() ) );
175 $this->setContinueEnumParameter( 'continue',
176 $this->getContinueStr( $img ) );
182 // Now get the old revisions
183 // Get one more to facilitate query-continue functionality
184 $count = ( $gotOne ?
1 : 0 );
185 $oldies = $img->getHistory( $params['limit'] - $count +
1, $start, $params['end'] );
186 /** @var $oldie File */
187 foreach ( $oldies as $oldie ) {
188 if ( ++
$count > $params['limit'] ) {
189 // We've reached the extra one which shows that there are
190 // additional pages to be had. Stop here...
191 // Only set a query-continue if there was only one title
192 if ( count( $pageIds[NS_FILE
] ) == 1 ) {
193 $this->setContinueEnumParameter( 'start',
194 wfTimestamp( TS_ISO_8601
, $oldie->getTimestamp() ) );
198 $fit = self
::getTransformCount() < self
::TRANSFORM_LIMIT
&&
199 $this->addPageSubItem( $pageId,
200 self
::getInfo( $oldie, $prop, $result,
201 $finalThumbParams, $opts
205 if ( count( $pageIds[NS_FILE
] ) == 1 ) {
206 $this->setContinueEnumParameter( 'start',
207 wfTimestamp( TS_ISO_8601
, $oldie->getTimestamp() ) );
209 $this->setContinueEnumParameter( 'continue',
210 $this->getContinueStr( $oldie ) );
223 * From parameters, construct a 'scale' array
224 * @param array $params Parameters passed to api.
225 * @return array|null Key-val array of 'width' and 'height', or null
227 public function getScale( $params ) {
228 if ( $params['urlwidth'] != -1 ) {
230 $scale['width'] = $params['urlwidth'];
231 $scale['height'] = $params['urlheight'];
232 } elseif ( $params['urlheight'] != -1 ) {
233 // Height is specified but width isn't
234 // Don't set $scale['width']; this signals mergeThumbParams() to fill it with the image's width
236 $scale['height'] = $params['urlheight'];
238 if ( $params['urlparam'] ) {
239 // Audio files might not have a width/height.
249 /** Validate and merge scale parameters with handler thumb parameters, give error if invalid.
251 * We do this later than getScale, since we need the image
252 * to know which handler, since handlers can make their own parameters.
253 * @param File $image Image that params are for.
254 * @param array $thumbParams Thumbnail parameters from getScale
255 * @param string $otherParams String of otherParams (iiurlparam).
256 * @return array Array of parameters for transform.
258 protected function mergeThumbParams( $image, $thumbParams, $otherParams ) {
259 if ( $thumbParams === null ) {
260 // No scaling requested
263 if ( !isset( $thumbParams['width'] ) && isset( $thumbParams['height'] ) ) {
264 // We want to limit only by height in this situation, so pass the
265 // image's full width as the limiting width. But some file types
266 // don't have a width of their own, so pick something arbitrary so
267 // thumbnailing the default icon works.
268 if ( $image->getWidth() <= 0 ) {
269 $thumbParams['width'] = max( $this->getConfig()->get( 'ThumbLimits' ) );
271 $thumbParams['width'] = $image->getWidth();
275 if ( !$otherParams ) {
276 $this->checkParameterNormalise( $image, $thumbParams );
279 $p = $this->getModulePrefix();
281 $h = $image->getHandler();
283 $this->setWarning( 'Could not create thumbnail because ' .
284 $image->getName() . ' does not have an associated image handler' );
289 $paramList = $h->parseParamString( $otherParams );
291 // Just set a warning (instead of dieUsage), as in many cases
292 // we could still render the image using width and height parameters,
293 // and this type of thing could happen between different versions of
295 $this->setWarning( "Could not parse {$p}urlparam for " . $image->getName()
296 . '. Using only width and height' );
297 $this->checkParameterNormalise( $image, $thumbParams );
301 if ( isset( $paramList['width'] ) && isset( $thumbParams['width'] ) ) {
302 if ( intval( $paramList['width'] ) != intval( $thumbParams['width'] ) ) {
303 $this->setWarning( "Ignoring width value set in {$p}urlparam ({$paramList['width']}) "
304 . "in favor of width value derived from {$p}urlwidth/{$p}urlheight "
305 . "({$thumbParams['width']})" );
309 foreach ( $paramList as $name => $value ) {
310 if ( !$h->validateParam( $name, $value ) ) {
311 $this->dieUsage( "Invalid value for {$p}urlparam ($name=$value)", "urlparam" );
315 $finalParams = $thumbParams +
$paramList;
316 $this->checkParameterNormalise( $image, $finalParams );
321 * Verify that the final image parameters can be normalised.
323 * This doesn't use the normalised parameters, since $file->transform
324 * expects the pre-normalised parameters, but doing the normalisation
325 * allows us to catch certain error conditions early (such as missing
326 * required parameter).
329 * @param $finalParams array List of parameters to transform image with
331 protected function checkParameterNormalise( $image, $finalParams ) {
332 $h = $image->getHandler();
336 // Note: normaliseParams modifies the array in place, but we aren't interested
337 // in the actual normalised version, only if we can actually normalise them,
338 // so we use the functions scope to throw away the normalisations.
339 if ( !$h->normaliseParams( $image, $finalParams ) ) {
340 $this->dieUsage( 'Could not normalise image parameters for ' .
341 $image->getName(), 'urlparamnormal' );
346 * Get result information for an image revision
349 * @param array $prop Array of properties to get (in the keys)
350 * @param ApiResult $result
351 * @param array $thumbParams Containing 'width' and 'height' items, or null
352 * @param array|bool|string $opts Options for data fetching.
353 * This is an array consisting of the keys:
354 * 'version': The metadata version for the metadata option
355 * 'language': The language for extmetadata property
356 * 'multilang': Return all translations in extmetadata property
357 * 'revdelUser': User to use when checking whether to show revision-deleted fields.
358 * @return array Result array
360 static function getInfo( $file, $prop, $result, $thumbParams = null, $opts = false ) {
365 if ( !$opts ||
is_string( $opts ) ) {
367 'version' => $opts ?
: 'latest',
368 'language' => $wgContLang,
369 'multilang' => false,
370 'extmetadatafilter' => array(),
371 'revdelUser' => null,
374 $version = $opts['version'];
376 ApiResult
::META_TYPE
=> 'assoc',
378 // Timestamp is shown even if the file is revdelete'd in interface
380 if ( isset( $prop['timestamp'] ) ) {
381 $vals['timestamp'] = wfTimestamp( TS_ISO_8601
, $file->getTimestamp() );
384 // Handle external callers who don't pass revdelUser
385 if ( isset( $opts['revdelUser'] ) && $opts['revdelUser'] ) {
386 $revdelUser = $opts['revdelUser'];
387 $canShowField = function ( $field ) use ( $file, $revdelUser ) {
388 return $file->userCan( $field, $revdelUser );
391 $canShowField = function ( $field ) use ( $file ) {
392 return !$file->isDeleted( $field );
396 $user = isset( $prop['user'] );
397 $userid = isset( $prop['userid'] );
399 if ( $user ||
$userid ) {
400 if ( $file->isDeleted( File
::DELETED_USER
) ) {
401 $vals['userhidden'] = true;
404 if ( $canShowField( File
::DELETED_USER
) ) {
406 $vals['user'] = $file->getUser();
409 $vals['userid'] = $file->getUser( 'id' );
411 if ( !$file->getUser( 'id' ) ) {
412 $vals['anon'] = true;
417 // This is shown even if the file is revdelete'd in interface
419 if ( isset( $prop['size'] ) ||
isset( $prop['dimensions'] ) ) {
420 $vals['size'] = intval( $file->getSize() );
421 $vals['width'] = intval( $file->getWidth() );
422 $vals['height'] = intval( $file->getHeight() );
424 $pageCount = $file->pageCount();
425 if ( $pageCount !== false ) {
426 $vals['pagecount'] = $pageCount;
429 // length as in how many seconds long a video is.
430 $length = $file->getLength();
432 // Call it duration, because "length" can be ambiguous.
433 $vals['duration'] = (float)$length;
437 $pcomment = isset( $prop['parsedcomment'] );
438 $comment = isset( $prop['comment'] );
440 if ( $pcomment ||
$comment ) {
441 if ( $file->isDeleted( File
::DELETED_COMMENT
) ) {
442 $vals['commenthidden'] = true;
445 if ( $canShowField( File
::DELETED_COMMENT
) ) {
447 $vals['parsedcomment'] = Linker
::formatComment(
448 $file->getDescription( File
::RAW
), $file->getTitle() );
451 $vals['comment'] = $file->getDescription( File
::RAW
);
456 $canonicaltitle = isset( $prop['canonicaltitle'] );
457 $url = isset( $prop['url'] );
458 $sha1 = isset( $prop['sha1'] );
459 $meta = isset( $prop['metadata'] );
460 $extmetadata = isset( $prop['extmetadata'] );
461 $commonmeta = isset( $prop['commonmetadata'] );
462 $mime = isset( $prop['mime'] );
463 $mediatype = isset( $prop['mediatype'] );
464 $archive = isset( $prop['archivename'] );
465 $bitdepth = isset( $prop['bitdepth'] );
466 $uploadwarning = isset( $prop['uploadwarning'] );
468 if ( $uploadwarning ) {
469 $vals['html'] = SpecialUpload
::getExistsWarning( UploadBase
::getExistsWarning( $file ) );
472 if ( $file->isDeleted( File
::DELETED_FILE
) ) {
473 $vals['filehidden'] = true;
477 if ( $anyHidden && $file->isDeleted( File
::DELETED_RESTRICTED
) ) {
478 $vals['suppressed'] = true;
481 if ( !$canShowField( File
::DELETED_FILE
) ) {
482 // Early return, tidier than indenting all following things one level
486 if ( $canonicaltitle ) {
487 $vals['canonicaltitle'] = $file->getTitle()->getPrefixedText();
491 if ( !is_null( $thumbParams ) ) {
492 $mto = $file->transform( $thumbParams );
493 self
::$transformCount++
;
494 if ( $mto && !$mto->isError() ) {
495 $vals['thumburl'] = wfExpandUrl( $mto->getUrl(), PROTO_CURRENT
);
497 // bug 23834 - If the URL's are the same, we haven't resized it, so shouldn't give the wanted
498 // thumbnail sizes for the thumbnail actual size
499 if ( $mto->getUrl() !== $file->getUrl() ) {
500 $vals['thumbwidth'] = intval( $mto->getWidth() );
501 $vals['thumbheight'] = intval( $mto->getHeight() );
503 $vals['thumbwidth'] = intval( $file->getWidth() );
504 $vals['thumbheight'] = intval( $file->getHeight() );
507 if ( isset( $prop['thumbmime'] ) && $file->getHandler() ) {
508 list( , $mime ) = $file->getHandler()->getThumbType(
509 $mto->getExtension(), $file->getMimeType(), $thumbParams );
510 $vals['thumbmime'] = $mime;
512 } elseif ( $mto && $mto->isError() ) {
513 $vals['thumberror'] = $mto->toText();
516 $vals['url'] = wfExpandUrl( $file->getFullUrl(), PROTO_CURRENT
);
517 $vals['descriptionurl'] = wfExpandUrl( $file->getDescriptionUrl(), PROTO_CURRENT
);
519 $shortDescriptionUrl = $file->getDescriptionShortUrl();
520 if ( $shortDescriptionUrl !== null ) {
521 $vals['descriptionshorturl'] = wfExpandUrl( $shortDescriptionUrl, PROTO_CURRENT
);
526 $vals['sha1'] = Wikimedia\base_convert
( $file->getSha1(), 36, 16, 40 );
530 MediaWiki\
suppressWarnings();
531 $metadata = unserialize( $file->getMetadata() );
532 MediaWiki\restoreWarnings
();
533 if ( $metadata && $version !== 'latest' ) {
534 $metadata = $file->convertMetadataVersion( $metadata, $version );
536 $vals['metadata'] = $metadata ? self
::processMetaData( $metadata, $result ) : null;
539 $metaArray = $file->getCommonMetaArray();
540 $vals['commonmetadata'] = $metaArray ? self
::processMetaData( $metaArray, $result ) : array();
543 if ( $extmetadata ) {
544 // Note, this should return an array where all the keys
545 // start with a letter, and all the values are strings.
546 // Thus there should be no issue with format=xml.
547 $format = new FormatMetadata
;
548 $format->setSingleLanguage( !$opts['multilang'] );
549 $format->getContext()->setLanguage( $opts['language'] );
550 $extmetaArray = $format->fetchExtendedMetadata( $file );
551 if ( $opts['extmetadatafilter'] ) {
552 $extmetaArray = array_intersect_key(
553 $extmetaArray, array_flip( $opts['extmetadatafilter'] )
556 $vals['extmetadata'] = $extmetaArray;
560 $vals['mime'] = $file->getMimeType();
564 $vals['mediatype'] = $file->getMediaType();
567 if ( $archive && $file->isOld() ) {
568 $vals['archivename'] = $file->getArchiveName();
572 $vals['bitdepth'] = $file->getBitDepth();
579 * Get the count of image transformations performed
581 * If this is >= TRANSFORM_LIMIT, you should probably stop processing images.
585 static function getTransformCount() {
586 return self
::$transformCount;
591 * @param array $metadata
592 * @param ApiResult $result
595 public static function processMetaData( $metadata, $result ) {
597 if ( is_array( $metadata ) ) {
598 foreach ( $metadata as $key => $value ) {
601 ApiResult
::META_BC_BOOLS
=> array( 'value' ),
603 if ( is_array( $value ) ) {
604 $r['value'] = self
::processMetaData( $value, $result );
606 $r['value'] = $value;
611 ApiResult
::setIndexedTagName( $retval, 'metadata' );
616 public function getCacheMode( $params ) {
617 if ( $this->userCanSeeRevDel() ) {
626 * @param null|string $start
629 protected function getContinueStr( $img, $start = null ) {
630 if ( $start === null ) {
631 $start = $img->getTimestamp();
634 return $img->getOriginalTitle()->getDBkey() . '|' . $start;
637 public function getAllowedParams() {
642 ApiBase
::PARAM_ISMULTI
=> true,
643 ApiBase
::PARAM_DFLT
=> 'timestamp|user',
644 ApiBase
::PARAM_TYPE
=> self
::getPropertyNames(),
645 ApiBase
::PARAM_HELP_MSG_PER_VALUE
=> self
::getPropertyMessages(),
648 ApiBase
::PARAM_TYPE
=> 'limit',
649 ApiBase
::PARAM_DFLT
=> 1,
650 ApiBase
::PARAM_MIN
=> 1,
651 ApiBase
::PARAM_MAX
=> ApiBase
::LIMIT_BIG1
,
652 ApiBase
::PARAM_MAX2
=> ApiBase
::LIMIT_BIG2
655 ApiBase
::PARAM_TYPE
=> 'timestamp'
658 ApiBase
::PARAM_TYPE
=> 'timestamp'
661 ApiBase
::PARAM_TYPE
=> 'integer',
662 ApiBase
::PARAM_DFLT
=> -1,
663 ApiBase
::PARAM_HELP_MSG
=> array(
664 'apihelp-query+imageinfo-param-urlwidth',
665 ApiQueryImageInfo
::TRANSFORM_LIMIT
,
668 'urlheight' => array(
669 ApiBase
::PARAM_TYPE
=> 'integer',
670 ApiBase
::PARAM_DFLT
=> -1
672 'metadataversion' => array(
673 ApiBase
::PARAM_TYPE
=> 'string',
674 ApiBase
::PARAM_DFLT
=> '1',
676 'extmetadatalanguage' => array(
677 ApiBase
::PARAM_TYPE
=> 'string',
678 ApiBase
::PARAM_DFLT
=> $wgContLang->getCode(),
680 'extmetadatamultilang' => array(
681 ApiBase
::PARAM_TYPE
=> 'boolean',
682 ApiBase
::PARAM_DFLT
=> false,
684 'extmetadatafilter' => array(
685 ApiBase
::PARAM_TYPE
=> 'string',
686 ApiBase
::PARAM_ISMULTI
=> true,
689 ApiBase
::PARAM_DFLT
=> '',
690 ApiBase
::PARAM_TYPE
=> 'string',
693 ApiBase
::PARAM_HELP_MSG
=> 'api-help-param-continue',
695 'localonly' => false,
700 * Returns all possible parameters to iiprop
702 * @param array $filter List of properties to filter out
705 public static function getPropertyNames( $filter = array() ) {
706 return array_keys( self
::getPropertyMessages( $filter ) );
710 * Returns messages for all possible parameters to iiprop
712 * @param array $filter List of properties to filter out
715 public static function getPropertyMessages( $filter = array() ) {
716 return array_diff_key(
718 'timestamp' => 'apihelp-query+imageinfo-paramvalue-prop-timestamp',
719 'user' => 'apihelp-query+imageinfo-paramvalue-prop-user',
720 'userid' => 'apihelp-query+imageinfo-paramvalue-prop-userid',
721 'comment' => 'apihelp-query+imageinfo-paramvalue-prop-comment',
722 'parsedcomment' => 'apihelp-query+imageinfo-paramvalue-prop-parsedcomment',
723 'canonicaltitle' => 'apihelp-query+imageinfo-paramvalue-prop-canonicaltitle',
724 'url' => 'apihelp-query+imageinfo-paramvalue-prop-url',
725 'size' => 'apihelp-query+imageinfo-paramvalue-prop-size',
726 'dimensions' => 'apihelp-query+imageinfo-paramvalue-prop-dimensions',
727 'sha1' => 'apihelp-query+imageinfo-paramvalue-prop-sha1',
728 'mime' => 'apihelp-query+imageinfo-paramvalue-prop-mime',
729 'thumbmime' => 'apihelp-query+imageinfo-paramvalue-prop-thumbmime',
730 'mediatype' => 'apihelp-query+imageinfo-paramvalue-prop-mediatype',
731 'metadata' => 'apihelp-query+imageinfo-paramvalue-prop-metadata',
732 'commonmetadata' => 'apihelp-query+imageinfo-paramvalue-prop-commonmetadata',
733 'extmetadata' => 'apihelp-query+imageinfo-paramvalue-prop-extmetadata',
734 'archivename' => 'apihelp-query+imageinfo-paramvalue-prop-archivename',
735 'bitdepth' => 'apihelp-query+imageinfo-paramvalue-prop-bitdepth',
736 'uploadwarning' => 'apihelp-query+imageinfo-paramvalue-prop-uploadwarning',
738 array_flip( $filter )
743 * Returns array key value pairs of properties and their descriptions
745 * @deprecated since 1.25
746 * @param string $modulePrefix
749 private static function getProperties( $modulePrefix = '' ) {
751 'timestamp' => ' timestamp - Adds timestamp for the uploaded version',
752 'user' => ' user - Adds the user who uploaded the image version',
753 'userid' => ' userid - Add the user ID that uploaded the image version',
754 'comment' => ' comment - Comment on the version',
755 'parsedcomment' => ' parsedcomment - Parse the comment on the version',
756 'canonicaltitle' => ' canonicaltitle - Adds the canonical title of the image file',
757 'url' => ' url - Gives URL to the image and the description page',
758 'size' => ' size - Adds the size of the image in bytes, ' .
759 'its height and its width. Page count and duration are added if applicable',
760 'dimensions' => ' dimensions - Alias for size', // B/C with Allimages
761 'sha1' => ' sha1 - Adds SHA-1 hash for the image',
762 'mime' => ' mime - Adds MIME type of the image',
763 'thumbmime' => ' thumbmime - Adds MIME type of the image thumbnail' .
764 ' (requires url and param ' . $modulePrefix . 'urlwidth)',
765 'mediatype' => ' mediatype - Adds the media type of the image',
766 'metadata' => ' metadata - Lists Exif metadata for the version of the image',
767 'commonmetadata' => ' commonmetadata - Lists file format generic metadata ' .
768 'for the version of the image',
769 'extmetadata' => ' extmetadata - Lists formatted metadata combined ' .
770 'from multiple sources. Results are HTML formatted.',
771 'archivename' => ' archivename - Adds the file name of the archive ' .
772 'version for non-latest versions',
773 'bitdepth' => ' bitdepth - Adds the bit depth of the version',
774 'uploadwarning' => ' uploadwarning - Used by the Special:Upload page to ' .
775 'get information about an existing file. Not intended for use outside MediaWiki core',
780 * Returns the descriptions for the properties provided by getPropertyNames()
782 * @deprecated since 1.25
783 * @param array $filter List of properties to filter out
784 * @param string $modulePrefix
787 public static function getPropertyDescriptions( $filter = array(), $modulePrefix = '' ) {
789 array( 'What image information to get:' ),
790 array_values( array_diff_key( self
::getProperties( $modulePrefix ), array_flip( $filter ) ) )
794 protected function getExamplesMessages() {
796 'action=query&titles=File:Albert%20Einstein%20Head.jpg&prop=imageinfo'
797 => 'apihelp-query+imageinfo-example-simple',
798 'action=query&titles=File:Test.jpg&prop=imageinfo&iilimit=50&' .
799 'iiend=2007-12-31T23:59:59Z&iiprop=timestamp|user|url'
800 => 'apihelp-query+imageinfo-example-dated',
804 public function getHelpUrls() {
805 return 'https://www.mediawiki.org/wiki/API:Imageinfo';