diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2011-06-22 11:28:20 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2011-06-22 11:28:20 +0200 |
commit | 9db190c7e736ec8d063187d4241b59feaf7dc2d1 (patch) | |
tree | 46d1a0dee7febef5c2d57a9f7b972be16a163b3d /includes/api/ApiQueryImageInfo.php | |
parent | 78677c7bbdcc9739f6c10c75935898a20e1acd9e (diff) |
update to MediaWiki 1.17.0
Diffstat (limited to 'includes/api/ApiQueryImageInfo.php')
-rw-r--r-- | includes/api/ApiQueryImageInfo.php | 379 |
1 files changed, 258 insertions, 121 deletions
diff --git a/includes/api/ApiQueryImageInfo.php b/includes/api/ApiQueryImageInfo.php index 3704710a..21696be2 100644 --- a/includes/api/ApiQueryImageInfo.php +++ b/includes/api/ApiQueryImageInfo.php @@ -1,11 +1,10 @@ <?php - -/* - * Created on July 6, 2007 - * +/** * API for MediaWiki 1.8+ * - * Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com + * Created on July 6, 2007 + * + * Copyright © 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -19,13 +18,15 @@ * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html + * + * @file */ if ( !defined( 'MEDIAWIKI' ) ) { // Eclipse helper - will be ignored in production - require_once ( 'ApiQueryBase.php' ); + require_once( 'ApiQueryBase.php' ); } /** @@ -35,8 +36,13 @@ if ( !defined( 'MEDIAWIKI' ) ) { */ class ApiQueryImageInfo extends ApiQueryBase { - public function __construct( $query, $moduleName ) { - parent :: __construct( $query, $moduleName, 'ii' ); + public function __construct( $query, $moduleName, $prefix = 'ii' ) { + // We allow a subclass to override the prefix, to create a related API module. + // Some other parts of MediaWiki construct this with a null $prefix, which used to be ignored when this only took two arguments + if ( is_null( $prefix ) ) { + $prefix = 'ii'; + } + parent::__construct( $query, $moduleName, $prefix ); } public function execute() { @@ -44,16 +50,7 @@ class ApiQueryImageInfo extends ApiQueryBase { $prop = array_flip( $params['prop'] ); - if ( $params['urlheight'] != - 1 && $params['urlwidth'] == - 1 ) - $this->dieUsage( "iiurlheight cannot be used without iiurlwidth", 'iiurlwidth' ); - - if ( $params['urlwidth'] != - 1 ) { - $scale = array(); - $scale['width'] = $params['urlwidth']; - $scale['height'] = $params['urlheight']; - } else { - $scale = null; - } + $scale = $this->getScale( $params ); $pageIds = $this->getPageSet()->getAllTitlesByNamespace(); if ( !empty( $pageIds[NS_FILE] ) ) { @@ -61,30 +58,33 @@ class ApiQueryImageInfo extends ApiQueryBase { asort( $titles ); // Ensure the order is always the same $skip = false; - if ( !is_null( $params['continue'] ) ) - { + if ( !is_null( $params['continue'] ) ) { $skip = true; $cont = explode( '|', $params['continue'] ); - if ( count( $cont ) != 2 ) - $this->dieUsage( "Invalid continue param. You should pass the original " . - "value returned by the previous query", "_badcontinue" ); + if ( count( $cont ) != 2 ) { + $this->dieUsage( 'Invalid continue param. You should pass the original ' . + 'value returned by the previous query', '_badcontinue' ); + } $fromTitle = strval( $cont[0] ); $fromTimestamp = $cont[1]; // Filter out any titles before $fromTitle - foreach ( $titles as $key => $title ) - if ( $title < $fromTitle ) + foreach ( $titles as $key => $title ) { + if ( $title < $fromTitle ) { unset( $titles[$key] ); - else + } else { break; + } + } } $result = $this->getResult(); $images = RepoGroup::singleton()->findFiles( $titles ); foreach ( $images as $img ) { // Skip redirects - if ( $img->getOriginalTitle()->isRedirect() ) + if ( $img->getOriginalTitle()->isRedirect() ) { continue; - + } + $start = $skip ? $fromTimestamp : $params['start']; $pageId = $pageIds[NS_IMAGE][ $img->getOriginalTitle()->getDBkey() ]; @@ -92,9 +92,8 @@ class ApiQueryImageInfo extends ApiQueryBase { array( 'query', 'pages', intval( $pageId ) ), 'imagerepository', $img->getRepoName() ); - if ( !$fit ) - { - if ( count( $pageIds[NS_IMAGE] ) == 1 ) + if ( !$fit ) { + if ( count( $pageIds[NS_IMAGE] ) == 1 ) { // The user is screwed. imageinfo can't be solely // responsible for exceeding the limit in this case, // so set a query-continue that just returns the same @@ -102,29 +101,33 @@ class ApiQueryImageInfo extends ApiQueryBase { // out-continued, the result will get through $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $img->getTimestamp() ) ); - else + } else { $this->setContinueEnumParameter( 'continue', $this->getContinueStr( $img ) ); + } break; } // Get information about the current version first // Check that the current version is within the start-end boundaries $gotOne = false; - if ( ( is_null( $start ) || $img->getTimestamp() <= $start ) && - ( is_null( $params['end'] ) || $img->getTimestamp() >= $params['end'] ) ) { + if ( + ( is_null( $start ) || $img->getTimestamp() <= $start ) && + ( is_null( $params['end'] ) || $img->getTimestamp() >= $params['end'] ) + ) + { $gotOne = true; $fit = $this->addPageSubItem( $pageId, self::getInfo( $img, $prop, $result, $scale ) ); - if ( !$fit ) - { - if ( count( $pageIds[NS_IMAGE] ) == 1 ) + if ( !$fit ) { + if ( count( $pageIds[NS_IMAGE] ) == 1 ) { // See the 'the user is screwed' comment above $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $img->getTimestamp() ) ); - else + } else { $this->setContinueEnumParameter( 'continue', $this->getContinueStr( $img ) ); + } break; } } @@ -137,8 +140,7 @@ class ApiQueryImageInfo extends ApiQueryBase { if ( ++$count > $params['limit'] ) { // We've reached the extra one which shows that there are additional pages to be had. Stop here... // Only set a query-continue if there was only one title - if ( count( $pageIds[NS_FILE] ) == 1 ) - { + if ( count( $pageIds[NS_FILE] ) == 1 ) { $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $oldie->getTimestamp() ) ); } @@ -146,97 +148,210 @@ class ApiQueryImageInfo extends ApiQueryBase { } $fit = $this->addPageSubItem( $pageId, self::getInfo( $oldie, $prop, $result ) ); - if ( !$fit ) - { - if ( count( $pageIds[NS_IMAGE] ) == 1 ) + if ( !$fit ) { + if ( count( $pageIds[NS_IMAGE] ) == 1 ) { $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $oldie->getTimestamp() ) ); - else + } else { $this->setContinueEnumParameter( 'continue', $this->getContinueStr( $oldie ) ); + } break; } } - if ( !$fit ) + if ( !$fit ) { break; + } $skip = false; } - + $data = $this->getResultData(); foreach ( $data['query']['pages'] as $pageid => $arr ) { - if ( !isset( $arr['imagerepository'] ) ) + if ( !isset( $arr['imagerepository'] ) ) { $result->addValue( array( 'query', 'pages', $pageid ), 'imagerepository', '' ); - // The above can't fail because it doesn't increase the result size + } + // The above can't fail because it doesn't increase the result size } } } /** + * From parameters, construct a 'scale' array + * @param $params Array: + * @return Array or Null: key-val array of 'width' and 'height', or null + */ + public function getScale( $params ) { + $p = $this->getModulePrefix(); + if ( $params['urlheight'] != -1 && $params['urlwidth'] == -1 ) { + $this->dieUsage( "${p}urlheight cannot be used without {$p}urlwidth", "{$p}urlwidth" ); + } + + if ( $params['urlwidth'] != -1 ) { + $scale = array(); + $scale['width'] = $params['urlwidth']; + $scale['height'] = $params['urlheight']; + } else { + $scale = null; + } + return $scale; + } + + + /** * Get result information for an image revision - * @param File f The image - * @return array Result array + * + * @param $file File object + * @param $prop Array of properties to get (in the keys) + * @param $result ApiResult object + * @param $scale Array containing 'width' and 'height' items, or null + * @return Array: result array */ static function getInfo( $file, $prop, $result, $scale = null ) { $vals = array(); - if ( isset( $prop['timestamp'] ) ) + // Timestamp is shown even if the file is revdelete'd in interface + // so do same here. + if ( isset( $prop['timestamp'] ) ) { $vals['timestamp'] = wfTimestamp( TS_ISO_8601, $file->getTimestamp() ); - if ( isset( $prop['user'] ) ) { - $vals['user'] = $file->getUser(); - if ( !$file->getUser( 'id' ) ) - $vals['anon'] = ''; } + + $user = isset( $prop['user'] ); + $userid = isset( $prop['userid'] ); + + if ( $user || $userid ) { + if ( $file->isDeleted( File::DELETED_USER ) ) { + $vals['userhidden'] = ''; + } else { + if ( $user ) { + $vals['user'] = $file->getUser(); + } + if ( $userid ) { + $vals['userid'] = $file->getUser( 'id' ); + } + if ( !$file->getUser( 'id' ) ) { + $vals['anon'] = ''; + } + } + } + + // This is shown even if the file is revdelete'd in interface + // so do same here. if ( isset( $prop['size'] ) || isset( $prop['dimensions'] ) ) { $vals['size'] = intval( $file->getSize() ); $vals['width'] = intval( $file->getWidth() ); $vals['height'] = intval( $file->getHeight() ); + + $pageCount = $file->pageCount(); + if ( $pageCount !== false ) { + $vals['pagecount'] = $pageCount; + } + } + + $pcomment = isset( $prop['parsedcomment'] ); + $comment = isset( $prop['comment'] ); + + if ( $pcomment || $comment ) { + if ( $file->isDeleted( File::DELETED_COMMENT ) ) { + $vals['commenthidden'] = ''; + } else { + if ( $pcomment ) { + global $wgUser; + $vals['parsedcomment'] = $wgUser->getSkin()->formatComment( + $file->getDescription(), $file->getTitle() ); + } + if ( $comment ) { + $vals['comment'] = $file->getDescription(); + } + } } - if ( isset( $prop['url'] ) ) { + + $url = isset( $prop['url'] ); + $sha1 = isset( $prop['sha1'] ); + $meta = isset( $prop['metadata'] ); + $mime = isset( $prop['mime'] ); + $archive = isset( $prop['archivename'] ); + $bitdepth = isset( $prop['bitdepth'] ); + + if ( ( $url || $sha1 || $meta || $mime || $archive || $bitdepth ) + && $file->isDeleted( File::DELETED_FILE ) ) { + $vals['filehidden'] = ''; + + //Early return, tidier than indenting all following things one level + return $vals; + } + + if ( $url ) { if ( !is_null( $scale ) && !$file->isOld() ) { $mto = $file->transform( array( 'width' => $scale['width'], 'height' => $scale['height'] ) ); - if ( $mto && !$mto->isError() ) - { + if ( $mto && !$mto->isError() ) { $vals['thumburl'] = wfExpandUrl( $mto->getUrl() ); - $vals['thumbwidth'] = intval( $mto->getWidth() ); - $vals['thumbheight'] = intval( $mto->getHeight() ); + + // bug 23834 - If the URL's are the same, we haven't resized it, so shouldn't give the wanted + // thumbnail sizes for the thumbnail actual size + if ( $mto->getUrl() !== $file->getUrl() ) { + $vals['thumbwidth'] = intval( $mto->getWidth() ); + $vals['thumbheight'] = intval( $mto->getHeight() ); + } else { + $vals['thumbwidth'] = intval( $file->getWidth() ); + $vals['thumbheight'] = intval( $file->getHeight() ); + } + + if ( isset( $prop['thumbmime'] ) && $file->getHandler() ) { + list( $ext, $mime ) = $file->getHandler()->getThumbType( + substr( $mto->getPath(), strrpos( $mto->getPath(), '.' ) + 1 ), + $file->getMimeType(), $thumbParams ); + $vals['thumbmime'] = $mime; + } + } else if ( $mto && $mto->isError() ) { + $vals['thumberror'] = $mto->toText(); } } $vals['url'] = $file->getFullURL(); $vals['descriptionurl'] = wfExpandUrl( $file->getDescriptionUrl() ); } - if ( isset( $prop['comment'] ) ) - $vals['comment'] = $file->getDescription(); - if ( isset( $prop['sha1'] ) ) + + if ( $sha1 ) { $vals['sha1'] = wfBaseConvert( $file->getSha1(), 36, 16, 40 ); - if ( isset( $prop['metadata'] ) ) { + } + + if ( $meta ) { $metadata = $file->getMetadata(); $vals['metadata'] = $metadata ? self::processMetaData( unserialize( $metadata ), $result ) : null; } - if ( isset( $prop['mime'] ) ) + + if ( $mime ) { $vals['mime'] = $file->getMimeType(); - - if ( isset( $prop['archivename'] ) && $file->isOld() ) + } + + if ( $archive && $file->isOld() ) { $vals['archivename'] = $file->getArchiveName(); - - if ( isset( $prop['bitdepth'] ) ) + } + + if ( $bitdepth ) { $vals['bitdepth'] = $file->getBitDepth(); + } return $vals; } - - public static function processMetaData( $metadata, $result ) - { + + /* + * + * @param $metadata Array + * @param $result ApiResult + * @return Array + */ + public static function processMetaData( $metadata, $result ) { $retval = array(); if ( is_array( $metadata ) ) { - foreach ( $metadata as $key => $value ) - { + foreach ( $metadata as $key => $value ) { $r = array( 'name' => $key ); - if ( is_array( $value ) ) + if ( is_array( $value ) ) { $r['value'] = self::processMetaData( $value, $result ); - else + } else { $r['value'] = $value; + } $retval[] = $r; } } @@ -248,82 +363,104 @@ class ApiQueryImageInfo extends ApiQueryBase { return 'public'; } - private function getContinueStr( $img ) - { + private function getContinueStr( $img ) { return $img->getOriginalTitle()->getText() . '|' . $img->getTimestamp(); } public function getAllowedParams() { - return array ( - 'prop' => array ( - ApiBase :: PARAM_ISMULTI => true, - ApiBase :: PARAM_DFLT => 'timestamp|user', - ApiBase :: PARAM_TYPE => self::getPropertyNames() + return array( + 'prop' => array( + ApiBase::PARAM_ISMULTI => true, + ApiBase::PARAM_DFLT => 'timestamp|user', + ApiBase::PARAM_TYPE => self::getPropertyNames() ), 'limit' => array( - ApiBase :: PARAM_TYPE => 'limit', - ApiBase :: PARAM_DFLT => 1, - ApiBase :: PARAM_MIN => 1, - ApiBase :: PARAM_MAX => ApiBase :: LIMIT_BIG1, - ApiBase :: PARAM_MAX2 => ApiBase :: LIMIT_BIG2 + ApiBase::PARAM_TYPE => 'limit', + ApiBase::PARAM_DFLT => 1, + ApiBase::PARAM_MIN => 1, + ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1, + ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2 ), 'start' => array( - ApiBase :: PARAM_TYPE => 'timestamp' + ApiBase::PARAM_TYPE => 'timestamp' ), 'end' => array( - ApiBase :: PARAM_TYPE => 'timestamp' + ApiBase::PARAM_TYPE => 'timestamp' ), 'urlwidth' => array( - ApiBase :: PARAM_TYPE => 'integer', - ApiBase :: PARAM_DFLT => - 1 + ApiBase::PARAM_TYPE => 'integer', + ApiBase::PARAM_DFLT => -1 ), 'urlheight' => array( - ApiBase :: PARAM_TYPE => 'integer', - ApiBase :: PARAM_DFLT => - 1 + ApiBase::PARAM_TYPE => 'integer', + ApiBase::PARAM_DFLT => -1 ), 'continue' => null, ); } - + /** * Returns all possible parameters to iiprop */ public static function getPropertyNames() { - return array ( - 'timestamp', - 'user', - 'comment', - 'url', - 'size', - 'dimensions', // For backwards compatibility with Allimages - 'sha1', - 'mime', - 'metadata', - 'archivename', - 'bitdepth', - ); + return array( + 'timestamp', + 'user', + 'userid', + 'comment', + 'parsedcomment', + 'url', + 'size', + 'dimensions', // For backwards compatibility with Allimages + 'sha1', + 'mime', + 'thumbmime', + 'metadata', + 'archivename', + 'bitdepth', + ); } + + /** + * Return the API documentation for the parameters. + * @return {Array} parameter documentation. + */ public function getParamDescription() { - return array ( - 'prop' => 'What image information to get.', + $p = $this->getModulePrefix(); + return array( + 'prop' => array( + 'What image information to get:', + ' timestamp - Adds timestamp for the uploaded version', + ' user - Adds the user who uploaded the image version', + ' userid - Add the user id that uploaded the image version', + ' comment - Comment on the version', + ' parsedcomment - Parse the comment on the version', + ' url - Gives URL to the image and the description page', + ' size - Adds the size of the image in bytes and the height and width', + ' dimensions - Alias for size', + ' sha1 - Adds sha1 hash for the image', + ' mime - Adds MIME of the image', + ' thumbmime - Adss MIME of the image thumbnail (requires url)', + ' metadata - Lists EXIF metadata for the version of the image', + ' archivename - Adds the file name of the archive version for non-latest versions', + ' bitdepth - Adds the bit depth of the version', + ), + 'urlwidth' => array( "If {$p}prop=url is set, a URL to an image scaled to this width will be returned.", + 'Only the current version of the image can be scaled' ), + 'urlheight' => "Similar to {$p}urlwidth. Cannot be used without {$p}urlwidth", 'limit' => 'How many image revisions to return', 'start' => 'Timestamp to start listing from', 'end' => 'Timestamp to stop listing at', - 'urlwidth' => array( 'If iiprop=url is set, a URL to an image scaled to this width will be returned.', - 'Only the current version of the image can be scaled.' ), - 'urlheight' => 'Similar to iiurlwidth. Cannot be used without iiurlwidth', - 'continue' => 'When more results are available, use this to continue', + 'continue' => 'If the query response includes a continue value, use it here to get another page of results' ); } public function getDescription() { - return array ( - 'Returns image information and upload history' - ); + return 'Returns image information and upload history'; } - + public function getPossibleErrors() { return array_merge( parent::getPossibleErrors(), array( array( 'code' => 'iiurlwidth', 'info' => 'iiurlheight cannot be used without iiurlwidth' ), @@ -331,13 +468,13 @@ class ApiQueryImageInfo extends ApiQueryBase { } protected function getExamples() { - return array ( + return array( 'api.php?action=query&titles=File:Albert%20Einstein%20Head.jpg&prop=imageinfo', 'api.php?action=query&titles=File:Test.jpg&prop=imageinfo&iilimit=50&iiend=20071231235959&iiprop=timestamp|user|url', ); } public function getVersion() { - return __CLASS__ . ': $Id: ApiQueryImageInfo.php 69932 2010-07-26 08:03:21Z tstarling $'; + return __CLASS__ . ': $Id: ApiQueryImageInfo.php 85435 2011-04-05 14:00:08Z demon $'; } } |