forked from Automattic/nginx-http-concat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcssconcat.php
195 lines (157 loc) · 5.8 KB
/
cssconcat.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<?php
/*
Plugin Name: CSS Concat
Plugin URI: http://wp-plugins.org/#
Description: Concatenates CSS
Author: Automattic
Version: 0.01
Author URI: http://automattic.com/
*/
require_once( dirname( __FILE__ ) . '/concat-utils.php' );
if ( ! defined( 'ALLOW_GZIP_COMPRESSION' ) )
define( 'ALLOW_GZIP_COMPRESSION', true );
class WPcom_CSS_Concat extends WP_Styles {
private $old_styles;
public $allow_gzip_compression;
function __construct( $styles ) {
if ( empty( $styles ) || ! ( $styles instanceof WP_Styles ) ) {
$this->old_styles = new WP_Styles();
} else {
$this->old_styles = $styles;
}
// Unset all the object properties except our private copy of the styles object.
// We have to unset everything so that the overload methods talk to $this->old_styles->whatever
// instead of $this->whatever.
foreach ( array_keys( get_object_vars( $this ) ) as $key ) {
if ( 'old_styles' === $key ) {
continue;
}
unset( $this->$key );
}
}
function do_items( $handles = false, $group = false ) {
$handles = false === $handles ? $this->queue : (array) $handles;
$stylesheets = array();
$siteurl = apply_filters( 'ngx_http_concat_site_url', $this->base_url );
$this->all_deps( $handles );
$stylesheet_group_index = 0;
foreach( $this->to_do as $key => $handle ) {
$obj = $this->registered[$handle];
$obj->src = apply_filters( 'style_loader_src', $obj->src, $obj->handle );
// Core is kind of broken and returns "true" for src of "colors" handle
// http://core.trac.wordpress.org/attachment/ticket/16827/colors-hacked-fixed.diff
// http://core.trac.wordpress.org/ticket/20729
$css_url = $obj->src;
if ( 'colors' == $obj->handle && true === $css_url ) {
$css_url = wp_style_loader_src( $css_url, $obj->handle );
}
$css_url_parsed = parse_url( $obj->src );
$extra = $obj->extra;
// Don't concat by default
$do_concat = false;
// Only try to concat static css files
if ( false !== strpos( $css_url_parsed['path'], '.css' ) )
$do_concat = true;
// Don't try to concat styles which are loaded conditionally (like IE stuff)
if ( isset( $extra['conditional'] ) )
$do_concat = false;
// Don't concat rtl stuff for now until concat supports it correctly
if ( 'rtl' === $this->text_direction && ! empty( $extra['rtl'] ) )
$do_concat = false;
// Don't try to concat externally hosted scripts
$is_internal_url = WPCOM_Concat_Utils::is_internal_url( $css_url, $siteurl );
if ( ! $is_internal_url ) {
$do_concat = false;
}
// Concat and canonicalize the paths only for
// existing scripts that aren't outside ABSPATH
$css_realpath = WPCOM_Concat_Utils::realpath( $css_url, $siteurl );
if ( ! $css_realpath || 0 !== strpos( $css_realpath, ABSPATH ) )
$do_concat = false;
else
$css_url_parsed['path'] = substr( $css_realpath, strlen( ABSPATH ) - 1 );
// Allow plugins to disable concatenation of certain stylesheets.
$do_concat = apply_filters( 'css_do_concat', $do_concat, $handle );
if ( true === $do_concat ) {
$media = $obj->args;
if( empty( $media ) )
$media = 'all';
if ( ! isset( $stylesheets[ $stylesheet_group_index ] ) || ( isset( $stylesheets[ $stylesheet_group_index ] ) && ! is_array( $stylesheets[ $stylesheet_group_index ] ) ) )
$stylesheets[ $stylesheet_group_index ] = array();
$stylesheets[ $stylesheet_group_index ][ $media ][ $handle ] = $css_url_parsed['path'];
$this->done[] = $handle;
} else {
$stylesheet_group_index++;
$stylesheets[ $stylesheet_group_index ][ 'noconcat' ][] = $handle;
$stylesheet_group_index++;
}
unset( $this->to_do[$key] );
}
foreach( $stylesheets as $idx => $stylesheets_group ) {
foreach( $stylesheets_group as $media => $css ) {
if ( 'noconcat' == $media ) {
foreach( $css as $handle ) {
if ( $this->do_item( $handle, $group ) )
$this->done[] = $handle;
}
continue;
} elseif ( count( $css ) > 1) {
$paths = array_map( function( $url ) { return ABSPATH . $url; }, $css );
$mtime = max( array_map( 'filemtime', $paths ) );
$path_str = implode( $css, ',' ) . "?m={$mtime}";
if ( $this->allow_gzip_compression ) {
$path_64 = base64_encode( gzcompress( $path_str ) );
if ( strlen( $path_str ) > ( strlen( $path_64 ) + 1 ) )
$path_str = '-' . $path_64;
}
$href = $siteurl . "/_static/??" . $path_str;
} else {
$href = $this->cache_bust_mtime( $siteurl . current( $css ), $siteurl );
}
$handles = array_keys( $css );
echo apply_filters( 'ngx_http_concat_style_loader_tag', "<link rel='stylesheet' id='$media-css-$idx' href='$href' type='text/css' media='$media' />\n", $handles, $href, $media );
array_map( array( $this, 'print_inline_style' ), array_keys( $css ) );
}
}
return $this->done;
}
function cache_bust_mtime( $url, $siteurl ) {
if ( strpos( $url, '?m=' ) )
return $url;
$parts = parse_url( $url );
if ( ! isset( $parts['path'] ) || empty( $parts['path'] ) )
return $url;
$file = WPCOM_Concat_Utils::realpath( $url, $siteurl );
$mtime = false;
if ( file_exists( $file ) )
$mtime = filemtime( $file );
if ( ! $mtime )
return $url;
if ( false === strpos( $url, '?' ) ) {
$q = '';
} else {
list( $url, $q ) = explode( '?', $url, 2 );
if ( strlen( $q ) )
$q = '&' . $q;
}
return "$url?m={$mtime}g{$q}";
}
function __isset( $key ) {
return isset( $this->old_styles->$key );
}
function __unset( $key ) {
unset( $this->old_styles->$key );
}
function &__get( $key ) {
return $this->old_styles->$key;
}
function __set( $key, $value ) {
$this->old_styles->$key = $value;
}
}
function css_concat_init() {
global $wp_styles;
$wp_styles = new WPcom_CSS_Concat( $wp_styles );
$wp_styles->allow_gzip_compression = ALLOW_GZIP_COMPRESSION;
}
add_action( 'init', 'css_concat_init' );