wiki.techinc.nl/includes/StreamFile.php

73 lines
1.7 KiB
PHP
Raw Normal View History

<?php
2005-07-05 21:22:25 +00:00
/** */
2005-07-05 21:22:25 +00:00
/** */
function wfStreamFile( $fname ) {
$stat = @stat( $fname );
if ( !$stat ) {
header( 'HTTP/1.0 404 Not Found' );
2006-11-01 11:21:09 +00:00
header( 'Cache-Control: no-cache' );
header( 'Content-Type: text/html; charset=utf-8' );
$encFile = htmlspecialchars( $fname );
$encScript = htmlspecialchars( $_SERVER['SCRIPT_NAME'] );
echo "<html><body>
<h1>File not found</h1>
<p>Although this PHP script ($encScript) exists, the file requested for output
($encFile) does not.</p>
</body></html>
";
return;
}
header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s', $stat['mtime'] ) . ' GMT' );
// Cancel output buffering and gzipping if set
wfResetOutputBuffers();
$type = wfGetType( $fname );
if ( $type and $type!="unknown/unknown") {
header("Content-type: $type");
} else {
header('Content-type: application/x-wiki');
}
if ( !empty( $_SERVER['HTTP_IF_MODIFIED_SINCE'] ) ) {
$modsince = preg_replace( '/;.*$/', '', $_SERVER['HTTP_IF_MODIFIED_SINCE'] );
$sinceTime = strtotime( $modsince );
if ( $stat['mtime'] <= $sinceTime ) {
header( "HTTP/1.0 304 Not Modified" );
return;
}
}
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
header( 'Content-Length: ' . $stat['size'] );
2006-01-07 13:31:29 +00:00
readfile( $fname );
}
2005-07-05 21:22:25 +00:00
/** */
function wfGetType( $filename ) {
2005-05-21 07:46:17 +00:00
global $wgTrivialMimeDetection;
2005-05-21 07:46:17 +00:00
# trivial detection by file extension,
# used for thumbnails (thumb.php)
if ($wgTrivialMimeDetection) {
$ext= strtolower(strrchr($filename, '.'));
2006-01-07 13:31:29 +00:00
2005-05-21 07:46:17 +00:00
switch ($ext) {
2005-07-05 21:22:25 +00:00
case '.gif': return 'image/gif';
case '.png': return 'image/png';
case '.jpg': return 'image/jpeg';
case '.jpeg': return 'image/jpeg';
}
2006-01-07 13:31:29 +00:00
2005-07-05 21:22:25 +00:00
return 'unknown/unknown';
2005-05-21 07:46:17 +00:00
}
else {
$magic=& MimeMagic::singleton();
2005-05-21 07:46:17 +00:00
return $magic->guessMimeType($filename); //full fancy mime detection
}
}
?>