2007-02-19 23:03:37 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Standard output handler for use with ob_start
|
|
|
|
|
*/
|
|
|
|
|
function wfOutputHandler( $s ) {
|
|
|
|
|
global $wgDisableOutputCompression;
|
|
|
|
|
$s = wfMangleFlashPolicy( $s );
|
2007-02-20 04:46:07 +00:00
|
|
|
if ( !$wgDisableOutputCompression && !ini_get( 'zlib.output_compression' ) ) {
|
|
|
|
|
if ( !defined( 'MW_NO_OUTPUT_COMPRESSION' ) ) {
|
2007-02-19 23:03:37 +00:00
|
|
|
$s = wfGzipHandler( $s );
|
|
|
|
|
}
|
|
|
|
|
if ( !ini_get( 'output_handler' ) ) {
|
|
|
|
|
wfDoContentLength( strlen( $s ) );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Handler that compresses data with gzip if allowed by the Accept header.
|
|
|
|
|
* Unlike ob_gzhandler, it works for HEAD requests too.
|
|
|
|
|
*/
|
|
|
|
|
function wfGzipHandler( $s ) {
|
2007-02-20 04:58:54 +00:00
|
|
|
if ( function_exists( 'gzencode' ) && !headers_sent() ) {
|
2007-02-19 23:03:37 +00:00
|
|
|
$tokens = preg_split( '/[,; ]/', $_SERVER['HTTP_ACCEPT_ENCODING'] );
|
|
|
|
|
if ( in_array( 'gzip', $tokens ) ) {
|
|
|
|
|
header( 'Content-Encoding: gzip' );
|
|
|
|
|
$s = gzencode( $s, 3 );
|
|
|
|
|
|
|
|
|
|
# Set vary header if it hasn't been set already
|
|
|
|
|
$headers = headers_list();
|
|
|
|
|
$foundVary = false;
|
|
|
|
|
foreach ( $headers as $header ) {
|
|
|
|
|
if ( substr( $header, 0, 5 ) == 'Vary:' ) {
|
2007-02-20 05:04:36 +00:00
|
|
|
$foundVary = true;
|
2007-02-19 23:03:37 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ( !$foundVary ) {
|
|
|
|
|
header( 'Vary: Accept-Encoding' );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Mangle flash policy tags which open up the site to XSS attacks.
|
|
|
|
|
*/
|
|
|
|
|
function wfMangleFlashPolicy( $s ) {
|
|
|
|
|
return preg_replace( '/\<\s*cross-domain-policy\s*\>/i', '<NOT-cross-domain-policy>', $s );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add a Content-Length header if possible. This makes it cooperate with squid better.
|
|
|
|
|
*/
|
|
|
|
|
function wfDoContentLength( $length ) {
|
|
|
|
|
if ( !headers_sent() && $_SERVER['SERVER_PROTOCOL'] == 'HTTP/1.0' ) {
|
|
|
|
|
header( "Content-Length: $length" );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-06-29 01:19:14 +00:00
|
|
|
|