Add some more spacing due to long parameter names
[lhc/web/wiklou.git] / includes / api / ApiUpload.php
1 <?php
2 /**
3 *
4 *
5 * Created on Aug 21, 2008
6 *
7 * Copyright © 2008 - 2010 Bryan Tong Minh <Bryan.TongMinh@Gmail.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 */
26
27 if ( !defined( 'MEDIAWIKI' ) ) {
28 // Eclipse helper - will be ignored in production
29 require_once( "ApiBase.php" );
30 }
31
32 /**
33 * @ingroup API
34 */
35 class ApiUpload extends ApiBase {
36
37 /**
38 * @var UploadBase
39 */
40 protected $mUpload = null;
41
42 protected $mParams;
43
44 public function __construct( $main, $action ) {
45 parent::__construct( $main, $action );
46 }
47
48 public function execute() {
49 global $wgUser;
50
51 // Check whether upload is enabled
52 if ( !UploadBase::isEnabled() ) {
53 $this->dieUsageMsg( array( 'uploaddisabled' ) );
54 }
55
56 // Parameter handling
57 $this->mParams = $this->extractRequestParams();
58 $request = $this->getMain()->getRequest();
59 // Add the uploaded file to the params array
60 $this->mParams['file'] = $request->getFileName( 'file' );
61
62 // Select an upload module
63 if ( !$this->selectUploadModule() ) {
64 // This is not a true upload, but a status request or similar
65 return;
66 }
67 if ( !isset( $this->mUpload ) ) {
68 $this->dieUsage( 'No upload module set', 'nomodule' );
69 }
70
71 // First check permission to upload
72 $this->checkPermissions( $wgUser );
73
74 // Fetch the file
75 $status = $this->mUpload->fetchFile();
76 if ( !$status->isGood() ) {
77 $errors = $status->getErrorsArray();
78 $error = array_shift( $errors[0] );
79 $this->dieUsage( 'Error fetching file from remote source', $error, 0, $errors[0] );
80 }
81
82 // Check if the uploaded file is sane
83 $this->verifyUpload();
84
85
86 // Check if the user has the rights to modify or overwrite the requested title
87 // (This check is irrelevant if stashing is already requested, since the errors
88 // can always be fixed by changing the title)
89 if ( ! $this->mParams['stash'] ) {
90 $permErrors = $this->mUpload->verifyTitlePermissions( $wgUser );
91 if ( $permErrors !== true ) {
92 $this->dieRecoverableError( $permErrors[0], 'filename' );
93 }
94 }
95
96 // Prepare the API result
97 $result = array();
98
99 $warnings = $this->getApiWarnings();
100 if ( $warnings ) {
101 $result['result'] = 'Warning';
102 $result['warnings'] = $warnings;
103 // in case the warnings can be fixed with some further user action, let's stash this upload
104 // and return a key they can use to restart it
105 try {
106 $result['sessionkey'] = $this->performStash();
107 } catch ( MWException $e ) {
108 $result['warnings']['stashfailed'] = $e->getMessage();
109 }
110 } elseif ( $this->mParams['stash'] ) {
111 // Some uploads can request they be stashed, so as not to publish them immediately.
112 // In this case, a failure to stash ought to be fatal
113 try {
114 $result['result'] = 'Success';
115 $result['sessionkey'] = $this->performStash();
116 } catch ( MWException $e ) {
117 $this->dieUsage( $e->getMessage(), 'stashfailed' );
118 }
119 } else {
120 // This is the most common case -- a normal upload with no warnings
121 // $result will be formatted properly for the API already, with a status
122 $result = $this->performUpload();
123 }
124
125 if ( $result['result'] === 'Success' ) {
126 $result['imageinfo'] = $this->mUpload->getImageInfo( $this->getResult() );
127 }
128
129 $this->getResult()->addValue( null, $this->getModuleName(), $result );
130
131 // Cleanup any temporary mess
132 $this->mUpload->cleanupTempFile();
133 }
134
135 /**
136 * Stash the file and return the session key
137 * Also re-raises exceptions with slightly more informative message strings (useful for API)
138 * @throws MWException
139 * @return {String} session key
140 */
141 function performStash() {
142 try {
143 $sessionKey = $this->mUpload->stashSessionFile()->getSessionKey();
144 } catch ( MWException $e ) {
145 throw new MWException( 'Stashing temporary file failed: ' . get_class( $e ) . ' ' . $e->getMessage() );
146 }
147 return $sessionKey;
148 }
149
150 /**
151 * Throw an error that the user can recover from by providing a better
152 * value for $parameter
153 *
154 * @param $error array Error array suitable for passing to dieUsageMsg()
155 * @param $parameter string Parameter that needs revising
156 * @param $data array Optional extra data to pass to the user
157 * @throws UsageException
158 */
159 function dieRecoverableError( $error, $parameter, $data = array() ) {
160 try {
161 $data['sessionkey'] = $this->performStash();
162 } catch ( MWException $e ) {
163 $data['stashfailed'] = $e->getMessage();
164 }
165 $data['invalidparameter'] = $parameter;
166
167 $parsed = $this->parseMsg( $error );
168 $this->dieUsage( $parsed['info'], $parsed['code'], 0, $data );
169 }
170
171 /**
172 * Select an upload module and set it to mUpload. Dies on failure. If the
173 * request was a status request and not a true upload, returns false;
174 * otherwise true
175 *
176 * @return bool
177 */
178 protected function selectUploadModule() {
179 $request = $this->getMain()->getRequest();
180
181 // One and only one of the following parameters is needed
182 $this->requireOnlyOneParameter( $this->mParams,
183 'sessionkey', 'file', 'url', 'statuskey' );
184
185 if ( $this->mParams['statuskey'] ) {
186 $this->checkAsyncDownloadEnabled();
187
188 // Status request for an async upload
189 $sessionData = UploadFromUrlJob::getSessionData( $this->mParams['statuskey'] );
190 if ( !isset( $sessionData['result'] ) ) {
191 $this->dieUsage( 'No result in session data', 'missingresult' );
192 }
193 if ( $sessionData['result'] == 'Warning' ) {
194 $sessionData['warnings'] = $this->transformWarnings( $sessionData['warnings'] );
195 $sessionData['sessionkey'] = $this->mParams['statuskey'];
196 }
197 $this->getResult()->addValue( null, $this->getModuleName(), $sessionData );
198 return false;
199
200 }
201
202 // The following modules all require the filename parameter to be set
203 if ( is_null( $this->mParams['filename'] ) ) {
204 $this->dieUsageMsg( array( 'missingparam', 'filename' ) );
205 }
206
207 if ( $this->mParams['sessionkey'] ) {
208 // Upload stashed in a previous request
209 $sessionData = $request->getSessionData( UploadBase::getSessionKeyName() );
210 if ( !UploadFromStash::isValidSessionKey( $this->mParams['sessionkey'], $sessionData ) ) {
211 $this->dieUsageMsg( array( 'invalid-session-key' ) );
212 }
213
214 $this->mUpload = new UploadFromStash();
215 $this->mUpload->initialize( $this->mParams['filename'],
216 $this->mParams['sessionkey'],
217 $sessionData[$this->mParams['sessionkey']] );
218
219 } elseif ( isset( $this->mParams['file'] ) ) {
220 $this->mUpload = new UploadFromFile();
221 $this->mUpload->initialize(
222 $this->mParams['filename'],
223 $request->getUpload( 'file' )
224 );
225 } elseif ( isset( $this->mParams['url'] ) ) {
226 // Make sure upload by URL is enabled:
227 if ( !UploadFromUrl::isEnabled() ) {
228 $this->dieUsageMsg( array( 'copyuploaddisabled' ) );
229 }
230
231 $async = false;
232 if ( $this->mParams['asyncdownload'] ) {
233 $this->checkAsyncDownloadEnabled();
234
235 if ( $this->mParams['leavemessage'] && !$this->mParams['ignorewarnings'] ) {
236 $this->dieUsage( 'Using leavemessage without ignorewarnings is not supported',
237 'missing-ignorewarnings' );
238 }
239
240 if ( $this->mParams['leavemessage'] ) {
241 $async = 'async-leavemessage';
242 } else {
243 $async = 'async';
244 }
245 }
246 $this->mUpload = new UploadFromUrl;
247 $this->mUpload->initialize( $this->mParams['filename'],
248 $this->mParams['url'], $async );
249
250 }
251
252 return true;
253 }
254
255 /**
256 * Checks that the user has permissions to perform this upload.
257 * Dies with usage message on inadequate permissions.
258 * @param $user User The user to check.
259 */
260 protected function checkPermissions( $user ) {
261 // Check whether the user has the appropriate permissions to upload anyway
262 $permission = $this->mUpload->isAllowed( $user );
263
264 if ( $permission !== true ) {
265 if ( !$user->isLoggedIn() ) {
266 $this->dieUsageMsg( array( 'mustbeloggedin', 'upload' ) );
267 } else {
268 $this->dieUsageMsg( array( 'badaccess-groups' ) );
269 }
270 }
271 }
272
273 /**
274 * Performs file verification, dies on error.
275 */
276 protected function verifyUpload( ) {
277 global $wgFileExtensions;
278
279 $verification = $this->mUpload->verifyUpload( );
280 if ( $verification['status'] === UploadBase::OK ) {
281 return;
282 }
283
284 // TODO: Move them to ApiBase's message map
285 switch( $verification['status'] ) {
286 // Recoverable errors
287 case UploadBase::MIN_LENGTH_PARTNAME:
288 $this->dieRecoverableError( 'filename-tooshort', 'filename' );
289 break;
290 case UploadBase::ILLEGAL_FILENAME:
291 $this->dieRecoverableError( 'illegal-filename', 'filename',
292 array( 'filename' => $verification['filtered'] ) );
293 break;
294 case UploadBase::FILETYPE_MISSING:
295 $this->dieRecoverableError( 'filetype-missing', 'filename' );
296 break;
297
298 // Unrecoverable errors
299 case UploadBase::EMPTY_FILE:
300 $this->dieUsage( 'The file you submitted was empty', 'empty-file' );
301 break;
302 case UploadBase::FILE_TOO_LARGE:
303 $this->dieUsage( 'The file you submitted was too large', 'file-too-large' );
304 break;
305
306 case UploadBase::FILETYPE_BADTYPE:
307 $this->dieUsage( 'This type of file is banned', 'filetype-banned',
308 0, array(
309 'filetype' => $verification['finalExt'],
310 'allowed' => $wgFileExtensions
311 ) );
312 break;
313 case UploadBase::VERIFICATION_ERROR:
314 $this->getResult()->setIndexedTagName( $verification['details'], 'detail' );
315 $this->dieUsage( 'This file did not pass file verification', 'verification-error',
316 0, array( 'details' => $verification['details'] ) );
317 break;
318 case UploadBase::HOOK_ABORTED:
319 $this->dieUsage( "The modification you tried to make was aborted by an extension hook",
320 'hookaborted', 0, array( 'error' => $verification['error'] ) );
321 break;
322 default:
323 $this->dieUsage( 'An unknown error occurred', 'unknown-error',
324 0, array( 'code' => $verification['status'] ) );
325 break;
326 }
327 }
328
329
330 /**
331 * Check warnings if ignorewarnings is not set.
332 * Returns a suitable array for inclusion into API results if there were warnings
333 * Returns the empty array if there were no warnings
334 *
335 * @return array
336 */
337 protected function getApiWarnings() {
338 $warnings = array();
339
340 if ( !$this->mParams['ignorewarnings'] ) {
341 $warnings = $this->mUpload->checkWarnings();
342 if ( $warnings ) {
343 // Add indices
344 $this->getResult()->setIndexedTagName( $warnings, 'warning' );
345
346 if ( isset( $warnings['duplicate'] ) ) {
347 $dupes = array();
348 foreach ( $warnings['duplicate'] as $dupe ) {
349 $dupes[] = $dupe->getName();
350 }
351 $this->getResult()->setIndexedTagName( $dupes, 'duplicate' );
352 $warnings['duplicate'] = $dupes;
353 }
354
355 if ( isset( $warnings['exists'] ) ) {
356 $warning = $warnings['exists'];
357 unset( $warnings['exists'] );
358 $warnings[$warning['warning']] = $warning['file']->getName();
359 }
360 }
361 }
362
363 return $warnings;
364 }
365
366 /**
367 * Perform the actual upload. Returns a suitable result array on success;
368 * dies on failure.
369 */
370 protected function performUpload() {
371 global $wgUser;
372
373 // Use comment as initial page text by default
374 if ( is_null( $this->mParams['text'] ) ) {
375 $this->mParams['text'] = $this->mParams['comment'];
376 }
377
378 $file = $this->mUpload->getLocalFile();
379 $watch = $this->getWatchlistValue( $this->mParams['watchlist'], $file->getTitle() );
380
381 // Deprecated parameters
382 if ( $this->mParams['watch'] ) {
383 $watch = true;
384 }
385
386 // No errors, no warnings: do the upload
387 $status = $this->mUpload->performUpload( $this->mParams['comment'],
388 $this->mParams['text'], $watch, $wgUser );
389
390 if ( !$status->isGood() ) {
391 $error = $status->getErrorsArray();
392
393 if ( count( $error ) == 1 && $error[0][0] == 'async' ) {
394 // The upload can not be performed right now, because the user
395 // requested so
396 return array(
397 'result' => 'Queued',
398 'statuskey' => $error[0][1],
399 );
400 } else {
401 $this->getResult()->setIndexedTagName( $error, 'error' );
402
403 $this->dieUsage( 'An internal error occurred', 'internal-error', 0, $error );
404 }
405 }
406
407 $file = $this->mUpload->getLocalFile();
408
409 $result['result'] = 'Success';
410 $result['filename'] = $file->getName();
411
412 return $result;
413 }
414
415 /**
416 * Checks if asynchronous copy uploads are enabled and throws an error if they are not.
417 */
418 protected function checkAsyncDownloadEnabled() {
419 global $wgAllowAsyncCopyUploads;
420 if ( !$wgAllowAsyncCopyUploads ) {
421 $this->dieUsage( 'Asynchronous copy uploads disabled', 'asynccopyuploaddisabled');
422 }
423 }
424
425 public function mustBePosted() {
426 return true;
427 }
428
429 public function isWriteMode() {
430 return true;
431 }
432
433 public function getAllowedParams() {
434 $params = array(
435 'filename' => array(
436 ApiBase::PARAM_TYPE => 'string',
437 ),
438 'comment' => array(
439 ApiBase::PARAM_DFLT => ''
440 ),
441 'text' => null,
442 'token' => null,
443 'watch' => array(
444 ApiBase::PARAM_DFLT => false,
445 ApiBase::PARAM_DEPRECATED => true,
446 ),
447 'watchlist' => array(
448 ApiBase::PARAM_DFLT => 'preferences',
449 ApiBase::PARAM_TYPE => array(
450 'watch',
451 'preferences',
452 'nochange'
453 ),
454 ),
455 'ignorewarnings' => false,
456 'file' => null,
457 'url' => null,
458 'sessionkey' => null,
459 'stash' => false,
460
461 'asyncdownload' => false,
462 'leavemessage' => false,
463 'statuskey' => null,
464 );
465
466 return $params;
467 }
468
469 public function getParamDescription() {
470 $params = array(
471 'filename' => 'Target filename',
472 'token' => 'Edit token. You can get one of these through prop=info',
473 'comment' => 'Upload comment. Also used as the initial page text for new files if "text" is not specified',
474 'text' => 'Initial page text for new files',
475 'watch' => 'Watch the page',
476 'watchlist' => 'Unconditionally add or remove the page from your watchlist, use preferences or do not change watch',
477 'ignorewarnings' => 'Ignore any warnings',
478 'file' => 'File contents',
479 'url' => 'Url to fetch the file from',
480 'sessionkey' => 'Session key that identifies a previous upload that was stashed temporarily.',
481 'stash' => 'If set, the server will not add the file to the repository and stash it temporarily.',
482
483 'asyncdownload' => 'Make fetching a URL asynchronous',
484 'leavemessage' => 'If asyncdownload is used, leave a message on the user talk page if finished',
485 'statuskey' => 'Fetch the upload status for this session key',
486 );
487
488 return $params;
489
490 }
491
492 public function getDescription() {
493 return array(
494 'Upload a file, or get the status of pending uploads. Several methods are available:',
495 ' * Upload file contents directly, using the "file" parameter',
496 ' * Have the MediaWiki server fetch a file from a URL, using the "url" parameter',
497 ' * Complete an earlier upload that failed due to warnings, using the "sessionkey" parameter',
498 'Note that the HTTP POST must be done as a file upload (i.e. using multipart/form-data) when',
499 'sending the "file". Note also that queries using session keys must be',
500 'done in the same login session as the query that originally returned the key (i.e. do not',
501 'log out and then log back in). Also you must get and send an edit token before doing any upload stuff'
502 );
503 }
504
505 public function getPossibleErrors() {
506 return array_merge( parent::getPossibleErrors(),
507 $this->getRequireOnlyOneParameterErrorMessages( array( 'sessionkey', 'file', 'url', 'statuskey' ) ),
508 array(
509 array( 'uploaddisabled' ),
510 array( 'invalid-session-key' ),
511 array( 'uploaddisabled' ),
512 array( 'mustbeloggedin', 'upload' ),
513 array( 'badaccess-groups' ),
514 array( 'code' => 'fetchfileerror', 'info' => '' ),
515 array( 'code' => 'nomodule', 'info' => 'No upload module set' ),
516 array( 'code' => 'empty-file', 'info' => 'The file you submitted was empty' ),
517 array( 'code' => 'filetype-missing', 'info' => 'The file is missing an extension' ),
518 array( 'code' => 'filename-tooshort', 'info' => 'The filename is too short' ),
519 array( 'code' => 'overwrite', 'info' => 'Overwriting an existing file is not allowed' ),
520 array( 'code' => 'stashfailed', 'info' => 'Stashing temporary file failed' ),
521 array( 'code' => 'internal-error', 'info' => 'An internal error occurred' ),
522 array( 'code' => 'asynccopyuploaddisabled', 'info' => 'Asynchronous copy uploads disabled' ),
523 )
524 );
525 }
526
527 public function needsToken() {
528 return true;
529 }
530
531 public function getTokenSalt() {
532 return '';
533 }
534
535 protected function getExamples() {
536 return array(
537 'Upload from a URL:',
538 ' api.php?action=upload&filename=Wiki.png&url=http%3A//upload.wikimedia.org/wikipedia/en/b/bc/Wiki.png',
539 'Complete an upload that failed due to warnings:',
540 ' api.php?action=upload&filename=Wiki.png&sessionkey=sessionkey&ignorewarnings=1',
541 );
542 }
543
544 public function getVersion() {
545 return __CLASS__ . ': $Id$';
546 }
547 }