5 * Created on Aug 21, 2008
7 * Copyright © 2008 - 2010 Bryan Tong Minh <Bryan.TongMinh@Gmail.com>
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.
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.
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
30 class ApiUpload
extends ApiBase
{
35 protected $mUpload = null;
39 public function execute() {
40 global $wgEnableAsyncUploads;
42 // Check whether upload is enabled
43 if ( !UploadBase
::isEnabled() ) {
44 $this->dieUsageMsg( 'uploaddisabled' );
47 $user = $this->getUser();
50 $this->mParams
= $this->extractRequestParams();
51 $request = $this->getMain()->getRequest();
52 // Check if async mode is actually supported (jobs done in cli mode)
53 $this->mParams
['async'] = ( $this->mParams
['async'] && $wgEnableAsyncUploads );
54 // Add the uploaded file to the params array
55 $this->mParams
['file'] = $request->getFileName( 'file' );
56 $this->mParams
['chunk'] = $request->getFileName( 'chunk' );
58 // Copy the session key to the file key, for backward compatibility.
59 if ( !$this->mParams
['filekey'] && $this->mParams
['sessionkey'] ) {
60 $this->mParams
['filekey'] = $this->mParams
['sessionkey'];
63 // Select an upload module
64 if ( !$this->selectUploadModule() ) {
65 return; // not a true upload, but a status request or similar
66 } elseif ( !isset( $this->mUpload
) ) {
67 $this->dieUsage( 'No upload module set', 'nomodule' );
70 // First check permission to upload
71 $this->checkPermissions( $user );
73 // Fetch the file (usually a no-op)
74 /** @var $status Status */
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] );
82 // Check if the uploaded file is sane
83 if ( $this->mParams
['chunk'] ) {
84 $maxSize = $this->mUpload
->getMaxUploadSize();
85 if ( $this->mParams
['filesize'] > $maxSize ) {
86 $this->dieUsage( 'The file you submitted was too large', 'file-too-large' );
88 if ( !$this->mUpload
->getTitle() ) {
89 $this->dieUsage( 'Invalid file title supplied', 'internal-error' );
91 } elseif ( $this->mParams
['async'] ) {
92 // defer verification to background process
94 $this->verifyUpload();
97 // Check if the user has the rights to modify or overwrite the requested title
98 // (This check is irrelevant if stashing is already requested, since the errors
99 // can always be fixed by changing the title)
100 if ( !$this->mParams
['stash'] ) {
101 $permErrors = $this->mUpload
->verifyTitlePermissions( $user );
102 if ( $permErrors !== true ) {
103 $this->dieRecoverableError( $permErrors[0], 'filename' );
107 // Get the result based on the current upload context:
108 $result = $this->getContextResult();
109 if ( $result['result'] === 'Success' ) {
110 $result['imageinfo'] = $this->mUpload
->getImageInfo( $this->getResult() );
113 $this->getResult()->addValue( null, $this->getModuleName(), $result );
115 // Cleanup any temporary mess
116 $this->mUpload
->cleanupTempFile();
120 * Get an upload result based on upload context
123 private function getContextResult() {
124 $warnings = $this->getApiWarnings();
125 if ( $warnings && !$this->mParams
['ignorewarnings'] ) {
126 // Get warnings formatted in result array format
127 return $this->getWarningsResult( $warnings );
128 } elseif ( $this->mParams
['chunk'] ) {
129 // Add chunk, and get result
130 return $this->getChunkResult( $warnings );
131 } elseif ( $this->mParams
['stash'] ) {
132 // Stash the file and get stash result
133 return $this->getStashResult( $warnings );
135 // This is the most common case -- a normal upload with no warnings
136 // performUpload will return a formatted properly for the API with status
137 return $this->performUpload( $warnings );
141 * Get Stash Result, throws an exception if the file could not be stashed.
142 * @param array $warnings Array of Api upload warnings
145 private function getStashResult( $warnings ) {
147 // Some uploads can request they be stashed, so as not to publish them immediately.
148 // In this case, a failure to stash ought to be fatal
150 $result['result'] = 'Success';
151 $result['filekey'] = $this->performStash();
152 $result['sessionkey'] = $result['filekey']; // backwards compatibility
153 if ( $warnings && count( $warnings ) > 0 ) {
154 $result['warnings'] = $warnings;
156 } catch ( MWException
$e ) {
157 $this->dieUsage( $e->getMessage(), 'stashfailed' );
163 * Get Warnings Result
164 * @param array $warnings Array of Api upload warnings
167 private function getWarningsResult( $warnings ) {
169 $result['result'] = 'Warning';
170 $result['warnings'] = $warnings;
171 // in case the warnings can be fixed with some further user action, let's stash this upload
172 // and return a key they can use to restart it
174 $result['filekey'] = $this->performStash();
175 $result['sessionkey'] = $result['filekey']; // backwards compatibility
176 } catch ( MWException
$e ) {
177 $result['warnings']['stashfailed'] = $e->getMessage();
183 * Get the result of a chunk upload.
184 * @param array $warnings Array of Api upload warnings
187 private function getChunkResult( $warnings ) {
190 $result['result'] = 'Continue';
191 if ( $warnings && count( $warnings ) > 0 ) {
192 $result['warnings'] = $warnings;
194 $request = $this->getMain()->getRequest();
195 $chunkPath = $request->getFileTempname( 'chunk' );
196 $chunkSize = $request->getUpload( 'chunk' )->getSize();
197 if ( $this->mParams
['offset'] == 0 ) {
198 $filekey = $this->performStash();
200 $filekey = $this->mParams
['filekey'];
201 /** @var $status Status */
202 $status = $this->mUpload
->addChunk(
203 $chunkPath, $chunkSize, $this->mParams
['offset'] );
204 if ( !$status->isGood() ) {
205 $this->dieUsage( $status->getWikiText(), 'stashfailed' );
210 // Check we added the last chunk:
211 if ( $this->mParams
['offset'] +
$chunkSize == $this->mParams
['filesize'] ) {
212 if ( $this->mParams
['async'] ) {
213 $progress = UploadBase
::getSessionStatus( $this->mParams
['filekey'] );
214 if ( $progress && $progress['result'] === 'Poll' ) {
215 $this->dieUsage( "Chunk assembly already in progress.", 'stashfailed' );
217 UploadBase
::setSessionStatus(
218 $this->mParams
['filekey'],
219 array( 'result' => 'Poll',
220 'stage' => 'queued', 'status' => Status
::newGood() )
222 $ok = JobQueueGroup
::singleton()->push( new AssembleUploadChunksJob(
223 Title
::makeTitle( NS_FILE
, $this->mParams
['filekey'] ),
225 'filename' => $this->mParams
['filename'],
226 'filekey' => $this->mParams
['filekey'],
227 'session' => $this->getContext()->exportSession()
231 $result['result'] = 'Poll';
233 UploadBase
::setSessionStatus( $this->mParams
['filekey'], false );
235 "Failed to start AssembleUploadChunks.php", 'stashfailed' );
238 $status = $this->mUpload
->concatenateChunks();
239 if ( !$status->isGood() ) {
240 $this->dieUsage( $status->getWikiText(), 'stashfailed' );
244 // The fully concatenated file has a new filekey. So remove
245 // the old filekey and fetch the new one.
246 $this->mUpload
->stash
->removeFile( $filekey );
247 $filekey = $this->mUpload
->getLocalFile()->getFileKey();
249 $result['result'] = 'Success';
252 $result['filekey'] = $filekey;
253 $result['offset'] = $this->mParams
['offset'] +
$chunkSize;
258 * Stash the file and return the file key
259 * Also re-raises exceptions with slightly more informative message strings (useful for API)
260 * @throws MWException
261 * @return String file key
263 private function performStash() {
265 $stashFile = $this->mUpload
->stashFile();
268 throw new MWException( 'Invalid stashed file' );
270 $fileKey = $stashFile->getFileKey();
271 } catch ( MWException
$e ) {
272 $message = 'Stashing temporary file failed: ' . get_class( $e ) . ' ' . $e->getMessage();
273 wfDebug( __METHOD__
. ' ' . $message . "\n" );
274 throw new MWException( $message );
280 * Throw an error that the user can recover from by providing a better
281 * value for $parameter
283 * @param array $error Error array suitable for passing to dieUsageMsg()
284 * @param string $parameter Parameter that needs revising
285 * @param array $data Optional extra data to pass to the user
286 * @throws UsageException
288 private function dieRecoverableError( $error, $parameter, $data = array() ) {
290 $data['filekey'] = $this->performStash();
291 $data['sessionkey'] = $data['filekey'];
292 } catch ( MWException
$e ) {
293 $data['stashfailed'] = $e->getMessage();
295 $data['invalidparameter'] = $parameter;
297 $parsed = $this->parseMsg( $error );
298 $this->dieUsage( $parsed['info'], $parsed['code'], 0, $data );
302 * Select an upload module and set it to mUpload. Dies on failure. If the
303 * request was a status request and not a true upload, returns false;
308 protected function selectUploadModule() {
309 $request = $this->getMain()->getRequest();
311 // chunk or one and only one of the following parameters is needed
312 if ( !$this->mParams
['chunk'] ) {
313 $this->requireOnlyOneParameter( $this->mParams
,
314 'filekey', 'file', 'url', 'statuskey' );
317 // Status report for "upload to stash"/"upload from stash"
318 if ( $this->mParams
['filekey'] && $this->mParams
['checkstatus'] ) {
319 $progress = UploadBase
::getSessionStatus( $this->mParams
['filekey'] );
321 $this->dieUsage( 'No result in status data', 'missingresult' );
322 } elseif ( !$progress['status']->isGood() ) {
323 $this->dieUsage( $progress['status']->getWikiText(), 'stashfailed' );
325 if ( isset( $progress['status']->value
['verification'] ) ) {
326 $this->checkVerification( $progress['status']->value
['verification'] );
328 unset( $progress['status'] ); // remove Status object
329 $this->getResult()->addValue( null, $this->getModuleName(), $progress );
333 if ( $this->mParams
['statuskey'] ) {
334 $this->checkAsyncDownloadEnabled();
336 // Status request for an async upload
337 $sessionData = UploadFromUrlJob
::getSessionData( $this->mParams
['statuskey'] );
338 if ( !isset( $sessionData['result'] ) ) {
339 $this->dieUsage( 'No result in session data', 'missingresult' );
341 if ( $sessionData['result'] == 'Warning' ) {
342 $sessionData['warnings'] = $this->transformWarnings( $sessionData['warnings'] );
343 $sessionData['sessionkey'] = $this->mParams
['statuskey'];
345 $this->getResult()->addValue( null, $this->getModuleName(), $sessionData );
349 // The following modules all require the filename parameter to be set
350 if ( is_null( $this->mParams
['filename'] ) ) {
351 $this->dieUsageMsg( array( 'missingparam', 'filename' ) );
354 if ( $this->mParams
['chunk'] ) {
356 $this->mUpload
= new UploadFromChunks();
357 if ( isset( $this->mParams
['filekey'] ) ) {
359 $this->mUpload
->continueChunks(
360 $this->mParams
['filename'],
361 $this->mParams
['filekey'],
362 $request->getUpload( 'chunk' )
365 // handle first chunk
366 $this->mUpload
->initialize(
367 $this->mParams
['filename'],
368 $request->getUpload( 'chunk' )
371 } elseif ( isset( $this->mParams
['filekey'] ) ) {
372 // Upload stashed in a previous request
373 if ( !UploadFromStash
::isValidKey( $this->mParams
['filekey'] ) ) {
374 $this->dieUsageMsg( 'invalid-file-key' );
377 $this->mUpload
= new UploadFromStash( $this->getUser() );
378 // This will not download the temp file in initialize() in async mode.
379 // We still have enough information to call checkWarnings() and such.
380 $this->mUpload
->initialize(
381 $this->mParams
['filekey'], $this->mParams
['filename'], !$this->mParams
['async']
383 } elseif ( isset( $this->mParams
['file'] ) ) {
384 $this->mUpload
= new UploadFromFile();
385 $this->mUpload
->initialize(
386 $this->mParams
['filename'],
387 $request->getUpload( 'file' )
389 } elseif ( isset( $this->mParams
['url'] ) ) {
390 // Make sure upload by URL is enabled:
391 if ( !UploadFromUrl
::isEnabled() ) {
392 $this->dieUsageMsg( 'copyuploaddisabled' );
395 if ( !UploadFromUrl
::isAllowedHost( $this->mParams
['url'] ) ) {
396 $this->dieUsageMsg( 'copyuploadbaddomain' );
400 if ( $this->mParams
['asyncdownload'] ) {
401 $this->checkAsyncDownloadEnabled();
403 if ( $this->mParams
['leavemessage'] && !$this->mParams
['ignorewarnings'] ) {
404 $this->dieUsage( 'Using leavemessage without ignorewarnings is not supported',
405 'missing-ignorewarnings' );
408 if ( $this->mParams
['leavemessage'] ) {
409 $async = 'async-leavemessage';
414 $this->mUpload
= new UploadFromUrl
;
415 $this->mUpload
->initialize( $this->mParams
['filename'],
416 $this->mParams
['url'], $async );
423 * Checks that the user has permissions to perform this upload.
424 * Dies with usage message on inadequate permissions.
425 * @param $user User The user to check.
427 protected function checkPermissions( $user ) {
428 // Check whether the user has the appropriate permissions to upload anyway
429 $permission = $this->mUpload
->isAllowed( $user );
431 if ( $permission !== true ) {
432 if ( !$user->isLoggedIn() ) {
433 $this->dieUsageMsg( array( 'mustbeloggedin', 'upload' ) );
435 $this->dieUsageMsg( 'badaccess-groups' );
441 * Performs file verification, dies on error.
443 protected function verifyUpload() {
444 $verification = $this->mUpload
->verifyUpload();
445 if ( $verification['status'] === UploadBase
::OK
) {
449 $this->checkVerification( $verification );
453 * Performs file verification, dies on error.
455 protected function checkVerification( array $verification ) {
456 global $wgFileExtensions;
458 // @todo Move them to ApiBase's message map
459 switch( $verification['status'] ) {
460 // Recoverable errors
461 case UploadBase
::MIN_LENGTH_PARTNAME
:
462 $this->dieRecoverableError( 'filename-tooshort', 'filename' );
464 case UploadBase
::ILLEGAL_FILENAME
:
465 $this->dieRecoverableError( 'illegal-filename', 'filename',
466 array( 'filename' => $verification['filtered'] ) );
468 case UploadBase
::FILENAME_TOO_LONG
:
469 $this->dieRecoverableError( 'filename-toolong', 'filename' );
471 case UploadBase
::FILETYPE_MISSING
:
472 $this->dieRecoverableError( 'filetype-missing', 'filename' );
474 case UploadBase
::WINDOWS_NONASCII_FILENAME
:
475 $this->dieRecoverableError( 'windows-nonascii-filename', 'filename' );
478 // Unrecoverable errors
479 case UploadBase
::EMPTY_FILE
:
480 $this->dieUsage( 'The file you submitted was empty', 'empty-file' );
482 case UploadBase
::FILE_TOO_LARGE
:
483 $this->dieUsage( 'The file you submitted was too large', 'file-too-large' );
486 case UploadBase
::FILETYPE_BADTYPE
:
488 'filetype' => $verification['finalExt'],
489 'allowed' => $wgFileExtensions
491 $this->getResult()->setIndexedTagName( $extradata['allowed'], 'ext' );
493 $msg = "Filetype not permitted: ";
494 if ( isset( $verification['blacklistedExt'] ) ) {
495 $msg .= join( ', ', $verification['blacklistedExt'] );
496 $extradata['blacklisted'] = array_values( $verification['blacklistedExt'] );
497 $this->getResult()->setIndexedTagName( $extradata['blacklisted'], 'ext' );
499 $msg .= $verification['finalExt'];
501 $this->dieUsage( $msg, 'filetype-banned', 0, $extradata );
503 case UploadBase
::VERIFICATION_ERROR
:
504 $this->getResult()->setIndexedTagName( $verification['details'], 'detail' );
505 $this->dieUsage( 'This file did not pass file verification', 'verification-error',
506 0, array( 'details' => $verification['details'] ) );
508 case UploadBase
::HOOK_ABORTED
:
509 $this->dieUsage( "The modification you tried to make was aborted by an extension hook",
510 'hookaborted', 0, array( 'error' => $verification['error'] ) );
513 $this->dieUsage( 'An unknown error occurred', 'unknown-error',
514 0, array( 'code' => $verification['status'] ) );
521 * Returns a suitable array for inclusion into API results if there were warnings
522 * Returns the empty array if there were no warnings
526 protected function getApiWarnings() {
527 $warnings = $this->mUpload
->checkWarnings();
529 return $this->transformWarnings( $warnings );
532 protected function transformWarnings( $warnings ) {
535 $result = $this->getResult();
536 $result->setIndexedTagName( $warnings, 'warning' );
538 if ( isset( $warnings['duplicate'] ) ) {
540 foreach ( $warnings['duplicate'] as $dupe ) {
541 $dupes[] = $dupe->getName();
543 $result->setIndexedTagName( $dupes, 'duplicate' );
544 $warnings['duplicate'] = $dupes;
547 if ( isset( $warnings['exists'] ) ) {
548 $warning = $warnings['exists'];
549 unset( $warnings['exists'] );
550 $warnings[$warning['warning']] = $warning['file']->getName();
557 * Perform the actual upload. Returns a suitable result array on success;
560 * @param array $warnings Array of Api upload warnings
563 protected function performUpload( $warnings ) {
564 // Use comment as initial page text by default
565 if ( is_null( $this->mParams
['text'] ) ) {
566 $this->mParams
['text'] = $this->mParams
['comment'];
569 /** @var $file File */
570 $file = $this->mUpload
->getLocalFile();
571 $watch = $this->getWatchlistValue( $this->mParams
['watchlist'], $file->getTitle() );
573 // Deprecated parameters
574 if ( $this->mParams
['watch'] ) {
578 // No errors, no warnings: do the upload
579 if ( $this->mParams
['async'] ) {
580 $progress = UploadBase
::getSessionStatus( $this->mParams
['filekey'] );
581 if ( $progress && $progress['result'] === 'Poll' ) {
582 $this->dieUsage( "Upload from stash already in progress.", 'publishfailed' );
584 UploadBase
::setSessionStatus(
585 $this->mParams
['filekey'],
586 array( 'result' => 'Poll', 'stage' => 'queued', 'status' => Status
::newGood() )
588 $ok = JobQueueGroup
::singleton()->push( new PublishStashedFileJob(
589 Title
::makeTitle( NS_FILE
, $this->mParams
['filename'] ),
591 'filename' => $this->mParams
['filename'],
592 'filekey' => $this->mParams
['filekey'],
593 'comment' => $this->mParams
['comment'],
594 'text' => $this->mParams
['text'],
596 'session' => $this->getContext()->exportSession()
600 $result['result'] = 'Poll';
602 UploadBase
::setSessionStatus( $this->mParams
['filekey'], false );
604 "Failed to start PublishStashedFile.php", 'publishfailed' );
607 /** @var $status Status */
608 $status = $this->mUpload
->performUpload( $this->mParams
['comment'],
609 $this->mParams
['text'], $watch, $this->getUser() );
611 if ( !$status->isGood() ) {
612 $error = $status->getErrorsArray();
614 if ( count( $error ) == 1 && $error[0][0] == 'async' ) {
615 // The upload can not be performed right now, because the user
618 'result' => 'Queued',
619 'statuskey' => $error[0][1],
622 $this->getResult()->setIndexedTagName( $error, 'error' );
624 $this->dieUsage( 'An internal error occurred', 'internal-error', 0, $error );
627 $result['result'] = 'Success';
630 $result['filename'] = $file->getName();
631 if ( $warnings && count( $warnings ) > 0 ) {
632 $result['warnings'] = $warnings;
639 * Checks if asynchronous copy uploads are enabled and throws an error if they are not.
641 protected function checkAsyncDownloadEnabled() {
642 global $wgAllowAsyncCopyUploads;
643 if ( !$wgAllowAsyncCopyUploads ) {
644 $this->dieUsage( 'Asynchronous copy uploads disabled', 'asynccopyuploaddisabled' );
648 public function mustBePosted() {
652 public function isWriteMode() {
656 public function getAllowedParams() {
659 ApiBase
::PARAM_TYPE
=> 'string',
662 ApiBase
::PARAM_DFLT
=> ''
666 ApiBase
::PARAM_TYPE
=> 'string',
667 ApiBase
::PARAM_REQUIRED
=> true
670 ApiBase
::PARAM_DFLT
=> false,
671 ApiBase
::PARAM_DEPRECATED
=> true,
673 'watchlist' => array(
674 ApiBase
::PARAM_DFLT
=> 'preferences',
675 ApiBase
::PARAM_TYPE
=> array(
681 'ignorewarnings' => false,
683 ApiBase
::PARAM_TYPE
=> 'upload',
687 'sessionkey' => array(
688 ApiBase
::PARAM_DFLT
=> null,
689 ApiBase
::PARAM_DEPRECATED
=> true,
696 ApiBase
::PARAM_TYPE
=> 'upload',
700 'asyncdownload' => false,
701 'leavemessage' => false,
703 'checkstatus' => false,
709 public function getParamDescription() {
711 'filename' => 'Target filename',
712 'token' => 'Edit token. You can get one of these through prop=info',
713 'comment' => 'Upload comment. Also used as the initial page text for new files if "text" is not specified',
714 'text' => 'Initial page text for new files',
715 'watch' => 'Watch the page',
716 'watchlist' => 'Unconditionally add or remove the page from your watchlist, use preferences or do not change watch',
717 'ignorewarnings' => 'Ignore any warnings',
718 'file' => 'File contents',
719 'url' => 'URL to fetch the file from',
720 'filekey' => 'Key that identifies a previous upload that was stashed temporarily.',
721 'sessionkey' => 'Same as filekey, maintained for backward compatibility.',
722 'stash' => 'If set, the server will not add the file to the repository and stash it temporarily.',
724 'chunk' => 'Chunk contents',
725 'offset' => 'Offset of chunk in bytes',
726 'filesize' => 'Filesize of entire upload',
728 'async' => 'Make potentially large file operations asynchronous when possible',
729 'asyncdownload' => 'Make fetching a URL asynchronous',
730 'leavemessage' => 'If asyncdownload is used, leave a message on the user talk page if finished',
731 'statuskey' => 'Fetch the upload status for this file key (upload by URL)',
732 'checkstatus' => 'Only fetch the upload status for the given file key',
739 public function getResultProperties() {
743 ApiBase
::PROP_TYPE
=> array(
751 ApiBase
::PROP_TYPE
=> 'string',
752 ApiBase
::PROP_NULLABLE
=> true
754 'sessionkey' => array(
755 ApiBase
::PROP_TYPE
=> 'string',
756 ApiBase
::PROP_NULLABLE
=> true
759 ApiBase
::PROP_TYPE
=> 'integer',
760 ApiBase
::PROP_NULLABLE
=> true
762 'statuskey' => array(
763 ApiBase
::PROP_TYPE
=> 'string',
764 ApiBase
::PROP_NULLABLE
=> true
767 ApiBase
::PROP_TYPE
=> 'string',
768 ApiBase
::PROP_NULLABLE
=> true
774 public function getDescription() {
776 'Upload a file, or get the status of pending uploads. Several methods are available:',
777 ' * Upload file contents directly, using the "file" parameter',
778 ' * Have the MediaWiki server fetch a file from a URL, using the "url" parameter',
779 ' * Complete an earlier upload that failed due to warnings, using the "filekey" parameter',
780 'Note that the HTTP POST must be done as a file upload (i.e. using multipart/form-data) when',
781 'sending the "file". Also you must get and send an edit token before doing any upload stuff'
785 public function getPossibleErrors() {
786 return array_merge( parent
::getPossibleErrors(),
787 $this->getRequireOnlyOneParameterErrorMessages( array( 'filekey', 'file', 'url', 'statuskey' ) ),
789 array( 'uploaddisabled' ),
790 array( 'invalid-file-key' ),
791 array( 'uploaddisabled' ),
792 array( 'mustbeloggedin', 'upload' ),
793 array( 'badaccess-groups' ),
794 array( 'code' => 'fetchfileerror', 'info' => '' ),
795 array( 'code' => 'nomodule', 'info' => 'No upload module set' ),
796 array( 'code' => 'empty-file', 'info' => 'The file you submitted was empty' ),
797 array( 'code' => 'filetype-missing', 'info' => 'The file is missing an extension' ),
798 array( 'code' => 'filename-tooshort', 'info' => 'The filename is too short' ),
799 array( 'code' => 'overwrite', 'info' => 'Overwriting an existing file is not allowed' ),
800 array( 'code' => 'stashfailed', 'info' => 'Stashing temporary file failed' ),
801 array( 'code' => 'publishfailed', 'info' => 'Publishing of stashed file failed' ),
802 array( 'code' => 'internal-error', 'info' => 'An internal error occurred' ),
803 array( 'code' => 'asynccopyuploaddisabled', 'info' => 'Asynchronous copy uploads disabled' ),
804 array( 'fileexists-forbidden' ),
805 array( 'fileexists-shared-forbidden' ),
810 public function needsToken() {
814 public function getTokenSalt() {
818 public function getExamples() {
820 'api.php?action=upload&filename=Wiki.png&url=http%3A//upload.wikimedia.org/wikipedia/en/b/bc/Wiki.png'
821 => 'Upload from a URL',
822 'api.php?action=upload&filename=Wiki.png&filekey=filekey&ignorewarnings=1'
823 => 'Complete an upload that failed due to warnings',
827 public function getHelpUrls() {
828 return 'https://www.mediawiki.org/wiki/API:Upload';