f793b41963b07fb0d7c0af1149ea11c7979d23bc
[lhc/web/wiklou.git] / includes / specials / SpecialUpload.php
1 <?php
2 /**
3 * Implements Special:Upload
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup SpecialPage
22 * @ingroup Upload
23 */
24
25 /**
26 * Form for handling uploads and special page.
27 *
28 * @ingroup SpecialPage
29 * @ingroup Upload
30 */
31 class SpecialUpload extends SpecialPage {
32 /**
33 * Constructor : initialise object
34 * Get data POSTed through the form and assign them to the object
35 * @param $request WebRequest : data posted.
36 */
37 public function __construct( $request = null ) {
38 global $wgRequest;
39
40 parent::__construct( 'Upload', 'upload' );
41
42 $this->loadRequest( is_null( $request ) ? $wgRequest : $request );
43 }
44
45 /** Misc variables **/
46 public $mRequest; // The WebRequest or FauxRequest this form is supposed to handle
47 public $mSourceType;
48
49 /**
50 * @var UploadBase
51 */
52 public $mUpload;
53
54 /**
55 * @var LocalFile
56 */
57 public $mLocalFile;
58 public $mUploadClicked;
59
60 /** User input variables from the "description" section **/
61 public $mDesiredDestName; // The requested target file name
62 public $mComment;
63 public $mLicense;
64
65 /** User input variables from the root section **/
66 public $mIgnoreWarning;
67 public $mWatchThis;
68 public $mCopyrightStatus;
69 public $mCopyrightSource;
70
71 /** Hidden variables **/
72 public $mDestWarningAck;
73 public $mForReUpload; // The user followed an "overwrite this file" link
74 public $mCancelUpload; // The user clicked "Cancel and return to upload form" button
75 public $mTokenOk;
76 public $mUploadSuccessful = false; // Subclasses can use this to determine whether a file was uploaded
77
78 /** Text injection points for hooks not using HTMLForm **/
79 public $uploadFormTextTop;
80 public $uploadFormTextAfterSummary;
81
82 public $mWatchthis;
83
84 /**
85 * Initialize instance variables from request and create an Upload handler
86 *
87 * @param $request WebRequest: the request to extract variables from
88 */
89 protected function loadRequest( $request ) {
90 global $wgUser;
91
92 $this->mRequest = $request;
93 $this->mSourceType = $request->getVal( 'wpSourceType', 'file' );
94 $this->mUpload = UploadBase::createFromRequest( $request );
95 $this->mUploadClicked = $request->wasPosted()
96 && ( $request->getCheck( 'wpUpload' )
97 || $request->getCheck( 'wpUploadIgnoreWarning' ) );
98
99 // Guess the desired name from the filename if not provided
100 $this->mDesiredDestName = $request->getText( 'wpDestFile' );
101 if( !$this->mDesiredDestName && $request->getFileName( 'wpUploadFile' ) !== null ) {
102 $this->mDesiredDestName = $request->getFileName( 'wpUploadFile' );
103 }
104 $this->mComment = $request->getText( 'wpUploadDescription' );
105 $this->mLicense = $request->getText( 'wpLicense' );
106
107
108 $this->mDestWarningAck = $request->getText( 'wpDestFileWarningAck' );
109 $this->mIgnoreWarning = $request->getCheck( 'wpIgnoreWarning' )
110 || $request->getCheck( 'wpUploadIgnoreWarning' );
111 $this->mWatchthis = $request->getBool( 'wpWatchthis' ) && $wgUser->isLoggedIn();
112 $this->mCopyrightStatus = $request->getText( 'wpUploadCopyStatus' );
113 $this->mCopyrightSource = $request->getText( 'wpUploadSource' );
114
115
116 $this->mForReUpload = $request->getBool( 'wpForReUpload' ); // updating a file
117 $this->mCancelUpload = $request->getCheck( 'wpCancelUpload' )
118 || $request->getCheck( 'wpReUpload' ); // b/w compat
119
120 // If it was posted check for the token (no remote POST'ing with user credentials)
121 $token = $request->getVal( 'wpEditToken' );
122 if( $this->mSourceType == 'file' && $token == null ) {
123 // Skip token check for file uploads as that can't be faked via JS...
124 // Some client-side tools don't expect to need to send wpEditToken
125 // with their submissions, as that's new in 1.16.
126 $this->mTokenOk = true;
127 } else {
128 $this->mTokenOk = $wgUser->matchEditToken( $token );
129 }
130
131 $this->uploadFormTextTop = '';
132 $this->uploadFormTextAfterSummary = '';
133 }
134
135 /**
136 * This page can be shown if uploading is enabled.
137 * Handle permission checking elsewhere in order to be able to show
138 * custom error messages.
139 *
140 * @param $user User object
141 * @return Boolean
142 */
143 public function userCanExecute( User $user ) {
144 return UploadBase::isEnabled() && parent::userCanExecute( $user );
145 }
146
147 /**
148 * Special page entry point
149 */
150 public function execute( $par ) {
151 global $wgUser, $wgOut;
152
153 $this->setHeaders();
154 $this->outputHeader();
155
156 # Check uploading enabled
157 if( !UploadBase::isEnabled() ) {
158 $wgOut->showErrorPage( 'uploaddisabled', 'uploaddisabledtext' );
159 return;
160 }
161
162 # Check permissions
163 global $wgGroupPermissions;
164 $permissionRequired = UploadBase::isAllowed( $wgUser );
165 if( $permissionRequired !== true ) {
166 if( !$wgUser->isLoggedIn() && ( $wgGroupPermissions['user']['upload']
167 || $wgGroupPermissions['autoconfirmed']['upload'] ) ) {
168 // Custom message if logged-in users without any special rights can upload
169 $wgOut->showErrorPage( 'uploadnologin', 'uploadnologintext' );
170 } else {
171 $wgOut->permissionRequired( $permissionRequired );
172 }
173 return;
174 }
175
176 # Check blocks
177 if( $wgUser->isBlocked() ) {
178 $wgOut->blockedPage();
179 return;
180 }
181
182 # Check whether we actually want to allow changing stuff
183 if( wfReadOnly() ) {
184 $wgOut->readOnlyPage();
185 return;
186 }
187
188 # Unsave the temporary file in case this was a cancelled upload
189 if ( $this->mCancelUpload ) {
190 if ( !$this->unsaveUploadedFile() ) {
191 # Something went wrong, so unsaveUploadedFile showed a warning
192 return;
193 }
194 }
195
196 # Process upload or show a form
197 if (
198 $this->mTokenOk && !$this->mCancelUpload &&
199 ( $this->mUpload && $this->mUploadClicked )
200 )
201 {
202 $this->processUpload();
203 } else {
204 # Backwards compatibility hook
205 if( !wfRunHooks( 'UploadForm:initial', array( &$this ) ) ) {
206 wfDebug( "Hook 'UploadForm:initial' broke output of the upload form" );
207 return;
208 }
209
210
211 $this->showUploadForm( $this->getUploadForm() );
212 }
213
214 # Cleanup
215 if ( $this->mUpload ) {
216 $this->mUpload->cleanupTempFile();
217 }
218 }
219
220 /**
221 * Show the main upload form
222 *
223 * @param $form Mixed: an HTMLForm instance or HTML string to show
224 */
225 protected function showUploadForm( $form ) {
226 # Add links if file was previously deleted
227 if ( !$this->mDesiredDestName ) {
228 $this->showViewDeletedLinks();
229 }
230
231 if ( $form instanceof HTMLForm ) {
232 $form->show();
233 } else {
234 global $wgOut;
235 $wgOut->addHTML( $form );
236 }
237
238 }
239
240 /**
241 * Get an UploadForm instance with title and text properly set.
242 *
243 * @param $message String: HTML string to add to the form
244 * @param $sessionKey String: session key in case this is a stashed upload
245 * @param $hideIgnoreWarning Boolean: whether to hide "ignore warning" check box
246 * @return UploadForm
247 */
248 protected function getUploadForm( $message = '', $sessionKey = '', $hideIgnoreWarning = false ) {
249 global $wgOut;
250
251 # Initialize form
252 $form = new UploadForm( array(
253 'watch' => $this->getWatchCheck(),
254 'forreupload' => $this->mForReUpload,
255 'sessionkey' => $sessionKey,
256 'hideignorewarning' => $hideIgnoreWarning,
257 'destwarningack' => (bool)$this->mDestWarningAck,
258
259 'description' => $this->mComment,
260 'texttop' => $this->uploadFormTextTop,
261 'textaftersummary' => $this->uploadFormTextAfterSummary,
262 'destfile' => $this->mDesiredDestName,
263 ) );
264 $form->setTitle( $this->getTitle() );
265
266 # Check the token, but only if necessary
267 if(
268 !$this->mTokenOk && !$this->mCancelUpload &&
269 ( $this->mUpload && $this->mUploadClicked )
270 )
271 {
272 $form->addPreText( wfMsgExt( 'session_fail_preview', 'parseinline' ) );
273 }
274
275 # Give a notice if the user is uploading a file that has been deleted or moved
276 # Note that this is independent from the message 'filewasdeleted' that requires JS
277 $desiredTitleObj = Title::makeTitleSafe( NS_FILE, $this->mDesiredDestName );
278 $delNotice = ''; // empty by default
279 if ( $desiredTitleObj instanceof Title && !$desiredTitleObj->exists() ) {
280 LogEventsList::showLogExtract( $delNotice, array( 'delete', 'move' ),
281 $desiredTitleObj->getPrefixedText(),
282 '', array( 'lim' => 10,
283 'conds' => array( "log_action != 'revision'" ),
284 'showIfEmpty' => false,
285 'msgKey' => array( 'upload-recreate-warning' ) )
286 );
287 }
288 $form->addPreText( $delNotice );
289
290 # Add text to form
291 $form->addPreText( '<div id="uploadtext">' .
292 wfMsgExt( 'uploadtext', 'parse', array( $this->mDesiredDestName ) ) .
293 '</div>' );
294 # Add upload error message
295 $form->addPreText( $message );
296
297 # Add footer to form
298 $uploadFooter = wfMessage( 'uploadfooter' );
299 if ( !$uploadFooter->isDisabled() ) {
300 $form->addPostText( '<div id="mw-upload-footer-message">'
301 . $wgOut->parse( $uploadFooter->plain() ) . "</div>\n" );
302 }
303
304 return $form;
305
306 }
307
308 /**
309 * Shows the "view X deleted revivions link""
310 */
311 protected function showViewDeletedLinks() {
312 global $wgOut, $wgUser;
313
314 $title = Title::makeTitleSafe( NS_FILE, $this->mDesiredDestName );
315 // Show a subtitle link to deleted revisions (to sysops et al only)
316 if( $title instanceof Title ) {
317 $count = $title->isDeleted();
318 if ( $count > 0 && $wgUser->isAllowed( 'deletedhistory' ) ) {
319 $link = wfMsgExt(
320 $wgUser->isAllowed( 'delete' ) ? 'thisisdeleted' : 'viewdeleted',
321 array( 'parse', 'replaceafter' ),
322 $wgUser->getSkin()->linkKnown(
323 SpecialPage::getTitleFor( 'Undelete', $title->getPrefixedText() ),
324 wfMsgExt( 'restorelink', array( 'parsemag', 'escape' ), $count )
325 )
326 );
327 $wgOut->addHTML( "<div id=\"contentSub2\">{$link}</div>" );
328 }
329 }
330
331 // Show the relevant lines from deletion log (for still deleted files only)
332 if( $title instanceof Title && $title->isDeletedQuick() && !$title->exists() ) {
333 $this->showDeletionLog( $wgOut, $title->getPrefixedText() );
334 }
335 }
336
337 /**
338 * Stashes the upload and shows the main upload form.
339 *
340 * Note: only errors that can be handled by changing the name or
341 * description should be redirected here. It should be assumed that the
342 * file itself is sane and has passed UploadBase::verifyFile. This
343 * essentially means that UploadBase::VERIFICATION_ERROR and
344 * UploadBase::EMPTY_FILE should not be passed here.
345 *
346 * @param $message String: HTML message to be passed to mainUploadForm
347 */
348 protected function showRecoverableUploadError( $message ) {
349 $sessionKey = $this->mUpload->stashSession();
350 $message = '<h2>' . wfMsgHtml( 'uploadwarning' ) . "</h2>\n" .
351 '<div class="error">' . $message . "</div>\n";
352
353 $form = $this->getUploadForm( $message, $sessionKey );
354 $form->setSubmitText( wfMsg( 'upload-tryagain' ) );
355 $this->showUploadForm( $form );
356 }
357 /**
358 * Stashes the upload, shows the main form, but adds an "continue anyway button".
359 * Also checks whether there are actually warnings to display.
360 *
361 * @param $warnings Array
362 * @return boolean true if warnings were displayed, false if there are no
363 * warnings and the should continue processing like there was no warning
364 */
365 protected function showUploadWarning( $warnings ) {
366 # If there are no warnings, or warnings we can ignore, return early.
367 # mDestWarningAck is set when some javascript has shown the warning
368 # to the user. mForReUpload is set when the user clicks the "upload a
369 # new version" link.
370 if ( !$warnings || ( count( $warnings ) == 1 &&
371 isset( $warnings['exists'] ) &&
372 ( $this->mDestWarningAck || $this->mForReUpload ) ) )
373 {
374 return false;
375 }
376
377 $sessionKey = $this->mUpload->stashSession();
378
379 $warningHtml = '<h2>' . wfMsgHtml( 'uploadwarning' ) . "</h2>\n"
380 . '<ul class="warning">';
381 foreach( $warnings as $warning => $args ) {
382 if( $warning == 'exists' ) {
383 $msg = "\t<li>" . self::getExistsWarning( $args ) . "</li>\n";
384 } elseif( $warning == 'duplicate' ) {
385 $msg = self::getDupeWarning( $args );
386 } elseif( $warning == 'duplicate-archive' ) {
387 $msg = "\t<li>" . wfMsgExt( 'file-deleted-duplicate', 'parseinline',
388 array( Title::makeTitle( NS_FILE, $args )->getPrefixedText() ) )
389 . "</li>\n";
390 } else {
391 if ( $args === true ) {
392 $args = array();
393 } elseif ( !is_array( $args ) ) {
394 $args = array( $args );
395 }
396 $msg = "\t<li>" . wfMsgExt( $warning, 'parseinline', $args ) . "</li>\n";
397 }
398 $warningHtml .= $msg;
399 }
400 $warningHtml .= "</ul>\n";
401 $warningHtml .= wfMsgExt( 'uploadwarning-text', 'parse' );
402
403 $form = $this->getUploadForm( $warningHtml, $sessionKey, /* $hideIgnoreWarning */ true );
404 $form->setSubmitText( wfMsg( 'upload-tryagain' ) );
405 $form->addButton( 'wpUploadIgnoreWarning', wfMsg( 'ignorewarning' ) );
406 $form->addButton( 'wpCancelUpload', wfMsg( 'reuploaddesc' ) );
407
408 $this->showUploadForm( $form );
409
410 # Indicate that we showed a form
411 return true;
412 }
413
414 /**
415 * Show the upload form with error message, but do not stash the file.
416 *
417 * @param $message HTML string
418 */
419 protected function showUploadError( $message ) {
420 $message = '<h2>' . wfMsgHtml( 'uploadwarning' ) . "</h2>\n" .
421 '<div class="error">' . $message . "</div>\n";
422 $this->showUploadForm( $this->getUploadForm( $message ) );
423 }
424
425 /**
426 * Do the upload.
427 * Checks are made in SpecialUpload::execute()
428 */
429 protected function processUpload() {
430 global $wgUser, $wgOut;
431
432 // Fetch the file if required
433 $status = $this->mUpload->fetchFile();
434 if( !$status->isOK() ) {
435 $this->showUploadError( $wgOut->parse( $status->getWikiText() ) );
436 return;
437 }
438
439 if( !wfRunHooks( 'UploadForm:BeforeProcessing', array( &$this ) ) ) {
440 wfDebug( "Hook 'UploadForm:BeforeProcessing' broke processing the file.\n" );
441 // This code path is deprecated. If you want to break upload processing
442 // do so by hooking into the appropriate hooks in UploadBase::verifyUpload
443 // and UploadBase::verifyFile.
444 // If you use this hook to break uploading, the user will be returned
445 // an empty form with no error message whatsoever.
446 return;
447 }
448
449 // Upload verification
450 $details = $this->mUpload->verifyUpload();
451 if ( $details['status'] != UploadBase::OK ) {
452 $this->processVerificationError( $details );
453 return;
454 }
455
456 // Verify permissions for this title
457 $permErrors = $this->mUpload->verifyTitlePermissions( $wgUser );
458 if( $permErrors !== true ) {
459 $code = array_shift( $permErrors[0] );
460 $this->showRecoverableUploadError( wfMsgExt( $code,
461 'parseinline', $permErrors[0] ) );
462 return;
463 }
464
465 $this->mLocalFile = $this->mUpload->getLocalFile();
466
467 // Check warnings if necessary
468 if( !$this->mIgnoreWarning ) {
469 $warnings = $this->mUpload->checkWarnings();
470 if( $this->showUploadWarning( $warnings ) ) {
471 return;
472 }
473 }
474
475 // Get the page text if this is not a reupload
476 if( !$this->mForReUpload ) {
477 $pageText = self::getInitialPageText( $this->mComment, $this->mLicense,
478 $this->mCopyrightStatus, $this->mCopyrightSource );
479 } else {
480 $pageText = false;
481 }
482 $status = $this->mUpload->performUpload( $this->mComment, $pageText, $this->mWatchthis, $wgUser );
483 if ( !$status->isGood() ) {
484 $this->showUploadError( $wgOut->parse( $status->getWikiText() ) );
485 return;
486 }
487
488 // Success, redirect to description page
489 $this->mUploadSuccessful = true;
490 wfRunHooks( 'SpecialUploadComplete', array( &$this ) );
491 $wgOut->redirect( $this->mLocalFile->getTitle()->getFullURL() );
492 }
493
494 /**
495 * Get the initial image page text based on a comment and optional file status information
496 */
497 public static function getInitialPageText( $comment = '', $license = '', $copyStatus = '', $source = '' ) {
498 global $wgUseCopyrightUpload, $wgForceUIMsgAsContentMsg;
499 $wgForceUIMsgAsContentMsg = (array) $wgForceUIMsgAsContentMsg;
500
501 /* These messages are transcluded into the actual text of the description page.
502 * Thus, forcing them as content messages makes the upload to produce an int: template
503 * instead of hardcoding it there in the uploader language.
504 */
505 foreach( array( 'license-header', 'filedesc', 'filestatus', 'filesource' ) as $msgName ) {
506 if ( in_array( $msgName, $wgForceUIMsgAsContentMsg ) ) {
507 $msg[$msgName] = "{{int:$msgName}}";
508 } else {
509 $msg[$msgName] = wfMsgForContent( $msgName );
510 }
511 }
512
513 if ( $wgUseCopyrightUpload ) {
514 $licensetxt = '';
515 if ( $license != '' ) {
516 $licensetxt = '== ' . $msg[ 'license-header' ] . " ==\n" . '{{' . $license . '}}' . "\n";
517 }
518 $pageText = '== ' . $msg[ 'filedesc' ] . " ==\n" . $comment . "\n" .
519 '== ' . $msg[ 'filestatus' ] . " ==\n" . $copyStatus . "\n" .
520 "$licensetxt" .
521 '== ' . $msg[ 'filesource' ] . " ==\n" . $source;
522 } else {
523 if ( $license != '' ) {
524 $filedesc = $comment == '' ? '' : '== ' . $msg[ 'filedesc' ] . " ==\n" . $comment . "\n";
525 $pageText = $filedesc .
526 '== ' . $msg[ 'license-header' ] . " ==\n" . '{{' . $license . '}}' . "\n";
527 } else {
528 $pageText = $comment;
529 }
530 }
531 return $pageText;
532 }
533
534 /**
535 * See if we should check the 'watch this page' checkbox on the form
536 * based on the user's preferences and whether we're being asked
537 * to create a new file or update an existing one.
538 *
539 * In the case where 'watch edits' is off but 'watch creations' is on,
540 * we'll leave the box unchecked.
541 *
542 * Note that the page target can be changed *on the form*, so our check
543 * state can get out of sync.
544 */
545 protected function getWatchCheck() {
546 global $wgUser;
547 if( $wgUser->getOption( 'watchdefault' ) ) {
548 // Watch all edits!
549 return true;
550 }
551
552 $local = wfLocalFile( $this->mDesiredDestName );
553 if( $local && $local->exists() ) {
554 // We're uploading a new version of an existing file.
555 // No creation, so don't watch it if we're not already.
556 return $local->getTitle()->userIsWatching();
557 } else {
558 // New page should get watched if that's our option.
559 return $wgUser->getOption( 'watchcreations' );
560 }
561 }
562
563
564 /**
565 * Provides output to the user for a result of UploadBase::verifyUpload
566 *
567 * @param $details Array: result of UploadBase::verifyUpload
568 */
569 protected function processVerificationError( $details ) {
570 global $wgFileExtensions;
571
572 switch( $details['status'] ) {
573
574 /** Statuses that only require name changing **/
575 case UploadBase::MIN_LENGTH_PARTNAME:
576 $this->showRecoverableUploadError( wfMsgHtml( 'minlength1' ) );
577 break;
578 case UploadBase::ILLEGAL_FILENAME:
579 $this->showRecoverableUploadError( wfMsgExt( 'illegalfilename',
580 'parseinline', $details['filtered'] ) );
581 break;
582 case UploadBase::FILETYPE_MISSING:
583 $this->showRecoverableUploadError( wfMsgExt( 'filetype-missing',
584 'parseinline' ) );
585 break;
586 case UploadBase::WINDOWS_NONASCII_FILENAME:
587 $this->showRecoverableUploadError( wfMsgExt( 'windows-nonascii-filename',
588 'parseinline' ) );
589 break;
590
591 /** Statuses that require reuploading **/
592 case UploadBase::EMPTY_FILE:
593 $this->showUploadError( wfMsgHtml( 'emptyfile' ) );
594 break;
595 case UploadBase::FILE_TOO_LARGE:
596 $this->showUploadError( wfMsgHtml( 'largefileserver' ) );
597 break;
598 case UploadBase::FILETYPE_BADTYPE:
599 $msg = wfMessage( 'filetype-banned-type' );
600 $sep = wfMsg( 'comma-separator' );
601 if ( isset( $details['blacklistedExt'] ) ) {
602 $msg->params( implode( $sep, $details['blacklistedExt'] ) );
603 } else {
604 $msg->params( $details['finalExt'] );
605 }
606 $msg->params( implode( $sep, $wgFileExtensions ),
607 count( $wgFileExtensions ) );
608
609 // Add PLURAL support for the first parameter. This results
610 // in a bit unlogical parameter sequence, but does not break
611 // old translations
612 if ( isset( $details['blacklistedExt'] ) ) {
613 $msg->numParams( count( $details['blacklistedExt'] ) );
614 } else {
615 $msg->numParams( 1 );
616 }
617
618 $this->showUploadError( $msg->parse() );
619 break;
620 case UploadBase::VERIFICATION_ERROR:
621 unset( $details['status'] );
622 $code = array_shift( $details['details'] );
623 $this->showUploadError( wfMsgExt( $code, 'parseinline', $details['details'] ) );
624 break;
625 case UploadBase::HOOK_ABORTED:
626 if ( is_array( $details['error'] ) ) { # allow hooks to return error details in an array
627 $args = $details['error'];
628 $error = array_shift( $args );
629 } else {
630 $error = $details['error'];
631 $args = null;
632 }
633
634 $this->showUploadError( wfMsgExt( $error, 'parseinline', $args ) );
635 break;
636 default:
637 throw new MWException( __METHOD__ . ": Unknown value `{$details['status']}`" );
638 }
639 }
640
641 /**
642 * Remove a temporarily kept file stashed by saveTempUploadedFile().
643 *
644 * @return Boolean: success
645 */
646 protected function unsaveUploadedFile() {
647 global $wgOut;
648 if ( !( $this->mUpload instanceof UploadFromStash ) ) {
649 return true;
650 }
651 $success = $this->mUpload->unsaveUploadedFile();
652 if ( !$success ) {
653 $wgOut->showFileDeleteError( $this->mUpload->getTempPath() );
654 return false;
655 } else {
656 return true;
657 }
658 }
659
660 /*** Functions for formatting warnings ***/
661
662 /**
663 * Formats a result of UploadBase::getExistsWarning as HTML
664 * This check is static and can be done pre-upload via AJAX
665 *
666 * @param $exists Array: the result of UploadBase::getExistsWarning
667 * @return String: empty string if there is no warning or an HTML fragment
668 */
669 public static function getExistsWarning( $exists ) {
670 global $wgUser;
671
672 if ( !$exists ) {
673 return '';
674 }
675
676 $file = $exists['file'];
677 $filename = $file->getTitle()->getPrefixedText();
678 $warning = '';
679
680 $sk = $wgUser->getSkin();
681
682 if( $exists['warning'] == 'exists' ) {
683 // Exact match
684 $warning = wfMsgExt( 'fileexists', 'parseinline', $filename );
685 } elseif( $exists['warning'] == 'page-exists' ) {
686 // Page exists but file does not
687 $warning = wfMsgExt( 'filepageexists', 'parseinline', $filename );
688 } elseif ( $exists['warning'] == 'exists-normalized' ) {
689 $warning = wfMsgExt( 'fileexists-extension', 'parseinline', $filename,
690 $exists['normalizedFile']->getTitle()->getPrefixedText() );
691 } elseif ( $exists['warning'] == 'thumb' ) {
692 // Swapped argument order compared with other messages for backwards compatibility
693 $warning = wfMsgExt( 'fileexists-thumbnail-yes', 'parseinline',
694 $exists['thumbFile']->getTitle()->getPrefixedText(), $filename );
695 } elseif ( $exists['warning'] == 'thumb-name' ) {
696 // Image w/o '180px-' does not exists, but we do not like these filenames
697 $name = $file->getName();
698 $badPart = substr( $name, 0, strpos( $name, '-' ) + 1 );
699 $warning = wfMsgExt( 'file-thumbnail-no', 'parseinline', $badPart );
700 } elseif ( $exists['warning'] == 'bad-prefix' ) {
701 $warning = wfMsgExt( 'filename-bad-prefix', 'parseinline', $exists['prefix'] );
702 } elseif ( $exists['warning'] == 'was-deleted' ) {
703 # If the file existed before and was deleted, warn the user of this
704 $ltitle = SpecialPage::getTitleFor( 'Log' );
705 $llink = $sk->linkKnown(
706 $ltitle,
707 wfMsgHtml( 'deletionlog' ),
708 array(),
709 array(
710 'type' => 'delete',
711 'page' => $filename
712 )
713 );
714 $warning = wfMsgExt( 'filewasdeleted', array( 'parse', 'replaceafter' ), $llink );
715 }
716
717 return $warning;
718 }
719
720 /**
721 * Get a list of warnings
722 *
723 * @param $filename String: local filename, e.g. 'file exists', 'non-descriptive filename'
724 * @return Array: list of warning messages
725 */
726 public static function ajaxGetExistsWarning( $filename ) {
727 $file = wfFindFile( $filename );
728 if( !$file ) {
729 // Force local file so we have an object to do further checks against
730 // if there isn't an exact match...
731 $file = wfLocalFile( $filename );
732 }
733 $s = '&#160;';
734 if ( $file ) {
735 $exists = UploadBase::getExistsWarning( $file );
736 $warning = self::getExistsWarning( $exists );
737 if ( $warning !== '' ) {
738 $s = "<div>$warning</div>";
739 }
740 }
741 return $s;
742 }
743
744 /**
745 * Construct a warning and a gallery from an array of duplicate files.
746 */
747 public static function getDupeWarning( $dupes ) {
748 if( $dupes ) {
749 global $wgOut;
750 $msg = '<gallery>';
751 foreach( $dupes as $file ) {
752 $title = $file->getTitle();
753 $msg .= $title->getPrefixedText() .
754 '|' . $title->getText() . "\n";
755 }
756 $msg .= '</gallery>';
757 return '<li>' .
758 wfMsgExt( 'file-exists-duplicate', array( 'parse' ), count( $dupes ) ) .
759 $wgOut->parse( $msg ) .
760 "</li>\n";
761 } else {
762 return '';
763 }
764 }
765
766 }
767
768 /**
769 * Sub class of HTMLForm that provides the form section of SpecialUpload
770 */
771 class UploadForm extends HTMLForm {
772 protected $mWatch;
773 protected $mForReUpload;
774 protected $mSessionKey;
775 protected $mHideIgnoreWarning;
776 protected $mDestWarningAck;
777 protected $mDestFile;
778
779 protected $mComment;
780 protected $mTextTop;
781 protected $mTextAfterSummary;
782
783 protected $mSourceIds;
784
785 protected $mMaxFileSize = array();
786
787 public function __construct( $options = array() ) {
788 $this->mWatch = !empty( $options['watch'] );
789 $this->mForReUpload = !empty( $options['forreupload'] );
790 $this->mSessionKey = isset( $options['sessionkey'] )
791 ? $options['sessionkey'] : '';
792 $this->mHideIgnoreWarning = !empty( $options['hideignorewarning'] );
793 $this->mDestWarningAck = !empty( $options['destwarningack'] );
794 $this->mDestFile = isset( $options['destfile'] ) ? $options['destfile'] : '';
795
796 $this->mComment = isset( $options['description'] ) ?
797 $options['description'] : '';
798
799 $this->mTextTop = isset( $options['texttop'] )
800 ? $options['texttop'] : '';
801
802 $this->mTextAfterSummary = isset( $options['textaftersummary'] )
803 ? $options['textaftersummary'] : '';
804
805 $sourceDescriptor = $this->getSourceSection();
806 $descriptor = $sourceDescriptor
807 + $this->getDescriptionSection()
808 + $this->getOptionsSection();
809
810 wfRunHooks( 'UploadFormInitDescriptor', array( &$descriptor ) );
811 parent::__construct( $descriptor, 'upload' );
812
813 # Set some form properties
814 $this->setSubmitText( wfMsg( 'uploadbtn' ) );
815 $this->setSubmitName( 'wpUpload' );
816 # Used message keys: 'accesskey-upload', 'tooltip-upload'
817 $this->setSubmitTooltip( 'upload' );
818 $this->setId( 'mw-upload-form' );
819
820 # Build a list of IDs for javascript insertion
821 $this->mSourceIds = array();
822 foreach ( $sourceDescriptor as $field ) {
823 if ( !empty( $field['id'] ) ) {
824 $this->mSourceIds[] = $field['id'];
825 }
826 }
827
828 }
829
830 /**
831 * Get the descriptor of the fieldset that contains the file source
832 * selection. The section is 'source'
833 *
834 * @return Array: descriptor array
835 */
836 protected function getSourceSection() {
837 global $wgLang, $wgUser, $wgRequest;
838
839 if ( $this->mSessionKey ) {
840 return array(
841 'SessionKey' => array(
842 'type' => 'hidden',
843 'default' => $this->mSessionKey,
844 ),
845 'SourceType' => array(
846 'type' => 'hidden',
847 'default' => 'Stash',
848 ),
849 );
850 }
851
852 $canUploadByUrl = UploadFromUrl::isEnabled() && $wgUser->isAllowed( 'upload_by_url' );
853 $radio = $canUploadByUrl;
854 $selectedSourceType = strtolower( $wgRequest->getText( 'wpSourceType', 'File' ) );
855
856 $descriptor = array();
857 if ( $this->mTextTop ) {
858 $descriptor['UploadFormTextTop'] = array(
859 'type' => 'info',
860 'section' => 'source',
861 'default' => $this->mTextTop,
862 'raw' => true,
863 );
864 }
865
866 $this->mMaxUploadSize['file'] = min(
867 wfShorthandToInteger( ini_get( 'upload_max_filesize' ) ),
868 UploadBase::getMaxUploadSize( 'file' ) );
869
870 $descriptor['UploadFile'] = array(
871 'class' => 'UploadSourceField',
872 'section' => 'source',
873 'type' => 'file',
874 'id' => 'wpUploadFile',
875 'label-message' => 'sourcefilename',
876 'upload-type' => 'File',
877 'radio' => &$radio,
878 'help' => wfMsgExt( 'upload-maxfilesize',
879 array( 'parseinline', 'escapenoentities' ),
880 $wgLang->formatSize( $this->mMaxUploadSize['file'] )
881 ) . ' ' . wfMsgHtml( 'upload_source_file' ),
882 'checked' => $selectedSourceType == 'file',
883 );
884 if ( $canUploadByUrl ) {
885 $this->mMaxUploadSize['url'] = UploadBase::getMaxUploadSize( 'url' );
886 $descriptor['UploadFileURL'] = array(
887 'class' => 'UploadSourceField',
888 'section' => 'source',
889 'id' => 'wpUploadFileURL',
890 'label-message' => 'sourceurl',
891 'upload-type' => 'url',
892 'radio' => &$radio,
893 'help' => wfMsgExt( 'upload-maxfilesize',
894 array( 'parseinline', 'escapenoentities' ),
895 $wgLang->formatSize( $this->mMaxUploadSize['url'] )
896 ) . ' ' . wfMsgHtml( 'upload_source_url' ),
897 'checked' => $selectedSourceType == 'url',
898 );
899 }
900 wfRunHooks( 'UploadFormSourceDescriptors', array( &$descriptor, &$radio, $selectedSourceType ) );
901
902 $descriptor['Extensions'] = array(
903 'type' => 'info',
904 'section' => 'source',
905 'default' => $this->getExtensionsMessage(),
906 'raw' => true,
907 );
908 return $descriptor;
909 }
910
911 /**
912 * Get the messages indicating which extensions are preferred and prohibitted.
913 *
914 * @return String: HTML string containing the message
915 */
916 protected function getExtensionsMessage() {
917 # Print a list of allowed file extensions, if so configured. We ignore
918 # MIME type here, it's incomprehensible to most people and too long.
919 global $wgLang, $wgCheckFileExtensions, $wgStrictFileExtensions,
920 $wgFileExtensions, $wgFileBlacklist;
921
922 if( $wgCheckFileExtensions ) {
923 if( $wgStrictFileExtensions ) {
924 # Everything not permitted is banned
925 $extensionsList =
926 '<div id="mw-upload-permitted">' .
927 wfMsgExt( 'upload-permitted', 'parse', $wgLang->commaList( $wgFileExtensions ) ) .
928 "</div>\n";
929 } else {
930 # We have to list both preferred and prohibited
931 $extensionsList =
932 '<div id="mw-upload-preferred">' .
933 wfMsgExt( 'upload-preferred', 'parse', $wgLang->commaList( $wgFileExtensions ) ) .
934 "</div>\n" .
935 '<div id="mw-upload-prohibited">' .
936 wfMsgExt( 'upload-prohibited', 'parse', $wgLang->commaList( $wgFileBlacklist ) ) .
937 "</div>\n";
938 }
939 } else {
940 # Everything is permitted.
941 $extensionsList = '';
942 }
943 return $extensionsList;
944 }
945
946 /**
947 * Get the descriptor of the fieldset that contains the file description
948 * input. The section is 'description'
949 *
950 * @return Array: descriptor array
951 */
952 protected function getDescriptionSection() {
953 global $wgUser;
954
955 if ( $this->mSessionKey ) {
956 $stash = RepoGroup::singleton()->getLocalRepo()->getUploadStash();
957 try {
958 $file = $stash->getFile( $this->mSessionKey );
959 } catch ( MWException $e ) {
960 $file = null;
961 }
962 if ( $file ) {
963 global $wgContLang;
964
965 $mto = $file->transform( array( 'width' => 120 ) );
966 $this->addHeaderText(
967 '<div class="thumb t' . $wgContLang->alignEnd() . '">' .
968 Html::element( 'img', array(
969 'src' => $mto->getUrl(),
970 'class' => 'thumbimage',
971 ) ) . '</div>', 'description' );
972 }
973 }
974
975 $descriptor = array(
976 'DestFile' => array(
977 'type' => 'text',
978 'section' => 'description',
979 'id' => 'wpDestFile',
980 'label-message' => 'destfilename',
981 'size' => 60,
982 'default' => $this->mDestFile,
983 # @todo FIXME: Hack to work around poor handling of the 'default' option in HTMLForm
984 'nodata' => strval( $this->mDestFile ) !== '',
985 ),
986 'UploadDescription' => array(
987 'type' => 'textarea',
988 'section' => 'description',
989 'id' => 'wpUploadDescription',
990 'label-message' => $this->mForReUpload
991 ? 'filereuploadsummary'
992 : 'fileuploadsummary',
993 'default' => $this->mComment,
994 'cols' => intval( $wgUser->getOption( 'cols' ) ),
995 'rows' => 8,
996 )
997 );
998 if ( $this->mTextAfterSummary ) {
999 $descriptor['UploadFormTextAfterSummary'] = array(
1000 'type' => 'info',
1001 'section' => 'description',
1002 'default' => $this->mTextAfterSummary,
1003 'raw' => true,
1004 );
1005 }
1006
1007 $descriptor += array(
1008 'EditTools' => array(
1009 'type' => 'edittools',
1010 'section' => 'description',
1011 'message' => 'edittools-upload',
1012 )
1013 );
1014
1015 if ( $this->mForReUpload ) {
1016 $descriptor['DestFile']['readonly'] = true;
1017 } else {
1018 $descriptor['License'] = array(
1019 'type' => 'select',
1020 'class' => 'Licenses',
1021 'section' => 'description',
1022 'id' => 'wpLicense',
1023 'label-message' => 'license',
1024 );
1025 }
1026
1027 global $wgUseCopyrightUpload;
1028 if ( $wgUseCopyrightUpload ) {
1029 $descriptor['UploadCopyStatus'] = array(
1030 'type' => 'text',
1031 'section' => 'description',
1032 'id' => 'wpUploadCopyStatus',
1033 'label-message' => 'filestatus',
1034 );
1035 $descriptor['UploadSource'] = array(
1036 'type' => 'text',
1037 'section' => 'description',
1038 'id' => 'wpUploadSource',
1039 'label-message' => 'filesource',
1040 );
1041 }
1042
1043 return $descriptor;
1044 }
1045
1046 /**
1047 * Get the descriptor of the fieldset that contains the upload options,
1048 * such as "watch this file". The section is 'options'
1049 *
1050 * @return Array: descriptor array
1051 */
1052 protected function getOptionsSection() {
1053 global $wgUser;
1054
1055 if ( $wgUser->isLoggedIn() ) {
1056 $descriptor = array(
1057 'Watchthis' => array(
1058 'type' => 'check',
1059 'id' => 'wpWatchthis',
1060 'label-message' => 'watchthisupload',
1061 'section' => 'options',
1062 'default' => $wgUser->getOption( 'watchcreations' ),
1063 )
1064 );
1065 }
1066 if ( !$this->mHideIgnoreWarning ) {
1067 $descriptor['IgnoreWarning'] = array(
1068 'type' => 'check',
1069 'id' => 'wpIgnoreWarning',
1070 'label-message' => 'ignorewarnings',
1071 'section' => 'options',
1072 );
1073 }
1074
1075 $descriptor['DestFileWarningAck'] = array(
1076 'type' => 'hidden',
1077 'id' => 'wpDestFileWarningAck',
1078 'default' => $this->mDestWarningAck ? '1' : '',
1079 );
1080
1081 if ( $this->mForReUpload ) {
1082 $descriptor['ForReUpload'] = array(
1083 'type' => 'hidden',
1084 'id' => 'wpForReUpload',
1085 'default' => '1',
1086 );
1087 }
1088
1089 return $descriptor;
1090 }
1091
1092 /**
1093 * Add the upload JS and show the form.
1094 */
1095 public function show() {
1096 $this->addUploadJS();
1097 parent::show();
1098 }
1099
1100 /**
1101 * Add upload JS to $wgOut
1102 */
1103 protected function addUploadJS() {
1104 global $wgUseAjax, $wgAjaxUploadDestCheck, $wgAjaxLicensePreview, $wgEnableAPI, $wgStrictFileExtensions;
1105 global $wgOut;
1106
1107 $useAjaxDestCheck = $wgUseAjax && $wgAjaxUploadDestCheck;
1108 $useAjaxLicensePreview = $wgUseAjax && $wgAjaxLicensePreview && $wgEnableAPI;
1109 $this->mMaxUploadSize['*'] = UploadBase::getMaxUploadSize();
1110
1111 $scriptVars = array(
1112 'wgAjaxUploadDestCheck' => $useAjaxDestCheck,
1113 'wgAjaxLicensePreview' => $useAjaxLicensePreview,
1114 'wgUploadAutoFill' => !$this->mForReUpload &&
1115 // If we received mDestFile from the request, don't autofill
1116 // the wpDestFile textbox
1117 $this->mDestFile === '',
1118 'wgUploadSourceIds' => $this->mSourceIds,
1119 'wgStrictFileExtensions' => $wgStrictFileExtensions,
1120 'wgCapitalizeUploads' => MWNamespace::isCapitalized( NS_FILE ),
1121 'wgMaxUploadSize' => $this->mMaxUploadSize,
1122 );
1123
1124 $wgOut->addScript( Skin::makeVariablesScript( $scriptVars ) );
1125
1126
1127 $wgOut->addModules( array(
1128 'mediawiki.legacy.edit', // For <charinsert> support
1129 'mediawiki.legacy.upload', // Old form stuff...
1130 'mediawiki.special.upload', // Newer extras for thumbnail preview.
1131 ) );
1132 }
1133
1134 /**
1135 * Empty function; submission is handled elsewhere.
1136 *
1137 * @return bool false
1138 */
1139 function trySubmit() {
1140 return false;
1141 }
1142
1143 }
1144
1145 /**
1146 * A form field that contains a radio box in the label
1147 */
1148 class UploadSourceField extends HTMLTextField {
1149 function getLabelHtml( $cellAttributes = array() ) {
1150 $id = "wpSourceType{$this->mParams['upload-type']}";
1151 $label = Html::rawElement( 'label', array( 'for' => $id ), $this->mLabel );
1152
1153 if ( !empty( $this->mParams['radio'] ) ) {
1154 $attribs = array(
1155 'name' => 'wpSourceType',
1156 'type' => 'radio',
1157 'id' => $id,
1158 'value' => $this->mParams['upload-type'],
1159 );
1160 if ( !empty( $this->mParams['checked'] ) ) {
1161 $attribs['checked'] = 'checked';
1162 }
1163 $label .= Html::element( 'input', $attribs );
1164 }
1165
1166 return Html::rawElement( 'td', array( 'class' => 'mw-label' ) + $cellAttributes, $label );
1167 }
1168
1169 function getSize() {
1170 return isset( $this->mParams['size'] )
1171 ? $this->mParams['size']
1172 : 60;
1173 }
1174 }
1175