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