* (bug 13022) Fix upload from URL on PHP 5.0.x
[lhc/web/wiklou.git] / includes / SpecialUpload.php
1 <?php
2 /**
3 *
4 * @addtogroup SpecialPage
5 */
6
7
8 /**
9 * Entry point
10 */
11 function wfSpecialUpload() {
12 global $wgRequest;
13 $form = new UploadForm( $wgRequest );
14 $form->execute();
15 }
16
17 /**
18 * implements Special:Upload
19 * @addtogroup SpecialPage
20 */
21 class UploadForm {
22 const SUCCESS = 0;
23 const BEFORE_PROCESSING = 1;
24 const LARGE_FILE_SERVER = 2;
25 const EMPTY_FILE = 3;
26 const MIN_LENGHT_PARTNAME = 4;
27 const ILLEGAL_FILENAME = 5;
28 const PROTECTED_PAGE = 6;
29 const OVERWRITE_EXISTING_FILE = 7;
30 const FILETYPE_MISSING = 8;
31 const FILETYPE_BADTYPE = 9;
32 const VERIFICATION_ERROR = 10;
33 const UPLOAD_VERIFICATION_ERROR = 11;
34 const UPLOAD_WARNING = 12;
35 const INTERNAL_ERROR = 13;
36
37 /**#@+
38 * @access private
39 */
40 var $mComment, $mLicense, $mIgnoreWarning, $mCurlError;
41 var $mDestName, $mTempPath, $mFileSize, $mFileProps;
42 var $mCopyrightStatus, $mCopyrightSource, $mReUpload, $mAction, $mUploadClicked;
43 var $mSrcName, $mSessionKey, $mStashed, $mDesiredDestName, $mRemoveTempFile, $mSourceType;
44 var $mDestWarningAck, $mCurlDestHandle;
45 var $mLocalFile;
46
47 # Placeholders for text injection by hooks (must be HTML)
48 # extensions should take care to _append_ to the present value
49 var $uploadFormTextTop;
50 var $uploadFormTextAfterSummary;
51
52 const SESSION_VERSION = 1;
53 /**#@-*/
54
55 /**
56 * Constructor : initialise object
57 * Get data POSTed through the form and assign them to the object
58 * @param $request Data posted.
59 */
60 function UploadForm( &$request ) {
61 global $wgAllowCopyUploads;
62 $this->mDesiredDestName = $request->getText( 'wpDestFile' );
63 $this->mIgnoreWarning = $request->getCheck( 'wpIgnoreWarning' );
64 $this->mComment = $request->getText( 'wpUploadDescription' );
65
66 if( !$request->wasPosted() ) {
67 # GET requests just give the main form; no data except destination
68 # filename and description
69 return;
70 }
71
72 # Placeholders for text injection by hooks (empty per default)
73 $this->uploadFormTextTop = "";
74 $this->uploadFormTextAfterSummary = "";
75
76 $this->mReUpload = $request->getCheck( 'wpReUpload' );
77 $this->mUploadClicked = $request->getCheck( 'wpUpload' );
78
79 $this->mLicense = $request->getText( 'wpLicense' );
80 $this->mCopyrightStatus = $request->getText( 'wpUploadCopyStatus' );
81 $this->mCopyrightSource = $request->getText( 'wpUploadSource' );
82 $this->mWatchthis = $request->getBool( 'wpWatchthis' );
83 $this->mSourceType = $request->getText( 'wpSourceType' );
84 $this->mDestWarningAck = $request->getText( 'wpDestFileWarningAck' );
85
86 $this->mAction = $request->getVal( 'action' );
87
88 $this->mSessionKey = $request->getInt( 'wpSessionKey' );
89 if( !empty( $this->mSessionKey ) &&
90 isset( $_SESSION['wsUploadData'][$this->mSessionKey]['version'] ) &&
91 $_SESSION['wsUploadData'][$this->mSessionKey]['version'] == self::SESSION_VERSION ) {
92 /**
93 * Confirming a temporarily stashed upload.
94 * We don't want path names to be forged, so we keep
95 * them in the session on the server and just give
96 * an opaque key to the user agent.
97 */
98 $data = $_SESSION['wsUploadData'][$this->mSessionKey];
99 $this->mTempPath = $data['mTempPath'];
100 $this->mFileSize = $data['mFileSize'];
101 $this->mSrcName = $data['mSrcName'];
102 $this->mFileProps = $data['mFileProps'];
103 $this->mCurlError = 0/*UPLOAD_ERR_OK*/;
104 $this->mStashed = true;
105 $this->mRemoveTempFile = false;
106 } else {
107 /**
108 *Check for a newly uploaded file.
109 */
110 if( $wgAllowCopyUploads && $this->mSourceType == 'web' ) {
111 $this->initializeFromUrl( $request );
112 } else {
113 $this->initializeFromUpload( $request );
114 }
115 }
116 }
117
118 /**
119 * Initialize the uploaded file from PHP data
120 * @access private
121 */
122 function initializeFromUpload( $request ) {
123 $this->mTempPath = $request->getFileTempName( 'wpUploadFile' );
124 $this->mFileSize = $request->getFileSize( 'wpUploadFile' );
125 $this->mSrcName = $request->getFileName( 'wpUploadFile' );
126 $this->mCurlError = $request->getUploadError( 'wpUploadFile' );
127 $this->mSessionKey = false;
128 $this->mStashed = false;
129 $this->mRemoveTempFile = false; // PHP will handle this
130 }
131
132 /**
133 * Copy a web file to a temporary file
134 * @access private
135 */
136 function initializeFromUrl( $request ) {
137 global $wgTmpDirectory;
138 $url = $request->getText( 'wpUploadFileURL' );
139 $local_file = tempnam( $wgTmpDirectory, 'WEBUPLOAD' );
140
141 $this->mTempPath = $local_file;
142 $this->mFileSize = 0; # Will be set by curlCopy
143 $this->mCurlError = $this->curlCopy( $url, $local_file );
144 $pathParts = explode( '/', $url );
145 $this->mSrcName = array_pop( $pathParts );
146 $this->mSessionKey = false;
147 $this->mStashed = false;
148
149 // PHP won't auto-cleanup the file
150 $this->mRemoveTempFile = file_exists( $local_file );
151 }
152
153 /**
154 * Safe copy from URL
155 * Returns true if there was an error, false otherwise
156 */
157 private function curlCopy( $url, $dest ) {
158 global $wgUser, $wgOut;
159
160 if( !$wgUser->isAllowed( 'upload_by_url' ) ) {
161 $wgOut->permissionRequired( 'upload_by_url' );
162 return true;
163 }
164
165 # Maybe remove some pasting blanks :-)
166 $url = trim( $url );
167 if( stripos($url, 'http://') !== 0 && stripos($url, 'ftp://') !== 0 ) {
168 # Only HTTP or FTP URLs
169 $wgOut->errorPage( 'upload-proto-error', 'upload-proto-error-text' );
170 return true;
171 }
172
173 # Open temporary file
174 $this->mCurlDestHandle = @fopen( $this->mTempPath, "wb" );
175 if( $this->mCurlDestHandle === false ) {
176 # Could not open temporary file to write in
177 $wgOut->errorPage( 'upload-file-error', 'upload-file-error-text');
178 return true;
179 }
180
181 $ch = curl_init();
182 curl_setopt( $ch, CURLOPT_HTTP_VERSION, 1.0); # Probably not needed, but apparently can work around some bug
183 curl_setopt( $ch, CURLOPT_TIMEOUT, 10); # 10 seconds timeout
184 curl_setopt( $ch, CURLOPT_LOW_SPEED_LIMIT, 512); # 0.5KB per second minimum transfer speed
185 curl_setopt( $ch, CURLOPT_URL, $url);
186 curl_setopt( $ch, CURLOPT_WRITEFUNCTION, array( $this, 'uploadCurlCallback' ) );
187 curl_exec( $ch );
188 $error = curl_errno( $ch ) ? true : false;
189 $errornum = curl_errno( $ch );
190 // if ( $error ) print curl_error ( $ch ) ; # Debugging output
191 curl_close( $ch );
192
193 fclose( $this->mCurlDestHandle );
194 unset( $this->mCurlDestHandle );
195 if( $error ) {
196 unlink( $dest );
197 if( wfEmptyMsg( "upload-curl-error$errornum", wfMsg("upload-curl-error$errornum") ) )
198 $wgOut->errorPage( 'upload-misc-error', 'upload-misc-error-text' );
199 else
200 $wgOut->errorPage( "upload-curl-error$errornum", "upload-curl-error$errornum-text" );
201 }
202
203 return $error;
204 }
205
206 /**
207 * Callback function for CURL-based web transfer
208 * Write data to file unless we've passed the length limit;
209 * if so, abort immediately.
210 * @access private
211 */
212 function uploadCurlCallback( $ch, $data ) {
213 global $wgMaxUploadSize;
214 $length = strlen( $data );
215 $this->mFileSize += $length;
216 if( $this->mFileSize > $wgMaxUploadSize ) {
217 return 0;
218 }
219 fwrite( $this->mCurlDestHandle, $data );
220 return $length;
221 }
222
223 /**
224 * Start doing stuff
225 * @access public
226 */
227 function execute() {
228 global $wgUser, $wgOut;
229 global $wgEnableUploads;
230
231 # Check uploading enabled
232 if( !$wgEnableUploads ) {
233 $wgOut->showErrorPage( 'uploaddisabled', 'uploaddisabledtext', array( $this->mDesiredDestName ) );
234 return;
235 }
236
237 # Check permissions
238 if( !$wgUser->isAllowed( 'upload' ) ) {
239 if( !$wgUser->isLoggedIn() ) {
240 $wgOut->showErrorPage( 'uploadnologin', 'uploadnologintext' );
241 } else {
242 $wgOut->permissionRequired( 'upload' );
243 }
244 return;
245 }
246
247 # Check blocks
248 if( $wgUser->isBlocked() ) {
249 $wgOut->blockedPage();
250 return;
251 }
252
253 if( wfReadOnly() ) {
254 $wgOut->readOnlyPage();
255 return;
256 }
257
258 if( $this->mReUpload ) {
259 if( !$this->unsaveUploadedFile() ) {
260 return;
261 }
262 $this->mainUploadForm();
263 } else if( 'submit' == $this->mAction || $this->mUploadClicked ) {
264 $this->processUpload();
265 } else {
266 $this->mainUploadForm();
267 }
268
269 $this->cleanupTempFile();
270 }
271
272 /**
273 * Do the upload
274 * Checks are made in SpecialUpload::execute()
275 *
276 * @access private
277 */
278 function processUpload(){
279 global $wgUser, $wgOut, $wgFileExtensions;
280 $details = null;
281 $value = null;
282 $value = $this->internalProcessUpload( $details );
283
284 switch($value) {
285 case self::SUCCESS:
286 $wgOut->redirect( $this->mLocalFile->getTitle()->getFullURL() );
287 break;
288
289 case self::BEFORE_PROCESSING:
290 break;
291
292 case self::LARGE_FILE_SERVER:
293 $this->mainUploadForm( wfMsgHtml( 'largefileserver' ) );
294 break;
295
296 case self::EMPTY_FILE:
297 $this->mainUploadForm( wfMsgHtml( 'emptyfile' ) );
298 break;
299
300 case self::MIN_LENGHT_PARTNAME:
301 $this->mainUploadForm( wfMsgHtml( 'minlength1' ) );
302 break;
303
304 case self::ILLEGAL_FILENAME:
305 $filtered = $details['filtered'];
306 $this->uploadError( wfMsgWikiHtml( 'illegalfilename', htmlspecialchars( $filtered ) ) );
307 break;
308
309 case self::PROTECTED_PAGE:
310 $this->uploadError( wfMsgWikiHtml( 'protectedpage' ) );
311 break;
312
313 case self::OVERWRITE_EXISTING_FILE:
314 $errorText = $details['overwrite'];
315 $overwrite = new WikiError( $wgOut->parse( $errorText ) );
316 $this->uploadError( $overwrite->toString() );
317 break;
318
319 case self::FILETYPE_MISSING:
320 $this->uploadError( wfMsgExt( 'filetype-missing', array ( 'parseinline' ) ) );
321 break;
322
323 case self::FILETYPE_BADTYPE:
324 $finalExt = $details['finalExt'];
325 $this->uploadError(
326 wfMsgExt( 'filetype-banned-type',
327 array( 'parseinline' ),
328 htmlspecialchars( $finalExt ),
329 implode(
330 wfMsgExt( 'comma-separator', array( 'escapenoentities' ) ),
331 $wgFileExtensions
332 )
333 )
334 );
335 break;
336
337 case self::VERIFICATION_ERROR:
338 $veri = $details['veri'];
339 $this->uploadError( $veri->toString() );
340 break;
341
342 case self::UPLOAD_VERIFICATION_ERROR:
343 $error = $details['error'];
344 $this->uploadError( $error );
345 break;
346
347 case self::UPLOAD_WARNING:
348 $warning = $details['warning'];
349 $this->uploadWarning( $warning );
350 break;
351
352 case self::INTERNAL_ERROR:
353 $internal = $details['internal'];
354 $this->showError( $internal );
355 break;
356
357 default:
358 throw new MWException( __METHOD__ . ": Unknown value `{$value}`" );
359 }
360 }
361
362 /**
363 * Really do the upload
364 * Checks are made in SpecialUpload::execute()
365 *
366 * @param array $resultDetails contains result-specific dict of additional values
367 *
368 * @access private
369 */
370 function internalProcessUpload( &$resultDetails ) {
371 global $wgUser;
372
373 if( !wfRunHooks( 'UploadForm:BeforeProcessing', array( &$this ) ) )
374 {
375 wfDebug( "Hook 'UploadForm:BeforeProcessing' broke processing the file." );
376 return self::BEFORE_PROCESSING;
377 }
378
379 /* Check for PHP error if any, requires php 4.2 or newer */
380 if( $this->mCurlError == 1/*UPLOAD_ERR_INI_SIZE*/ ) {
381 return self::LARGE_FILE_SERVER;
382 }
383
384 /**
385 * If there was no filename or a zero size given, give up quick.
386 */
387 if( trim( $this->mSrcName ) == '' || empty( $this->mFileSize ) ) {
388 return self::EMPTY_FILE;
389 }
390
391 # Chop off any directories in the given filename
392 if( $this->mDesiredDestName ) {
393 $basename = $this->mDesiredDestName;
394 } else {
395 $basename = $this->mSrcName;
396 }
397 $filtered = wfBaseName( $basename );
398
399 /**
400 * We'll want to blacklist against *any* 'extension', and use
401 * only the final one for the whitelist.
402 */
403 list( $partname, $ext ) = $this->splitExtensions( $filtered );
404
405 if( count( $ext ) ) {
406 $finalExt = $ext[count( $ext ) - 1];
407 } else {
408 $finalExt = '';
409 }
410
411 # If there was more than one "extension", reassemble the base
412 # filename to prevent bogus complaints about length
413 if( count( $ext ) > 1 ) {
414 for( $i = 0; $i < count( $ext ) - 1; $i++ )
415 $partname .= '.' . $ext[$i];
416 }
417
418 if( strlen( $partname ) < 1 ) {
419 return self::MIN_LENGHT_PARTNAME;
420 }
421
422 /**
423 * Filter out illegal characters, and try to make a legible name
424 * out of it. We'll strip some silently that Title would die on.
425 */
426 $filtered = preg_replace ( "/[^".Title::legalChars()."]|:/", '-', $filtered );
427 $nt = Title::makeTitleSafe( NS_IMAGE, $filtered );
428 if( is_null( $nt ) ) {
429 $resultDetails = array( 'filtered' => $filtered );
430 return self::ILLEGAL_FILENAME;
431 }
432 $this->mLocalFile = wfLocalFile( $nt );
433 $this->mDestName = $this->mLocalFile->getName();
434
435 /**
436 * If the image is protected, non-sysop users won't be able
437 * to modify it by uploading a new revision.
438 */
439 if( !$nt->userCan( 'edit' ) || !$nt->userCan( 'create' ) ) {
440 return self::PROTECTED_PAGE;
441 }
442
443 /**
444 * In some cases we may forbid overwriting of existing files.
445 */
446 $overwrite = $this->checkOverwrite( $this->mDestName );
447 if( $overwrite !== true ) {
448 $resultDetails = array( 'overwrite' => $overwrite );
449 return self::OVERWRITE_EXISTING_FILE;
450 }
451
452 /* Don't allow users to override the blacklist (check file extension) */
453 global $wgStrictFileExtensions;
454 global $wgFileExtensions, $wgFileBlacklist;
455 if ($finalExt == '') {
456 return self::FILETYPE_MISSING;
457 } elseif ( $this->checkFileExtensionList( $ext, $wgFileBlacklist ) ||
458 ($wgStrictFileExtensions && !$this->checkFileExtension( $finalExt, $wgFileExtensions ) ) ) {
459 $resultDetails = array( 'finalExt' => $finalExt );
460 return self::FILETYPE_BADTYPE;
461 }
462
463 /**
464 * Look at the contents of the file; if we can recognize the
465 * type but it's corrupt or data of the wrong type, we should
466 * probably not accept it.
467 */
468 if( !$this->mStashed ) {
469 $this->mFileProps = File::getPropsFromPath( $this->mTempPath, $finalExt );
470 $this->checkMacBinary();
471 $veri = $this->verify( $this->mTempPath, $finalExt );
472
473 if( $veri !== true ) { //it's a wiki error...
474 $resultDetails = array( 'veri' => $veri );
475 return self::VERIFICATION_ERROR;
476 }
477
478 /**
479 * Provide an opportunity for extensions to add further checks
480 */
481 $error = '';
482 if( !wfRunHooks( 'UploadVerification',
483 array( $this->mDestName, $this->mTempPath, &$error ) ) ) {
484 $resultDetails = array( 'error' => $error );
485 return self::UPLOAD_VERIFICATION_ERROR;
486 }
487 }
488
489
490 /**
491 * Check for non-fatal conditions
492 */
493 if ( ! $this->mIgnoreWarning ) {
494 $warning = '';
495
496 global $wgCapitalLinks;
497 if( $wgCapitalLinks ) {
498 $filtered = ucfirst( $filtered );
499 }
500 if( $basename != $filtered ) {
501 $warning .= '<li>'.wfMsgHtml( 'badfilename', htmlspecialchars( $this->mDestName ) ).'</li>';
502 }
503
504 global $wgCheckFileExtensions;
505 if ( $wgCheckFileExtensions ) {
506 if ( !$this->checkFileExtension( $finalExt, $wgFileExtensions ) ) {
507 $warning .= '<li>' .
508 wfMsgExt( 'filetype-unwanted-type',
509 array( 'parseinline' ),
510 htmlspecialchars( $finalExt ),
511 implode(
512 wfMsgExt( 'comma-separator', array( 'escapenoentities' ) ),
513 $wgFileExtensions
514 )
515 ) . '</li>';
516 }
517 }
518
519 global $wgUploadSizeWarning;
520 if ( $wgUploadSizeWarning && ( $this->mFileSize > $wgUploadSizeWarning ) ) {
521 $skin = $wgUser->getSkin();
522 $wsize = $skin->formatSize( $wgUploadSizeWarning );
523 $asize = $skin->formatSize( $this->mFileSize );
524 $warning .= '<li>' . wfMsgHtml( 'large-file', $wsize, $asize ) . '</li>';
525 }
526 if ( $this->mFileSize == 0 ) {
527 $warning .= '<li>'.wfMsgHtml( 'emptyfile' ).'</li>';
528 }
529
530 if ( !$this->mDestWarningAck ) {
531 $warning .= self::getExistsWarning( $this->mLocalFile );
532 }
533 if( $warning != '' ) {
534 /**
535 * Stash the file in a temporary location; the user can choose
536 * to let it through and we'll complete the upload then.
537 */
538 $resultDetails = array( 'warning' => $warning );
539 return self::UPLOAD_WARNING;
540 }
541 }
542
543 /**
544 * Try actually saving the thing...
545 * It will show an error form on failure.
546 */
547 $pageText = self::getInitialPageText( $this->mComment, $this->mLicense,
548 $this->mCopyrightStatus, $this->mCopyrightSource );
549
550 $status = $this->mLocalFile->upload( $this->mTempPath, $this->mComment, $pageText,
551 File::DELETE_SOURCE, $this->mFileProps );
552 if ( !$status->isGood() ) {
553 $resultDetails = array( 'internal' => $status->getWikiText() );
554 return self::INTERNAL_ERROR;
555 } else {
556 if ( $this->mWatchthis ) {
557 global $wgUser;
558 $wgUser->addWatch( $this->mLocalFile->getTitle() );
559 }
560 // Success, redirect to description page
561 $img = null; // @todo: added to avoid passing a ref to null - should this be defined somewhere?
562 wfRunHooks( 'UploadComplete', array( &$this ) );
563 return self::SUCCESS;
564 }
565 }
566
567 /**
568 * Do existence checks on a file and produce a warning
569 * This check is static and can be done pre-upload via AJAX
570 * Returns an HTML fragment consisting of one or more LI elements if there is a warning
571 * Returns an empty string if there is no warning
572 */
573 static function getExistsWarning( $file ) {
574 global $wgUser, $wgContLang;
575 // Check for uppercase extension. We allow these filenames but check if an image
576 // with lowercase extension exists already
577 $warning = '';
578 $align = $wgContLang->isRtl() ? 'left' : 'right';
579
580 if( strpos( $file->getName(), '.' ) == false ) {
581 $partname = $file->getName();
582 $rawExtension = '';
583 } else {
584 $n = strrpos( $file->getName(), '.' );
585 $rawExtension = substr( $file->getName(), $n + 1 );
586 $partname = substr( $file->getName(), 0, $n );
587 }
588
589 $sk = $wgUser->getSkin();
590
591 if ( $rawExtension != $file->getExtension() ) {
592 // We're not using the normalized form of the extension.
593 // Normal form is lowercase, using most common of alternate
594 // extensions (eg 'jpg' rather than 'JPEG').
595 //
596 // Check for another file using the normalized form...
597 $nt_lc = Title::newFromText( $partname . '.' . $file->getExtension() );
598 $file_lc = wfLocalFile( $nt_lc );
599 } else {
600 $file_lc = false;
601 }
602
603 if( $file->exists() ) {
604 $dlink = $sk->makeKnownLinkObj( $file->getTitle() );
605 if ( $file->allowInlineDisplay() ) {
606 $dlink2 = $sk->makeImageLinkObj( $file->getTitle(), wfMsgExt( 'fileexists-thumb', 'parseinline' ),
607 $file->getName(), $align, array(), false, true );
608 } elseif ( !$file->allowInlineDisplay() && $file->isSafeFile() ) {
609 $icon = $file->iconThumb();
610 $dlink2 = '<div style="float:' . $align . '" id="mw-media-icon">' .
611 $icon->toHtml( array( 'desc-link' => true ) ) . '<br />' . $dlink . '</div>';
612 } else {
613 $dlink2 = '';
614 }
615
616 $warning .= '<li>' . wfMsgExt( 'fileexists', array('parseinline','replaceafter'), $dlink ) . '</li>' . $dlink2;
617
618 } elseif( $file->getTitle()->getArticleID() ) {
619 $lnk = $sk->makeKnownLinkObj( $file->getTitle(), '', 'redirect=no' );
620 $warning .= '<li>' . wfMsgExt( 'filepageexists', array( 'parseinline', 'replaceafter' ), $lnk ) . '</li>';
621 } elseif ( $file_lc && $file_lc->exists() ) {
622 # Check if image with lowercase extension exists.
623 # It's not forbidden but in 99% it makes no sense to upload the same filename with uppercase extension
624 $dlink = $sk->makeKnownLinkObj( $nt_lc );
625 if ( $file_lc->allowInlineDisplay() ) {
626 $dlink2 = $sk->makeImageLinkObj( $nt_lc, wfMsgExt( 'fileexists-thumb', 'parseinline' ),
627 $nt_lc->getText(), $align, array(), false, true );
628 } elseif ( !$file_lc->allowInlineDisplay() && $file_lc->isSafeFile() ) {
629 $icon = $file_lc->iconThumb();
630 $dlink2 = '<div style="float:' . $align . '" id="mw-media-icon">' .
631 $icon->toHtml( array( 'desc-link' => true ) ) . '<br />' . $dlink . '</div>';
632 } else {
633 $dlink2 = '';
634 }
635
636 $warning .= '<li>' . wfMsgExt( 'fileexists-extension', 'parsemag', $file->getName(), $dlink ) . '</li>' . $dlink2;
637
638 } elseif ( ( substr( $partname , 3, 3 ) == 'px-' || substr( $partname , 2, 3 ) == 'px-' )
639 && ereg( "[0-9]{2}" , substr( $partname , 0, 2) ) )
640 {
641 # Check for filenames like 50px- or 180px-, these are mostly thumbnails
642 $nt_thb = Title::newFromText( substr( $partname , strpos( $partname , '-' ) +1 ) . '.' . $rawExtension );
643 $file_thb = wfLocalFile( $nt_thb );
644 if ($file_thb->exists() ) {
645 # Check if an image without leading '180px-' (or similiar) exists
646 $dlink = $sk->makeKnownLinkObj( $nt_thb);
647 if ( $file_thb->allowInlineDisplay() ) {
648 $dlink2 = $sk->makeImageLinkObj( $nt_thb,
649 wfMsgExt( 'fileexists-thumb', 'parseinline' ),
650 $nt_thb->getText(), $align, array(), false, true );
651 } elseif ( !$file_thb->allowInlineDisplay() && $file_thb->isSafeFile() ) {
652 $icon = $file_thb->iconThumb();
653 $dlink2 = '<div style="float:' . $align . '" id="mw-media-icon">' .
654 $icon->toHtml( array( 'desc-link' => true ) ) . '<br />' .
655 $dlink . '</div>';
656 } else {
657 $dlink2 = '';
658 }
659
660 $warning .= '<li>' . wfMsgExt( 'fileexists-thumbnail-yes', 'parsemag', $dlink ) .
661 '</li>' . $dlink2;
662 } else {
663 # Image w/o '180px-' does not exists, but we do not like these filenames
664 $warning .= '<li>' . wfMsgExt( 'file-thumbnail-no', 'parseinline' ,
665 substr( $partname , 0, strpos( $partname , '-' ) +1 ) ) . '</li>';
666 }
667 }
668
669 $filenamePrefixBlacklist = self::getFilenamePrefixBlacklist();
670 # Do the match
671 foreach( $filenamePrefixBlacklist as $prefix ) {
672 if ( substr( $partname, 0, strlen( $prefix ) ) == $prefix ) {
673 $warning .= '<li>' . wfMsgExt( 'filename-bad-prefix', 'parseinline', $prefix ) . '</li>';
674 break;
675 }
676 }
677
678 if ( $file->wasDeleted() && !$file->exists() ) {
679 # If the file existed before and was deleted, warn the user of this
680 # Don't bother doing so if the file exists now, however
681 $ltitle = SpecialPage::getTitleFor( 'Log' );
682 $llink = $sk->makeKnownLinkObj( $ltitle, wfMsgHtml( 'deletionlog' ),
683 'type=delete&page=' . $file->getTitle()->getPrefixedUrl() );
684 $warning .= '<li>' . wfMsgWikiHtml( 'filewasdeleted', $llink ) . '</li>';
685 }
686 return $warning;
687 }
688
689 /**
690 * Get a list of warnings
691 *
692 * @param string local filename, e.g. 'file exists', 'non-descriptive filename'
693 * @return array list of warning messages
694 */
695 static function ajaxGetExistsWarning( $filename ) {
696 $file = wfFindFile( $filename );
697 if( !$file ) {
698 // Force local file so we have an object to do further checks against
699 // if there isn't an exact match...
700 $file = wfLocalFile( $filename );
701 }
702 $s = '&nbsp;';
703 if ( $file ) {
704 $warning = self::getExistsWarning( $file );
705 if ( $warning !== '' ) {
706 $s = "<ul>$warning</ul>";
707 }
708 }
709 return $s;
710 }
711
712 /**
713 * Render a preview of a given license for the AJAX preview on upload
714 *
715 * @param string $license
716 * @return string
717 */
718 public static function ajaxGetLicensePreview( $license ) {
719 global $wgParser, $wgUser;
720 $text = '{{' . $license . '}}';
721 $title = Title::makeTitle( NS_IMAGE, 'Sample.jpg' );
722 $options = ParserOptions::newFromUser( $wgUser );
723
724 // Expand subst: first, then live templates...
725 $text = $wgParser->preSaveTransform( $text, $title, $wgUser, $options );
726 $output = $wgParser->parse( $text, $title, $options );
727
728 return $output->getText();
729 }
730
731 /**
732 * Get a list of blacklisted filename prefixes from [[MediaWiki:filename-prefix-blacklist]]
733 *
734 * @return array list of prefixes
735 */
736 public static function getFilenamePrefixBlacklist() {
737 $blacklist = array();
738 $message = wfMsgForContent( 'filename-prefix-blacklist' );
739 if( $message && !( wfEmptyMsg( 'filename-prefix-blacklist', $message ) || $message == '-' ) ) {
740 $lines = explode( "\n", $message );
741 foreach( $lines as $line ) {
742 // Remove comment lines
743 $comment = substr( trim( $line ), 0, 1 );
744 if ( $comment == '#' || $comment == '' ) {
745 continue;
746 }
747 // Remove additional comments after a prefix
748 $comment = strpos( $line, '#' );
749 if ( $comment > 0 ) {
750 $line = substr( $line, 0, $comment-1 );
751 }
752 $blacklist[] = trim( $line );
753 }
754 }
755 return $blacklist;
756 }
757
758 /**
759 * Stash a file in a temporary directory for later processing
760 * after the user has confirmed it.
761 *
762 * If the user doesn't explicitly cancel or accept, these files
763 * can accumulate in the temp directory.
764 *
765 * @param string $saveName - the destination filename
766 * @param string $tempName - the source temporary file to save
767 * @return string - full path the stashed file, or false on failure
768 * @access private
769 */
770 function saveTempUploadedFile( $saveName, $tempName ) {
771 global $wgOut;
772 $repo = RepoGroup::singleton()->getLocalRepo();
773 $status = $repo->storeTemp( $saveName, $tempName );
774 if ( !$status->isGood() ) {
775 $this->showError( $status->getWikiText() );
776 return false;
777 } else {
778 return $status->value;
779 }
780 }
781
782 /**
783 * Stash a file in a temporary directory for later processing,
784 * and save the necessary descriptive info into the session.
785 * Returns a key value which will be passed through a form
786 * to pick up the path info on a later invocation.
787 *
788 * @return int
789 * @access private
790 */
791 function stashSession() {
792 $stash = $this->saveTempUploadedFile( $this->mDestName, $this->mTempPath );
793
794 if( !$stash ) {
795 # Couldn't save the file.
796 return false;
797 }
798
799 $key = mt_rand( 0, 0x7fffffff );
800 $_SESSION['wsUploadData'][$key] = array(
801 'mTempPath' => $stash,
802 'mFileSize' => $this->mFileSize,
803 'mSrcName' => $this->mSrcName,
804 'mFileProps' => $this->mFileProps,
805 'version' => self::SESSION_VERSION,
806 );
807 return $key;
808 }
809
810 /**
811 * Remove a temporarily kept file stashed by saveTempUploadedFile().
812 * @access private
813 * @return success
814 */
815 function unsaveUploadedFile() {
816 global $wgOut;
817 $repo = RepoGroup::singleton()->getLocalRepo();
818 $success = $repo->freeTemp( $this->mTempPath );
819 if ( ! $success ) {
820 $wgOut->showFileDeleteError( $this->mTempPath );
821 return false;
822 } else {
823 return true;
824 }
825 }
826
827 /* -------------------------------------------------------------- */
828
829 /**
830 * @param string $error as HTML
831 * @access private
832 */
833 function uploadError( $error ) {
834 global $wgOut;
835 $wgOut->addHTML( "<h2>" . wfMsgHtml( 'uploadwarning' ) . "</h2>\n" );
836 $wgOut->addHTML( "<span class='error'>{$error}</span>\n" );
837 }
838
839 /**
840 * There's something wrong with this file, not enough to reject it
841 * totally but we require manual intervention to save it for real.
842 * Stash it away, then present a form asking to confirm or cancel.
843 *
844 * @param string $warning as HTML
845 * @access private
846 */
847 function uploadWarning( $warning ) {
848 global $wgOut, $wgContLang;
849 global $wgUseCopyrightUpload;
850
851 $this->mSessionKey = $this->stashSession();
852 if( !$this->mSessionKey ) {
853 # Couldn't save file; an error has been displayed so let's go.
854 return;
855 }
856
857 $wgOut->addHTML( "<h2>" . wfMsgHtml( 'uploadwarning' ) . "</h2>\n" );
858 $wgOut->addHTML( "<ul class='warning'>{$warning}</ul><br />\n" );
859
860 $save = wfMsgHtml( 'savefile' );
861 $reupload = wfMsgHtml( 'reupload' );
862 $iw = wfMsgWikiHtml( 'ignorewarning' );
863 $reup = wfMsgWikiHtml( 'reuploaddesc' );
864 $titleObj = SpecialPage::getTitleFor( 'Upload' );
865 $action = $titleObj->escapeLocalURL( 'action=submit' );
866 $align1 = $wgContLang->isRTL() ? 'left' : 'right';
867 $align2 = $wgContLang->isRTL() ? 'right' : 'left';
868
869 if ( $wgUseCopyrightUpload )
870 {
871 $copyright = "
872 <input type='hidden' name='wpUploadCopyStatus' value=\"" . htmlspecialchars( $this->mCopyrightStatus ) . "\" />
873 <input type='hidden' name='wpUploadSource' value=\"" . htmlspecialchars( $this->mCopyrightSource ) . "\" />
874 ";
875 } else {
876 $copyright = "";
877 }
878
879 $wgOut->addHTML( "
880 <form id='uploadwarning' method='post' enctype='multipart/form-data' action='$action'>
881 <input type='hidden' name='wpIgnoreWarning' value='1' />
882 <input type='hidden' name='wpSessionKey' value=\"" . htmlspecialchars( $this->mSessionKey ) . "\" />
883 <input type='hidden' name='wpUploadDescription' value=\"" . htmlspecialchars( $this->mComment ) . "\" />
884 <input type='hidden' name='wpLicense' value=\"" . htmlspecialchars( $this->mLicense ) . "\" />
885 <input type='hidden' name='wpDestFile' value=\"" . htmlspecialchars( $this->mDesiredDestName ) . "\" />
886 <input type='hidden' name='wpWatchthis' value=\"" . htmlspecialchars( intval( $this->mWatchthis ) ) . "\" />
887 {$copyright}
888 <table border='0'>
889 <tr>
890 <tr>
891 <td align='$align1'>
892 <input tabindex='2' type='submit' name='wpUpload' value=\"$save\" />
893 </td>
894 <td align='$align2'>$iw</td>
895 </tr>
896 <tr>
897 <td align='$align1'>
898 <input tabindex='2' type='submit' name='wpReUpload' value=\"{$reupload}\" />
899 </td>
900 <td align='$align2'>$reup</td>
901 </tr>
902 </tr>
903 </table></form>\n" );
904 }
905
906 /**
907 * Displays the main upload form, optionally with a highlighted
908 * error message up at the top.
909 *
910 * @param string $msg as HTML
911 * @access private
912 */
913 function mainUploadForm( $msg='' ) {
914 global $wgOut, $wgUser, $wgContLang;
915 global $wgUseCopyrightUpload, $wgUseAjax, $wgAjaxUploadDestCheck, $wgAjaxLicensePreview;
916 global $wgRequest, $wgAllowCopyUploads;
917 global $wgStylePath, $wgStyleVersion;
918
919 $useAjaxDestCheck = $wgUseAjax && $wgAjaxUploadDestCheck;
920 $useAjaxLicensePreview = $wgUseAjax && $wgAjaxLicensePreview;
921
922 $adc = wfBoolToStr( $useAjaxDestCheck );
923 $alp = wfBoolToStr( $useAjaxLicensePreview );
924
925 $wgOut->addScript( "<script type=\"text/javascript\">
926 wgAjaxUploadDestCheck = {$adc};
927 wgAjaxLicensePreview = {$alp};
928 </script>
929 <script type=\"text/javascript\" src=\"{$wgStylePath}/common/upload.js?{$wgStyleVersion}\"></script>
930 " );
931
932 if( !wfRunHooks( 'UploadForm:initial', array( &$this ) ) )
933 {
934 wfDebug( "Hook 'UploadForm:initial' broke output of the upload form" );
935 return false;
936 }
937
938 if( $this->mDesiredDestName ) {
939 $title = Title::makeTitleSafe( NS_IMAGE, $this->mDesiredDestName );
940 // Show a subtitle link to deleted revisions (to sysops et al only)
941 if( $title instanceof Title && ( $count = $title->isDeleted() ) > 0 && $wgUser->isAllowed( 'deletedhistory' ) ) {
942 $link = wfMsgExt(
943 $wgUser->isAllowed( 'delete' ) ? 'thisisdeleted' : 'viewdeleted',
944 array( 'parse', 'replaceafter' ),
945 $wgUser->getSkin()->makeKnownLinkObj(
946 SpecialPage::getTitleFor( 'Undelete', $title->getPrefixedText() ),
947 wfMsgExt( 'restorelink', array( 'parsemag', 'escape' ), $count )
948 )
949 );
950 $wgOut->addHtml( "<div id=\"contentSub2\">{$link}</div>" );
951 }
952
953 // Show the relevant lines from deletion log (for still deleted files only)
954 if( $title instanceof Title && $title->isDeleted() > 0 && !$title->exists() ) {
955 $this->showDeletionLog( $wgOut, $title->getPrefixedText() );
956 }
957 }
958
959 $cols = intval($wgUser->getOption( 'cols' ));
960
961 if( $wgUser->getOption( 'editwidth' ) ) {
962 $width = " style=\"width:100%\"";
963 } else {
964 $width = '';
965 }
966
967 if ( '' != $msg ) {
968 $sub = wfMsgHtml( 'uploaderror' );
969 $wgOut->addHTML( "<h2>{$sub}</h2>\n" .
970 "<span class='error'>{$msg}</span>\n" );
971 }
972 $wgOut->addHTML( '<div id="uploadtext">' );
973 $wgOut->addWikiMsg( 'uploadtext', $this->mDesiredDestName );
974 $wgOut->addHTML( "</div>\n" );
975
976 # Print a list of allowed file extensions, if so configured. We ignore
977 # MIME type here, it's incomprehensible to most people and too long.
978 global $wgCheckFileExtensions, $wgStrictFileExtensions,
979 $wgFileExtensions, $wgFileBlacklist;
980 if( $wgCheckFileExtensions ) {
981 $delim = wfMsgExt( 'comma-separator', array( 'escapenoentities' ) );
982 if( $wgStrictFileExtensions ) {
983 # Everything not permitted is banned
984 $wgOut->addHTML(
985 '<div id="mw-upload-permitted">' .
986 wfMsgWikiHtml( 'upload-permitted', implode( $wgFileExtensions, $delim ) ) .
987 "</div>\n"
988 );
989 } else {
990 # We have to list both preferred and prohibited
991 $wgOut->addHTML(
992 '<div id="mw-upload-preferred">' .
993 wfMsgWikiHtml( 'upload-preferred', implode( $wgFileExtensions, $delim ) ) .
994 "</div>\n" .
995 '<div id="mw-upload-prohibited">' .
996 wfMsgWikiHtml( 'upload-prohibited', implode( $wgFileBlacklist, $delim ) ) .
997 "</div>\n"
998 );
999 }
1000 }
1001
1002 $sourcefilename = wfMsgHtml( 'sourcefilename' );
1003 $destfilename = wfMsgHtml( 'destfilename' );
1004 $summary = wfMsgExt( 'fileuploadsummary', 'parseinline' );
1005
1006 $licenses = new Licenses();
1007 $license = wfMsgExt( 'license', array( 'parseinline' ) );
1008 $nolicense = wfMsgHtml( 'nolicense' );
1009 $licenseshtml = $licenses->getHtml();
1010
1011 $ulb = wfMsgHtml( 'uploadbtn' );
1012
1013
1014 $titleObj = SpecialPage::getTitleFor( 'Upload' );
1015 $action = $titleObj->escapeLocalURL();
1016
1017 $encDestName = htmlspecialchars( $this->mDesiredDestName );
1018
1019 $watchChecked =
1020 ( $wgUser->getOption( 'watchdefault' ) ||
1021 ( $wgUser->getOption( 'watchcreations' ) && $this->mDesiredDestName == '' ) )
1022 ? 'checked="checked"'
1023 : '';
1024 $warningChecked = $this->mIgnoreWarning ? 'checked' : '';
1025
1026 // Prepare form for upload or upload/copy
1027 if( $wgAllowCopyUploads && $wgUser->isAllowed( 'upload_by_url' ) ) {
1028 $filename_form =
1029 "<input type='radio' id='wpSourceTypeFile' name='wpSourceType' value='file' " .
1030 "onchange='toggle_element_activation(\"wpUploadFileURL\",\"wpUploadFile\")' checked />" .
1031 "<input tabindex='1' type='file' name='wpUploadFile' id='wpUploadFile' " .
1032 "onfocus='" .
1033 "toggle_element_activation(\"wpUploadFileURL\",\"wpUploadFile\");" .
1034 "toggle_element_check(\"wpSourceTypeFile\",\"wpSourceTypeURL\")'" .
1035 ($this->mDesiredDestName?"":"onchange='fillDestFilename(\"wpUploadFile\")' ") . "size='60' />" .
1036 wfMsgHTML( 'upload_source_file' ) . "<br/>" .
1037 "<input type='radio' id='wpSourceTypeURL' name='wpSourceType' value='web' " .
1038 "onchange='toggle_element_activation(\"wpUploadFile\",\"wpUploadFileURL\")' />" .
1039 "<input tabindex='1' type='text' name='wpUploadFileURL' id='wpUploadFileURL' " .
1040 "onfocus='" .
1041 "toggle_element_activation(\"wpUploadFile\",\"wpUploadFileURL\");" .
1042 "toggle_element_check(\"wpSourceTypeURL\",\"wpSourceTypeFile\")'" .
1043 ($this->mDesiredDestName?"":"onchange='fillDestFilename(\"wpUploadFileURL\")' ") . "size='60' DISABLED />" .
1044 wfMsgHtml( 'upload_source_url' ) ;
1045 } else {
1046 $filename_form =
1047 "<input tabindex='1' type='file' name='wpUploadFile' id='wpUploadFile' " .
1048 ($this->mDesiredDestName?"":"onchange='fillDestFilename(\"wpUploadFile\")' ") .
1049 "size='60' />" .
1050 "<input type='hidden' name='wpSourceType' value='file' />" ;
1051 }
1052 if ( $useAjaxDestCheck ) {
1053 $warningRow = "<tr><td colspan='2' id='wpDestFile-warning'>&nbsp;</td></tr>";
1054 $destOnkeyup = 'onkeyup="wgUploadWarningObj.keypress();"';
1055 } else {
1056 $warningRow = '';
1057 $destOnkeyup = '';
1058 }
1059
1060 $encComment = htmlspecialchars( $this->mComment );
1061 $align1 = $wgContLang->isRTL() ? 'left' : 'right';
1062 $align2 = $wgContLang->isRTL() ? 'right' : 'left';
1063
1064 $wgOut->addHTML( <<<EOT
1065 <form id='upload' method='post' enctype='multipart/form-data' action="$action">
1066 <table border='0'>
1067 <tr>
1068 {$this->uploadFormTextTop}
1069 <td align='$align1' valign='top'><label for='wpUploadFile'>{$sourcefilename}:</label></td>
1070 <td align='$align2'>
1071 {$filename_form}
1072 </td>
1073 </tr>
1074 <tr>
1075 <td align='$align1'><label for='wpDestFile'>{$destfilename}:</label></td>
1076 <td align='$align2'>
1077 <input tabindex='2' type='text' name='wpDestFile' id='wpDestFile' size='60'
1078 value="$encDestName" $destOnkeyup />
1079 </td>
1080 </tr>
1081 <tr>
1082 <td align='$align1'><label for='wpUploadDescription'>{$summary}</label></td>
1083 <td align='$align2'>
1084 <textarea tabindex='3' name='wpUploadDescription' id='wpUploadDescription' rows='6'
1085 cols='{$cols}'{$width}>$encComment</textarea>
1086 {$this->uploadFormTextAfterSummary}
1087 </td>
1088 </tr>
1089 <tr>
1090 EOT
1091 );
1092
1093 if ( $licenseshtml != '' ) {
1094 global $wgStylePath;
1095 $wgOut->addHTML( "
1096 <td align='$align1'><label for='wpLicense'>$license:</label></td>
1097 <td align='$align2'>
1098 <select name='wpLicense' id='wpLicense' tabindex='4'
1099 onchange='licenseSelectorCheck()'>
1100 <option value=''>$nolicense</option>
1101 $licenseshtml
1102 </select>
1103 </td>
1104 </tr>
1105 <tr>" );
1106 if( $useAjaxLicensePreview ) {
1107 $wgOut->addHtml( "
1108 <td></td>
1109 <td id=\"mw-license-preview\"></td>
1110 </tr>
1111 <tr>" );
1112 }
1113 }
1114
1115 if ( $wgUseCopyrightUpload ) {
1116 $filestatus = wfMsgHtml ( 'filestatus' );
1117 $copystatus = htmlspecialchars( $this->mCopyrightStatus );
1118 $filesource = wfMsgHtml ( 'filesource' );
1119 $uploadsource = htmlspecialchars( $this->mCopyrightSource );
1120
1121 $wgOut->addHTML( "
1122 <td align='$align1' nowrap='nowrap'><label for='wpUploadCopyStatus'>$filestatus:</label></td>
1123 <td><input tabindex='5' type='text' name='wpUploadCopyStatus' id='wpUploadCopyStatus'
1124 value=\"$copystatus\" size='60' /></td>
1125 </tr>
1126 <tr>
1127 <td align='$align1'><label for='wpUploadCopyStatus'>$filesource:</label></td>
1128 <td><input tabindex='6' type='text' name='wpUploadSource' id='wpUploadCopyStatus'
1129 value=\"$uploadsource\" size='60' /></td>
1130 </tr>
1131 <tr>
1132 ");
1133 }
1134
1135 $wgOut->addHtml( "
1136 <td></td>
1137 <td>
1138 <input tabindex='7' type='checkbox' name='wpWatchthis' id='wpWatchthis' $watchChecked value='true' />
1139 <label for='wpWatchthis'>" . wfMsgHtml( 'watchthisupload' ) . "</label>
1140 <input tabindex='8' type='checkbox' name='wpIgnoreWarning' id='wpIgnoreWarning' value='true' $warningChecked/>
1141 <label for='wpIgnoreWarning'>" . wfMsgHtml( 'ignorewarnings' ) . "</label>
1142 </td>
1143 </tr>
1144 $warningRow
1145 <tr>
1146 <td></td>
1147 <td align='$align2'><input tabindex='9' type='submit' name='wpUpload' value=\"{$ulb}\"" . $wgUser->getSkin()->tooltipAndAccesskey( 'upload' ) . " /></td>
1148 </tr>
1149 <tr>
1150 <td></td>
1151 <td align='$align2'>
1152 " );
1153 $wgOut->addWikiText( wfMsgForContent( 'edittools' ) );
1154 $wgOut->addHTML( "
1155 </td>
1156 </tr>
1157
1158 </table>
1159 <input type='hidden' name='wpDestFileWarningAck' id='wpDestFileWarningAck' value=''/>
1160 </form>" );
1161 }
1162
1163 /* -------------------------------------------------------------- */
1164
1165 /**
1166 * Split a file into a base name and all dot-delimited 'extensions'
1167 * on the end. Some web server configurations will fall back to
1168 * earlier pseudo-'extensions' to determine type and execute
1169 * scripts, so the blacklist needs to check them all.
1170 *
1171 * @return array
1172 */
1173 function splitExtensions( $filename ) {
1174 $bits = explode( '.', $filename );
1175 $basename = array_shift( $bits );
1176 return array( $basename, $bits );
1177 }
1178
1179 /**
1180 * Perform case-insensitive match against a list of file extensions.
1181 * Returns true if the extension is in the list.
1182 *
1183 * @param string $ext
1184 * @param array $list
1185 * @return bool
1186 */
1187 function checkFileExtension( $ext, $list ) {
1188 return in_array( strtolower( $ext ), $list );
1189 }
1190
1191 /**
1192 * Perform case-insensitive match against a list of file extensions.
1193 * Returns true if any of the extensions are in the list.
1194 *
1195 * @param array $ext
1196 * @param array $list
1197 * @return bool
1198 */
1199 function checkFileExtensionList( $ext, $list ) {
1200 foreach( $ext as $e ) {
1201 if( in_array( strtolower( $e ), $list ) ) {
1202 return true;
1203 }
1204 }
1205 return false;
1206 }
1207
1208 /**
1209 * Verifies that it's ok to include the uploaded file
1210 *
1211 * @param string $tmpfile the full path of the temporary file to verify
1212 * @param string $extension The filename extension that the file is to be served with
1213 * @return mixed true of the file is verified, a WikiError object otherwise.
1214 */
1215 function verify( $tmpfile, $extension ) {
1216 #magically determine mime type
1217 $magic=& MimeMagic::singleton();
1218 $mime= $magic->guessMimeType($tmpfile,false);
1219
1220 #check mime type, if desired
1221 global $wgVerifyMimeType;
1222 if ($wgVerifyMimeType) {
1223
1224 wfDebug ( "\n\nmime: <$mime> extension: <$extension>\n\n");
1225 #check mime type against file extension
1226 if( !$this->verifyExtension( $mime, $extension ) ) {
1227 return new WikiErrorMsg( 'uploadcorrupt' );
1228 }
1229
1230 #check mime type blacklist
1231 global $wgMimeTypeBlacklist;
1232 if( isset($wgMimeTypeBlacklist) && !is_null($wgMimeTypeBlacklist)
1233 && $this->checkFileExtension( $mime, $wgMimeTypeBlacklist ) ) {
1234 return new WikiErrorMsg( 'filetype-badmime', htmlspecialchars( $mime ) );
1235 }
1236 }
1237
1238 #check for htmlish code and javascript
1239 if( $this->detectScript ( $tmpfile, $mime, $extension ) ) {
1240 return new WikiErrorMsg( 'uploadscripted' );
1241 }
1242
1243 /**
1244 * Scan the uploaded file for viruses
1245 */
1246 $virus= $this->detectVirus($tmpfile);
1247 if ( $virus ) {
1248 return new WikiErrorMsg( 'uploadvirus', htmlspecialchars($virus) );
1249 }
1250
1251 wfDebug( __METHOD__.": all clear; passing.\n" );
1252 return true;
1253 }
1254
1255 /**
1256 * Checks if the mime type of the uploaded file matches the file extension.
1257 *
1258 * @param string $mime the mime type of the uploaded file
1259 * @param string $extension The filename extension that the file is to be served with
1260 * @return bool
1261 */
1262 function verifyExtension( $mime, $extension ) {
1263 $magic =& MimeMagic::singleton();
1264
1265 if ( ! $mime || $mime == 'unknown' || $mime == 'unknown/unknown' )
1266 if ( ! $magic->isRecognizableExtension( $extension ) ) {
1267 wfDebug( __METHOD__.": passing file with unknown detected mime type; " .
1268 "unrecognized extension '$extension', can't verify\n" );
1269 return true;
1270 } else {
1271 wfDebug( __METHOD__.": rejecting file with unknown detected mime type; ".
1272 "recognized extension '$extension', so probably invalid file\n" );
1273 return false;
1274 }
1275
1276 $match= $magic->isMatchingExtension($extension,$mime);
1277
1278 if ($match===NULL) {
1279 wfDebug( __METHOD__.": no file extension known for mime type $mime, passing file\n" );
1280 return true;
1281 } elseif ($match===true) {
1282 wfDebug( __METHOD__.": mime type $mime matches extension $extension, passing file\n" );
1283
1284 #TODO: if it's a bitmap, make sure PHP or ImageMagic resp. can handle it!
1285 return true;
1286
1287 } else {
1288 wfDebug( __METHOD__.": mime type $mime mismatches file extension $extension, rejecting file\n" );
1289 return false;
1290 }
1291 }
1292
1293 /**
1294 * Heuristic for detecting files that *could* contain JavaScript instructions or
1295 * things that may look like HTML to a browser and are thus
1296 * potentially harmful. The present implementation will produce false positives in some situations.
1297 *
1298 * @param string $file Pathname to the temporary upload file
1299 * @param string $mime The mime type of the file
1300 * @param string $extension The extension of the file
1301 * @return bool true if the file contains something looking like embedded scripts
1302 */
1303 function detectScript($file, $mime, $extension) {
1304 global $wgAllowTitlesInSVG;
1305
1306 #ugly hack: for text files, always look at the entire file.
1307 #For binarie field, just check the first K.
1308
1309 if (strpos($mime,'text/')===0) $chunk = file_get_contents( $file );
1310 else {
1311 $fp = fopen( $file, 'rb' );
1312 $chunk = fread( $fp, 1024 );
1313 fclose( $fp );
1314 }
1315
1316 $chunk= strtolower( $chunk );
1317
1318 if (!$chunk) return false;
1319
1320 #decode from UTF-16 if needed (could be used for obfuscation).
1321 if (substr($chunk,0,2)=="\xfe\xff") $enc= "UTF-16BE";
1322 elseif (substr($chunk,0,2)=="\xff\xfe") $enc= "UTF-16LE";
1323 else $enc= NULL;
1324
1325 if ($enc) $chunk= iconv($enc,"ASCII//IGNORE",$chunk);
1326
1327 $chunk= trim($chunk);
1328
1329 #FIXME: convert from UTF-16 if necessarry!
1330
1331 wfDebug("SpecialUpload::detectScript: checking for embedded scripts and HTML stuff\n");
1332
1333 #check for HTML doctype
1334 if (eregi("<!DOCTYPE *X?HTML",$chunk)) return true;
1335
1336 /**
1337 * Internet Explorer for Windows performs some really stupid file type
1338 * autodetection which can cause it to interpret valid image files as HTML
1339 * and potentially execute JavaScript, creating a cross-site scripting
1340 * attack vectors.
1341 *
1342 * Apple's Safari browser also performs some unsafe file type autodetection
1343 * which can cause legitimate files to be interpreted as HTML if the
1344 * web server is not correctly configured to send the right content-type
1345 * (or if you're really uploading plain text and octet streams!)
1346 *
1347 * Returns true if IE is likely to mistake the given file for HTML.
1348 * Also returns true if Safari would mistake the given file for HTML
1349 * when served with a generic content-type.
1350 */
1351
1352 $tags = array(
1353 '<body',
1354 '<head',
1355 '<html', #also in safari
1356 '<img',
1357 '<pre',
1358 '<script', #also in safari
1359 '<table'
1360 );
1361 if( ! $wgAllowTitlesInSVG && $extension !== 'svg' && $mime !== 'image/svg' ) {
1362 $tags[] = '<title';
1363 }
1364
1365 foreach( $tags as $tag ) {
1366 if( false !== strpos( $chunk, $tag ) ) {
1367 return true;
1368 }
1369 }
1370
1371 /*
1372 * look for javascript
1373 */
1374
1375 #resolve entity-refs to look at attributes. may be harsh on big files... cache result?
1376 $chunk = Sanitizer::decodeCharReferences( $chunk );
1377
1378 #look for script-types
1379 if (preg_match('!type\s*=\s*[\'"]?\s*(?:\w*/)?(?:ecma|java)!sim',$chunk)) return true;
1380
1381 #look for html-style script-urls
1382 if (preg_match('!(?:href|src|data)\s*=\s*[\'"]?\s*(?:ecma|java)script:!sim',$chunk)) return true;
1383
1384 #look for css-style script-urls
1385 if (preg_match('!url\s*\(\s*[\'"]?\s*(?:ecma|java)script:!sim',$chunk)) return true;
1386
1387 wfDebug("SpecialUpload::detectScript: no scripts found\n");
1388 return false;
1389 }
1390
1391 /**
1392 * Generic wrapper function for a virus scanner program.
1393 * This relies on the $wgAntivirus and $wgAntivirusSetup variables.
1394 * $wgAntivirusRequired may be used to deny upload if the scan fails.
1395 *
1396 * @param string $file Pathname to the temporary upload file
1397 * @return mixed false if not virus is found, NULL if the scan fails or is disabled,
1398 * or a string containing feedback from the virus scanner if a virus was found.
1399 * If textual feedback is missing but a virus was found, this function returns true.
1400 */
1401 function detectVirus($file) {
1402 global $wgAntivirus, $wgAntivirusSetup, $wgAntivirusRequired, $wgOut;
1403
1404 if ( !$wgAntivirus ) {
1405 wfDebug( __METHOD__.": virus scanner disabled\n");
1406 return NULL;
1407 }
1408
1409 if ( !$wgAntivirusSetup[$wgAntivirus] ) {
1410 wfDebug( __METHOD__.": unknown virus scanner: $wgAntivirus\n" );
1411 # @TODO: localise
1412 $wgOut->addHTML( "<div class='error'>Bad configuration: unknown virus scanner: <i>$wgAntivirus</i></div>\n" );
1413 return "unknown antivirus: $wgAntivirus";
1414 }
1415
1416 # look up scanner configuration
1417 $command = $wgAntivirusSetup[$wgAntivirus]["command"];
1418 $exitCodeMap = $wgAntivirusSetup[$wgAntivirus]["codemap"];
1419 $msgPattern = isset( $wgAntivirusSetup[$wgAntivirus]["messagepattern"] ) ?
1420 $wgAntivirusSetup[$wgAntivirus]["messagepattern"] : null;
1421
1422 if ( strpos( $command,"%f" ) === false ) {
1423 # simple pattern: append file to scan
1424 $command .= " " . wfEscapeShellArg( $file );
1425 } else {
1426 # complex pattern: replace "%f" with file to scan
1427 $command = str_replace( "%f", wfEscapeShellArg( $file ), $command );
1428 }
1429
1430 wfDebug( __METHOD__.": running virus scan: $command \n" );
1431
1432 # execute virus scanner
1433 $exitCode = false;
1434
1435 #NOTE: there's a 50 line workaround to make stderr redirection work on windows, too.
1436 # that does not seem to be worth the pain.
1437 # Ask me (Duesentrieb) about it if it's ever needed.
1438 $output = array();
1439 if ( wfIsWindows() ) {
1440 exec( "$command", $output, $exitCode );
1441 } else {
1442 exec( "$command 2>&1", $output, $exitCode );
1443 }
1444
1445 # map exit code to AV_xxx constants.
1446 $mappedCode = $exitCode;
1447 if ( $exitCodeMap ) {
1448 if ( isset( $exitCodeMap[$exitCode] ) ) {
1449 $mappedCode = $exitCodeMap[$exitCode];
1450 } elseif ( isset( $exitCodeMap["*"] ) ) {
1451 $mappedCode = $exitCodeMap["*"];
1452 }
1453 }
1454
1455 if ( $mappedCode === AV_SCAN_FAILED ) {
1456 # scan failed (code was mapped to false by $exitCodeMap)
1457 wfDebug( __METHOD__.": failed to scan $file (code $exitCode).\n" );
1458
1459 if ( $wgAntivirusRequired ) {
1460 return "scan failed (code $exitCode)";
1461 } else {
1462 return NULL;
1463 }
1464 } else if ( $mappedCode === AV_SCAN_ABORTED ) {
1465 # scan failed because filetype is unknown (probably imune)
1466 wfDebug( __METHOD__.": unsupported file type $file (code $exitCode).\n" );
1467 return NULL;
1468 } else if ( $mappedCode === AV_NO_VIRUS ) {
1469 # no virus found
1470 wfDebug( __METHOD__.": file passed virus scan.\n" );
1471 return false;
1472 } else {
1473 $output = join( "\n", $output );
1474 $output = trim( $output );
1475
1476 if ( !$output ) {
1477 $output = true; #if there's no output, return true
1478 } elseif ( $msgPattern ) {
1479 $groups = array();
1480 if ( preg_match( $msgPattern, $output, $groups ) ) {
1481 if ( $groups[1] ) {
1482 $output = $groups[1];
1483 }
1484 }
1485 }
1486
1487 wfDebug( __METHOD__.": FOUND VIRUS! scanner feedback: $output" );
1488 return $output;
1489 }
1490 }
1491
1492 /**
1493 * Check if the temporary file is MacBinary-encoded, as some uploads
1494 * from Internet Explorer on Mac OS Classic and Mac OS X will be.
1495 * If so, the data fork will be extracted to a second temporary file,
1496 * which will then be checked for validity and either kept or discarded.
1497 *
1498 * @access private
1499 */
1500 function checkMacBinary() {
1501 $macbin = new MacBinary( $this->mTempPath );
1502 if( $macbin->isValid() ) {
1503 $dataFile = tempnam( wfTempDir(), "WikiMacBinary" );
1504 $dataHandle = fopen( $dataFile, 'wb' );
1505
1506 wfDebug( "SpecialUpload::checkMacBinary: Extracting MacBinary data fork to $dataFile\n" );
1507 $macbin->extractData( $dataHandle );
1508
1509 $this->mTempPath = $dataFile;
1510 $this->mFileSize = $macbin->dataForkLength();
1511
1512 // We'll have to manually remove the new file if it's not kept.
1513 $this->mRemoveTempFile = true;
1514 }
1515 $macbin->close();
1516 }
1517
1518 /**
1519 * If we've modified the upload file we need to manually remove it
1520 * on exit to clean up.
1521 * @access private
1522 */
1523 function cleanupTempFile() {
1524 if ( $this->mRemoveTempFile && file_exists( $this->mTempPath ) ) {
1525 wfDebug( "SpecialUpload::cleanupTempFile: Removing temporary file {$this->mTempPath}\n" );
1526 unlink( $this->mTempPath );
1527 }
1528 }
1529
1530 /**
1531 * Check if there's an overwrite conflict and, if so, if restrictions
1532 * forbid this user from performing the upload.
1533 *
1534 * @return mixed true on success, WikiError on failure
1535 * @access private
1536 */
1537 function checkOverwrite( $name ) {
1538 $img = wfFindFile( $name );
1539
1540 $error = '';
1541 if( $img ) {
1542 global $wgUser, $wgOut;
1543 if( $img->isLocal() ) {
1544 if( !self::userCanReUpload( $wgUser, $img->name ) ) {
1545 $error = 'fileexists-forbidden';
1546 }
1547 } else {
1548 if( !$wgUser->isAllowed( 'reupload' ) ||
1549 !$wgUser->isAllowed( 'reupload-shared' ) ) {
1550 $error = "fileexists-shared-forbidden";
1551 }
1552 }
1553 }
1554
1555 if( $error ) {
1556 $errorText = wfMsg( $error, wfEscapeWikiText( $img->getName() ) );
1557 return $errorText;
1558 }
1559
1560 // Rockin', go ahead and upload
1561 return true;
1562 }
1563
1564 /**
1565 * Check if a user is the last uploader
1566 *
1567 * @param User $user
1568 * @param string $img, image name
1569 * @return bool
1570 */
1571 public static function userCanReUpload( User $user, $img ) {
1572 if( $user->isAllowed( 'reupload' ) )
1573 return true; // non-conditional
1574 if( !$user->isAllowed( 'reupload-own' ) )
1575 return false;
1576
1577 $dbr = wfGetDB( DB_SLAVE );
1578 $row = $dbr->selectRow('image',
1579 /* SELECT */ 'img_user',
1580 /* WHERE */ array( 'img_name' => $img )
1581 );
1582 if ( !$row )
1583 return false;
1584
1585 return $user->getID() == $row->img_user;
1586 }
1587
1588 /**
1589 * Display an error with a wikitext description
1590 */
1591 function showError( $description ) {
1592 global $wgOut;
1593 $wgOut->setPageTitle( wfMsg( "internalerror" ) );
1594 $wgOut->setRobotpolicy( "noindex,nofollow" );
1595 $wgOut->setArticleRelated( false );
1596 $wgOut->enableClientCache( false );
1597 $wgOut->addWikiText( $description );
1598 }
1599
1600 /**
1601 * Get the initial image page text based on a comment and optional file status information
1602 */
1603 static function getInitialPageText( $comment, $license, $copyStatus, $source ) {
1604 global $wgUseCopyrightUpload;
1605 if ( $wgUseCopyrightUpload ) {
1606 if ( $license != '' ) {
1607 $licensetxt = '== ' . wfMsgForContent( 'license' ) . " ==\n" . '{{' . $license . '}}' . "\n";
1608 }
1609 $pageText = '== ' . wfMsg ( 'filedesc' ) . " ==\n" . $comment . "\n" .
1610 '== ' . wfMsgForContent ( 'filestatus' ) . " ==\n" . $copyStatus . "\n" .
1611 "$licensetxt" .
1612 '== ' . wfMsgForContent ( 'filesource' ) . " ==\n" . $source ;
1613 } else {
1614 if ( $license != '' ) {
1615 $filedesc = $comment == '' ? '' : '== ' . wfMsg ( 'filedesc' ) . " ==\n" . $comment . "\n";
1616 $pageText = $filedesc .
1617 '== ' . wfMsgForContent ( 'license' ) . " ==\n" . '{{' . $license . '}}' . "\n";
1618 } else {
1619 $pageText = $comment;
1620 }
1621 }
1622 return $pageText;
1623 }
1624
1625 /**
1626 * If there are rows in the deletion log for this file, show them,
1627 * along with a nice little note for the user
1628 *
1629 * @param OutputPage $out
1630 * @param string filename
1631 */
1632 private function showDeletionLog( $out, $filename ) {
1633 $reader = new LogReader(
1634 new FauxRequest(
1635 array(
1636 'page' => $filename,
1637 'type' => 'delete',
1638 )
1639 )
1640 );
1641 if( $reader->hasRows() ) {
1642 $out->addHtml( '<div id="mw-upload-deleted-warn">' );
1643 $out->addWikiMsg( 'upload-wasdeleted' );
1644 $viewer = new LogViewer( $reader );
1645 $viewer->showList( $out );
1646 $out->addHtml( '</div>' );
1647 }
1648 }
1649 }