(bug 27587) list=filearchive now outputs full title info
[lhc/web/wiklou.git] / includes / api / ApiQueryFilearchive.php
1 <?php
2 /**
3 * API for MediaWiki 1.12+
4 *
5 * Created on May 10, 2010
6 *
7 * Copyright © 2010 Sam Reed
8 * Copyright © 2008 Vasiliev Victor vasilvv@gmail.com,
9 * based on ApiQueryAllpages.php
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24 * http://www.gnu.org/copyleft/gpl.html
25 *
26 * @file
27 */
28
29 if ( !defined( 'MEDIAWIKI' ) ) {
30 // Eclipse helper - will be ignored in production
31 require_once( 'ApiQueryBase.php' );
32 }
33
34 /**
35 * Query module to enumerate all deleted files.
36 *
37 * @ingroup API
38 */
39 class ApiQueryFilearchive extends ApiQueryBase {
40
41 public function __construct( $query, $moduleName ) {
42 parent::__construct( $query, $moduleName, 'fa' );
43 }
44
45 public function execute() {
46 global $wgUser;
47 // Before doing anything at all, let's check permissions
48 if ( !$wgUser->isAllowed( 'deletedhistory' ) ) {
49 $this->dieUsage( 'You don\'t have permission to view deleted file information', 'permissiondenied' );
50 }
51
52 $db = $this->getDB();
53
54 $params = $this->extractRequestParams();
55
56 $prop = array_flip( $params['prop'] );
57 $fld_sha1 = isset( $prop['sha1'] );
58 $fld_timestamp = isset( $prop['timestamp'] );
59 $fld_user = isset( $prop['user'] );
60 $fld_size = isset( $prop['size'] );
61 $fld_dimensions = isset( $prop['dimensions'] );
62 $fld_description = isset( $prop['description'] );
63 $fld_mime = isset( $prop['mime'] );
64 $fld_metadata = isset( $prop['metadata'] );
65 $fld_bitdepth = isset( $prop['bitdepth'] );
66
67 $this->addTables( 'filearchive' );
68
69 $this->addFields( 'fa_name' );
70 $this->addFieldsIf( 'fa_storage_key', $fld_sha1 );
71 $this->addFieldsIf( 'fa_timestamp', $fld_timestamp );
72
73 if ( $fld_user ) {
74 $this->addFields( array( 'fa_user', 'fa_user_text' ) );
75 }
76 $this->addFieldsIf( 'fa_size', $fld_size );
77
78 if ( $fld_dimensions ) {
79 $this->addFields( array( 'fa_height', 'fa_width' ) );
80 }
81
82 $this->addFieldsIf( 'fa_description', $fld_description );
83
84 if ( $fld_mime ) {
85 $this->addFields( array( 'fa_major_mime', 'fa_minor_mime' ) );
86 }
87
88 $this->addFieldsIf( 'fa_metadata', $fld_metadata );
89 $this->addFieldsIf( 'fa_bits', $fld_bitdepth );
90
91 // Image filters
92 $dir = ( $params['dir'] == 'descending' ? 'older' : 'newer' );
93 $from = ( is_null( $params['from'] ) ? null : $this->titlePartToKey( $params['from'] ) );
94 $this->addWhereRange( 'fa_name', $dir, $from, null );
95 if ( isset( $params['prefix'] ) )
96 $this->addWhere( 'fa_name' . $db->buildLike( $this->titlePartToKey( $params['prefix'] ), $db->anyString() ) );
97
98 if ( isset( $params['minsize'] ) ) {
99 $this->addWhere( 'fa_size>=' . intval( $params['minsize'] ) );
100 }
101
102 if ( isset( $params['maxsize'] ) ) {
103 $this->addWhere( 'fa_size<=' . intval( $params['maxsize'] ) );
104 }
105
106 $sha1 = false;
107 if ( isset( $params['sha1'] ) ) {
108 $sha1 = wfBaseConvert( $params['sha1'], 16, 36, 31 );
109 } elseif ( isset( $params['sha1base36'] ) ) {
110 $sha1 = $params['sha1base36'];
111 }
112 if ( $sha1 ) {
113 $this->addWhere( 'fa_storage_key=' . $db->addQuotes( $sha1 ) );
114 }
115
116 $limit = $params['limit'];
117 $this->addOption( 'LIMIT', $limit + 1 );
118 $this->addOption( 'ORDER BY', 'fa_name' .
119 ( $params['dir'] == 'descending' ? ' DESC' : '' ) );
120
121 $res = $this->select( __METHOD__ );
122
123 $count = 0;
124 $result = $this->getResult();
125 foreach ( $res as $row ) {
126 if ( ++$count > $limit ) {
127 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
128 // TODO: Security issue - if the user has no right to view next title, it will still be shown
129 $this->setContinueEnumParameter( 'from', $this->keyToTitle( $row->fa_name ) );
130 break;
131 }
132
133 $file = array();
134 $file['name'] = $row->fa_name;
135 self::addTitleInfo( $file, Title::makeTitle( NS_FILE, $row->fa_name ) );
136
137 if ( $fld_sha1 ) {
138 $file['sha1'] = wfBaseConvert( $row->fa_storage_key, 36, 16, 40 );
139 }
140 if ( $fld_timestamp ) {
141 $file['timestamp'] = wfTimestamp( TS_ISO_8601, $row->fa_timestamp );
142 }
143 if ( $fld_user ) {
144 $file['userid'] = $row->fa_user;
145 $file['user'] = $row->fa_user_text;
146 }
147 if ( $fld_size ) {
148 $file['size'] = $row->fa_size;
149 }
150 if ( $fld_dimensions ) {
151 $file['height'] = $row->fa_height;
152 $file['width'] = $row->fa_width;
153 }
154 if ( $fld_description ) {
155 $file['description'] = $row->fa_description;
156 }
157 if ( $fld_metadata ) {
158 $file['metadata'] = $row->fa_metadata ? ApiQueryImageInfo::processMetaData( unserialize( $row->fa_metadata ), $result ) : null;
159 }
160 if ( $fld_bitdepth ) {
161 $file['bitdepth'] = $row->fa_bits;
162 }
163 if ( $fld_mime ) {
164 $file['mime'] = "$row->fa_major_mime/$row->fa_minor_mime";
165 }
166
167 $fit = $result->addValue( array( 'query', $this->getModuleName() ), null, $file );
168 if ( !$fit ) {
169 $this->setContinueEnumParameter( 'from', $this->keyToTitle( $row->fa_name ) );
170 break;
171 }
172 }
173
174 $result->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'fa' );
175 }
176
177 public function getAllowedParams() {
178 return array (
179 'from' => null,
180 'prefix' => null,
181 'minsize' => array(
182 ApiBase::PARAM_TYPE => 'integer',
183 ),
184 'maxsize' => array(
185 ApiBase::PARAM_TYPE => 'integer',
186 ),
187 'limit' => array(
188 ApiBase::PARAM_DFLT => 10,
189 ApiBase::PARAM_TYPE => 'limit',
190 ApiBase::PARAM_MIN => 1,
191 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
192 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
193 ),
194 'dir' => array(
195 ApiBase::PARAM_DFLT => 'ascending',
196 ApiBase::PARAM_TYPE => array(
197 'ascending',
198 'descending'
199 )
200 ),
201 'sha1' => null,
202 'sha1base36' => null,
203 'prop' => array(
204 ApiBase::PARAM_DFLT => 'timestamp',
205 ApiBase::PARAM_ISMULTI => true,
206 ApiBase::PARAM_TYPE => array(
207 'sha1',
208 'timestamp',
209 'user',
210 'size',
211 'dimensions',
212 'description',
213 'mime',
214 'metadata',
215 'bitdepth'
216 ),
217 ),
218 );
219 }
220
221 public function getParamDescription() {
222 return array(
223 'from' => 'The image title to start enumerating from',
224 'prefix' => 'Search for all image titles that begin with this value',
225 'dir' => 'The direction in which to list',
226 'minsize' => 'Limit to images with at least this many bytes',
227 'maxsize' => 'Limit to images with at most this many bytes',
228 'limit' => 'How many total images to return',
229 'sha1' => "SHA1 hash of image. Overrides {$this->getModulePrefix()}sha1base36",
230 'sha1base36' => 'SHA1 hash of image in base 36 (used in MediaWiki)',
231 'prop' => array(
232 'What image information to get:',
233 ' sha1 - Adds SHA-1 hash for the image',
234 ' timestamp - Adds timestamp for the uploaded version',
235 ' user - Adds user who uploaded the image version',
236 ' size - Adds the size of the image in bytes',
237 ' dimensions - Adds the height and width of the image',
238 ' description - Adds description the image version',
239 ' mime - Adds MIME of the image',
240 ' metadata - Lists EXIF metadata for the version of the image',
241 ' bitdepth - Adds the bit depth of the version',
242 ),
243 );
244 }
245
246 public function getDescription() {
247 return 'Enumerate all deleted files sequentially';
248 }
249
250 public function getPossibleErrors() {
251 return array_merge( parent::getPossibleErrors(), array(
252 array( 'code' => 'permissiondenied', 'info' => 'You don\'t have permission to view deleted file information' ),
253 ) );
254 }
255
256 protected function getExamples() {
257 return array(
258 'Simple Use',
259 ' Show a list of all deleted files',
260 ' api.php?action=query&list=filearchive',
261 );
262 }
263
264 public function getVersion() {
265 return __CLASS__ . ': $Id$';
266 }
267 }