Merge "Check validity and availability of usernames during signup via AJAX"
[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 /**
30 * Query module to enumerate all deleted files.
31 *
32 * @ingroup API
33 */
34 class ApiQueryFilearchive extends ApiQueryBase {
35
36 public function __construct( $query, $moduleName ) {
37 parent::__construct( $query, $moduleName, 'fa' );
38 }
39
40 public function execute() {
41 $user = $this->getUser();
42 // Before doing anything at all, let's check permissions
43 if ( !$user->isAllowed( 'deletedhistory' ) ) {
44 $this->dieUsage(
45 'You don\'t have permission to view deleted file information',
46 'permissiondenied'
47 );
48 }
49
50 $db = $this->getDB();
51
52 $params = $this->extractRequestParams();
53
54 $prop = array_flip( $params['prop'] );
55 $fld_sha1 = isset( $prop['sha1'] );
56 $fld_timestamp = isset( $prop['timestamp'] );
57 $fld_user = isset( $prop['user'] );
58 $fld_size = isset( $prop['size'] );
59 $fld_dimensions = isset( $prop['dimensions'] );
60 $fld_description = isset( $prop['description'] ) || isset( $prop['parseddescription'] );
61 $fld_mime = isset( $prop['mime'] );
62 $fld_mediatype = isset( $prop['mediatype'] );
63 $fld_metadata = isset( $prop['metadata'] );
64 $fld_bitdepth = isset( $prop['bitdepth'] );
65 $fld_archivename = isset( $prop['archivename'] );
66
67 $this->addTables( 'filearchive' );
68
69 $this->addFields( ArchivedFile::selectFields() );
70 $this->addFields( array( 'fa_name', 'fa_deleted' ) );
71 $this->addFieldsIf( 'fa_sha1', $fld_sha1 );
72 $this->addFieldsIf( 'fa_timestamp', $fld_timestamp );
73 $this->addFieldsIf( array( 'fa_user', 'fa_user_text' ), $fld_user );
74 $this->addFieldsIf( array( 'fa_height', 'fa_width', 'fa_size' ), $fld_dimensions || $fld_size );
75 $this->addFieldsIf( 'fa_description', $fld_description );
76 $this->addFieldsIf( array( 'fa_major_mime', 'fa_minor_mime' ), $fld_mime );
77 $this->addFieldsIf( 'fa_media_type', $fld_mediatype );
78 $this->addFieldsIf( 'fa_metadata', $fld_metadata );
79 $this->addFieldsIf( 'fa_bits', $fld_bitdepth );
80 $this->addFieldsIf( 'fa_archive_name', $fld_archivename );
81
82 if ( !is_null( $params['continue'] ) ) {
83 $cont = explode( '|', $params['continue'] );
84 $this->dieContinueUsageIf( count( $cont ) != 1 );
85 $op = $params['dir'] == 'descending' ? '<' : '>';
86 $cont_from = $db->addQuotes( $cont[0] );
87 $this->addWhere( "fa_name $op= $cont_from" );
88 }
89
90 // Image filters
91 $dir = ( $params['dir'] == 'descending' ? 'older' : 'newer' );
92 $from = ( $params['from'] === null ? null : $this->titlePartToKey( $params['from'], NS_FILE ) );
93 if ( !is_null( $params['continue'] ) ) {
94 $from = $params['continue'];
95 }
96 $to = ( $params['to'] === null ? null : $this->titlePartToKey( $params['to'], NS_FILE ) );
97 $this->addWhereRange( 'fa_name', $dir, $from, $to );
98 if ( isset( $params['prefix'] ) ) {
99 $this->addWhere( 'fa_name' . $db->buildLike(
100 $this->titlePartToKey( $params['prefix'], NS_FILE ),
101 $db->anyString() ) );
102 }
103
104 $sha1Set = isset( $params['sha1'] );
105 $sha1base36Set = isset( $params['sha1base36'] );
106 if ( $sha1Set || $sha1base36Set ) {
107 $sha1 = false;
108 if ( $sha1Set ) {
109 $sha1 = strtolower( $params['sha1'] );
110 if ( !$this->validateSha1Hash( $sha1 ) ) {
111 $this->dieUsage( 'The SHA1 hash provided is not valid', 'invalidsha1hash' );
112 }
113 $sha1 = wfBaseConvert( $sha1, 16, 36, 31 );
114 } elseif ( $sha1base36Set ) {
115 $sha1 = strtolower( $params['sha1base36'] );
116 if ( !$this->validateSha1Base36Hash( $sha1 ) ) {
117 $this->dieUsage( 'The SHA1Base36 hash provided is not valid', 'invalidsha1base36hash' );
118 }
119 }
120 if ( $sha1 ) {
121 $this->addWhereFld( 'fa_sha1', $sha1 );
122 }
123 }
124
125 // Exclude files this user can't view.
126 if ( !$user->isAllowed( 'deletedtext' ) ) {
127 $bitmask = File::DELETED_FILE;
128 } elseif ( !$user->isAllowed( 'suppressrevision' ) ) {
129 $bitmask = File::DELETED_FILE | File::DELETED_RESTRICTED;
130 } else {
131 $bitmask = 0;
132 }
133 if ( $bitmask ) {
134 $this->addWhere( $this->getDB()->bitAnd( 'fa_deleted', $bitmask ) . " != $bitmask" );
135 }
136
137 $limit = $params['limit'];
138 $this->addOption( 'LIMIT', $limit + 1 );
139 $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
140 $this->addOption( 'ORDER BY', 'fa_name' . $sort );
141
142 $res = $this->select( __METHOD__ );
143
144 $count = 0;
145 $result = $this->getResult();
146 foreach ( $res as $row ) {
147 if ( ++$count > $limit ) {
148 // We've reached the one extra which shows that there are
149 // additional pages to be had. Stop here...
150 $this->setContinueEnumParameter( 'continue', $row->fa_name );
151 break;
152 }
153
154 $file = array();
155 $file['name'] = $row->fa_name;
156 $title = Title::makeTitle( NS_FILE, $row->fa_name );
157 self::addTitleInfo( $file, $title );
158
159 if ( $fld_description &&
160 Revision::userCanBitfield( $row->fa_deleted, File::DELETED_COMMENT, $user )
161 ) {
162 $file['description'] = $row->fa_description;
163 if ( isset( $prop['parseddescription'] ) ) {
164 $file['parseddescription'] = Linker::formatComment(
165 $row->fa_description, $title );
166 }
167 }
168 if ( $fld_user &&
169 Revision::userCanBitfield( $row->fa_deleted, File::DELETED_USER, $user )
170 ) {
171 $file['userid'] = $row->fa_user;
172 $file['user'] = $row->fa_user_text;
173 }
174 if ( $fld_sha1 ) {
175 $file['sha1'] = wfBaseConvert( $row->fa_sha1, 36, 16, 40 );
176 }
177 if ( $fld_timestamp ) {
178 $file['timestamp'] = wfTimestamp( TS_ISO_8601, $row->fa_timestamp );
179 }
180 if ( $fld_size || $fld_dimensions ) {
181 $file['size'] = $row->fa_size;
182
183 $pageCount = ArchivedFile::newFromRow( $row )->pageCount();
184 if ( $pageCount !== false ) {
185 $vals['pagecount'] = $pageCount;
186 }
187
188 $file['height'] = $row->fa_height;
189 $file['width'] = $row->fa_width;
190 }
191 if ( $fld_mediatype ) {
192 $file['mediatype'] = $row->fa_media_type;
193 }
194 if ( $fld_metadata ) {
195 $file['metadata'] = $row->fa_metadata
196 ? ApiQueryImageInfo::processMetaData( unserialize( $row->fa_metadata ), $result )
197 : null;
198 }
199 if ( $fld_bitdepth ) {
200 $file['bitdepth'] = $row->fa_bits;
201 }
202 if ( $fld_mime ) {
203 $file['mime'] = "$row->fa_major_mime/$row->fa_minor_mime";
204 }
205 if ( $fld_archivename && !is_null( $row->fa_archive_name ) ) {
206 $file['archivename'] = $row->fa_archive_name;
207 }
208
209 if ( $row->fa_deleted & File::DELETED_FILE ) {
210 $file['filehidden'] = '';
211 }
212 if ( $row->fa_deleted & File::DELETED_COMMENT ) {
213 $file['commenthidden'] = '';
214 }
215 if ( $row->fa_deleted & File::DELETED_USER ) {
216 $file['userhidden'] = '';
217 }
218 if ( $row->fa_deleted & File::DELETED_RESTRICTED ) {
219 // This file is deleted for normal admins
220 $file['suppressed'] = '';
221 }
222
223 $fit = $result->addValue( array( 'query', $this->getModuleName() ), null, $file );
224 if ( !$fit ) {
225 $this->setContinueEnumParameter( 'continue', $row->fa_name );
226 break;
227 }
228 }
229
230 $result->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'fa' );
231 }
232
233 public function getAllowedParams() {
234 return array(
235 'from' => null,
236 'continue' => null,
237 'to' => null,
238 'prefix' => null,
239 'limit' => array(
240 ApiBase::PARAM_DFLT => 10,
241 ApiBase::PARAM_TYPE => 'limit',
242 ApiBase::PARAM_MIN => 1,
243 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
244 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
245 ),
246 'dir' => array(
247 ApiBase::PARAM_DFLT => 'ascending',
248 ApiBase::PARAM_TYPE => array(
249 'ascending',
250 'descending'
251 )
252 ),
253 'sha1' => null,
254 'sha1base36' => null,
255 'prop' => array(
256 ApiBase::PARAM_DFLT => 'timestamp',
257 ApiBase::PARAM_ISMULTI => true,
258 ApiBase::PARAM_TYPE => array(
259 'sha1',
260 'timestamp',
261 'user',
262 'size',
263 'dimensions',
264 'description',
265 'parseddescription',
266 'mime',
267 'mediatype',
268 'metadata',
269 'bitdepth',
270 'archivename',
271 ),
272 ),
273 );
274 }
275
276 public function getParamDescription() {
277 return array(
278 'from' => 'The image title to start enumerating from',
279 'continue' => 'When more results are available, use this to continue',
280 'to' => 'The image title to stop enumerating at',
281 'prefix' => 'Search for all image titles that begin with this value',
282 'dir' => 'The direction in which to list',
283 'limit' => 'How many images to return in total',
284 'sha1' => "SHA1 hash of image. Overrides {$this->getModulePrefix()}sha1base36",
285 'sha1base36' => 'SHA1 hash of image in base 36 (used in MediaWiki)',
286 'prop' => array(
287 'What image information to get:',
288 ' sha1 - Adds SHA-1 hash for the image',
289 ' timestamp - Adds timestamp for the uploaded version',
290 ' user - Adds user who uploaded the image version',
291 ' size - Adds the size of the image in bytes and the height, ' .
292 'width and page count (if applicable)',
293 ' dimensions - Alias for size',
294 ' description - Adds description the image version',
295 ' parseddescription - Parse the description on the version',
296 ' mime - Adds MIME of the image',
297 ' mediatype - Adds the media type of the image',
298 ' metadata - Lists Exif metadata for the version of the image',
299 ' bitdepth - Adds the bit depth of the version',
300 ' archivename - Adds the file name of the archive version for non-latest versions'
301 ),
302 );
303 }
304
305 public function getResultProperties() {
306 return array(
307 '' => array(
308 'name' => 'string',
309 'ns' => 'namespace',
310 'title' => 'string',
311 'filehidden' => 'boolean',
312 'commenthidden' => 'boolean',
313 'userhidden' => 'boolean',
314 'suppressed' => 'boolean'
315 ),
316 'sha1' => array(
317 'sha1' => 'string'
318 ),
319 'timestamp' => array(
320 'timestamp' => 'timestamp'
321 ),
322 'user' => array(
323 'userid' => 'integer',
324 'user' => 'string'
325 ),
326 'size' => array(
327 'size' => 'integer',
328 'pagecount' => array(
329 ApiBase::PROP_TYPE => 'integer',
330 ApiBase::PROP_NULLABLE => true
331 ),
332 'height' => 'integer',
333 'width' => 'integer'
334 ),
335 'dimensions' => array(
336 'size' => 'integer',
337 'pagecount' => array(
338 ApiBase::PROP_TYPE => 'integer',
339 ApiBase::PROP_NULLABLE => true
340 ),
341 'height' => 'integer',
342 'width' => 'integer'
343 ),
344 'description' => array(
345 'description' => 'string'
346 ),
347 'parseddescription' => array(
348 'description' => 'string',
349 'parseddescription' => 'string'
350 ),
351 'metadata' => array(
352 'metadata' => 'string'
353 ),
354 'bitdepth' => array(
355 'bitdepth' => 'integer'
356 ),
357 'mime' => array(
358 'mime' => 'string'
359 ),
360 'mediatype' => array(
361 'mediatype' => 'string'
362 ),
363 'archivename' => array(
364 'archivename' => 'string'
365 ),
366 );
367 }
368
369 public function getDescription() {
370 return 'Enumerate all deleted files sequentially.';
371 }
372
373 public function getPossibleErrors() {
374 return array_merge( parent::getPossibleErrors(), array(
375 array(
376 'code' => 'permissiondenied',
377 'info' => 'You don\'t have permission to view deleted file information'
378 ),
379 array( 'code' => 'hashsearchdisabled', 'info' => 'Search by hash disabled in Miser Mode' ),
380 array( 'code' => 'invalidsha1hash', 'info' => 'The SHA-1 hash provided is not valid' ),
381 array(
382 'code' => 'invalidsha1base36hash',
383 'info' => 'The SHA1Base36 hash provided is not valid'
384 ),
385 ) );
386 }
387
388 public function getExamples() {
389 return array(
390 'api.php?action=query&list=filearchive' => array(
391 'Simple Use',
392 'Show a list of all deleted files',
393 ),
394 );
395 }
396
397 public function getHelpUrls() {
398 return 'https://www.mediawiki.org/wiki/API:Filearchive';
399 }
400 }