Don't force edit encoding when LanguageEo.php is loaded; defer until $wgContLang...
[lhc/web/wiklou.git] / includes / SpecialUpload.php
1 <?php
2 /**
3 *
4 * @package MediaWiki
5 * @subpackage SpecialPage
6 */
7
8 /**
9 *
10 */
11 require_once( 'Image.php' );
12
13 /**
14 * Entry point
15 */
16 function wfSpecialUpload() {
17 global $wgRequest;
18 $form = new UploadForm( $wgRequest );
19 $form->execute();
20 }
21
22 /**
23 *
24 * @package MediaWiki
25 * @subpackage SpecialPage
26 */
27 class UploadForm {
28 /**#@+
29 * @access private
30 */
31 var $mUploadAffirm, $mUploadFile, $mUploadDescription, $mIgnoreWarning;
32 var $mUploadSaveName, $mUploadTempName, $mUploadSize, $mUploadOldVersion;
33 var $mUploadCopyStatus, $mUploadSource, $mReUpload, $mAction, $mUpload;
34 var $mOname, $mSessionKey, $mStashed;
35 /**#@-*/
36
37 /**
38 * Constructor : initialise object
39 * Get data POSTed through the form and assign them to the object
40 * @param $request Data posted.
41 */
42 function UploadForm( &$request ) {
43 if( !$request->wasPosted() ) {
44 # GET requests just give the main form; no data.
45 return;
46 }
47
48 $this->mUploadAffirm = $request->getCheck( 'wpUploadAffirm' );
49 $this->mIgnoreWarning = $request->getCheck( 'wpIgnoreWarning');
50 $this->mReUpload = $request->getCheck( 'wpReUpload' );
51 $this->mUpload = $request->getCheck( 'wpUpload' );
52
53 $this->mUploadDescription = $request->getText( 'wpUploadDescription' );
54 $this->mUploadCopyStatus = $request->getText( 'wpUploadCopyStatus' );
55 $this->mUploadSource = $request->getText( 'wpUploadSource');
56
57 $this->mAction = $request->getVal( 'action' );
58
59 $this->mSessionKey = $request->getInt( 'wpSessionKey' );
60 if( !empty( $this->mSessionKey ) &&
61 isset( $_SESSION['wsUploadData'][$this->mSessionKey] ) ) {
62 /**
63 * Confirming a temporarily stashed upload.
64 * We don't want path names to be forged, so we keep
65 * them in the session on the server and just give
66 * an opaque key to the user agent.
67 */
68 $data = $_SESSION['wsUploadData'][$this->mSessionKey];
69 $this->mUploadTempName = $data['mUploadTempName'];
70 $this->mUploadSize = $data['mUploadSize'];
71 $this->mOname = $data['mOname'];
72 $this->mStashed = true;
73 } else {
74 /**
75 *Check for a newly uploaded file.
76 */
77 $this->mUploadTempName = $request->getFileTempName( 'wpUploadFile' );
78 $this->mUploadSize = $request->getFileSize( 'wpUploadFile' );
79 $this->mOname = $request->getFileName( 'wpUploadFile' );
80 $this->mSessionKey = false;
81 $this->mStashed = false;
82 }
83 }
84
85 /**
86 * Start doing stuff
87 * @access public
88 */
89 function execute() {
90 global $wgUser, $wgOut;
91 global $wgDisableUploads;
92
93 /** Show an error message if file upload is disabled */
94 if( $wgDisableUploads ) {
95 $wgOut->addWikiText( wfMsg( 'uploaddisabled' ) );
96 return;
97 }
98
99 /** Various rights checks */
100 if( ( $wgUser->isAnon() )
101 OR $wgUser->isBlocked() ) {
102 $wgOut->errorpage( 'uploadnologin', 'uploadnologintext' );
103 return;
104 }
105 if( wfReadOnly() ) {
106 $wgOut->readOnlyPage();
107 return;
108 }
109
110 if( $this->mReUpload ) {
111 $this->unsaveUploadedFile();
112 $this->mainUploadForm();
113 } else if ( 'submit' == $this->mAction || $this->mUpload ) {
114 $this->processUpload();
115 } else {
116 $this->mainUploadForm();
117 }
118 }
119
120 /* -------------------------------------------------------------- */
121
122 /**
123 * Really do the upload
124 * Checks are made in SpecialUpload::execute()
125 * @access private
126 */
127 function processUpload() {
128 global $wgUser, $wgOut, $wgLang, $wgContLang;
129 global $wgUploadDirectory;
130 global $wgUseCopyrightUpload, $wgCheckCopyrightUpload;
131
132 /**
133 * If there was no filename or a zero size given, give up quick.
134 */
135 if( ( trim( $this->mOname ) == '' ) || empty( $this->mUploadSize ) ) {
136 return $this->mainUploadForm('<li>'.wfMsg( 'emptyfile' ).'</li>');
137 }
138
139 /**
140 * When using detailed copyright, if user filled field, assume he
141 * confirmed the upload
142 */
143 if ( $wgUseCopyrightUpload ) {
144 $this->mUploadAffirm = true;
145 if( $wgCheckCopyrightUpload &&
146 ( trim( $this->mUploadCopyStatus ) == '' ||
147 trim( $this->mUploadSource ) == '' ) ) {
148 $this->mUploadAffirm = false;
149 }
150 }
151
152 /** User need to confirm his upload */
153 if( !$this->mUploadAffirm ) {
154 $this->mainUploadForm( wfMsg( 'noaffirmation' ) );
155 return;
156 }
157
158 # Chop off any directories in the given filename
159 $basename = basename( $this->mOname );
160
161 /**
162 * We'll want to blacklist against *any* 'extension', and use
163 * only the final one for the whitelist.
164 */
165 list( $partname, $ext ) = $this->splitExtensions( $basename );
166 if( count( $ext ) ) {
167 $finalExt = $ext[count( $ext ) - 1];
168 } else {
169 $finalExt = '';
170 }
171 $fullExt = implode( '.', $ext );
172
173 if ( strlen( $partname ) < 3 ) {
174 $this->mainUploadForm( wfMsg( 'minlength' ) );
175 return;
176 }
177
178 /**
179 * Filter out illegal characters, and try to make a legible name
180 * out of it. We'll strip some silently that Title would die on.
181 */
182 $filtered = preg_replace ( "/[^".Title::legalChars()."]|:/", '-', $basename );
183 $nt = Title::newFromText( $filtered );
184 if( is_null( $nt ) ) {
185 return $this->uploadError( wfMsg( 'illegalfilename', htmlspecialchars( $filtered ) ) );
186 }
187 $nt =& Title::makeTitle( NS_IMAGE, $nt->getDBkey() );
188 $this->mUploadSaveName = $nt->getDBkey();
189
190 /**
191 * If the image is protected, non-sysop users won't be able
192 * to modify it by uploading a new revision.
193 */
194 if( !$nt->userCanEdit() ) {
195 return $this->uploadError( wfMsg( 'protectedpage' ) );
196 }
197
198 /* Don't allow users to override the blacklist */
199 global $wgStrictFileExtensions;
200 global $wgFileExtensions, $wgFileBlacklist;
201 if( $this->checkFileExtensionList( $ext, $wgFileBlacklist ) ||
202 ($wgStrictFileExtensions &&
203 !$this->checkFileExtension( $finalExt, $wgFileExtensions ) ) ) {
204 return $this->uploadError( wfMsg( 'badfiletype', htmlspecialchars( $fullExt ) ) );
205 }
206
207 /**
208 * Look at the contents of the file; if we can recognize the
209 * type but it's corrupt or data of the wrong type, we should
210 * probably not accept it.
211 */
212 if( !$this->mStashed && !$this->verify( $this->mUploadTempName, $finalExt ) ) {
213 return $this->uploadError( wfMsg( 'uploadcorrupt' ) );
214 }
215
216 /**
217 * Check for non-fatal conditions
218 */
219 if ( ! $this->mIgnoreWarning ) {
220 $warning = '';
221 if( $this->mUploadSaveName != ucfirst( $filtered ) ) {
222 $warning .= '<li>'.wfMsg( 'badfilename', htmlspecialchars( $this->mUploadSaveName ) ).'</li>';
223 }
224
225 global $wgCheckFileExtensions;
226 if ( $wgCheckFileExtensions ) {
227 if ( ! $this->checkFileExtension( $finalExt, $wgFileExtensions ) ) {
228 $warning .= '<li>'.wfMsg( 'badfiletype', htmlspecialchars( $fullExt ) ).'</li>';
229 }
230 }
231
232 global $wgUploadSizeWarning;
233 if ( $wgUploadSizeWarning && ( $this->mUploadSize > $wgUploadSizeWarning ) ) {
234 $warning .= '<li>'.wfMsg( 'largefile' ).'</li>';
235 }
236 if ( $this->mUploadSize == 0 ) {
237 $warning .= '<li>'.wfMsg( 'emptyfile' ).'</li>';
238 }
239
240 if( $nt->getArticleID() ) {
241 global $wgUser;
242 $sk = $wgUser->getSkin();
243 $dlink = $sk->makeKnownLinkObj( $nt );
244 $warning .= '<li>'.wfMsg( 'fileexists', $dlink ).'</li>';
245 }
246
247 if( $warning != '' ) {
248 /**
249 * Stash the file in a temporary location; the user can choose
250 * to let it through and we'll complete the upload then.
251 */
252 return $this->uploadWarning($warning);
253 }
254 }
255
256 /**
257 * Try actually saving the thing...
258 * It will show an error form on failure.
259 */
260 if( $this->saveUploadedFile( $this->mUploadSaveName,
261 $this->mUploadTempName,
262 !empty( $this->mSessionKey ) ) ) {
263 /**
264 * Update the upload log and create the description page
265 * if it's a new file.
266 */
267 wfRecordUpload( $this->mUploadSaveName,
268 $this->mUploadOldVersion,
269 $this->mUploadSize,
270 $this->mUploadDescription,
271 $this->mUploadCopyStatus,
272 $this->mUploadSource );
273
274 /* refresh image metadata cache */
275 new Image( $this->mUploadSaveName, true );
276
277 $this->showSuccess();
278 }
279 }
280
281 /**
282 * Move the uploaded file from its temporary location to the final
283 * destination. If a previous version of the file exists, move
284 * it into the archive subdirectory.
285 *
286 * @todo If the later save fails, we may have disappeared the original file.
287 *
288 * @param string $saveName
289 * @param string $tempName full path to the temporary file
290 * @param bool $useRename if true, doesn't check that the source file
291 * is a PHP-managed upload temporary
292 */
293 function saveUploadedFile( $saveName, $tempName, $useRename = false ) {
294 global $wgUploadDirectory, $wgOut;
295
296 $dest = wfImageDir( $saveName );
297 $archive = wfImageArchiveDir( $saveName );
298 $this->mSavedFile = "{$dest}/{$saveName}";
299
300 if( is_file( $this->mSavedFile ) ) {
301 $this->mUploadOldVersion = gmdate( 'YmdHis' ) . "!{$saveName}";
302
303 if( !rename( $this->mSavedFile, "${archive}/{$this->mUploadOldVersion}" ) ) {
304 $wgOut->fileRenameError( $this->mSavedFile,
305 "${archive}/{$this->mUploadOldVersion}" );
306 return false;
307 }
308 } else {
309 $this->mUploadOldVersion = '';
310 }
311
312 if( $useRename ) {
313 if( !rename( $tempName, $this->mSavedFile ) ) {
314 $wgOut->fileCopyError( $tempName, $this->mSavedFile );
315 return false;
316 }
317 } else {
318 if( !move_uploaded_file( $tempName, $this->mSavedFile ) ) {
319 $wgOut->fileCopyError( $tempName, $this->mSavedFile );
320 return false;
321 }
322 }
323 chmod( $this->mSavedFile, 0644 );
324 return true;
325 }
326
327 /**
328 * Stash a file in a temporary directory for later processing
329 * after the user has confirmed it.
330 *
331 * If the user doesn't explicitly cancel or accept, these files
332 * can accumulate in the temp directory.
333 *
334 * @param string $saveName - the destination filename
335 * @param string $tempName - the source temporary file to save
336 * @return string - full path the stashed file, or false on failure
337 * @access private
338 */
339 function saveTempUploadedFile( $saveName, $tempName ) {
340 global $wgOut;
341
342 $archive = wfImageArchiveDir( $saveName, 'temp' );
343 $stash = $archive . '/' . gmdate( "YmdHis" ) . '!' . $saveName;
344
345 if ( !move_uploaded_file( $tempName, $stash ) ) {
346 $wgOut->fileCopyError( $tempName, $stash );
347 return false;
348 }
349
350 return $stash;
351 }
352
353 /**
354 * Stash a file in a temporary directory for later processing,
355 * and save the necessary descriptive info into the session.
356 * Returns a key value which will be passed through a form
357 * to pick up the path info on a later invocation.
358 *
359 * @return int
360 * @access private
361 */
362 function stashSession() {
363 $stash = $this->saveTempUploadedFile(
364 $this->mUploadSaveName, $this->mUploadTempName );
365
366 if( !$stash ) {
367 # Couldn't save the file.
368 return false;
369 }
370
371 $key = mt_rand( 0, 0x7fffffff );
372 $_SESSION['wsUploadData'][$key] = array(
373 'mUploadTempName' => $stash,
374 'mUploadSize' => $this->mUploadSize,
375 'mOname' => $this->mOname );
376 return $key;
377 }
378
379 /**
380 * Remove a temporarily kept file stashed by saveTempUploadedFile().
381 * @access private
382 */
383 function unsaveUploadedFile() {
384 if ( ! @unlink( $this->mUploadTempName ) ) {
385 $wgOut->fileDeleteError( $this->mUploadTempName );
386 }
387 }
388
389 /* -------------------------------------------------------------- */
390
391 /**
392 * Show some text and linkage on successful upload.
393 * @access private
394 */
395 function showSuccess() {
396 global $wgUser, $wgOut, $wgContLang;
397
398 $sk = $wgUser->getSkin();
399 $ilink = $sk->makeMediaLink( $this->mUploadSaveName, Image::wfImageUrl( $this->mUploadSaveName ) );
400 $dname = $wgContLang->getNsText( NS_IMAGE ) . ':'.$this->mUploadSaveName;
401 $dlink = $sk->makeKnownLink( $dname, $dname );
402
403 $wgOut->addHTML( '<h2>' . wfMsg( 'successfulupload' ) . "</h2>\n" );
404 $text = wfMsg( 'fileuploaded', $ilink, $dlink );
405 $wgOut->addHTML( '<p>'.$text."\n" );
406 $wgOut->returnToMain( false );
407 }
408
409 /**
410 * @param string $error as HTML
411 * @access private
412 */
413 function uploadError( $error ) {
414 global $wgOut;
415 $sub = wfMsg( 'uploadwarning' );
416 $wgOut->addHTML( "<h2>{$sub}</h2>\n" );
417 $wgOut->addHTML( "<h4 class='error'>{$error}</h4>\n" );
418 }
419
420 /**
421 * There's something wrong with this file, not enough to reject it
422 * totally but we require manual intervention to save it for real.
423 * Stash it away, then present a form asking to confirm or cancel.
424 *
425 * @param string $warning as HTML
426 * @access private
427 */
428 function uploadWarning( $warning ) {
429 global $wgOut, $wgUser, $wgLang, $wgUploadDirectory, $wgRequest;
430 global $wgUseCopyrightUpload;
431
432 $this->mSessionKey = $this->stashSession();
433 if( !$this->mSessionKey ) {
434 # Couldn't save file; an error has been displayed so let's go.
435 return;
436 }
437
438 $sub = wfMsg( 'uploadwarning' );
439 $wgOut->addHTML( "<h2>{$sub}</h2>\n" );
440 $wgOut->addHTML( "<ul class='warning'>{$warning}</ul><br />\n" );
441
442 $save = wfMsg( 'savefile' );
443 $reupload = wfMsg( 'reupload' );
444 $iw = wfMsg( 'ignorewarning' );
445 $reup = wfMsg( 'reuploaddesc' );
446 $titleObj = Title::makeTitle( NS_SPECIAL, 'Upload' );
447 $action = $titleObj->escapeLocalURL( 'action=submit' );
448
449 if ( $wgUseCopyrightUpload )
450 {
451 $copyright = "
452 <input type='hidden' name=\"wpUploadCopyStatus\" value=\"" . htmlspecialchars( $this->mUploadCopyStatus ) . "\" />
453 <input type='hidden' name=\"wpUploadSource\" value=\"" . htmlspecialchars( $this->mUploadSource ) . "\" />
454 ";
455 } else {
456 $copyright = "";
457 }
458
459 $wgOut->addHTML( "
460 <form id=\"uploadwarning\" method=\"post\" enctype=\"multipart/form-data\"
461 action=\"{$action}\">
462 <input type=hidden name=\"wpUploadAffirm\" value=\"1\" />
463 <input type=hidden name=\"wpIgnoreWarning\" value=\"1\" />
464 <input type=hidden name=\"wpSessionKey\" value=\"" . htmlspecialchars( $this->mSessionKey ) . "\" />
465 <input type=hidden name=\"wpUploadDescription\" value=\"" . htmlspecialchars( $this->mUploadDescription ) . "\" />
466 {$copyright}
467 <table border='0'><tr>
468 <tr><td align='right'>
469 <input tabindex='2' type='submit' name=\"wpUpload\" value=\"{$save}\" />
470 </td><td align='left'>{$iw}</td></tr>
471 <tr><td align='right'>
472 <input tabindex='2' type='submit' name=\"wpReUpload\" value=\"{$reupload}\" />
473 </td><td align='left'>{$reup}</td></tr></table></form>\n" );
474 }
475
476 /**
477 * Displays the main upload form, optionally with a highlighted
478 * error message up at the top.
479 *
480 * @param string $msg as HTML
481 * @access private
482 */
483 function mainUploadForm( $msg='' ) {
484 global $wgOut, $wgUser, $wgLang, $wgUploadDirectory, $wgRequest;
485 global $wgUseCopyrightUpload;
486
487 if ( '' != $msg ) {
488 $sub = wfMsg( 'uploaderror' );
489 $wgOut->addHTML( "<h2>{$sub}</h2>\n" .
490 "<h4 class='error'>{$msg}</h4>\n" );
491 } else {
492 $sub = wfMsg( 'uploadfile' );
493 $wgOut->addHTML( "<h2>{$sub}</h2>\n" );
494 }
495 $wgOut->addWikiText( wfMsg( 'uploadtext' ) );
496 $sk = $wgUser->getSkin();
497
498 $fn = wfMsg( 'filename' );
499 $fd = wfMsg( 'filedesc' );
500 $ulb = wfMsg( 'uploadbtn' );
501
502 $clink = $sk->makeKnownLink( wfMsgForContent( 'copyrightpage' ),
503 wfMsg( 'copyrightpagename' ) );
504 $ca = wfMsg( 'affirmation', $clink );
505 $iw = wfMsg( 'ignorewarning' );
506
507 $titleObj = Title::makeTitle( NS_SPECIAL, 'Upload' );
508 $action = $titleObj->escapeLocalURL();
509
510 $source = "
511 <td align='right'>
512 <input tabindex='3' type='checkbox' name=\"wpUploadAffirm\" value=\"1\" id=\"wpUploadAffirm\" />
513 </td><td align='left'><label for=\"wpUploadAffirm\">{$ca}</label></td>
514 " ;
515 if ( $wgUseCopyrightUpload )
516 {
517 $source = "
518 <td align='right' nowrap='nowrap'>" . wfMsg ( 'filestatus' ) . ":</td>
519 <td><input tabindex='3' type='text' name=\"wpUploadCopyStatus\" value=\"" .
520 htmlspecialchars($this->mUploadCopyStatus). "\" size='40' /></td>
521 </tr><tr>
522 <td align='right'>". wfMsg ( 'filesource' ) . ":</td>
523 <td><input tabindex='4' type='text' name=\"wpUploadSource\" value=\"" .
524 htmlspecialchars($this->mUploadSource). "\" size='40' /></td>
525 " ;
526 }
527
528 $wgOut->addHTML( "
529 <form id=\"upload\" method=\"post\" enctype=\"multipart/form-data\"
530 action=\"{$action}\">
531 <table border='0'><tr>
532 <td align='right'>{$fn}:</td><td align='left'>
533 <input tabindex='1' type='file' name=\"wpUploadFile\" size='40' />
534 </td></tr><tr>
535 <td align='right'>{$fd}:</td><td align='left'>
536 <input tabindex='2' type='text' name=\"wpUploadDescription\" value=\""
537 . htmlspecialchars( $this->mUploadDescription ) . "\" size='40' />
538 </td></tr><tr>
539 {$source}
540 </tr>
541 <tr><td></td><td align='left'>
542 <input tabindex='5' type='submit' name=\"wpUpload\" value=\"{$ulb}\" />
543 </td></tr></table></form>\n" );
544 }
545
546 /* -------------------------------------------------------------- */
547
548 /**
549 * Split a file into a base name and all dot-delimited 'extensions'
550 * on the end. Some web server configurations will fall back to
551 * earlier pseudo-'extensions' to determine type and execute
552 * scripts, so the blacklist needs to check them all.
553 *
554 * @return array
555 */
556 function splitExtensions( $filename ) {
557 $bits = explode( '.', $filename );
558 $basename = array_shift( $bits );
559 return array( $basename, $bits );
560 }
561
562 /**
563 * Perform case-insensitive match against a list of file extensions.
564 * Returns true if the extension is in the list.
565 *
566 * @param string $ext
567 * @param array $list
568 * @return bool
569 */
570 function checkFileExtension( $ext, $list ) {
571 return in_array( strtolower( $ext ), $list );
572 }
573
574 /**
575 * Perform case-insensitive match against a list of file extensions.
576 * Returns true if any of the extensions are in the list.
577 *
578 * @param array $ext
579 * @param array $list
580 * @return bool
581 */
582 function checkFileExtensionList( $ext, $list ) {
583 foreach( $ext as $e ) {
584 if( in_array( strtolower( $e ), $list ) ) {
585 return true;
586 }
587 }
588 return false;
589 }
590
591 /**
592 * Returns false if the file is of a known type but can't be recognized,
593 * indicating a corrupt file.
594 * Returns true otherwise; unknown file types are not checked if given
595 * with an unrecognized extension.
596 *
597 * @param string $tmpfile Pathname to the temporary upload file
598 * @param string $extension The filename extension that the file is to be served with
599 * @return bool
600 */
601 function verify( $tmpfile, $extension ) {
602 if( $this->triggersIEbug( $tmpfile ) ||
603 $this->triggersSafariBug( $tmpfile ) ) {
604 return false;
605 }
606
607 $fname = 'SpecialUpload::verify';
608 $mergeExtensions = array(
609 'jpg' => 'jpeg',
610 'tif' => 'tiff' );
611 $extensionTypes = array(
612 # See http://www.php.net/getimagesize
613 1 => 'gif',
614 2 => 'jpeg',
615 3 => 'png',
616 4 => 'swf',
617 5 => 'psd',
618 6 => 'bmp',
619 7 => 'tiff',
620 8 => 'tiff',
621 9 => 'jpc',
622 10 => 'jp2',
623 11 => 'jpx',
624 12 => 'jb2',
625 13 => 'swc',
626 14 => 'iff',
627 15 => 'wbmp',
628 16 => 'xbm' );
629
630 $extension = strtolower( $extension );
631 if( isset( $mergeExtensions[$extension] ) ) {
632 $extension = $mergeExtensions[$extension];
633 }
634 wfDebug( "$fname: Testing file '$tmpfile' with given extension '$extension'\n" );
635
636 if( !in_array( $extension, $extensionTypes ) ) {
637 # Not a recognized image type. We don't know how to verify these.
638 # They're allowed by policy or they wouldn't get this far, so we'll
639 # let them slide for now.
640 wfDebug( "$fname: Unknown extension; passing.\n" );
641 return true;
642 }
643
644 $data = @getimagesize( $tmpfile );
645 if( false === $data ) {
646 # Didn't recognize the image type.
647 # Either the image is corrupt or someone's slipping us some
648 # bogus data such as HTML+JavaScript trying to take advantage
649 # of an Internet Explorer security flaw.
650 wfDebug( "$fname: getimagesize() doesn't recognize the file; rejecting.\n" );
651 return false;
652 }
653
654 $imageType = $data[2];
655 if( !isset( $extensionTypes[$imageType] ) ) {
656 # Now we're kind of confused. Perhaps new image types added
657 # to PHP's support that we don't know about.
658 # We'll let these slide for now.
659 wfDebug( "$fname: getimagesize() knows the file, but we don't recognize the type; passing.\n" );
660 return true;
661 }
662
663 $ext = strtolower( $extension );
664 if( $extension != $extensionTypes[$imageType] ) {
665 # The given filename extension doesn't match the
666 # file type. Probably just a mistake, but it's a stupid
667 # one and we shouldn't let it pass. KILL THEM!
668 wfDebug( "$fname: file extension does not match recognized type; rejecting.\n" );
669 return false;
670 }
671
672 wfDebug( "$fname: all clear; passing.\n" );
673 return true;
674 }
675
676 /**
677 * Internet Explorer for Windows performs some really stupid file type
678 * autodetection which can cause it to interpret valid image files as HTML
679 * and potentially execute JavaScript, creating a cross-site scripting
680 * attack vectors.
681 *
682 * Returns true if IE is likely to mistake the given file for HTML.
683 *
684 * @param string $filename
685 * @return bool
686 */
687 function triggersIEbug( $filename ) {
688 $file = fopen( $filename, 'rb' );
689 $chunk = strtolower( fread( $file, 256 ) );
690 fclose( $file );
691
692 $tags = array(
693 '<body',
694 '<head',
695 '<html',
696 '<img',
697 '<pre',
698 '<script',
699 '<table',
700 '<title' );
701 foreach( $tags as $tag ) {
702 if( false !== strpos( $chunk, $tag ) ) {
703 return true;
704 }
705 }
706 return false;
707 }
708
709 /**
710 * Apple's Safari browser performs some unsafe file type autodetection
711 * which can cause legitimate files to be interpreted as HTML if the
712 * web server is not correctly configured to send the right content-type
713 * (or if you're really uploading plain text and octet streams!)
714 *
715 * Returns true if Safari would mistake the given file for HTML
716 * when served with a generic content-type.
717 *
718 * @param string $filename
719 * @return bool
720 */
721 function triggersSafariBug( $filename ) {
722 $file = fopen( $filename, 'rb' );
723 $chunk = strtolower( fread( $file, 1024 ) );
724 fclose( $file );
725
726 $tags = array(
727 '<html',
728 '<script',
729 '<title' );
730 foreach( $tags as $tag ) {
731 if( false !== strpos( $chunk, $tag ) ) {
732 return true;
733 }
734 }
735 return false;
736 }
737
738 }
739 ?>