2009-01-14 15:18:51 +01:00
|
|
|
<?php
|
|
|
|
|
2009-04-20 20:18:39 +02:00
|
|
|
/**
|
2009-04-15 21:55:41 +02:00
|
|
|
* Disable error reporting
|
2009-04-20 20:18:39 +02:00
|
|
|
*
|
2014-07-07 18:42:16 +02:00
|
|
|
* Set this to error_reporting( -1 ) for debugging.
|
2009-04-15 21:55:41 +02:00
|
|
|
*/
|
|
|
|
error_reporting(0);
|
|
|
|
|
2009-01-14 15:18:51 +01:00
|
|
|
/** Set ABSPATH for execution */
|
2016-04-14 19:53:28 +02:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
define( 'ABSPATH', dirname( dirname( __FILE__ ) ) . '/' );
|
|
|
|
}
|
|
|
|
|
2009-04-05 05:32:49 +02:00
|
|
|
define( 'WPINC', 'wp-includes' );
|
2009-01-14 15:18:51 +01:00
|
|
|
|
2012-12-05 19:57:56 +01:00
|
|
|
$load = $_GET['load'];
|
|
|
|
if ( is_array( $load ) )
|
|
|
|
$load = implode( '', $load );
|
|
|
|
|
|
|
|
$load = preg_replace( '/[^a-z0-9,_-]+/i', '', $load );
|
2013-07-29 19:57:04 +02:00
|
|
|
$load = array_unique( explode( ',', $load ) );
|
2009-01-14 15:18:51 +01:00
|
|
|
|
|
|
|
if ( empty($load) )
|
|
|
|
exit;
|
|
|
|
|
2015-09-11 07:04:23 +02:00
|
|
|
require( ABSPATH . 'wp-admin/includes/noop.php' );
|
|
|
|
require( ABSPATH . WPINC . '/script-loader.php' );
|
|
|
|
require( ABSPATH . WPINC . '/version.php' );
|
2009-01-14 15:18:51 +01:00
|
|
|
|
2009-01-26 13:59:10 +01:00
|
|
|
$compress = ( isset($_GET['c']) && $_GET['c'] );
|
|
|
|
$force_gzip = ( $compress && 'gzip' == $_GET['c'] );
|
2012-11-10 19:13:09 +01:00
|
|
|
$expires_offset = 31536000; // 1 year
|
2009-01-14 15:18:51 +01:00
|
|
|
$out = '';
|
|
|
|
|
|
|
|
$wp_scripts = new WP_Scripts();
|
|
|
|
wp_default_scripts($wp_scripts);
|
|
|
|
|
2016-01-15 11:23:25 +01:00
|
|
|
if ( isset( $_SERVER['HTTP_IF_NONE_MATCH'] ) && stripslashes( $_SERVER['HTTP_IF_NONE_MATCH'] ) === $wp_version ) {
|
|
|
|
$protocol = $_SERVER['SERVER_PROTOCOL'];
|
|
|
|
if ( ! in_array( $protocol, array( 'HTTP/1.1', 'HTTP/2', 'HTTP/2.0' ) ) ) {
|
|
|
|
$protocol = 'HTTP/1.0';
|
|
|
|
}
|
|
|
|
header( "$protocol 304 Not Modified" );
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2015-08-25 22:28:22 +02:00
|
|
|
foreach ( $load as $handle ) {
|
2009-01-14 15:18:51 +01:00
|
|
|
if ( !array_key_exists($handle, $wp_scripts->registered) )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
$path = ABSPATH . $wp_scripts->registered[$handle]->src;
|
|
|
|
$out .= get_file($path) . "\n";
|
|
|
|
}
|
|
|
|
|
2016-01-15 11:23:25 +01:00
|
|
|
header("Etag: $wp_version");
|
2015-01-03 03:57:21 +01:00
|
|
|
header('Content-Type: application/javascript; charset=UTF-8');
|
2009-01-14 15:18:51 +01:00
|
|
|
header('Expires: ' . gmdate( "D, d M Y H:i:s", time() + $expires_offset ) . ' GMT');
|
|
|
|
header("Cache-Control: public, max-age=$expires_offset");
|
2009-02-01 10:45:24 +01:00
|
|
|
|
2009-11-19 10:46:07 +01:00
|
|
|
if ( $compress && ! ini_get('zlib.output_compression') && 'ob_gzhandler' != ini_get('output_handler') && isset($_SERVER['HTTP_ACCEPT_ENCODING']) ) {
|
2009-01-17 15:08:15 +01:00
|
|
|
header('Vary: Accept-Encoding'); // Handle proxies
|
2011-04-11 20:55:11 +02:00
|
|
|
if ( false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'deflate') && function_exists('gzdeflate') && ! $force_gzip ) {
|
2009-01-26 13:59:10 +01:00
|
|
|
header('Content-Encoding: deflate');
|
|
|
|
$out = gzdeflate( $out, 3 );
|
2011-04-11 20:55:11 +02:00
|
|
|
} elseif ( false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') && function_exists('gzencode') ) {
|
2009-01-14 15:18:51 +01:00
|
|
|
header('Content-Encoding: gzip');
|
|
|
|
$out = gzencode( $out, 3 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
echo $out;
|
|
|
|
exit;
|