X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=thumb.php;h=4ca24ed77f45b9422fab06f8fd15dfcf526673f4;hb=c9ff62b6dee796a71094bf3296bcc04223e4e841;hp=7c188b47f127acf16627c77663703d38273d694f;hpb=28dc3ec8884af80faaa996e72be4f945e8466c95;p=lhc%2Fweb%2Fwiklou.git diff --git a/thumb.php b/thumb.php index 7c188b47f1..4ca24ed77f 100644 --- a/thumb.php +++ b/thumb.php @@ -9,44 +9,49 @@ define( 'MW_NO_OUTPUT_COMPRESSION', 1 ); require_once( './includes/WebStart.php' ); wfProfileIn( 'thumb.php' ); wfProfileIn( 'thumb.php-start' ); -require_once( './includes/GlobalFunctions.php' ); -require_once( './includes/ImageFunctions.php' ); +require_once( "$IP/includes/GlobalFunctions.php" ); +require_once( "$IP/includes/ImageFunctions.php" ); $wgTrivialMimeDetection = true; //don't use fancy mime detection, just check the file extension for jpg/gif/png. -require_once( './includes/Image.php' ); -require_once( './includes/StreamFile.php' ); +require_once( "$IP/includes/StreamFile.php" ); +require_once( "$IP/includes/AutoLoader.php" ); // Get input parameters -$fileName = isset( $_REQUEST['f'] ) ? $_REQUEST['f'] : ''; -$width = isset( $_REQUEST['w'] ) ? intval( $_REQUEST['w'] ) : 0; -$page = isset( $_REQUEST['p'] ) ? intval( $_REQUEST['p'] ) : null; - if ( get_magic_quotes_gpc() ) { - $fileName = stripslashes( $fileName ); + $params = array_map( 'stripslashes', $_REQUEST ); +} else { + $params = $_REQUEST; } -$pre_render= isset($_REQUEST['r']) && $_REQUEST['r']!="0"; +$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, '\\/', '__' ); // Work out paths, carefully avoiding constructing an Image object because that won't work yet +$handler = thumbGetHandler( $fileName ); +if ( $handler ) { + $imagePath = wfImageDir( $fileName ) . '/' . $fileName; + $thumbName = $handler->makeParamString( $params ) . "-$fileName"; + $thumbPath = wfImageThumbDir( $fileName ) . '/' . $thumbName; -$imagePath = wfImageDir( $fileName ) . '/' . $fileName; -$thumbName = "{$width}px-$fileName"; -if ( ! is_null( $page ) ) { - $thumbName = 'page' . $page . '-' . $thumbName; -} -if ( $pre_render ) { - $thumbName .= '.png'; -} -$thumbPath = wfImageThumbDir( $fileName ) . '/' . $thumbName; - -if ( is_file( $thumbPath ) && filemtime( $thumbPath ) >= filemtime( $imagePath ) ) { - wfStreamFile( $thumbPath ); - // Can't log profiling data with no Setup.php - exit; + if ( is_file( $thumbPath ) && filemtime( $thumbPath ) >= filemtime( $imagePath ) ) { + wfStreamFile( $thumbPath ); + // Can't log profiling data with no Setup.php + exit; + } } // OK, no valid thumbnail, time to get out the heavy machinery @@ -57,10 +62,7 @@ wfProfileIn( 'thumb.php-render' ); $img = Image::newFromName( $fileName ); try { if ( $img ) { - if ( ! is_null( $page ) ) { - $img->selectPage( $page ); - } - $thumb = $img->renderThumb( $width, false ); + $thumb = $img->transform( $params, Image::RENDER_NOW ); } else { $thumb = false; } @@ -69,13 +71,38 @@ try { $thumb = false; } -if ( $thumb && $thumb->path ) { - wfStreamFile( $thumb->path ); +if ( $thumb && $thumb->getPath() && file_exists( $thumb->getPath() ) ) { + wfStreamFile( $thumb->getPath() ); +} elseif ( $img ) { + header( 'Cache-Control: no-cache' ); + header( 'Content-Type: text/html; charset=utf-8' ); + header( 'HTTP/1.1 500 Internal server error' ); + if ( !$thumb ) { + $msg = wfMsgHtml( 'thumbnail_error', 'Image::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' ); + } + echo <<Error generating thumbnail + +

Error generating thumbnail

+

+$msg +

+ + + +EOT; } else { $badtitle = wfMsg( 'badtitle' ); $badtitletext = wfMsg( 'badtitletext' ); header( 'Cache-Control: no-cache' ); - header( 'Content-Type: text/html' ); + header( 'Content-Type: text/html; charset=utf-8' ); + header( 'HTTP/1.1 500 Internal server error' ); echo " $badtitle @@ -89,4 +116,17 @@ wfProfileOut( 'thumb.php-render' ); wfProfileOut( 'thumb.php' ); wfLogProfilingData(); +//-------------------------------------------------------------------------- + +function thumbGetHandler( $fileName ) { + // Determine type + $magic = MimeMagic::singleton(); + $extPos = strrpos( $fileName, '.' ); + if ( $extPos === false ) { + return false; + } + $mime = $magic->guessTypesForExtension( substr( $fileName, $extPos + 1 ) ); + return MediaHandler::getHandler( $mime ); +} + ?>