Removed more functions marked for removal in 1.19: wfParseCIDR(), wfRFC822Phrase...
[mediawiki.git] / includes / api / ApiUpload.php
blobf21408c07880bd6e9af56a351830a09082ed3e04
1 <?php
2 /**
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
24 * @file
27 if ( !defined( 'MEDIAWIKI' ) ) {
28 // Eclipse helper - will be ignored in production
29 require_once( "ApiBase.php" );
32 /**
33 * @ingroup API
35 class ApiUpload extends ApiBase {
37 /**
38 * @var UploadBase
40 protected $mUpload = null;
42 protected $mParams;
44 public function __construct( $main, $action ) {
45 parent::__construct( $main, $action );
48 public function execute() {
49 global $wgUser;
51 // Check whether upload is enabled
52 if ( !UploadBase::isEnabled() ) {
53 $this->dieUsageMsg( array( 'uploaddisabled' ) );
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' );
62 // Select an upload module
63 if ( !$this->selectUploadModule() ) {
64 // This is not a true upload, but a status request or similar
65 return;
67 if ( !isset( $this->mUpload ) ) {
68 $this->dieUsage( 'No upload module set', 'nomodule' );
71 // First check permission to upload
72 $this->checkPermissions( $wgUser );
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] );
82 // Check if the uploaded file is sane
83 $this->verifyUpload();
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' );
96 // Prepare the API result
97 $result = array();
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();
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' );
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();
125 if ( $result['result'] === 'Success' ) {
126 $result['imageinfo'] = $this->mUpload->getImageInfo( $this->getResult() );
129 $this->getResult()->addValue( null, $this->getModuleName(), $result );
131 // Cleanup any temporary mess
132 $this->mUpload->cleanupTempFile();
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
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() );
147 return $sessionKey;
151 * Throw an error that the user can recover from by providing a better
152 * value for $parameter
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
159 function dieRecoverableError( $error, $parameter, $data = array() ) {
160 try {
161 $data['sessionkey'] = $this->performStash();
162 } catch ( MWException $e ) {
163 $data['stashfailed'] = $e->getMessage();
165 $data['invalidparameter'] = $parameter;
167 $parsed = $this->parseMsg( $error );
168 $this->dieUsage( $parsed['info'], $parsed['code'], 0, $data );
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
176 * @return bool
178 protected function selectUploadModule() {
179 $request = $this->getMain()->getRequest();
181 // One and only one of the following parameters is needed
182 $this->requireOnlyOneParameter( $this->mParams,
183 'sessionkey', 'file', 'url', 'statuskey' );
185 if ( $this->mParams['statuskey'] ) {
186 $this->checkAsyncDownloadEnabled();
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' );
193 if ( $sessionData['result'] == 'Warning' ) {
194 $sessionData['warnings'] = $this->transformWarnings( $sessionData['warnings'] );
195 $sessionData['sessionkey'] = $this->mParams['statuskey'];
197 $this->getResult()->addValue( null, $this->getModuleName(), $sessionData );
198 return false;
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' ) );
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' ) );
214 $this->mUpload = new UploadFromStash();
215 $this->mUpload->initialize( $this->mParams['filename'],
216 $this->mParams['sessionkey'],
217 $sessionData[$this->mParams['sessionkey']] );
219 } elseif ( isset( $this->mParams['file'] ) ) {
220 $this->mUpload = new UploadFromFile();
221 $this->mUpload->initialize(
222 $this->mParams['filename'],
223 $request->getUpload( 'file' )
225 } elseif ( isset( $this->mParams['url'] ) ) {
226 // Make sure upload by URL is enabled:
227 if ( !UploadFromUrl::isEnabled() ) {
228 $this->dieUsageMsg( array( 'copyuploaddisabled' ) );
231 $async = false;
232 if ( $this->mParams['asyncdownload'] ) {
233 $this->checkAsyncDownloadEnabled();
235 if ( $this->mParams['leavemessage'] && !$this->mParams['ignorewarnings'] ) {
236 $this->dieUsage( 'Using leavemessage without ignorewarnings is not supported',
237 'missing-ignorewarnings' );
240 if ( $this->mParams['leavemessage'] ) {
241 $async = 'async-leavemessage';
242 } else {
243 $async = 'async';
246 $this->mUpload = new UploadFromUrl;
247 $this->mUpload->initialize( $this->mParams['filename'],
248 $this->mParams['url'], $async );
252 return true;
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.
260 protected function checkPermissions( $user ) {
261 // Check whether the user has the appropriate permissions to upload anyway
262 $permission = $this->mUpload->isAllowed( $user );
264 if ( $permission !== true ) {
265 if ( !$user->isLoggedIn() ) {
266 $this->dieUsageMsg( array( 'mustbeloggedin', 'upload' ) );
267 } else {
268 $this->dieUsageMsg( array( 'badaccess-groups' ) );
274 * Performs file verification, dies on error.
276 protected function verifyUpload( ) {
277 global $wgFileExtensions;
279 $verification = $this->mUpload->verifyUpload( );
280 if ( $verification['status'] === UploadBase::OK ) {
281 return;
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;
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;
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;
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
335 * @return array
337 protected function getApiWarnings() {
338 $warnings = array();
340 if ( !$this->mParams['ignorewarnings'] ) {
341 $warnings = $this->mUpload->checkWarnings();
342 if ( $warnings ) {
343 // Add indices
344 $this->getResult()->setIndexedTagName( $warnings, 'warning' );
346 if ( isset( $warnings['duplicate'] ) ) {
347 $dupes = array();
348 foreach ( $warnings['duplicate'] as $dupe ) {
349 $dupes[] = $dupe->getName();
351 $this->getResult()->setIndexedTagName( $dupes, 'duplicate' );
352 $warnings['duplicate'] = $dupes;
355 if ( isset( $warnings['exists'] ) ) {
356 $warning = $warnings['exists'];
357 unset( $warnings['exists'] );
358 $warnings[$warning['warning']] = $warning['file']->getName();
363 return $warnings;
367 * Perform the actual upload. Returns a suitable result array on success;
368 * dies on failure.
370 protected function performUpload() {
371 global $wgUser;
373 // Use comment as initial page text by default
374 if ( is_null( $this->mParams['text'] ) ) {
375 $this->mParams['text'] = $this->mParams['comment'];
378 $file = $this->mUpload->getLocalFile();
379 $watch = $this->getWatchlistValue( $this->mParams['watchlist'], $file->getTitle() );
381 // Deprecated parameters
382 if ( $this->mParams['watch'] ) {
383 $watch = true;
386 // No errors, no warnings: do the upload
387 $status = $this->mUpload->performUpload( $this->mParams['comment'],
388 $this->mParams['text'], $watch, $wgUser );
390 if ( !$status->isGood() ) {
391 $error = $status->getErrorsArray();
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],
400 } else {
401 $this->getResult()->setIndexedTagName( $error, 'error' );
403 $this->dieUsage( 'An internal error occurred', 'internal-error', 0, $error );
407 $file = $this->mUpload->getLocalFile();
409 $result['result'] = 'Success';
410 $result['filename'] = $file->getName();
412 return $result;
416 * Checks if asynchronous copy uploads are enabled and throws an error if they are not.
418 protected function checkAsyncDownloadEnabled() {
419 global $wgAllowAsyncCopyUploads;
420 if ( !$wgAllowAsyncCopyUploads ) {
421 $this->dieUsage( 'Asynchronous copy uploads disabled', 'asynccopyuploaddisabled');
425 public function mustBePosted() {
426 return true;
429 public function isWriteMode() {
430 return true;
433 public function getAllowedParams() {
434 $params = array(
435 'filename' => array(
436 ApiBase::PARAM_TYPE => 'string',
438 'comment' => array(
439 ApiBase::PARAM_DFLT => ''
441 'text' => null,
442 'token' => null,
443 'watch' => array(
444 ApiBase::PARAM_DFLT => false,
445 ApiBase::PARAM_DEPRECATED => true,
447 'watchlist' => array(
448 ApiBase::PARAM_DFLT => 'preferences',
449 ApiBase::PARAM_TYPE => array(
450 'watch',
451 'preferences',
452 'nochange'
455 'ignorewarnings' => false,
456 'file' => null,
457 'url' => null,
458 'sessionkey' => null,
459 'stash' => false,
461 'asyncdownload' => false,
462 'leavemessage' => false,
463 'statuskey' => null,
466 return $params;
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.',
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',
488 return $params;
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'
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' ),
527 public function needsToken() {
528 return true;
531 public function getTokenSalt() {
532 return '';
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',
544 public function getVersion() {
545 return __CLASS__ . ': $Id$';