(bug 11632) API: Breaking change: Specify the type of a change in the recentchanges...
[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 }
100
101 $data[] = $vals;
102
103 if (!$history) // Stop after the first line.
104 break;
105
106 $isCur = false;
107 }
108
109 $img->resetHistory();
110 }
111
112 $this->getResult()->addValue(array ('query', 'pages', intval($pageId)),
113 'imagerepository',
114 $repository);
115 if (!empty($data))
116 $this->addPageSubItems($pageId, $data);
117 }
118 }
119 }
120
121 protected function getAllowedParams() {
122 return array (
123 'prop' => array (
124 ApiBase :: PARAM_ISMULTI => true,
125 ApiBase :: PARAM_DFLT => 'timestamp|user',
126 ApiBase :: PARAM_TYPE => array (
127 'timestamp',
128 'user',
129 'comment',
130 'url',
131 'size',
132 'sha1',
133 'metadata'
134 )
135 ),
136 'history' => false,
137 );
138 }
139
140 protected function getParamDescription() {
141 return array (
142 'prop' => 'What image information to get.',
143 'history' => 'Include upload history',
144 );
145 }
146
147 protected function getDescription() {
148 return array (
149 'Returns image information and upload history'
150 );
151 }
152
153 protected function getExamples() {
154 return array (
155 'api.php?action=query&titles=Image:Albert%20Einstein%20Head.jpg&prop=imageinfo',
156 'api.php?action=query&titles=Image:Test.jpg&prop=imageinfo&iihistory&iiprop=timestamp|user|url',
157 );
158 }
159
160 public function getVersion() {
161 return __CLASS__ . ': $Id$';
162 }
163 }