Clarify comment on $wgRateLimits.
[lhc/web/wiklou.git] / includes / api / ApiQueryImageInfo.php
1 <?php
2
3 /*
4 * Created on July 6, 2007
5 *
6 * API for MediaWiki 1.8+
7 *
8 * Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 * http://www.gnu.org/copyleft/gpl.html
24 */
25
26 if (!defined('MEDIAWIKI')) {
27 // Eclipse helper - will be ignored in production
28 require_once ('ApiQueryBase.php');
29 }
30
31 /**
32 * A query action to get image information and upload history.
33 *
34 * @addtogroup API
35 */
36 class ApiQueryImageInfo extends ApiQueryBase {
37
38 public function __construct($query, $moduleName) {
39 parent :: __construct($query, $moduleName, 'ii');
40 }
41
42 public function execute() {
43 $params = $this->extractRequestParams();
44
45 $history = $params['history'];
46
47 $prop = array_flip($params['prop']);
48 $fld_timestamp = isset($prop['timestamp']);
49 $fld_user = isset($prop['user']);
50 $fld_comment = isset($prop['comment']);
51 $fld_url = isset($prop['url']);
52 $fld_size = isset($prop['size']);
53 $fld_sha1 = isset($prop['sha1']);
54 $fld_metadata = isset($prop['metadata']);
55
56 $pageIds = $this->getPageSet()->getAllTitlesByNamespace();
57 if (!empty($pageIds[NS_IMAGE])) {
58 foreach ($pageIds[NS_IMAGE] as $dbKey => $pageId) {
59
60 $title = Title :: makeTitle(NS_IMAGE, $dbKey);
61 $img = wfFindFile($title);
62
63 $data = array();
64 if ( !$img ) {
65 $repository = '';
66 } else {
67
68 $repository = $img->getRepoName();
69
70 $isCur = true;
71 while($line = $img->nextHistoryLine()) { // assignment
72 $row = get_object_vars( $line );
73 $vals = array();
74 $prefix = $isCur ? 'img' : 'oi';
75
76 if ($fld_timestamp)
77 $vals['timestamp'] = wfTimestamp(TS_ISO_8601, $row["${prefix}_timestamp"]);
78 if ($fld_user) {
79 $vals['user'] = $row["${prefix}_user_text"];
80 if(!$row["${prefix}_user"])
81 $vals['anon'] = '';
82 }
83 if ($fld_size) {
84 $vals['size'] = intval($row["{$prefix}_size"]);
85 $vals['width'] = intval($row["{$prefix}_width"]);
86 $vals['height'] = intval($row["{$prefix}_height"]);
87 }
88 if ($fld_url)
89 $vals['url'] = $isCur ? $img->getURL() : $img->getArchiveUrl($row["oi_archive_name"]);
90 if ($fld_comment)
91 $vals['comment'] = $row["{$prefix}_description"];
92
93 if ($fld_sha1)
94 $vals['sha1'] = wfBaseConvert($row["{$prefix}_sha1"], 36, 16, 40);
95
96 if ($fld_metadata) {
97 $metadata = unserialize($row["{$prefix}_metadata"]);
98 $vals['metadata'] = $metadata ? $metadata : null;
99 $this->getResult()->setIndexedTagName_recursive($vals['metadata'], 'meta');
100 }
101
102 $data[] = $vals;
103
104 if (!$history) // Stop after the first line.
105 break;
106
107 $isCur = false;
108 }
109
110 $img->resetHistory();
111 }
112
113 $this->getResult()->addValue(array ('query', 'pages', intval($pageId)),
114 'imagerepository',
115 $repository);
116 if (!empty($data))
117 $this->addPageSubItems($pageId, $data);
118 }
119 }
120 }
121
122 protected function getAllowedParams() {
123 return array (
124 'prop' => array (
125 ApiBase :: PARAM_ISMULTI => true,
126 ApiBase :: PARAM_DFLT => 'timestamp|user',
127 ApiBase :: PARAM_TYPE => array (
128 'timestamp',
129 'user',
130 'comment',
131 'url',
132 'size',
133 'sha1',
134 'metadata'
135 )
136 ),
137 'history' => false,
138 );
139 }
140
141 protected function getParamDescription() {
142 return array (
143 'prop' => 'What image information to get.',
144 'history' => 'Include upload history',
145 );
146 }
147
148 protected function getDescription() {
149 return array (
150 'Returns image information and upload history'
151 );
152 }
153
154 protected function getExamples() {
155 return array (
156 'api.php?action=query&titles=Image:Albert%20Einstein%20Head.jpg&prop=imageinfo',
157 'api.php?action=query&titles=Image:Test.jpg&prop=imageinfo&iihistory&iiprop=timestamp|user|url',
158 );
159 }
160
161 public function getVersion() {
162 return __CLASS__ . ': $Id$';
163 }
164 }