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.
|
|
|
|
|
*
|
|
|
|
|
* @addtogroup API
|
|
|
|
|
*/
|
|
|
|
|
class ApiQueryImageInfo extends ApiQueryBase {
|
|
|
|
|
|
|
|
|
|
public function __construct($query, $moduleName) {
|
|
|
|
|
parent :: __construct($query, $moduleName, 'ii');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function execute() {
|
|
|
|
|
$params = $this->extractRequestParams();
|
|
|
|
|
|
|
|
|
|
$history = $params['history'];
|
|
|
|
|
|
|
|
|
|
$prop = array_flip($params['prop']);
|
|
|
|
|
$fld_timestamp = isset($prop['timestamp']);
|
|
|
|
|
$fld_user = isset($prop['user']);
|
|
|
|
|
$fld_comment = isset($prop['comment']);
|
|
|
|
|
$fld_url = isset($prop['url']);
|
|
|
|
|
$fld_size = isset($prop['size']);
|
2007-09-03 19:58:05 +00:00
|
|
|
$fld_sha1 = isset($prop['sha1']);
|
2007-07-07 03:05:09 +00:00
|
|
|
|
|
|
|
|
$pageIds = $this->getPageSet()->getAllTitlesByNamespace();
|
|
|
|
|
if (!empty($pageIds[NS_IMAGE])) {
|
|
|
|
|
foreach ($pageIds[NS_IMAGE] as $dbKey => $pageId) {
|
|
|
|
|
|
|
|
|
|
$title = Title :: makeTitle(NS_IMAGE, $dbKey);
|
|
|
|
|
$img = wfFindFile($title);
|
|
|
|
|
|
2007-07-25 06:51:05 +00:00
|
|
|
$data = array();
|
2007-07-07 03:05:09 +00:00
|
|
|
if ( !$img ) {
|
2007-08-07 19:01:05 +00:00
|
|
|
$repository = '';
|
2007-07-07 03:05:09 +00:00
|
|
|
} else {
|
2007-08-07 19:01:05 +00:00
|
|
|
|
|
|
|
|
$repository = $img->getRepoName();
|
|
|
|
|
|
2007-07-07 03:05:09 +00:00
|
|
|
$isCur = true;
|
|
|
|
|
while($line = $img->nextHistoryLine()) { // assignment
|
2007-08-27 21:32:47 +00:00
|
|
|
$row = get_object_vars( $line );
|
2007-07-07 03:05:09 +00:00
|
|
|
$vals = array();
|
2007-08-27 21:32:47 +00:00
|
|
|
$prefix = $isCur ? 'img' : 'oi';
|
2007-07-07 03:05:09 +00:00
|
|
|
|
|
|
|
|
if ($fld_timestamp)
|
2007-08-27 21:32:47 +00:00
|
|
|
$vals['timestamp'] = wfTimestamp(TS_ISO_8601, $row["${prefix}_timestamp"]);
|
2007-07-30 08:09:15 +00:00
|
|
|
if ($fld_user) {
|
2007-08-27 21:32:47 +00:00
|
|
|
$vals['user'] = $row["${prefix}_user_text"];
|
|
|
|
|
if(!$row["${prefix}_user"])
|
2007-07-30 08:09:15 +00:00
|
|
|
$vals['anon'] = '';
|
|
|
|
|
}
|
2007-07-07 03:05:09 +00:00
|
|
|
if ($fld_size) {
|
2007-08-27 21:32:47 +00:00
|
|
|
$vals['size'] = intval($row["{$prefix}_size"]);
|
|
|
|
|
$vals['width'] = intval($row["{$prefix}_width"]);
|
|
|
|
|
$vals['height'] = intval($row["{$prefix}_height"]);
|
2007-07-07 03:05:09 +00:00
|
|
|
}
|
|
|
|
|
if ($fld_url)
|
2007-08-27 21:32:47 +00:00
|
|
|
$vals['url'] = $isCur ? $img->getURL() : $img->getArchiveUrl($row["oi_archive_name"]);
|
2007-07-07 03:05:09 +00:00
|
|
|
if ($fld_comment)
|
2007-08-27 21:32:47 +00:00
|
|
|
$vals['comment'] = $row["{$prefix}_description"];
|
2007-09-03 19:58:05 +00:00
|
|
|
|
|
|
|
|
if ($fld_sha1)
|
|
|
|
|
$vals['sha1'] = wfBaseConvert($row["{$prefix}_sha1"], 36, 16, 40);
|
2007-07-07 03:05:09 +00:00
|
|
|
|
|
|
|
|
$data[] = $vals;
|
|
|
|
|
|
|
|
|
|
if (!$history) // Stop after the first line.
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
$isCur = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$img->resetHistory();
|
|
|
|
|
}
|
|
|
|
|
|
2007-08-07 19:01:05 +00:00
|
|
|
$this->getResult()->addValue(array ('query', 'pages', intval($pageId)),
|
|
|
|
|
'imagerepository',
|
|
|
|
|
$repository);
|
|
|
|
|
if (!empty($data))
|
|
|
|
|
$this->addPageSubItems($pageId, $data);
|
2007-07-07 03:05:09 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getAllowedParams() {
|
|
|
|
|
return array (
|
|
|
|
|
'prop' => array (
|
|
|
|
|
ApiBase :: PARAM_ISMULTI => true,
|
|
|
|
|
ApiBase :: PARAM_DFLT => 'timestamp|user',
|
|
|
|
|
ApiBase :: PARAM_TYPE => array (
|
|
|
|
|
'timestamp',
|
|
|
|
|
'user',
|
|
|
|
|
'comment',
|
|
|
|
|
'url',
|
|
|
|
|
'size',
|
2007-09-03 19:58:05 +00:00
|
|
|
'sha1'
|
2007-07-07 03:05:09 +00:00
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
'history' => false,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getParamDescription() {
|
|
|
|
|
return array (
|
|
|
|
|
'prop' => 'What image information to get.',
|
|
|
|
|
'history' => 'Include upload history',
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getDescription() {
|
|
|
|
|
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',
|
|
|
|
|
'api.php?action=query&titles=Image:Test.jpg&prop=imageinfo&iihistory&iiprop=timestamp|user|url',
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getVersion() {
|
2007-07-25 06:51:05 +00:00
|
|
|
return __CLASS__ . ': $Id$';
|
2007-07-07 03:05:09 +00:00
|
|
|
}
|
|
|
|
|
}
|