X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=thumb.php;h=0bb0b60c34558b40dd30dfd71eb26127b4760635;hb=c0cbf2e16e852ac05c42015f65283f907018bd17;hp=2159d2ee65584f6e3e98bfcbf7d289f71f6cc2db;hpb=d466cf6e86b929b17e3a9938e16a4e97d9448cdb;p=lhc%2Fweb%2Fwiklou.git diff --git a/thumb.php b/thumb.php index 2159d2ee65..0bb0b60c34 100644 --- a/thumb.php +++ b/thumb.php @@ -3,99 +3,194 @@ /** * PHP script to stream out an image thumbnail. * - * @addtogroup Media + * @file + * @ingroup Media */ define( 'MW_NO_OUTPUT_COMPRESSION', 1 ); -require_once( './includes/WebStart.php' ); -wfProfileIn( 'thumb.php' ); -wfProfileIn( 'thumb.php-start' ); +if ( isset( $_SERVER['MW_COMPILED'] ) ) { + require ( 'phase3/includes/WebStart.php' ); +} else { + require ( dirname( __FILE__ ) . '/includes/WebStart.php' ); +} $wgTrivialMimeDetection = true; //don't use fancy mime detection, just check the file extension for jpg/gif/png. -require_once( "$IP/includes/StreamFile.php" ); +wfThumbMain(); +wfLogProfilingData(); -// 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'] ); +function wfThumbMain() { + wfProfileIn( __METHOD__ ); -// 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'] ); + $headers = array(); -// Some basic input validation -$fileName = strtr( $fileName, '\\/', '__' ); + // Get input parameters + if ( defined( 'THUMB_HANDLER' ) ) { + $params = $_REQUEST; // called from thumb_handler.php + } else { + $params = get_magic_quotes_gpc() + ? array_map( 'stripslashes', $_REQUEST ) + : $_REQUEST; + } -// Stream the file if it exists already -try { - $img = wfLocalFile( $fileName ); - if ( $img && false != ( $thumbName = $img->thumbName( $params ) ) ) { - $thumbPath = $img->getThumbPath( $thumbName ); + $fileName = isset( $params['f'] ) ? $params['f'] : ''; + unset( $params['f'] ); - if ( is_file( $thumbPath ) ) { - wfStreamFile( $thumbPath ); - wfLogProfilingData(); - exit; + // 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'] ); // ignore 'r' because we unconditionally pass File::RENDER + + // Is this a thumb of an archived file? + $isOld = ( isset( $params['archived'] ) && $params['archived'] ); + unset( $params['archived'] ); + + // Some basic input validation + $fileName = strtr( $fileName, '\\/', '__' ); + + // Actually fetch the image. Method depends on whether it is archived or not. + if ( $isOld ) { + // Format is ! + $bits = explode( '!', $fileName, 2 ); + if ( count( $bits ) != 2 ) { + wfThumbError( 404, wfMsg( 'badtitletext' ) ); + wfProfileOut( __METHOD__ ); + return; } + $title = Title::makeTitleSafe( NS_FILE, $bits[1] ); + if ( is_null( $title ) ) { + wfThumbError( 404, wfMsg( 'badtitletext' ) ); + wfProfileOut( __METHOD__ ); + return; + } + $img = RepoGroup::singleton()->getLocalRepo()->newFromArchiveName( $title, $fileName ); + } else { + $img = wfLocalFile( $fileName ); + } + + // Check permissions if there are read restrictions + if ( !in_array( 'read', User::getGroupPermissions( array( '*' ) ), true ) ) { + if ( !$img->getTitle()->userCanRead() ) { + wfThumbError( 403, 'Access denied. You do not have permission to access ' . + 'the source file.' ); + wfProfileOut( __METHOD__ ); + return; + } + $headers[] = 'Cache-Control: private'; + $headers[] = 'Vary: Cookie'; + } + + if ( !$img ) { + wfThumbError( 404, wfMsg( 'badtitletext' ) ); + wfProfileOut( __METHOD__ ); + return; + } + if ( !$img->exists() ) { + wfThumbError( 404, 'The source file for the specified thumbnail does not exist.' ); + wfProfileOut( __METHOD__ ); + return; + } + $sourcePath = $img->getPath(); + if ( $sourcePath === false ) { + wfThumbError( 500, 'The source file is not locally accessible.' ); + wfProfileOut( __METHOD__ ); + return; } -} catch ( MWException $e ) { - thumbInternalError( $e->getHTML() ); - wfLogProfilingData(); - exit; -} -wfProfileOut( 'thumb.php-start' ); -wfProfileIn( 'thumb.php-render' ); + // Check IMS against the source file + // This means that clients can keep a cached copy even after it has been deleted on the server + if ( !empty( $_SERVER['HTTP_IF_MODIFIED_SINCE'] ) ) { + // Fix IE brokenness + $imsString = preg_replace( '/;.*$/', '', $_SERVER["HTTP_IF_MODIFIED_SINCE"] ); + // Calculate time + wfSuppressWarnings(); + $imsUnix = strtotime( $imsString ); + $stat = stat( $sourcePath ); + wfRestoreWarnings(); + if ( $stat['mtime'] <= $imsUnix ) { + header( 'HTTP/1.1 304 Not Modified' ); + wfProfileOut( __METHOD__ ); + return; + } + } + + // Stream the file if it exists already... + try { + $thumbName = $img->thumbName( $params ); + if ( $thumbName !== false ) { // valid params? + $thumbPath = $img->getThumbPath( $thumbName ); + if ( is_file( $thumbPath ) ) { + StreamFile::stream( $thumbPath, $headers ); + wfProfileOut( __METHOD__ ); + return; + } + } + } catch ( MWException $e ) { + wfThumbError( 500, $e->getHTML() ); + wfProfileOut( __METHOD__ ); + return; + } -try { - if ( $img ) { + // Thumbnail isn't already there, so create the new thumbnail... + try { $thumb = $img->transform( $params, File::RENDER_NOW ); - } else { + } catch( Exception $ex ) { + // Tried to select a page on a non-paged file? $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' ); + // Check for thumbnail generation errors... + $errorMsg = false; + if ( !$thumb ) { + $errorMsg = wfMsgHtml( 'thumbnail_error', 'File::transform() returned false' ); } elseif ( $thumb->isError() ) { - $msg = $thumb->getHtmlMsg(); + $errorMsg = $thumb->getHtmlMsg(); } elseif ( !$thumb->getPath() ) { - $msg = wfMsgHtml( 'thumbnail_error', 'No path supplied in thumbnail object' ); - } else { - $msg = wfMsgHtml( 'thumbnail_error', 'Output file missing' ); + $errorMsg = wfMsgHtml( 'thumbnail_error', 'No path supplied in thumbnail object' ); + } elseif ( $thumb->getPath() == $img->getPath() ) { + $errorMsg = wfMsgHtml( 'thumbnail_error', 'Image was not scaled, ' . + 'is the requested width bigger than the source?' ); } - thumbInternalError( $msg ); -} -wfProfileOut( 'thumb.php-render' ); -wfProfileOut( 'thumb.php' ); -wfLogProfilingData(); + if ( $errorMsg !== false ) { + wfThumbError( 500, $errorMsg ); + } else { + // Stream the file if there were no errors + StreamFile::stream( $thumb->getPath(), $headers ); + } -//-------------------------------------------------------------------------- + wfProfileOut( __METHOD__ ); +} -function thumbInternalError( $msg ) { +/** + * @param $status + * @param $msg + */ +function wfThumbError( $status, $msg ) { + global $wgShowHostnames; header( 'Cache-Control: no-cache' ); header( 'Content-Type: text/html; charset=utf-8' ); - header( 'HTTP/1.1 500 Internal server error' ); + if ( $status == 404 ) { + header( 'HTTP/1.1 404 Not found' ); + } elseif ( $status == 403 ) { + header( 'HTTP/1.1 403 Forbidden' ); + header( 'Vary: Cookie' ); + } else { + header( 'HTTP/1.1 500 Internal server error' ); + } + if ( $wgShowHostnames ) { + $url = htmlspecialchars( isset( $_SERVER['REQUEST_URI'] ) ? $_SERVER['REQUEST_URI'] : '' ); + $hostname = htmlspecialchars( wfHostname() ); + $debug = "\n\n"; + } else { + $debug = ""; + } echo <<Error generating thumbnail @@ -103,10 +198,10 @@ function thumbInternalError( $msg ) {

$msg

+$debug EOT; } -