]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blobdiff - includes/StreamFile.php
MediaWiki 1.30.2
[autoinstallsdev/mediawiki.git] / includes / StreamFile.php
index 5f460ee35c29289566b0a51fd14ac6a530e6efdb..71113a8691dc798388f185086358ea59e7752edf 100644 (file)
 <?php
 /**
- * Functions related to the output of file content
+ * Functions related to the output of file content.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * http://www.gnu.org/copyleft/gpl.html
  *
  * @file
  */
 
-/** */
-function wfStreamFile( $fname, $headers = array() ) {
-       $stat = @stat( $fname );
-       if ( !$stat ) {
-               header( 'HTTP/1.0 404 Not Found' );
-               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' );
+/**
+ * Functions related to the output of file content
+ */
+class StreamFile {
+       // Do not send any HTTP headers unless requested by caller (e.g. body only)
+       const STREAM_HEADLESS = HTTPFileStreamer::STREAM_HEADLESS;
+       // Do not try to tear down any PHP output buffers
+       const STREAM_ALLOW_OB = HTTPFileStreamer::STREAM_ALLOW_OB;
 
-       // Cancel output buffering and gzipping if set
-       wfResetOutputBuffers();
+       /**
+        * Stream a file to the browser, adding all the headings and fun stuff.
+        * Headers sent include: Content-type, Content-Length, Last-Modified,
+        * and Content-Disposition.
+        *
+        * @param string $fname Full name and path of the file to stream
+        * @param array $headers Any additional headers to send if the file exists
+        * @param bool $sendErrors Send error messages if errors occur (like 404)
+        * @param array $optHeaders HTTP request header map (e.g. "range") (use lowercase keys)
+        * @param int $flags Bitfield of STREAM_* constants
+        * @throws MWException
+        * @return bool Success
+        */
+       public static function stream(
+               $fname, $headers = [], $sendErrors = true, $optHeaders = [], $flags = 0
+       ) {
+               if ( FileBackend::isStoragePath( $fname ) ) { // sanity
+                       throw new InvalidArgumentException( __FUNCTION__ . " given storage path '$fname'." );
+               }
 
-       $type = wfGetType( $fname );
-       if ( $type and $type!="unknown/unknown") {
-               header("Content-type: $type");
-       } else {
-               header('Content-type: application/x-wiki');
-       }
+               $streamer = new HTTPFileStreamer(
+                       $fname,
+                       [
+                               'obResetFunc' => 'wfResetOutputBuffers',
+                               'streamMimeFunc' => [ __CLASS__, 'contentTypeFromPath' ]
+                       ]
+               );
 
-       // Don't stream it out as text/html if there was a PHP error
-       if ( headers_sent() ) {
-               echo "Headers already sent, terminating.\n";
-               return;
+               return $streamer->stream( $headers, $sendErrors, $optHeaders, $flags );
        }
 
-       global $wgLanguageCode;
-       header( "Content-Disposition: inline;filename*=utf-8'$wgLanguageCode'" . urlencode( basename( $fname ) ) );
-
-       foreach ( $headers as $header ) {
-               header( $header );
+       /**
+        * Send out a standard 404 message for a file
+        *
+        * @param string $fname Full name and path of the file to stream
+        * @param int $flags Bitfield of STREAM_* constants
+        * @since 1.24
+        */
+       public static function send404Message( $fname, $flags = 0 ) {
+               HTTPFileStreamer::send404Message( $fname, $flags );
        }
 
-       if ( !empty( $_SERVER['HTTP_IF_MODIFIED_SINCE'] ) ) {
-               $modsince = preg_replace( '/;.*$/', '', $_SERVER['HTTP_IF_MODIFIED_SINCE'] );
-               $sinceTime = strtotime( $modsince );
-               if ( $stat['mtime'] <= $sinceTime ) {
-                       ini_set('zlib.output_compression', 0);
-                       header( "HTTP/1.0 304 Not Modified" );
-                       return;
-               }
+       /**
+        * Convert a Range header value to an absolute (start, end) range tuple
+        *
+        * @param string $range Range header value
+        * @param int $size File size
+        * @return array|string Returns error string on failure (start, end, length)
+        * @since 1.24
+        */
+       public static function parseRange( $range, $size ) {
+               return HTTPFileStreamer::parseRange( $range, $size );
        }
 
-       header( 'Content-Length: ' . $stat['size'] );
-
-       readfile( $fname );
-}
+       /**
+        * Determine the file type of a file based on the path
+        *
+        * @param string $filename Storage path or file system path
+        * @param bool $safe Whether to do retroactive upload blacklist checks
+        * @return null|string
+        */
+       public static function contentTypeFromPath( $filename, $safe = true ) {
+               global $wgTrivialMimeDetection;
 
-/** */
-function wfGetType( $filename, $safe = true ) {
-       global $wgTrivialMimeDetection;
+               $ext = strrchr( $filename, '.' );
+               $ext = $ext === false ? '' : strtolower( substr( $ext, 1 ) );
 
-       $ext = strrchr($filename, '.');
-       $ext = $ext === false ? '' : strtolower( substr( $ext, 1 ) );
+               # trivial detection by file extension,
+               # used for thumbnails (thumb.php)
+               if ( $wgTrivialMimeDetection ) {
+                       switch ( $ext ) {
+                               case 'gif':
+                                       return 'image/gif';
+                               case 'png':
+                                       return 'image/png';
+                               case 'jpg':
+                                       return 'image/jpeg';
+                               case 'jpeg':
+                                       return 'image/jpeg';
+                       }
 
-       # trivial detection by file extension,
-       # used for thumbnails (thumb.php)
-       if ($wgTrivialMimeDetection) {
-               switch ($ext) {
-                       case 'gif': return 'image/gif';
-                       case 'png': return 'image/png';
-                       case 'jpg': return 'image/jpeg';
-                       case 'jpeg': return 'image/jpeg';
+                       return 'unknown/unknown';
                }
 
-               return 'unknown/unknown';
-       }
-       
-       $magic = MimeMagic::singleton();
-       // Use the extension only, rather than magic numbers, to avoid opening 
-       // up vulnerabilities due to uploads of files with allowed extensions
-       // but disallowed types.
-       $type = $magic->guessTypesForExtension( $ext );
+               $magic = MimeMagic::singleton();
+               // Use the extension only, rather than magic numbers, to avoid opening
+               // up vulnerabilities due to uploads of files with allowed extensions
+               // but disallowed types.
+               $type = $magic->guessTypesForExtension( $ext );
 
-       /**
-        * Double-check some security settings that were done on upload but might 
-        * have changed since.
-        */
-       if ( $safe ) {
-               global $wgFileBlacklist, $wgCheckFileExtensions, $wgStrictFileExtensions, 
-                       $wgFileExtensions, $wgVerifyMimeType, $wgMimeTypeBlacklist;
-               list( , $extList ) = UploadBase::splitExtensions( $filename );
-               if ( UploadBase::checkFileExtensionList( $extList, $wgFileBlacklist ) ) {
-                       return 'unknown/unknown';
-               }
-               if ( $wgCheckFileExtensions && $wgStrictFileExtensions 
-                       && !UploadBase::checkFileExtensionList( $extList, $wgFileExtensions ) )
-               {
-                       return 'unknown/unknown';
-               }
-               if ( $wgVerifyMimeType && in_array( strtolower( $type ), $wgMimeTypeBlacklist ) ) {
-                       return 'unknown/unknown';
+               /**
+                * Double-check some security settings that were done on upload but might
+                * have changed since.
+                */
+               if ( $safe ) {
+                       global $wgFileBlacklist, $wgCheckFileExtensions, $wgStrictFileExtensions,
+                               $wgFileExtensions, $wgVerifyMimeType, $wgMimeTypeBlacklist;
+                       list( , $extList ) = UploadBase::splitExtensions( $filename );
+                       if ( UploadBase::checkFileExtensionList( $extList, $wgFileBlacklist ) ) {
+                               return 'unknown/unknown';
+                       }
+                       if ( $wgCheckFileExtensions && $wgStrictFileExtensions
+                               && !UploadBase::checkFileExtensionList( $extList, $wgFileExtensions )
+                       ) {
+                               return 'unknown/unknown';
+                       }
+                       if ( $wgVerifyMimeType && in_array( strtolower( $type ), $wgMimeTypeBlacklist ) ) {
+                               return 'unknown/unknown';
+                       }
                }
+               return $type;
        }
-       return $type;
 }