* Added support for configuration of an arbitrary number of commons-style file repositories. * Split Image.php into filerepo/File.php and filerepo/LocalFile.php * Renamed Image::getImagePath() to File::getPath() * Added initial support for timestamp-based file fetching (OldLocalFile), to be expanded upon by aaron. * Changed the interface for Image/File object creation: use wfFindFile() or wfLocalFile() depending on semantics * ImageGallery::add() now accepts a title object as the first parameter * Moved file handling operations on upload from SpecialUpload to File * Removed path-related functions from ImageFunctions.php. Removed static path accessors from File. * Added a Content-Disposition header to thumb.php output * Improved thumb.php error handling * Updated the unit test suite to kind of partially work with modern computers. RunTests.php doesn't work just yet. Fixed an actual regression that the test suite detected -- moved some defines to Defines.php where they will be loaded consistently.
110 lines
2.6 KiB
PHP
110 lines
2.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* PHP script to stream out an image thumbnail.
|
|
*/
|
|
define( 'MW_NO_OUTPUT_COMPRESSION', 1 );
|
|
require_once( './includes/WebStart.php' );
|
|
wfProfileIn( 'thumb.php' );
|
|
wfProfileIn( 'thumb.php-start' );
|
|
|
|
$wgTrivialMimeDetection = true; //don't use fancy mime detection, just check the file extension for jpg/gif/png.
|
|
|
|
require_once( "$IP/includes/StreamFile.php" );
|
|
|
|
// Get input parameters
|
|
if ( get_magic_quotes_gpc() ) {
|
|
$params = array_map( 'stripslashes', $_REQUEST );
|
|
} else {
|
|
$params = $_REQUEST;
|
|
}
|
|
|
|
$fileName = isset( $params['f'] ) ? $params['f'] : '';
|
|
unset( $params['f'] );
|
|
|
|
// Backwards compatibility parameters
|
|
if ( isset( $params['w'] ) ) {
|
|
$params['width'] = $params['w'];
|
|
unset( $params['w'] );
|
|
}
|
|
if ( isset( $params['p'] ) ) {
|
|
$params['page'] = $params['p'];
|
|
}
|
|
unset( $params['r'] );
|
|
|
|
// Some basic input validation
|
|
$fileName = strtr( $fileName, '\\/', '__' );
|
|
|
|
// Stream the file if it exists already
|
|
try {
|
|
$img = wfLocalFile( $fileName );
|
|
if ( $img && false != ( $thumbName = $img->thumbName( $params ) ) ) {
|
|
$thumbPath = $img->getThumbPath( $thumbName );
|
|
|
|
if ( is_file( $thumbPath ) ) {
|
|
wfStreamFile( $thumbPath );
|
|
wfLogProfilingData();
|
|
exit;
|
|
}
|
|
}
|
|
} catch ( MWException $e ) {
|
|
thumbInternalError( $e->getHTML() );
|
|
wfLogProfilingData();
|
|
exit;
|
|
}
|
|
|
|
wfProfileOut( 'thumb.php-start' );
|
|
wfProfileIn( 'thumb.php-render' );
|
|
|
|
try {
|
|
if ( $img ) {
|
|
$thumb = $img->transform( $params, File::RENDER_NOW );
|
|
} else {
|
|
$thumb = false;
|
|
}
|
|
} catch( Exception $ex ) {
|
|
// Tried to select a page on a non-paged file?
|
|
$thumb = false;
|
|
}
|
|
|
|
if ( $thumb && $thumb->getPath() && file_exists( $thumb->getPath() ) ) {
|
|
wfStreamFile( $thumb->getPath() );
|
|
} else {
|
|
if ( !$img ) {
|
|
$msg = wfMsg( 'badtitletext' );
|
|
} elseif ( !$thumb ) {
|
|
$msg = wfMsgHtml( 'thumbnail_error', 'File::transform() returned false' );
|
|
} elseif ( $thumb->isError() ) {
|
|
$msg = $thumb->getHtmlMsg();
|
|
} elseif ( !$thumb->getPath() ) {
|
|
$msg = wfMsgHtml( 'thumbnail_error', 'No path supplied in thumbnail object' );
|
|
} else {
|
|
$msg = wfMsgHtml( 'thumbnail_error', 'Output file missing' );
|
|
}
|
|
thumbInternalError( $msg );
|
|
}
|
|
|
|
wfProfileOut( 'thumb.php-render' );
|
|
wfProfileOut( 'thumb.php' );
|
|
wfLogProfilingData();
|
|
|
|
//--------------------------------------------------------------------------
|
|
|
|
function thumbInternalError( $msg ) {
|
|
header( 'Cache-Control: no-cache' );
|
|
header( 'Content-Type: text/html; charset=utf-8' );
|
|
header( 'HTTP/1.1 500 Internal server error' );
|
|
echo <<<EOT
|
|
<html><head><title>Error generating thumbnail</title></head>
|
|
<body>
|
|
<h1>Error generating thumbnail</h1>
|
|
<p>
|
|
$msg
|
|
</p>
|
|
</body>
|
|
</html>
|
|
|
|
EOT;
|
|
}
|
|
|
|
?>
|