* (bug 14772) Disallow moving images to invalid titles
[lhc/web/wiklou.git] / includes / specials / SpecialUpload.php
1 <?php
2 /**
3 * @file
4 * @ingroup 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 * @ingroup 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->showErrorPage( '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->showErrorPage( '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->showErrorPage( 'upload-misc-error', 'upload-misc-error-text' );
199 else
200 $wgOut->showErrorPage( "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 # Because it is probably checked and shouldn't be
263 $this->mIgnoreWarning = false;
264
265 $this->mainUploadForm();
266 } else if( 'submit' == $this->mAction || $this->mUploadClicked ) {
267 $this->processUpload();
268 } else {
269 $this->mainUploadForm();
270 }
271
272 $this->cleanupTempFile();
273 }
274
275 /**
276 * Do the upload
277 * Checks are made in SpecialUpload::execute()
278 *
279 * @access private
280 */
281 function processUpload(){
282 global $wgUser, $wgOut, $wgFileExtensions, $wgLang;
283 $details = null;
284 $value = null;
285 $value = $this->internalProcessUpload( $details );
286
287 switch($value) {
288 case self::SUCCESS:
289 $wgOut->redirect( $this->mLocalFile->getTitle()->getFullURL() );
290 break;
291
292 case self::BEFORE_PROCESSING:
293 break;
294
295 case self::LARGE_FILE_SERVER:
296 $this->mainUploadForm( wfMsgHtml( 'largefileserver' ) );
297 break;
298
299 case self::EMPTY_FILE:
300 $this->mainUploadForm( wfMsgHtml( 'emptyfile' ) );
301 break;
302
303 case self::MIN_LENGHT_PARTNAME:
304 $this->mainUploadForm( wfMsgHtml( 'minlength1' ) );
305 break;
306
307 case self::ILLEGAL_FILENAME:
308 $filtered = $details['filtered'];
309 $this->uploadError( wfMsgWikiHtml( 'illegalfilename', htmlspecialchars( $filtered ) ) );
310 break;
311
312 case self::PROTECTED_PAGE:
313 $wgOut->showPermissionsErrorPage( $details['permissionserrors'] );
314 break;
315
316 case self::OVERWRITE_EXISTING_FILE:
317 $errorText = $details['overwrite'];
318 $this->uploadError( $wgOut->parse( $errorText ) );
319 break;
320
321 case self::FILETYPE_MISSING:
322 $this->uploadError( wfMsgExt( 'filetype-missing', array ( 'parseinline' ) ) );
323 break;
324
325 case self::FILETYPE_BADTYPE:
326 $finalExt = $details['finalExt'];
327 $this->uploadError(
328 wfMsgExt( 'filetype-banned-type',
329 array( 'parseinline' ),
330 htmlspecialchars( $finalExt ),
331 implode(
332 wfMsgExt( 'comma-separator', array( 'escapenoentities' ) ),
333 $wgFileExtensions
334 ),
335 $wgLang->formatNum( count($wgFileExtensions) )
336 )
337 );
338 break;
339
340 case self::VERIFICATION_ERROR:
341 $veri = $details['veri'];
342 $this->uploadError( $veri->toString() );
343 break;
344
345 case self::UPLOAD_VERIFICATION_ERROR:
346 $error = $details['error'];
347 $this->uploadError( $error );
348 break;
349
350 case self::UPLOAD_WARNING:
351 $warning = $details['warning'];
352 $this->uploadWarning( $warning );
353 break;
354
355 case self::INTERNAL_ERROR:
356 $internal = $details['internal'];
357 $this->showError( $internal );
358 break;
359
360 default:
361 throw new MWException( __METHOD__ . ": Unknown value `{$value}`" );
362 }
363 }
364
365 /**
366 * Really do the upload
367 * Checks are made in SpecialUpload::execute()
368 *
369 * @param array $resultDetails contains result-specific dict of additional values
370 *
371 * @access private
372 */
373 function internalProcessUpload( &$resultDetails ) {
374 global $wgUser;
375
376 if( !wfRunHooks( 'UploadForm:BeforeProcessing', array( &$this ) ) )
377 {
378 wfDebug( "Hook 'UploadForm:BeforeProcessing' broke processing the file." );
379 return self::BEFORE_PROCESSING;
380 }
381
382 /**
383 * If there was no filename or a zero size given, give up quick.
384 */
385 if( trim( $this->mSrcName ) == '' || empty( $this->mFileSize ) ) {
386 return self::EMPTY_FILE;
387 }
388
389 /* Check for curl error */
390 if( $this->mCurlError ) {
391 return self::BEFORE_PROCESSING;
392 }
393
394 /**
395 * Chop off any directories in the given filename. Then
396 * filter out illegal characters, and try to make a legible name
397 * out of it. We'll strip some silently that Title would die on.
398 */
399 if( $this->mDesiredDestName ) {
400 $basename = $this->mDesiredDestName;
401 } else {
402 $basename = $this->mSrcName;
403 }
404 $filtered = wfStripIllegalFilenameChars( $basename );
405
406 /**
407 * We'll want to blacklist against *any* 'extension', and use
408 * only the final one for the whitelist.
409 */
410 list( $partname, $ext ) = $this->splitExtensions( $filtered );
411
412 if( count( $ext ) ) {
413 $finalExt = $ext[count( $ext ) - 1];
414 } else {
415 $finalExt = '';
416 }
417
418 # If there was more than one "extension", reassemble the base
419 # filename to prevent bogus complaints about length
420 if( count( $ext ) > 1 ) {
421 for( $i = 0; $i < count( $ext ) - 1; $i++ )
422 $partname .= '.' . $ext[$i];
423 }
424
425 if( strlen( $partname ) < 1 ) {
426 return self::MIN_LENGHT_PARTNAME;
427 }
428
429
430 $nt = Title::makeTitleSafe( NS_IMAGE, $filtered );
431 if( is_null( $nt ) ) {
432 $resultDetails = array( 'filtered' => $filtered );
433 return self::ILLEGAL_FILENAME;
434 }
435 $this->mLocalFile = wfLocalFile( $nt );
436 $this->mDestName = $this->mLocalFile->getName();
437
438 /**
439 * If the image is protected, non-sysop users won't be able
440 * to modify it by uploading a new revision.
441 */
442 $permErrors = $nt->getUserPermissionsErrors( 'edit', $wgUser );
443 $permErrorsUpload = $nt->getUserPermissionsErrors( 'upload', $wgUser );
444 $permErrorsCreate = ( $nt->exists() ? array() : $nt->getUserPermissionsErrors( 'create', $wgUser ) );
445
446 if( $permErrors || $permErrorsUpload || $permErrorsCreate ) {
447 // merge all the problems into one list, avoiding duplicates
448 $permErrors = array_merge( $permErrors, wfArrayDiff2( $permErrorsUpload, $permErrors ) );
449 $permErrors = array_merge( $permErrors, wfArrayDiff2( $permErrorsCreate, $permErrors ) );
450 $resultDetails = array( 'permissionserrors' => $permErrors );
451 return self::PROTECTED_PAGE;
452 }
453
454 /**
455 * In some cases we may forbid overwriting of existing files.
456 */
457 $overwrite = $this->checkOverwrite( $this->mDestName );
458 if( $overwrite !== true ) {
459 $resultDetails = array( 'overwrite' => $overwrite );
460 return self::OVERWRITE_EXISTING_FILE;
461 }
462
463 /* Don't allow users to override the blacklist (check file extension) */
464 global $wgCheckFileExtensions, $wgStrictFileExtensions;
465 global $wgFileExtensions, $wgFileBlacklist;
466 if ($finalExt == '') {
467 return self::FILETYPE_MISSING;
468 } elseif ( $this->checkFileExtensionList( $ext, $wgFileBlacklist ) ||
469 ($wgCheckFileExtensions && $wgStrictFileExtensions &&
470 !$this->checkFileExtension( $finalExt, $wgFileExtensions ) ) ) {
471 $resultDetails = array( 'finalExt' => $finalExt );
472 return self::FILETYPE_BADTYPE;
473 }
474
475 /**
476 * Look at the contents of the file; if we can recognize the
477 * type but it's corrupt or data of the wrong type, we should
478 * probably not accept it.
479 */
480 if( !$this->mStashed ) {
481 $this->mFileProps = File::getPropsFromPath( $this->mTempPath, $finalExt );
482 $this->checkMacBinary();
483 $veri = $this->verify( $this->mTempPath, $finalExt );
484
485 if( $veri !== true ) { //it's a wiki error...
486 $resultDetails = array( 'veri' => $veri );
487 return self::VERIFICATION_ERROR;
488 }
489
490 /**
491 * Provide an opportunity for extensions to add further checks
492 */
493 $error = '';
494 if( !wfRunHooks( 'UploadVerification',
495 array( $this->mDestName, $this->mTempPath, &$error ) ) ) {
496 $resultDetails = array( 'error' => $error );
497 return self::UPLOAD_VERIFICATION_ERROR;
498 }
499 }
500
501
502 /**
503 * Check for non-fatal conditions
504 */
505 if ( ! $this->mIgnoreWarning ) {
506 $warning = '';
507
508 global $wgCapitalLinks;
509 if( $wgCapitalLinks ) {
510 $filtered = ucfirst( $filtered );
511 }
512 if( $basename != $filtered ) {
513 $warning .= '<li>'.wfMsgHtml( 'badfilename', htmlspecialchars( $this->mDestName ) ).'</li>';
514 }
515
516 global $wgCheckFileExtensions;
517 if ( $wgCheckFileExtensions ) {
518 if ( !$this->checkFileExtension( $finalExt, $wgFileExtensions ) ) {
519 global $wgLang;
520 $warning .= '<li>' .
521 wfMsgExt( 'filetype-unwanted-type',
522 array( 'parseinline' ),
523 htmlspecialchars( $finalExt ),
524 implode(
525 wfMsgExt( 'comma-separator', array( 'escapenoentities' ) ),
526 $wgFileExtensions
527 ),
528 $wgLang->formatNum( count($wgFileExtensions) )
529 ) . '</li>';
530 }
531 }
532
533 global $wgUploadSizeWarning;
534 if ( $wgUploadSizeWarning && ( $this->mFileSize > $wgUploadSizeWarning ) ) {
535 $skin = $wgUser->getSkin();
536 $wsize = $skin->formatSize( $wgUploadSizeWarning );
537 $asize = $skin->formatSize( $this->mFileSize );
538 $warning .= '<li>' . wfMsgHtml( 'large-file', $wsize, $asize ) . '</li>';
539 }
540 if ( $this->mFileSize == 0 ) {
541 $warning .= '<li>'.wfMsgHtml( 'emptyfile' ).'</li>';
542 }
543
544 if ( !$this->mDestWarningAck ) {
545 $warning .= self::getExistsWarning( $this->mLocalFile );
546 }
547
548 $warning .= $this->getDupeWarning( $this->mTempPath );
549
550 if( $warning != '' ) {
551 /**
552 * Stash the file in a temporary location; the user can choose
553 * to let it through and we'll complete the upload then.
554 */
555 $resultDetails = array( 'warning' => $warning );
556 return self::UPLOAD_WARNING;
557 }
558 }
559
560 /**
561 * Try actually saving the thing...
562 * It will show an error form on failure.
563 */
564 $pageText = self::getInitialPageText( $this->mComment, $this->mLicense,
565 $this->mCopyrightStatus, $this->mCopyrightSource );
566
567 $status = $this->mLocalFile->upload( $this->mTempPath, $this->mComment, $pageText,
568 File::DELETE_SOURCE, $this->mFileProps );
569 if ( !$status->isGood() ) {
570 $resultDetails = array( 'internal' => $status->getWikiText() );
571 return self::INTERNAL_ERROR;
572 } else {
573 if ( $this->mWatchthis ) {
574 global $wgUser;
575 $wgUser->addWatch( $this->mLocalFile->getTitle() );
576 }
577 // Success, redirect to description page
578 $img = null; // @todo: added to avoid passing a ref to null - should this be defined somewhere?
579 wfRunHooks( 'UploadComplete', array( &$this ) );
580 return self::SUCCESS;
581 }
582 }
583
584 /**
585 * Do existence checks on a file and produce a warning
586 * This check is static and can be done pre-upload via AJAX
587 * Returns an HTML fragment consisting of one or more LI elements if there is a warning
588 * Returns an empty string if there is no warning
589 */
590 static function getExistsWarning( $file ) {
591 global $wgUser, $wgContLang;
592 // Check for uppercase extension. We allow these filenames but check if an image
593 // with lowercase extension exists already
594 $warning = '';
595 $align = $wgContLang->isRtl() ? 'left' : 'right';
596
597 if( strpos( $file->getName(), '.' ) == false ) {
598 $partname = $file->getName();
599 $rawExtension = '';
600 } else {
601 $n = strrpos( $file->getName(), '.' );
602 $rawExtension = substr( $file->getName(), $n + 1 );
603 $partname = substr( $file->getName(), 0, $n );
604 }
605
606 $sk = $wgUser->getSkin();
607
608 if ( $rawExtension != $file->getExtension() ) {
609 // We're not using the normalized form of the extension.
610 // Normal form is lowercase, using most common of alternate
611 // extensions (eg 'jpg' rather than 'JPEG').
612 //
613 // Check for another file using the normalized form...
614 $nt_lc = Title::makeTitle( NS_IMAGE, $partname . '.' . $file->getExtension() );
615 $file_lc = wfLocalFile( $nt_lc );
616 } else {
617 $file_lc = false;
618 }
619
620 if( $file->exists() ) {
621 $dlink = $sk->makeKnownLinkObj( $file->getTitle() );
622 if ( $file->allowInlineDisplay() ) {
623 $dlink2 = $sk->makeImageLinkObj( $file->getTitle(), wfMsgExt( 'fileexists-thumb', 'parseinline' ),
624 $file->getName(), $align, array(), false, true );
625 } elseif ( !$file->allowInlineDisplay() && $file->isSafeFile() ) {
626 $icon = $file->iconThumb();
627 $dlink2 = '<div style="float:' . $align . '" id="mw-media-icon">' .
628 $icon->toHtml( array( 'desc-link' => true ) ) . '<br />' . $dlink . '</div>';
629 } else {
630 $dlink2 = '';
631 }
632
633 $warning .= '<li>' . wfMsgExt( 'fileexists', array('parseinline','replaceafter'), $dlink ) . '</li>' . $dlink2;
634
635 } elseif( $file->getTitle()->getArticleID() ) {
636 $lnk = $sk->makeKnownLinkObj( $file->getTitle(), '', 'redirect=no' );
637 $warning .= '<li>' . wfMsgExt( 'filepageexists', array( 'parseinline', 'replaceafter' ), $lnk ) . '</li>';
638 } elseif ( $file_lc && $file_lc->exists() ) {
639 # Check if image with lowercase extension exists.
640 # It's not forbidden but in 99% it makes no sense to upload the same filename with uppercase extension
641 $dlink = $sk->makeKnownLinkObj( $nt_lc );
642 if ( $file_lc->allowInlineDisplay() ) {
643 $dlink2 = $sk->makeImageLinkObj( $nt_lc, wfMsgExt( 'fileexists-thumb', 'parseinline' ),
644 $nt_lc->getText(), $align, array(), false, true );
645 } elseif ( !$file_lc->allowInlineDisplay() && $file_lc->isSafeFile() ) {
646 $icon = $file_lc->iconThumb();
647 $dlink2 = '<div style="float:' . $align . '" id="mw-media-icon">' .
648 $icon->toHtml( array( 'desc-link' => true ) ) . '<br />' . $dlink . '</div>';
649 } else {
650 $dlink2 = '';
651 }
652
653 $warning .= '<li>' .
654 wfMsgExt( 'fileexists-extension', 'parsemag',
655 $file->getTitle()->getPrefixedText(), $dlink ) .
656 '</li>' . $dlink2;
657
658 } elseif ( ( substr( $partname , 3, 3 ) == 'px-' || substr( $partname , 2, 3 ) == 'px-' )
659 && ereg( "[0-9]{2}" , substr( $partname , 0, 2) ) )
660 {
661 # Check for filenames like 50px- or 180px-, these are mostly thumbnails
662 $nt_thb = Title::newFromText( substr( $partname , strpos( $partname , '-' ) +1 ) . '.' . $rawExtension );
663 $file_thb = wfLocalFile( $nt_thb );
664 if ($file_thb->exists() ) {
665 # Check if an image without leading '180px-' (or similiar) exists
666 $dlink = $sk->makeKnownLinkObj( $nt_thb);
667 if ( $file_thb->allowInlineDisplay() ) {
668 $dlink2 = $sk->makeImageLinkObj( $nt_thb,
669 wfMsgExt( 'fileexists-thumb', 'parseinline' ),
670 $nt_thb->getText(), $align, array(), false, true );
671 } elseif ( !$file_thb->allowInlineDisplay() && $file_thb->isSafeFile() ) {
672 $icon = $file_thb->iconThumb();
673 $dlink2 = '<div style="float:' . $align . '" id="mw-media-icon">' .
674 $icon->toHtml( array( 'desc-link' => true ) ) . '<br />' .
675 $dlink . '</div>';
676 } else {
677 $dlink2 = '';
678 }
679
680 $warning .= '<li>' . wfMsgExt( 'fileexists-thumbnail-yes', 'parsemag', $dlink ) .
681 '</li>' . $dlink2;
682 } else {
683 # Image w/o '180px-' does not exists, but we do not like these filenames
684 $warning .= '<li>' . wfMsgExt( 'file-thumbnail-no', 'parseinline' ,
685 substr( $partname , 0, strpos( $partname , '-' ) +1 ) ) . '</li>';
686 }
687 }
688
689 $filenamePrefixBlacklist = self::getFilenamePrefixBlacklist();
690 # Do the match
691 foreach( $filenamePrefixBlacklist as $prefix ) {
692 if ( substr( $partname, 0, strlen( $prefix ) ) == $prefix ) {
693 $warning .= '<li>' . wfMsgExt( 'filename-bad-prefix', 'parseinline', $prefix ) . '</li>';
694 break;
695 }
696 }
697
698 if ( $file->wasDeleted() && !$file->exists() ) {
699 # If the file existed before and was deleted, warn the user of this
700 # Don't bother doing so if the file exists now, however
701 $ltitle = SpecialPage::getTitleFor( 'Log' );
702 $llink = $sk->makeKnownLinkObj( $ltitle, wfMsgHtml( 'deletionlog' ),
703 'type=delete&page=' . $file->getTitle()->getPrefixedUrl() );
704 $warning .= '<li>' . wfMsgWikiHtml( 'filewasdeleted', $llink ) . '</li>';
705 }
706 return $warning;
707 }
708
709 /**
710 * Get a list of warnings
711 *
712 * @param string local filename, e.g. 'file exists', 'non-descriptive filename'
713 * @return array list of warning messages
714 */
715 static function ajaxGetExistsWarning( $filename ) {
716 $file = wfFindFile( $filename );
717 if( !$file ) {
718 // Force local file so we have an object to do further checks against
719 // if there isn't an exact match...
720 $file = wfLocalFile( $filename );
721 }
722 $s = '&nbsp;';
723 if ( $file ) {
724 $warning = self::getExistsWarning( $file );
725 if ( $warning !== '' ) {
726 $s = "<ul>$warning</ul>";
727 }
728 }
729 return $s;
730 }
731
732 /**
733 * Render a preview of a given license for the AJAX preview on upload
734 *
735 * @param string $license
736 * @return string
737 */
738 public static function ajaxGetLicensePreview( $license ) {
739 global $wgParser, $wgUser;
740 $text = '{{' . $license . '}}';
741 $title = Title::makeTitle( NS_IMAGE, 'Sample.jpg' );
742 $options = ParserOptions::newFromUser( $wgUser );
743
744 // Expand subst: first, then live templates...
745 $text = $wgParser->preSaveTransform( $text, $title, $wgUser, $options );
746 $output = $wgParser->parse( $text, $title, $options );
747
748 return $output->getText();
749 }
750
751 /**
752 * Check for duplicate files and throw up a warning before the upload
753 * completes.
754 */
755 function getDupeWarning( $tempfile ) {
756 $hash = File::sha1Base36( $tempfile );
757 $dupes = RepoGroup::singleton()->findBySha1( $hash );
758 if( $dupes ) {
759 global $wgOut;
760 $msg = "<gallery>";
761 foreach( $dupes as $file ) {
762 $title = $file->getTitle();
763 $msg .= $title->getPrefixedText() .
764 "|" . $title->getText() . "\n";
765 }
766 $msg .= "</gallery>";
767 return "<li>" .
768 wfMsgExt( "file-exists-duplicate", array( "parse" ), count( $dupes ) ) .
769 $wgOut->parse( $msg ) .
770 "</li>\n";
771 } else {
772 return '';
773 }
774 }
775
776 /**
777 * Get a list of blacklisted filename prefixes from [[MediaWiki:filename-prefix-blacklist]]
778 *
779 * @return array list of prefixes
780 */
781 public static function getFilenamePrefixBlacklist() {
782 $blacklist = array();
783 $message = wfMsgForContent( 'filename-prefix-blacklist' );
784 if( $message && !( wfEmptyMsg( 'filename-prefix-blacklist', $message ) || $message == '-' ) ) {
785 $lines = explode( "\n", $message );
786 foreach( $lines as $line ) {
787 // Remove comment lines
788 $comment = substr( trim( $line ), 0, 1 );
789 if ( $comment == '#' || $comment == '' ) {
790 continue;
791 }
792 // Remove additional comments after a prefix
793 $comment = strpos( $line, '#' );
794 if ( $comment > 0 ) {
795 $line = substr( $line, 0, $comment-1 );
796 }
797 $blacklist[] = trim( $line );
798 }
799 }
800 return $blacklist;
801 }
802
803 /**
804 * Stash a file in a temporary directory for later processing
805 * after the user has confirmed it.
806 *
807 * If the user doesn't explicitly cancel or accept, these files
808 * can accumulate in the temp directory.
809 *
810 * @param string $saveName - the destination filename
811 * @param string $tempName - the source temporary file to save
812 * @return string - full path the stashed file, or false on failure
813 * @access private
814 */
815 function saveTempUploadedFile( $saveName, $tempName ) {
816 global $wgOut;
817 $repo = RepoGroup::singleton()->getLocalRepo();
818 $status = $repo->storeTemp( $saveName, $tempName );
819 if ( !$status->isGood() ) {
820 $this->showError( $status->getWikiText() );
821 return false;
822 } else {
823 return $status->value;
824 }
825 }
826
827 /**
828 * Stash a file in a temporary directory for later processing,
829 * and save the necessary descriptive info into the session.
830 * Returns a key value which will be passed through a form
831 * to pick up the path info on a later invocation.
832 *
833 * @return int
834 * @access private
835 */
836 function stashSession() {
837 $stash = $this->saveTempUploadedFile( $this->mDestName, $this->mTempPath );
838
839 if( !$stash ) {
840 # Couldn't save the file.
841 return false;
842 }
843
844 $key = mt_rand( 0, 0x7fffffff );
845 $_SESSION['wsUploadData'][$key] = array(
846 'mTempPath' => $stash,
847 'mFileSize' => $this->mFileSize,
848 'mSrcName' => $this->mSrcName,
849 'mFileProps' => $this->mFileProps,
850 'version' => self::SESSION_VERSION,
851 );
852 return $key;
853 }
854
855 /**
856 * Remove a temporarily kept file stashed by saveTempUploadedFile().
857 * @access private
858 * @return success
859 */
860 function unsaveUploadedFile() {
861 global $wgOut;
862 $repo = RepoGroup::singleton()->getLocalRepo();
863 $success = $repo->freeTemp( $this->mTempPath );
864 if ( ! $success ) {
865 $wgOut->showFileDeleteError( $this->mTempPath );
866 return false;
867 } else {
868 return true;
869 }
870 }
871
872 /* -------------------------------------------------------------- */
873
874 /**
875 * @param string $error as HTML
876 * @access private
877 */
878 function uploadError( $error ) {
879 global $wgOut;
880 $wgOut->addHTML( '<h2>' . wfMsgHtml( 'uploadwarning' ) . "</h2>\n" );
881 $wgOut->addHTML( '<span class="error">' . $error . '</span>' );
882 }
883
884 /**
885 * There's something wrong with this file, not enough to reject it
886 * totally but we require manual intervention to save it for real.
887 * Stash it away, then present a form asking to confirm or cancel.
888 *
889 * @param string $warning as HTML
890 * @access private
891 */
892 function uploadWarning( $warning ) {
893 global $wgOut;
894 global $wgUseCopyrightUpload;
895
896 $this->mSessionKey = $this->stashSession();
897 if( !$this->mSessionKey ) {
898 # Couldn't save file; an error has been displayed so let's go.
899 return;
900 }
901
902 $wgOut->addHTML( '<h2>' . wfMsgHtml( 'uploadwarning' ) . "</h2>\n" );
903 $wgOut->addHTML( '<ul class="warning">' . $warning . "</ul>\n" );
904
905 $titleObj = SpecialPage::getTitleFor( 'Upload' );
906
907 if ( $wgUseCopyrightUpload ) {
908 $copyright = Xml::hidden( 'wpUploadCopyStatus', $this->mCopyrightStatus ) . "\n" .
909 Xml::hidden( 'wpUploadSource', $this->mCopyrightSource ) . "\n";
910 } else {
911 $copyright = '';
912 }
913
914 $wgOut->addHTML(
915 Xml::openElement( 'form', array( 'method' => 'post', 'action' => $titleObj->getLocalURL( 'action=submit' ),
916 'enctype' => 'multipart/form-data', 'id' => 'uploadwarning' ) ) . "\n" .
917 Xml::hidden( 'wpIgnoreWarning', '1' ) . "\n" .
918 Xml::hidden( 'wpSessionKey', $this->mSessionKey ) . "\n" .
919 Xml::hidden( 'wpUploadDescription', $this->mComment ) . "\n" .
920 Xml::hidden( 'wpLicense', $this->mLicense ) . "\n" .
921 Xml::hidden( 'wpDestFile', $this->mDesiredDestName ) . "\n" .
922 Xml::hidden( 'wpWatchthis', $this->mWatchthis ) . "\n" .
923 "{$copyright}<br />" .
924 Xml::submitButton( wfMsg( 'ignorewarning' ), array ( 'name' => 'wpUpload', 'id' => 'wpUpload', 'checked' => 'checked' ) ) . ' ' .
925 Xml::submitButton( wfMsg( 'reuploaddesc' ), array ( 'name' => 'wpReUpload', 'id' => 'wpReUpload' ) ) .
926 Xml::closeElement( 'form' ) . "\n"
927 );
928 }
929
930 /**
931 * Displays the main upload form, optionally with a highlighted
932 * error message up at the top.
933 *
934 * @param string $msg as HTML
935 * @access private
936 */
937 function mainUploadForm( $msg='' ) {
938 global $wgOut, $wgUser, $wgLang, $wgMaxUploadSize;
939 global $wgUseCopyrightUpload, $wgUseAjax, $wgAjaxUploadDestCheck, $wgAjaxLicensePreview;
940 global $wgRequest, $wgAllowCopyUploads;
941 global $wgStylePath, $wgStyleVersion;
942
943 $useAjaxDestCheck = $wgUseAjax && $wgAjaxUploadDestCheck;
944 $useAjaxLicensePreview = $wgUseAjax && $wgAjaxLicensePreview;
945
946 $adc = wfBoolToStr( $useAjaxDestCheck );
947 $alp = wfBoolToStr( $useAjaxLicensePreview );
948 $autofill = wfBoolToStr( $this->mDesiredDestName == '' );
949
950 $wgOut->addScript( "<script type=\"text/javascript\">
951 wgAjaxUploadDestCheck = {$adc};
952 wgAjaxLicensePreview = {$alp};
953 wgUploadAutoFill = {$autofill};
954 </script>" );
955 $wgOut->addScriptFile( 'upload.js' );
956 $wgOut->addScriptFile( 'edit.js' ); // For <charinsert> support
957
958 if( !wfRunHooks( 'UploadForm:initial', array( &$this ) ) )
959 {
960 wfDebug( "Hook 'UploadForm:initial' broke output of the upload form" );
961 return false;
962 }
963
964 if( $this->mDesiredDestName ) {
965 $title = Title::makeTitleSafe( NS_IMAGE, $this->mDesiredDestName );
966 // Show a subtitle link to deleted revisions (to sysops et al only)
967 if( $title instanceof Title && ( $count = $title->isDeleted() ) > 0 && $wgUser->isAllowed( 'deletedhistory' ) ) {
968 $link = wfMsgExt(
969 $wgUser->isAllowed( 'delete' ) ? 'thisisdeleted' : 'viewdeleted',
970 array( 'parse', 'replaceafter' ),
971 $wgUser->getSkin()->makeKnownLinkObj(
972 SpecialPage::getTitleFor( 'Undelete', $title->getPrefixedText() ),
973 wfMsgExt( 'restorelink', array( 'parsemag', 'escape' ), $count )
974 )
975 );
976 $wgOut->addHtml( "<div id=\"contentSub2\">{$link}</div>" );
977 }
978
979 // Show the relevant lines from deletion log (for still deleted files only)
980 if( $title instanceof Title && $title->isDeleted() > 0 && !$title->exists() ) {
981 $this->showDeletionLog( $wgOut, $title->getPrefixedText() );
982 }
983 }
984
985 $cols = intval($wgUser->getOption( 'cols' ));
986
987 if( $wgUser->getOption( 'editwidth' ) ) {
988 $width = " style=\"width:100%\"";
989 } else {
990 $width = '';
991 }
992
993 if ( '' != $msg ) {
994 $sub = wfMsgHtml( 'uploaderror' );
995 $wgOut->addHTML( "<h2>{$sub}</h2>\n" .
996 "<span class='error'>{$msg}</span>\n" );
997 }
998 $wgOut->addHTML( '<div id="uploadtext">' );
999 $wgOut->addWikiMsg( 'uploadtext', $this->mDesiredDestName );
1000 $wgOut->addHTML( "</div>\n" );
1001
1002 # Print a list of allowed file extensions, if so configured. We ignore
1003 # MIME type here, it's incomprehensible to most people and too long.
1004 global $wgCheckFileExtensions, $wgStrictFileExtensions,
1005 $wgFileExtensions, $wgFileBlacklist;
1006
1007 $allowedExtensions = '';
1008 if( $wgCheckFileExtensions ) {
1009 $delim = wfMsgExt( 'comma-separator', array( 'escapenoentities' ) );
1010 if( $wgStrictFileExtensions ) {
1011 # Everything not permitted is banned
1012 $extensionsList =
1013 '<div id="mw-upload-permitted">' .
1014 wfMsgWikiHtml( 'upload-permitted', implode( $wgFileExtensions, $delim ) ) .
1015 "</div>\n";
1016 } else {
1017 # We have to list both preferred and prohibited
1018 $extensionsList =
1019 '<div id="mw-upload-preferred">' .
1020 wfMsgWikiHtml( 'upload-preferred', implode( $wgFileExtensions, $delim ) ) .
1021 "</div>\n" .
1022 '<div id="mw-upload-prohibited">' .
1023 wfMsgWikiHtml( 'upload-prohibited', implode( $wgFileBlacklist, $delim ) ) .
1024 "</div>\n";
1025 }
1026 } else {
1027 # Everything is permitted.
1028 $extensionsList = '';
1029 }
1030
1031 # Get the maximum file size from php.ini as $wgMaxUploadSize works for uploads from URL via CURL only
1032 # See http://www.php.net/manual/en/ini.core.php#ini.upload-max-filesize for possible values of upload_max_filesize
1033 $val = trim( ini_get( 'upload_max_filesize' ) );
1034 $last = strtoupper( ( substr( $val, -1 ) ) );
1035 switch( $last ) {
1036 case 'G':
1037 $val2 = substr( $val, 0, -1 ) * 1024 * 1024 * 1024;
1038 break;
1039 case 'M':
1040 $val2 = substr( $val, 0, -1 ) * 1024 * 1024;
1041 break;
1042 case 'K':
1043 $val2 = substr( $val, 0, -1 ) * 1024;
1044 break;
1045 default:
1046 $val2 = $val;
1047 }
1048 $val2 = $wgAllowCopyUploads ? min( $wgMaxUploadSize, $val2 ) : $val2;
1049 $maxUploadSize = '<div id="mw-upload-maxfilesize">' .
1050 wfMsgExt( 'upload-maxfilesize', array( 'parseinline', 'escapenoentities' ),
1051 $wgLang->formatSize( $val2 ) ) .
1052 "</div>\n";
1053
1054 $sourcefilename = wfMsgExt( 'sourcefilename', array( 'parseinline', 'escapenoentities' ) );
1055 $destfilename = wfMsgExt( 'destfilename', array( 'parseinline', 'escapenoentities' ) );
1056
1057 $summary = wfMsgExt( 'fileuploadsummary', 'parseinline' );
1058
1059 $licenses = new Licenses();
1060 $license = wfMsgExt( 'license', array( 'parseinline' ) );
1061 $nolicense = wfMsgHtml( 'nolicense' );
1062 $licenseshtml = $licenses->getHtml();
1063
1064 $ulb = wfMsgHtml( 'uploadbtn' );
1065
1066
1067 $titleObj = SpecialPage::getTitleFor( 'Upload' );
1068
1069 $encDestName = htmlspecialchars( $this->mDesiredDestName );
1070
1071 $watchChecked = $this->watchCheck()
1072 ? 'checked="checked"'
1073 : '';
1074 $warningChecked = $this->mIgnoreWarning ? 'checked' : '';
1075
1076 // Prepare form for upload or upload/copy
1077 if( $wgAllowCopyUploads && $wgUser->isAllowed( 'upload_by_url' ) ) {
1078 $filename_form =
1079 "<input type='radio' id='wpSourceTypeFile' name='wpSourceType' value='file' " .
1080 "onchange='toggle_element_activation(\"wpUploadFileURL\",\"wpUploadFile\")' checked='checked' />" .
1081 "<input tabindex='1' type='file' name='wpUploadFile' id='wpUploadFile' " .
1082 "onfocus='" .
1083 "toggle_element_activation(\"wpUploadFileURL\",\"wpUploadFile\");" .
1084 "toggle_element_check(\"wpSourceTypeFile\",\"wpSourceTypeURL\")' " .
1085 "onchange='fillDestFilename(\"wpUploadFile\")' size='60' />" .
1086 wfMsgHTML( 'upload_source_file' ) . "<br/>" .
1087 "<input type='radio' id='wpSourceTypeURL' name='wpSourceType' value='web' " .
1088 "onchange='toggle_element_activation(\"wpUploadFile\",\"wpUploadFileURL\")' />" .
1089 "<input tabindex='1' type='text' name='wpUploadFileURL' id='wpUploadFileURL' " .
1090 "onfocus='" .
1091 "toggle_element_activation(\"wpUploadFile\",\"wpUploadFileURL\");" .
1092 "toggle_element_check(\"wpSourceTypeURL\",\"wpSourceTypeFile\")' " .
1093 "onchange='fillDestFilename(\"wpUploadFileURL\")' size='60' disabled='disabled' />" .
1094 wfMsgHtml( 'upload_source_url' ) ;
1095 } else {
1096 $filename_form =
1097 "<input tabindex='1' type='file' name='wpUploadFile' id='wpUploadFile' " .
1098 ($this->mDesiredDestName?"":"onchange='fillDestFilename(\"wpUploadFile\")' ") .
1099 "size='60' />" .
1100 "<input type='hidden' name='wpSourceType' value='file' />" ;
1101 }
1102 if ( $useAjaxDestCheck ) {
1103 $warningRow = "<tr><td colspan='2' id='wpDestFile-warning'>&nbsp;</td></tr>";
1104 $destOnkeyup = 'onkeyup="wgUploadWarningObj.keypress();"';
1105 } else {
1106 $warningRow = '';
1107 $destOnkeyup = '';
1108 }
1109
1110 $encComment = htmlspecialchars( $this->mComment );
1111
1112 $wgOut->addHTML(
1113 Xml::openElement( 'form', array( 'method' => 'post', 'action' => $titleObj->getLocalURL(),
1114 'enctype' => 'multipart/form-data', 'id' => 'mw-upload-form' ) ) .
1115 Xml::openElement( 'fieldset' ) .
1116 Xml::element( 'legend', null, wfMsg( 'upload' ) ) .
1117 Xml::openElement( 'table', array( 'border' => '0', 'id' => 'mw-upload-table' ) ) .
1118 "<tr>
1119 {$this->uploadFormTextTop}
1120 <td class='mw-label'>
1121 <label for='wpUploadFile'>{$sourcefilename}</label>
1122 </td>
1123 <td class='mw-input'>
1124 {$filename_form}
1125 </td>
1126 </tr>
1127 <tr>
1128 <td></td>
1129 <td>
1130 {$maxUploadSize}
1131 {$extensionsList}
1132 </td>
1133 </tr>
1134 <tr>
1135 <td class='mw-label'>
1136 <label for='wpDestFile'>{$destfilename}</label>
1137 </td>
1138 <td class='mw-input'>
1139 <input tabindex='2' type='text' name='wpDestFile' id='wpDestFile' size='60'
1140 value=\"{$encDestName}\" onchange='toggleFilenameFiller()' $destOnkeyup />
1141 </td>
1142 </tr>
1143 <tr>
1144 <td class='mw-label'>
1145 <label for='wpUploadDescription'>{$summary}</label>
1146 </td>
1147 <td class='mw-input'>
1148 <textarea tabindex='3' name='wpUploadDescription' id='wpUploadDescription' rows='6'
1149 cols='{$cols}'{$width}>$encComment</textarea>
1150 {$this->uploadFormTextAfterSummary}
1151 </td>
1152 </tr>
1153 <tr>"
1154 );
1155
1156 if ( $licenseshtml != '' ) {
1157 global $wgStylePath;
1158 $wgOut->addHTML( "
1159 <td class='mw-label'>
1160 <label for='wpLicense'>$license</label>
1161 </td>
1162 <td class='mw-input'>
1163 <select name='wpLicense' id='wpLicense' tabindex='4'
1164 onchange='licenseSelectorCheck()'>
1165 <option value=''>$nolicense</option>
1166 $licenseshtml
1167 </select>
1168 </td>
1169 </tr>
1170 <tr>"
1171 );
1172 if( $useAjaxLicensePreview ) {
1173 $wgOut->addHtml( "
1174 <td></td>
1175 <td id=\"mw-license-preview\"></td>
1176 </tr>
1177 <tr>"
1178 );
1179 }
1180 }
1181
1182 if ( $wgUseCopyrightUpload ) {
1183 $filestatus = wfMsgExt( 'filestatus', 'escapenoentities' );
1184 $copystatus = htmlspecialchars( $this->mCopyrightStatus );
1185 $filesource = wfMsgExt( 'filesource', 'escapenoentities' );
1186 $uploadsource = htmlspecialchars( $this->mCopyrightSource );
1187
1188 $wgOut->addHTML( "
1189 <td class='mw-label' style='white-space: nowrap;'>
1190 <label for='wpUploadCopyStatus'>$filestatus</label></td>
1191 <td class='mw-input'>
1192 <input tabindex='5' type='text' name='wpUploadCopyStatus' id='wpUploadCopyStatus'
1193 value=\"$copystatus\" size='60' />
1194 </td>
1195 </tr>
1196 <tr>
1197 <td class='mw-label'>
1198 <label for='wpUploadCopyStatus'>$filesource</label>
1199 </td>
1200 <td class='mw-input'>
1201 <input tabindex='6' type='text' name='wpUploadSource' id='wpUploadCopyStatus'
1202 value=\"$uploadsource\" size='60' />
1203 </td>
1204 </tr>
1205 <tr>"
1206 );
1207 }
1208
1209 $wgOut->addHtml( "
1210 <td></td>
1211 <td>
1212 <input tabindex='7' type='checkbox' name='wpWatchthis' id='wpWatchthis' $watchChecked value='true' />
1213 <label for='wpWatchthis'>" . wfMsgHtml( 'watchthisupload' ) . "</label>
1214 <input tabindex='8' type='checkbox' name='wpIgnoreWarning' id='wpIgnoreWarning' value='true' $warningChecked/>
1215 <label for='wpIgnoreWarning'>" . wfMsgHtml( 'ignorewarnings' ) . "</label>
1216 </td>
1217 </tr>
1218 $warningRow
1219 <tr>
1220 <td></td>
1221 <td class='mw-input'>
1222 <input tabindex='9' type='submit' name='wpUpload' value=\"{$ulb}\"" . $wgUser->getSkin()->tooltipAndAccesskey( 'upload' ) . " />
1223 </td>
1224 </tr>
1225 <tr>
1226 <td></td>
1227 <td class='mw-input'>"
1228 );
1229 $wgOut->addWikiText( wfMsgForContent( 'edittools' ) );
1230 $wgOut->addHTML( "
1231 </td>
1232 </tr>" .
1233 Xml::closeElement( 'table' ) .
1234 Xml::hidden( 'wpDestFileWarningAck', '', array( 'id' => 'wpDestFileWarningAck' ) ) .
1235 Xml::closeElement( 'fieldset' ) .
1236 Xml::closeElement( 'form' )
1237 );
1238 $uploadfooter = wfMsgNoTrans( 'uploadfooter' );
1239 if( $uploadfooter != '-' && !wfEmptyMsg( 'uploadfooter', $uploadfooter ) ){
1240 $wgOut->addWikiText( '<div id="mw-upload-footer-message">' . $uploadfooter . '</div>' );
1241 }
1242 }
1243
1244 /* -------------------------------------------------------------- */
1245
1246 /**
1247 * See if we should check the 'watch this page' checkbox on the form
1248 * based on the user's preferences and whether we're being asked
1249 * to create a new file or update an existing one.
1250 *
1251 * In the case where 'watch edits' is off but 'watch creations' is on,
1252 * we'll leave the box unchecked.
1253 *
1254 * Note that the page target can be changed *on the form*, so our check
1255 * state can get out of sync.
1256 */
1257 function watchCheck() {
1258 global $wgUser;
1259 if( $wgUser->getOption( 'watchdefault' ) ) {
1260 // Watch all edits!
1261 return true;
1262 }
1263
1264 $local = wfLocalFile( $this->mDesiredDestName );
1265 if( $local && $local->exists() ) {
1266 // We're uploading a new version of an existing file.
1267 // No creation, so don't watch it if we're not already.
1268 return $local->getTitle()->userIsWatching();
1269 } else {
1270 // New page should get watched if that's our option.
1271 return $wgUser->getOption( 'watchcreations' );
1272 }
1273 }
1274
1275 /**
1276 * Split a file into a base name and all dot-delimited 'extensions'
1277 * on the end. Some web server configurations will fall back to
1278 * earlier pseudo-'extensions' to determine type and execute
1279 * scripts, so the blacklist needs to check them all.
1280 *
1281 * @return array
1282 */
1283 function splitExtensions( $filename ) {
1284 $bits = explode( '.', $filename );
1285 $basename = array_shift( $bits );
1286 return array( $basename, $bits );
1287 }
1288
1289 /**
1290 * Perform case-insensitive match against a list of file extensions.
1291 * Returns true if the extension is in the list.
1292 *
1293 * @param string $ext
1294 * @param array $list
1295 * @return bool
1296 */
1297 function checkFileExtension( $ext, $list ) {
1298 return in_array( strtolower( $ext ), $list );
1299 }
1300
1301 /**
1302 * Perform case-insensitive match against a list of file extensions.
1303 * Returns true if any of the extensions are in the list.
1304 *
1305 * @param array $ext
1306 * @param array $list
1307 * @return bool
1308 */
1309 function checkFileExtensionList( $ext, $list ) {
1310 foreach( $ext as $e ) {
1311 if( in_array( strtolower( $e ), $list ) ) {
1312 return true;
1313 }
1314 }
1315 return false;
1316 }
1317
1318 /**
1319 * Verifies that it's ok to include the uploaded file
1320 *
1321 * @param string $tmpfile the full path of the temporary file to verify
1322 * @param string $extension The filename extension that the file is to be served with
1323 * @return mixed true of the file is verified, a WikiError object otherwise.
1324 */
1325 function verify( $tmpfile, $extension ) {
1326 #magically determine mime type
1327 $magic = MimeMagic::singleton();
1328 $mime = $magic->guessMimeType($tmpfile,false);
1329
1330 #check mime type, if desired
1331 global $wgVerifyMimeType;
1332 if ($wgVerifyMimeType) {
1333
1334 wfDebug ( "\n\nmime: <$mime> extension: <$extension>\n\n");
1335 #check mime type against file extension
1336 if( !self::verifyExtension( $mime, $extension ) ) {
1337 return new WikiErrorMsg( 'uploadcorrupt' );
1338 }
1339
1340 #check mime type blacklist
1341 global $wgMimeTypeBlacklist;
1342 if( isset($wgMimeTypeBlacklist) && !is_null($wgMimeTypeBlacklist)
1343 && $this->checkFileExtension( $mime, $wgMimeTypeBlacklist ) ) {
1344 return new WikiErrorMsg( 'filetype-badmime', htmlspecialchars( $mime ) );
1345 }
1346 }
1347
1348 #check for htmlish code and javascript
1349 if( $this->detectScript ( $tmpfile, $mime, $extension ) ) {
1350 return new WikiErrorMsg( 'uploadscripted' );
1351 }
1352
1353 /**
1354 * Scan the uploaded file for viruses
1355 */
1356 $virus= $this->detectVirus($tmpfile);
1357 if ( $virus ) {
1358 return new WikiErrorMsg( 'uploadvirus', htmlspecialchars($virus) );
1359 }
1360
1361 wfDebug( __METHOD__.": all clear; passing.\n" );
1362 return true;
1363 }
1364
1365 /**
1366 * Checks if the mime type of the uploaded file matches the file extension.
1367 *
1368 * @param string $mime the mime type of the uploaded file
1369 * @param string $extension The filename extension that the file is to be served with
1370 * @return bool
1371 */
1372 static function verifyExtension( $mime, $extension ) {
1373 $magic = MimeMagic::singleton();
1374
1375 if ( ! $mime || $mime == 'unknown' || $mime == 'unknown/unknown' )
1376 if ( ! $magic->isRecognizableExtension( $extension ) ) {
1377 wfDebug( __METHOD__.": passing file with unknown detected mime type; " .
1378 "unrecognized extension '$extension', can't verify\n" );
1379 return true;
1380 } else {
1381 wfDebug( __METHOD__.": rejecting file with unknown detected mime type; ".
1382 "recognized extension '$extension', so probably invalid file\n" );
1383 return false;
1384 }
1385
1386 $match= $magic->isMatchingExtension($extension,$mime);
1387
1388 if ($match===NULL) {
1389 wfDebug( __METHOD__.": no file extension known for mime type $mime, passing file\n" );
1390 return true;
1391 } elseif ($match===true) {
1392 wfDebug( __METHOD__.": mime type $mime matches extension $extension, passing file\n" );
1393
1394 #TODO: if it's a bitmap, make sure PHP or ImageMagic resp. can handle it!
1395 return true;
1396
1397 } else {
1398 wfDebug( __METHOD__.": mime type $mime mismatches file extension $extension, rejecting file\n" );
1399 return false;
1400 }
1401 }
1402
1403 /**
1404 * Heuristic for detecting files that *could* contain JavaScript instructions or
1405 * things that may look like HTML to a browser and are thus
1406 * potentially harmful. The present implementation will produce false positives in some situations.
1407 *
1408 * @param string $file Pathname to the temporary upload file
1409 * @param string $mime The mime type of the file
1410 * @param string $extension The extension of the file
1411 * @return bool true if the file contains something looking like embedded scripts
1412 */
1413 function detectScript($file, $mime, $extension) {
1414 global $wgAllowTitlesInSVG;
1415
1416 #ugly hack: for text files, always look at the entire file.
1417 #For binarie field, just check the first K.
1418
1419 if (strpos($mime,'text/')===0) $chunk = file_get_contents( $file );
1420 else {
1421 $fp = fopen( $file, 'rb' );
1422 $chunk = fread( $fp, 1024 );
1423 fclose( $fp );
1424 }
1425
1426 $chunk= strtolower( $chunk );
1427
1428 if (!$chunk) return false;
1429
1430 #decode from UTF-16 if needed (could be used for obfuscation).
1431 if (substr($chunk,0,2)=="\xfe\xff") $enc= "UTF-16BE";
1432 elseif (substr($chunk,0,2)=="\xff\xfe") $enc= "UTF-16LE";
1433 else $enc= NULL;
1434
1435 if ($enc) $chunk= iconv($enc,"ASCII//IGNORE",$chunk);
1436
1437 $chunk= trim($chunk);
1438
1439 #FIXME: convert from UTF-16 if necessarry!
1440
1441 wfDebug("SpecialUpload::detectScript: checking for embedded scripts and HTML stuff\n");
1442
1443 #check for HTML doctype
1444 if (eregi("<!DOCTYPE *X?HTML",$chunk)) return true;
1445
1446 /**
1447 * Internet Explorer for Windows performs some really stupid file type
1448 * autodetection which can cause it to interpret valid image files as HTML
1449 * and potentially execute JavaScript, creating a cross-site scripting
1450 * attack vectors.
1451 *
1452 * Apple's Safari browser also performs some unsafe file type autodetection
1453 * which can cause legitimate files to be interpreted as HTML if the
1454 * web server is not correctly configured to send the right content-type
1455 * (or if you're really uploading plain text and octet streams!)
1456 *
1457 * Returns true if IE is likely to mistake the given file for HTML.
1458 * Also returns true if Safari would mistake the given file for HTML
1459 * when served with a generic content-type.
1460 */
1461
1462 $tags = array(
1463 '<body',
1464 '<head',
1465 '<html', #also in safari
1466 '<img',
1467 '<pre',
1468 '<script', #also in safari
1469 '<table'
1470 );
1471 if( ! $wgAllowTitlesInSVG && $extension !== 'svg' && $mime !== 'image/svg' ) {
1472 $tags[] = '<title';
1473 }
1474
1475 foreach( $tags as $tag ) {
1476 if( false !== strpos( $chunk, $tag ) ) {
1477 return true;
1478 }
1479 }
1480
1481 /*
1482 * look for javascript
1483 */
1484
1485 #resolve entity-refs to look at attributes. may be harsh on big files... cache result?
1486 $chunk = Sanitizer::decodeCharReferences( $chunk );
1487
1488 #look for script-types
1489 if (preg_match('!type\s*=\s*[\'"]?\s*(?:\w*/)?(?:ecma|java)!sim',$chunk)) return true;
1490
1491 #look for html-style script-urls
1492 if (preg_match('!(?:href|src|data)\s*=\s*[\'"]?\s*(?:ecma|java)script:!sim',$chunk)) return true;
1493
1494 #look for css-style script-urls
1495 if (preg_match('!url\s*\(\s*[\'"]?\s*(?:ecma|java)script:!sim',$chunk)) return true;
1496
1497 wfDebug("SpecialUpload::detectScript: no scripts found\n");
1498 return false;
1499 }
1500
1501 /**
1502 * Generic wrapper function for a virus scanner program.
1503 * This relies on the $wgAntivirus and $wgAntivirusSetup variables.
1504 * $wgAntivirusRequired may be used to deny upload if the scan fails.
1505 *
1506 * @param string $file Pathname to the temporary upload file
1507 * @return mixed false if not virus is found, NULL if the scan fails or is disabled,
1508 * or a string containing feedback from the virus scanner if a virus was found.
1509 * If textual feedback is missing but a virus was found, this function returns true.
1510 */
1511 function detectVirus($file) {
1512 global $wgAntivirus, $wgAntivirusSetup, $wgAntivirusRequired, $wgOut;
1513
1514 if ( !$wgAntivirus ) {
1515 wfDebug( __METHOD__.": virus scanner disabled\n");
1516 return NULL;
1517 }
1518
1519 if ( !$wgAntivirusSetup[$wgAntivirus] ) {
1520 wfDebug( __METHOD__.": unknown virus scanner: $wgAntivirus\n" );
1521 $wgOut->wrapWikiMsg( '<div class="error">$1</div>', array( 'virus-badscanner', $wgAntivirus ) );
1522 return wfMsg('virus-unknownscanner') . " $wgAntivirus";
1523 }
1524
1525 # look up scanner configuration
1526 $command = $wgAntivirusSetup[$wgAntivirus]["command"];
1527 $exitCodeMap = $wgAntivirusSetup[$wgAntivirus]["codemap"];
1528 $msgPattern = isset( $wgAntivirusSetup[$wgAntivirus]["messagepattern"] ) ?
1529 $wgAntivirusSetup[$wgAntivirus]["messagepattern"] : null;
1530
1531 if ( strpos( $command,"%f" ) === false ) {
1532 # simple pattern: append file to scan
1533 $command .= " " . wfEscapeShellArg( $file );
1534 } else {
1535 # complex pattern: replace "%f" with file to scan
1536 $command = str_replace( "%f", wfEscapeShellArg( $file ), $command );
1537 }
1538
1539 wfDebug( __METHOD__.": running virus scan: $command \n" );
1540
1541 # execute virus scanner
1542 $exitCode = false;
1543
1544 #NOTE: there's a 50 line workaround to make stderr redirection work on windows, too.
1545 # that does not seem to be worth the pain.
1546 # Ask me (Duesentrieb) about it if it's ever needed.
1547 $output = array();
1548 if ( wfIsWindows() ) {
1549 exec( "$command", $output, $exitCode );
1550 } else {
1551 exec( "$command 2>&1", $output, $exitCode );
1552 }
1553
1554 # map exit code to AV_xxx constants.
1555 $mappedCode = $exitCode;
1556 if ( $exitCodeMap ) {
1557 if ( isset( $exitCodeMap[$exitCode] ) ) {
1558 $mappedCode = $exitCodeMap[$exitCode];
1559 } elseif ( isset( $exitCodeMap["*"] ) ) {
1560 $mappedCode = $exitCodeMap["*"];
1561 }
1562 }
1563
1564 if ( $mappedCode === AV_SCAN_FAILED ) {
1565 # scan failed (code was mapped to false by $exitCodeMap)
1566 wfDebug( __METHOD__.": failed to scan $file (code $exitCode).\n" );
1567
1568 if ( $wgAntivirusRequired ) {
1569 return wfMsg('virus-scanfailed', array( $exitCode ) );
1570 } else {
1571 return NULL;
1572 }
1573 } else if ( $mappedCode === AV_SCAN_ABORTED ) {
1574 # scan failed because filetype is unknown (probably imune)
1575 wfDebug( __METHOD__.": unsupported file type $file (code $exitCode).\n" );
1576 return NULL;
1577 } else if ( $mappedCode === AV_NO_VIRUS ) {
1578 # no virus found
1579 wfDebug( __METHOD__.": file passed virus scan.\n" );
1580 return false;
1581 } else {
1582 $output = join( "\n", $output );
1583 $output = trim( $output );
1584
1585 if ( !$output ) {
1586 $output = true; #if there's no output, return true
1587 } elseif ( $msgPattern ) {
1588 $groups = array();
1589 if ( preg_match( $msgPattern, $output, $groups ) ) {
1590 if ( $groups[1] ) {
1591 $output = $groups[1];
1592 }
1593 }
1594 }
1595
1596 wfDebug( __METHOD__.": FOUND VIRUS! scanner feedback: $output" );
1597 return $output;
1598 }
1599 }
1600
1601 /**
1602 * Check if the temporary file is MacBinary-encoded, as some uploads
1603 * from Internet Explorer on Mac OS Classic and Mac OS X will be.
1604 * If so, the data fork will be extracted to a second temporary file,
1605 * which will then be checked for validity and either kept or discarded.
1606 *
1607 * @access private
1608 */
1609 function checkMacBinary() {
1610 $macbin = new MacBinary( $this->mTempPath );
1611 if( $macbin->isValid() ) {
1612 $dataFile = tempnam( wfTempDir(), "WikiMacBinary" );
1613 $dataHandle = fopen( $dataFile, 'wb' );
1614
1615 wfDebug( "SpecialUpload::checkMacBinary: Extracting MacBinary data fork to $dataFile\n" );
1616 $macbin->extractData( $dataHandle );
1617
1618 $this->mTempPath = $dataFile;
1619 $this->mFileSize = $macbin->dataForkLength();
1620
1621 // We'll have to manually remove the new file if it's not kept.
1622 $this->mRemoveTempFile = true;
1623 }
1624 $macbin->close();
1625 }
1626
1627 /**
1628 * If we've modified the upload file we need to manually remove it
1629 * on exit to clean up.
1630 * @access private
1631 */
1632 function cleanupTempFile() {
1633 if ( $this->mRemoveTempFile && file_exists( $this->mTempPath ) ) {
1634 wfDebug( "SpecialUpload::cleanupTempFile: Removing temporary file {$this->mTempPath}\n" );
1635 unlink( $this->mTempPath );
1636 }
1637 }
1638
1639 /**
1640 * Check if there's an overwrite conflict and, if so, if restrictions
1641 * forbid this user from performing the upload.
1642 *
1643 * @return mixed true on success, WikiError on failure
1644 * @access private
1645 */
1646 function checkOverwrite( $name ) {
1647 $img = wfFindFile( $name );
1648
1649 $error = '';
1650 if( $img ) {
1651 global $wgUser, $wgOut;
1652 if( $img->isLocal() ) {
1653 if( !self::userCanReUpload( $wgUser, $img->name ) ) {
1654 $error = 'fileexists-forbidden';
1655 }
1656 } else {
1657 if( !$wgUser->isAllowed( 'reupload' ) ||
1658 !$wgUser->isAllowed( 'reupload-shared' ) ) {
1659 $error = "fileexists-shared-forbidden";
1660 }
1661 }
1662 }
1663
1664 if( $error ) {
1665 $errorText = wfMsg( $error, wfEscapeWikiText( $img->getName() ) );
1666 return $errorText;
1667 }
1668
1669 // Rockin', go ahead and upload
1670 return true;
1671 }
1672
1673 /**
1674 * Check if a user is the last uploader
1675 *
1676 * @param User $user
1677 * @param string $img, image name
1678 * @return bool
1679 */
1680 public static function userCanReUpload( User $user, $img ) {
1681 if( $user->isAllowed( 'reupload' ) )
1682 return true; // non-conditional
1683 if( !$user->isAllowed( 'reupload-own' ) )
1684 return false;
1685
1686 $dbr = wfGetDB( DB_SLAVE );
1687 $row = $dbr->selectRow('image',
1688 /* SELECT */ 'img_user',
1689 /* WHERE */ array( 'img_name' => $img )
1690 );
1691 if ( !$row )
1692 return false;
1693
1694 return $user->getId() == $row->img_user;
1695 }
1696
1697 /**
1698 * Display an error with a wikitext description
1699 */
1700 function showError( $description ) {
1701 global $wgOut;
1702 $wgOut->setPageTitle( wfMsg( "internalerror" ) );
1703 $wgOut->setRobotpolicy( "noindex,nofollow" );
1704 $wgOut->setArticleRelated( false );
1705 $wgOut->enableClientCache( false );
1706 $wgOut->addWikiText( $description );
1707 }
1708
1709 /**
1710 * Get the initial image page text based on a comment and optional file status information
1711 */
1712 static function getInitialPageText( $comment, $license, $copyStatus, $source ) {
1713 global $wgUseCopyrightUpload;
1714 if ( $wgUseCopyrightUpload ) {
1715 if ( $license != '' ) {
1716 $licensetxt = '== ' . wfMsgForContent( 'license' ) . " ==\n" . '{{' . $license . '}}' . "\n";
1717 }
1718 $pageText = '== ' . wfMsg ( 'filedesc' ) . " ==\n" . $comment . "\n" .
1719 '== ' . wfMsgForContent ( 'filestatus' ) . " ==\n" . $copyStatus . "\n" .
1720 "$licensetxt" .
1721 '== ' . wfMsgForContent ( 'filesource' ) . " ==\n" . $source ;
1722 } else {
1723 if ( $license != '' ) {
1724 $filedesc = $comment == '' ? '' : '== ' . wfMsg ( 'filedesc' ) . " ==\n" . $comment . "\n";
1725 $pageText = $filedesc .
1726 '== ' . wfMsgForContent ( 'license' ) . " ==\n" . '{{' . $license . '}}' . "\n";
1727 } else {
1728 $pageText = $comment;
1729 }
1730 }
1731 return $pageText;
1732 }
1733
1734 /**
1735 * If there are rows in the deletion log for this file, show them,
1736 * along with a nice little note for the user
1737 *
1738 * @param OutputPage $out
1739 * @param string filename
1740 */
1741 private function showDeletionLog( $out, $filename ) {
1742 global $wgUser;
1743 $loglist = new LogEventsList( $wgUser->getSkin(), $out );
1744 $pager = new LogPager( $loglist, 'delete', false, $filename );
1745 if( $pager->getNumRows() > 0 ) {
1746 $out->addHtml( '<div id="mw-upload-deleted-warn">' );
1747 $out->addWikiMsg( 'upload-wasdeleted' );
1748 $out->addHTML(
1749 $loglist->beginLogEventsList() .
1750 $pager->getBody() .
1751 $loglist->endLogEventsList()
1752 );
1753 $out->addHtml( '</div>' );
1754 }
1755 }
1756 }