2007-07-07 03:05:09 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Created on July 6, 2007
|
|
|
|
|
*
|
|
|
|
|
* API for MediaWiki 1.8+
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 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
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (!defined('MEDIAWIKI')) {
|
|
|
|
|
// Eclipse helper - will be ignored in production
|
|
|
|
|
require_once ('ApiQueryBase.php');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A query action to get image information and upload history.
|
2008-04-14 07:45:50 +00:00
|
|
|
*
|
2007-07-07 03:05:09 +00:00
|
|
|
* @addtogroup API
|
|
|
|
|
*/
|
|
|
|
|
class ApiQueryImageInfo extends ApiQueryBase {
|
|
|
|
|
|
|
|
|
|
public function __construct($query, $moduleName) {
|
|
|
|
|
parent :: __construct($query, $moduleName, 'ii');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function execute() {
|
|
|
|
|
$params = $this->extractRequestParams();
|
|
|
|
|
|
2008-04-14 07:45:50 +00:00
|
|
|
$prop = array_flip($params['prop']);
|
|
|
|
|
|
2008-01-18 20:17:26 +00:00
|
|
|
if($params['urlheight'] != -1 && $params['urlwidth'] == -1)
|
|
|
|
|
$this->dieUsage("iiurlheight cannot be used without iiurlwidth", 'iiurlwidth');
|
2008-05-20 14:32:52 +00:00
|
|
|
|
|
|
|
|
if ( $params['urlwidth'] != -1 ) {
|
|
|
|
|
$scale = array();
|
|
|
|
|
$scale['width'] = $params['urlwidth'];
|
|
|
|
|
$scale['height'] = $params['urlheight'];
|
|
|
|
|
} else {
|
|
|
|
|
$scale = null;
|
|
|
|
|
}
|
2007-07-07 03:05:09 +00:00
|
|
|
|
|
|
|
|
$pageIds = $this->getPageSet()->getAllTitlesByNamespace();
|
|
|
|
|
if (!empty($pageIds[NS_IMAGE])) {
|
2008-05-20 14:32:52 +00:00
|
|
|
|
|
|
|
|
$result = $this->getResult();
|
2008-05-20 17:05:57 +00:00
|
|
|
$images = RepoGroup::singleton()->findFiles( array_keys( $pageIds[NS_IMAGE] ) );
|
|
|
|
|
foreach ( $images as $img ) {
|
2007-07-25 06:51:05 +00:00
|
|
|
$data = array();
|
2008-05-20 17:05:57 +00:00
|
|
|
|
|
|
|
|
// Get information about the current version first
|
|
|
|
|
// Check that the current version is within the start-end boundaries
|
|
|
|
|
if((is_null($params['start']) || $img->getTimestamp() <= $params['start']) &&
|
|
|
|
|
(is_null($params['end']) || $img->getTimestamp() >= $params['end'])) {
|
|
|
|
|
$data[] = self::getInfo( $img, $prop, $result, $scale );
|
|
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2008-05-20 17:05:57 +00:00
|
|
|
// Now get the old revisions
|
|
|
|
|
// Get one more to facilitate query-continue functionality
|
|
|
|
|
$count = count($data);
|
|
|
|
|
$oldies = $img->getHistory($params['limit'] - $count + 1, $params['start'], $params['end']);
|
|
|
|
|
foreach($oldies as $oldie) {
|
|
|
|
|
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_IMAGE]) == 1)
|
|
|
|
|
$this->setContinueEnumParameter('start', $oldie->getTimestamp());
|
|
|
|
|
break;
|
2008-01-20 13:09:32 +00:00
|
|
|
}
|
2008-05-20 17:05:57 +00:00
|
|
|
$data[] = self::getInfo( $oldie, $prop, $result );
|
2007-07-07 03:05:09 +00:00
|
|
|
}
|
|
|
|
|
|
2008-05-20 17:05:57 +00:00
|
|
|
$pageId = $pageIds[NS_IMAGE][ $img->getOriginalTitle()->getDBkey() ];
|
|
|
|
|
$result->addValue(
|
|
|
|
|
array( 'query', 'pages', intval( $pageId ) ),
|
|
|
|
|
'imagerepository', $img->getRepoName()
|
2008-01-15 20:45:58 +00:00
|
|
|
);
|
2008-05-20 17:05:57 +00:00
|
|
|
$this->addPageSubItems($pageId, $data);
|
2007-07-07 03:05:09 +00:00
|
|
|
}
|
2008-05-20 17:05:57 +00:00
|
|
|
|
|
|
|
|
$missing = array_diff( array_keys( $pageIds[NS_IMAGE] ), array_keys( $images ) );
|
|
|
|
|
foreach ( $missing as $title )
|
|
|
|
|
$result->addValue(
|
|
|
|
|
array( 'query', 'pages', intval( $pageIds[NS_IMAGE][$title] ) ),
|
|
|
|
|
'imagerepository', ''
|
|
|
|
|
);
|
2007-07-07 03:05:09 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-20 13:09:32 +00:00
|
|
|
/**
|
|
|
|
|
* Get result information for an image revision
|
|
|
|
|
* @param File f The image
|
|
|
|
|
* @return array Result array
|
|
|
|
|
*/
|
2008-05-20 14:32:52 +00:00
|
|
|
static function getInfo($file, $prop, $result, $scale = null) {
|
2008-01-20 13:09:32 +00:00
|
|
|
$vals = array();
|
2008-05-20 14:32:52 +00:00
|
|
|
if( isset( $prop['timestamp'] ) )
|
|
|
|
|
$vals['timestamp'] = wfTimestamp(TS_ISO_8601, $file->getTimestamp());
|
|
|
|
|
if( isset( $prop['user'] ) ) {
|
|
|
|
|
$vals['user'] = $file->getUser();
|
|
|
|
|
if( !$file->getUser( 'id' ) )
|
2008-01-20 13:09:32 +00:00
|
|
|
$vals['anon'] = '';
|
|
|
|
|
}
|
2008-05-20 14:32:52 +00:00
|
|
|
if( isset( $prop['size'] ) || isset( $prop['dimensions'] ) ) {
|
|
|
|
|
$vals['size'] = intval( $file->getSize() );
|
|
|
|
|
$vals['width'] = intval( $file->getWidth() );
|
|
|
|
|
$vals['height'] = intval( $file->getHeight() );
|
2008-01-20 13:09:32 +00:00
|
|
|
}
|
2008-05-20 14:32:52 +00:00
|
|
|
if( isset( $prop['url'] ) ) {
|
|
|
|
|
if( !is_null( $scale ) && !$file->isOld() ) {
|
|
|
|
|
$thumb = $file->getThumbnail( $scale['width'], $scale['height'] );
|
|
|
|
|
if( $thumb )
|
2008-01-22 21:46:29 +00:00
|
|
|
{
|
2008-05-15 20:39:09 +00:00
|
|
|
$vals['thumburl'] = wfExpandUrl( $thumb->getURL() );
|
2008-01-22 21:46:29 +00:00
|
|
|
$vals['thumbwidth'] = $thumb->getWidth();
|
|
|
|
|
$vals['thumbheight'] = $thumb->getHeight();
|
|
|
|
|
}
|
2008-01-20 13:09:32 +00:00
|
|
|
}
|
2008-05-20 14:32:52 +00:00
|
|
|
$vals['url'] = $file->getFullURL();
|
2008-01-20 13:09:32 +00:00
|
|
|
}
|
2008-05-20 14:32:52 +00:00
|
|
|
if( isset( $prop['comment'] ) )
|
|
|
|
|
$vals['comment'] = $file->getDescription();
|
|
|
|
|
if( isset( $prop['sha1'] ) )
|
|
|
|
|
$vals['sha1'] = wfBaseConvert( $file->getSha1(), 36, 16, 40 );
|
|
|
|
|
if( isset( $prop['metadata'] ) ) {
|
|
|
|
|
$metadata = $file->getMetadata();
|
|
|
|
|
$vals['metadata'] = $metadata ? unserialize( $metadata ) : null;
|
|
|
|
|
$result->setIndexedTagName_recursive( $vals['metadata'], 'meta' );
|
2008-01-20 13:09:32 +00:00
|
|
|
}
|
2008-05-20 14:32:52 +00:00
|
|
|
if( isset( $prop['mimetype'] ) )
|
|
|
|
|
$vals['mime'] = $file->getMimeType();
|
|
|
|
|
|
|
|
|
|
if( isset( $prop['archivename'] ) && $file->isOld() )
|
|
|
|
|
$vals['archivename'] = $file->getArchiveName();
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2008-01-20 13:09:32 +00:00
|
|
|
return $vals;
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-28 19:05:26 +00:00
|
|
|
public function getAllowedParams() {
|
2007-07-07 03:05:09 +00:00
|
|
|
return array (
|
|
|
|
|
'prop' => array (
|
|
|
|
|
ApiBase :: PARAM_ISMULTI => true,
|
|
|
|
|
ApiBase :: PARAM_DFLT => 'timestamp|user',
|
|
|
|
|
ApiBase :: PARAM_TYPE => array (
|
|
|
|
|
'timestamp',
|
|
|
|
|
'user',
|
|
|
|
|
'comment',
|
|
|
|
|
'url',
|
|
|
|
|
'size',
|
2007-09-12 15:09:07 +00:00
|
|
|
'sha1',
|
2008-05-20 09:16:01 +00:00
|
|
|
'mime',
|
2008-04-04 11:49:20 +00:00
|
|
|
'metadata',
|
|
|
|
|
'archivename'
|
2007-07-07 03:05:09 +00:00
|
|
|
)
|
|
|
|
|
),
|
2008-01-20 13:09:32 +00:00
|
|
|
'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
|
|
|
|
|
),
|
|
|
|
|
'start' => array(
|
|
|
|
|
ApiBase :: PARAM_TYPE => 'timestamp'
|
|
|
|
|
),
|
|
|
|
|
'end' => array(
|
|
|
|
|
ApiBase :: PARAM_TYPE => 'timestamp'
|
|
|
|
|
),
|
2008-01-18 20:17:26 +00:00
|
|
|
'urlwidth' => array(
|
|
|
|
|
ApiBase :: PARAM_TYPE => 'integer',
|
|
|
|
|
ApiBase :: PARAM_DFLT => -1
|
|
|
|
|
),
|
|
|
|
|
'urlheight' => array(
|
|
|
|
|
ApiBase :: PARAM_TYPE => 'integer',
|
|
|
|
|
ApiBase :: PARAM_DFLT => -1
|
|
|
|
|
)
|
2007-07-07 03:05:09 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-28 19:05:26 +00:00
|
|
|
public function getParamDescription() {
|
2007-07-07 03:05:09 +00:00
|
|
|
return array (
|
|
|
|
|
'prop' => 'What image information to get.',
|
2008-01-20 13:09:32 +00:00
|
|
|
'limit' => 'How many image revisions to return',
|
|
|
|
|
'start' => 'Timestamp to start listing from',
|
|
|
|
|
'end' => 'Timestamp to stop listing at',
|
2008-01-18 20:17:26 +00:00
|
|
|
'urlwidth' => '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',
|
2007-07-07 03:05:09 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-28 19:05:26 +00:00
|
|
|
public function getDescription() {
|
2007-07-07 03:05:09 +00:00
|
|
|
return array (
|
|
|
|
|
'Returns image information and upload history'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getExamples() {
|
|
|
|
|
return array (
|
|
|
|
|
'api.php?action=query&titles=Image:Albert%20Einstein%20Head.jpg&prop=imageinfo',
|
2008-01-20 13:09:32 +00:00
|
|
|
'api.php?action=query&titles=Image:Test.jpg&prop=imageinfo&iilimit=50&iiend=20071231235959&iiprop=timestamp|user|url',
|
2007-07-07 03:05:09 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getVersion() {
|
2007-12-06 18:33:18 +00:00
|
|
|
return __CLASS__ . ': $Id$';
|
2007-07-07 03:05:09 +00:00
|
|
|
}
|
|
|
|
|
}
|