Merge "Installer: output css correctly when session errors occur"
[lhc/web/wiklou.git] / includes / libs / CSSMin.php
1 <?php
2 /**
3 * Minification of CSS stylesheets.
4 *
5 * Copyright 2010 Wikimedia Foundation
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License"); you may
8 * not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software distributed
14 * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
15 * OF ANY KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations under the License.
17 *
18 * @file
19 * @version 0.1.1 -- 2010-09-11
20 * @author Trevor Parscal <tparscal@wikimedia.org>
21 * @copyright Copyright 2010 Wikimedia Foundation
22 * @license http://www.apache.org/licenses/LICENSE-2.0
23 */
24
25 /**
26 * Transforms CSS data
27 *
28 * This class provides minification, URL remapping, URL extracting, and data-URL embedding.
29 */
30 class CSSMin {
31
32 /* Constants */
33
34 /**
35 * Maximum file size to still qualify for in-line embedding as a data-URI
36 *
37 * 24,576 is used because Internet Explorer has a 32,768 byte limit for data URIs,
38 * which when base64 encoded will result in a 1/3 increase in size.
39 */
40 const EMBED_SIZE_LIMIT = 24576;
41 const URL_REGEX = 'url\(\s*[\'"]?(?P<file>[^\?\)\'"]*?)(?P<query>\?[^\)\'"]*?|)[\'"]?\s*\)';
42 const EMBED_REGEX = '\/\*\s*\@embed\s*\*\/';
43
44 /* Protected Static Members */
45
46 /** @var array List of common image files extensions and mime-types */
47 protected static $mimeTypes = array(
48 'gif' => 'image/gif',
49 'jpe' => 'image/jpeg',
50 'jpeg' => 'image/jpeg',
51 'jpg' => 'image/jpeg',
52 'png' => 'image/png',
53 'tif' => 'image/tiff',
54 'tiff' => 'image/tiff',
55 'xbm' => 'image/x-xbitmap',
56 'svg' => 'image/svg+xml',
57 );
58
59 /* Static Methods */
60
61 /**
62 * Gets a list of local file paths which are referenced in a CSS style sheet
63 *
64 * This function will always return an empty array if the second parameter is not given or null
65 * for backwards-compatibility.
66 *
67 * @param string $source CSS data to remap
68 * @param string $path File path where the source was read from (optional)
69 * @return array List of local file references
70 */
71 public static function getLocalFileReferences( $source, $path = null ) {
72 if ( $path === null ) {
73 return array();
74 }
75
76 $path = rtrim( $path, '/' ) . '/';
77 $files = array();
78
79 $rFlags = PREG_OFFSET_CAPTURE | PREG_SET_ORDER;
80 if ( preg_match_all( '/' . self::URL_REGEX . '/', $source, $matches, $rFlags ) ) {
81 foreach ( $matches as $match ) {
82 $url = $match['file'][0];
83
84 // Skip fully-qualified and protocol-relative URLs and data URIs
85 if ( substr( $url, 0, 2 ) === '//' || parse_url( $url, PHP_URL_SCHEME ) ) {
86 break;
87 }
88
89 $file = $path . $url;
90 // Skip non-existent files
91 if ( file_exists( $file ) ) {
92 break;
93 }
94
95 $files[] = $file;
96 }
97 }
98 return $files;
99 }
100
101 /**
102 * Encode an image file as a base64 data URI.
103 * If the image file has a suitable MIME type and size, encode it as a
104 * base64 data URI. Return false if the image type is unfamiliar or exceeds
105 * the size limit.
106 *
107 * @param string $file Image file to encode.
108 * @param string|null $type File's MIME type or null. If null, CSSMin will
109 * try to autodetect the type.
110 * @param int|bool $sizeLimit If the size of the target file is greater than
111 * this value, decline to encode the image file and return false
112 * instead. If $sizeLimit is false, no limit is enforced.
113 * @return string|bool: Image contents encoded as a data URI or false.
114 */
115 public static function encodeImageAsDataURI( $file, $type = null,
116 $sizeLimit = self::EMBED_SIZE_LIMIT
117 ) {
118 if ( $sizeLimit !== false && filesize( $file ) >= $sizeLimit ) {
119 return false;
120 }
121 if ( $type === null ) {
122 $type = self::getMimeType( $file );
123 }
124 if ( !$type ) {
125 return false;
126 }
127 $data = base64_encode( file_get_contents( $file ) );
128 return 'data:' . $type . ';base64,' . $data;
129 }
130
131 /**
132 * @param $file string
133 * @return bool|string
134 */
135 public static function getMimeType( $file ) {
136 $realpath = realpath( $file );
137 // Try a couple of different ways to get the mime-type of a file, in order of
138 // preference
139 if (
140 $realpath
141 && function_exists( 'finfo_file' )
142 && function_exists( 'finfo_open' )
143 && defined( 'FILEINFO_MIME_TYPE' )
144 ) {
145 // As of PHP 5.3, this is how you get the mime-type of a file; it uses the Fileinfo
146 // PECL extension
147 return finfo_file( finfo_open( FILEINFO_MIME_TYPE ), $realpath );
148 } elseif ( function_exists( 'mime_content_type' ) ) {
149 // Before this was deprecated in PHP 5.3, this was how you got the mime-type of a file
150 return mime_content_type( $file );
151 } else {
152 // Worst-case scenario has happened, use the file extension to infer the mime-type
153 $ext = strtolower( pathinfo( $file, PATHINFO_EXTENSION ) );
154 if ( isset( self::$mimeTypes[$ext] ) ) {
155 return self::$mimeTypes[$ext];
156 }
157 }
158 return false;
159 }
160
161 /**
162 * Build a CSS 'url()' value for the given URL, quoting parentheses (and other funny characters)
163 * and escaping quotes as necessary.
164 *
165 * @param string $url URL to process
166 * @return string 'url()' value, usually just `"url($url)"`, quoted/escaped if necessary
167 */
168 public static function buildUrlValue( $url ) {
169 // The list below has been crafted to match URLs such as:
170 // scheme://user@domain:port/~user/fi%20le.png?query=yes&really=y+s
171 // data:image/png;base64,R0lGODlh/+==
172 if ( preg_match( '!^[\w\d:@/~.%+;,?&=-]+$!', $url ) ) {
173 return "url($url)";
174 } else {
175 return 'url("' . strtr( $url, array( '\\' => '\\\\', '"' => '\\"' ) ) . '")';
176 }
177 }
178
179 /**
180 * Remaps CSS URL paths and automatically embeds data URIs for CSS rules
181 * or url() values preceded by an / * @embed * / comment.
182 *
183 * @param string $source CSS data to remap
184 * @param string $local File path where the source was read from
185 * @param string $remote URL path to the file
186 * @param bool $embedData If false, never do any data URI embedding,
187 * even if / * @embed * / is found.
188 * @return string Remapped CSS data
189 */
190 public static function remap( $source, $local, $remote, $embedData = true ) {
191 // High-level overview:
192 // * For each CSS rule in $source that includes at least one url() value:
193 // * Check for an @embed comment at the start indicating that all URIs should be embedded
194 // * For each url() value:
195 // * Check for an @embed comment directly preceding the value
196 // * If either @embed comment exists:
197 // * Embedding the URL as data: URI, if it's possible / allowed
198 // * Otherwise remap the URL to work in generated stylesheets
199
200 // Guard against trailing slashes, because "some/remote/../foo.png"
201 // resolves to "some/remote/foo.png" on (some?) clients (bug 27052).
202 if ( substr( $remote, -1 ) == '/' ) {
203 $remote = substr( $remote, 0, -1 );
204 }
205
206 // Note: This will not correctly handle cases where ';', '{' or '}'
207 // appears in the rule itself, e.g. in a quoted string. You are advised
208 // not to use such characters in file names. We also match start/end of
209 // the string to be consistent in edge-cases ('@import url(…)').
210 $pattern = '/(?:^|[;{])\K[^;{}]*' . CSSMin::URL_REGEX . '[^;}]*(?=[;}]|$)/';
211
212 return preg_replace_callback(
213 $pattern,
214 function ( $matchOuter ) use ( $local, $remote, $embedData ) {
215 $rule = $matchOuter[0];
216
217 // Check for global @embed comment and remove it
218 $embedAll = false;
219 $rule = preg_replace( '/^(\s*)' . CSSMin::EMBED_REGEX . '\s*/', '$1', $rule, 1, $embedAll );
220
221 // Build two versions of current rule: with remapped URLs
222 // and with embedded data: URIs (where possible).
223 $pattern = '/(?P<embed>' . CSSMin::EMBED_REGEX . '\s*|)' . CSSMin::URL_REGEX . '/';
224
225 $ruleWithRemapped = preg_replace_callback(
226 $pattern,
227 function ( $match ) use ( $local, $remote ) {
228 $remapped = CSSMin::remapOne( $match['file'], $match['query'], $local, $remote, false );
229
230 return CSSMin::buildUrlValue( $remapped );
231 },
232 $rule
233 );
234
235 if ( $embedData ) {
236 $ruleWithEmbedded = preg_replace_callback(
237 $pattern,
238 function ( $match ) use ( $embedAll, $local, $remote ) {
239 $embed = $embedAll || $match['embed'];
240 $embedded = CSSMin::remapOne(
241 $match['file'],
242 $match['query'],
243 $local,
244 $remote,
245 $embed
246 );
247
248 return CSSMin::buildUrlValue( $embedded );
249 },
250 $rule
251 );
252 }
253
254 if ( $embedData && $ruleWithEmbedded !== $ruleWithRemapped ) {
255 // Build 2 CSS properties; one which uses a base64 encoded data URI in place
256 // of the @embed comment to try and retain line-number integrity, and the
257 // other with a remapped an versioned URL and an Internet Explorer hack
258 // making it ignored in all browsers that support data URIs
259 return "$ruleWithEmbedded;$ruleWithRemapped!ie";
260 } else {
261 // No reason to repeat twice
262 return $ruleWithRemapped;
263 }
264 }, $source );
265 }
266
267 /**
268 * Remap or embed a CSS URL path.
269 *
270 * @param string $file URL to remap/embed
271 * @param string $query
272 * @param string $local File path where the source was read from
273 * @param string $remote URL path to the file
274 * @param bool $embed Whether to do any data URI embedding
275 * @return string Remapped/embedded URL data
276 */
277 public static function remapOne( $file, $query, $local, $remote, $embed ) {
278 // The full URL possibly with query, as passed to the 'url()' value in CSS
279 $url = $file . $query;
280
281 // Skip fully-qualified and protocol-relative URLs and data URIs
282 if ( substr( $url, 0, 2 ) === '//' || parse_url( $url, PHP_URL_SCHEME ) ) {
283 return $url;
284 }
285
286 // URLs with absolute paths like /w/index.php need to be expanded
287 // to absolute URLs but otherwise left alone
288 if ( $url !== '' && $url[0] === '/' ) {
289 // Replace the file path with an expanded (possibly protocol-relative) URL
290 // ...but only if wfExpandUrl() is even available.
291 // This will not be the case if we're running outside of MW
292 if ( function_exists( 'wfExpandUrl' ) ) {
293 return wfExpandUrl( $url, PROTO_RELATIVE );
294 } else {
295 return $url;
296 }
297 }
298
299 if ( $local === false ) {
300 // Assume that all paths are relative to $remote, and make them absolute
301 return $remote . '/' . $url;
302 } else {
303 // We drop the query part here and instead make the path relative to $remote
304 $url = "{$remote}/{$file}";
305 // Path to the actual file on the filesystem
306 $localFile = "{$local}/{$file}";
307 if ( file_exists( $localFile ) ) {
308 // Add version parameter as a time-stamp in ISO 8601 format,
309 // using Z for the timezone, meaning GMT
310 $url .= '?' . gmdate( 'Y-m-d\TH:i:s\Z', round( filemtime( $localFile ), -2 ) );
311 if ( $embed ) {
312 $data = self::encodeImageAsDataURI( $localFile );
313 if ( $data !== false ) {
314 return $data;
315 }
316 }
317 }
318 // If any of these conditions failed (file missing, we don't want to embed it
319 // or it's not embeddable), return the URL (possibly with ?timestamp part)
320 return $url;
321 }
322 }
323
324 /**
325 * Removes whitespace from CSS data
326 *
327 * @param string $css CSS data to minify
328 * @return string Minified CSS data
329 */
330 public static function minify( $css ) {
331 return trim(
332 str_replace(
333 array( '; ', ': ', ' {', '{ ', ', ', '} ', ';}' ),
334 array( ';', ':', '{', '{', ',', '}', '}' ),
335 preg_replace( array( '/\s+/', '/\/\*.*?\*\//s' ), array( ' ', '' ), $css )
336 )
337 );
338 }
339 }