2010-09-04 04:00:09 +00:00
|
|
|
<?php
|
2010-09-09 22:12:54 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright 2010 Wikimedia Foundation
|
|
|
|
|
*
|
2010-12-02 19:49:54 +00:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at
|
2010-09-09 22:12:54 +00:00
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
2010-12-02 19:49:54 +00:00
|
|
|
* Unless required by applicable law or agreed to in writing, software distributed
|
|
|
|
|
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
|
|
|
|
|
* OF ANY KIND, either express or implied. See the License for the
|
2010-09-09 22:12:54 +00:00
|
|
|
* specific language governing permissions and limitations under the License.
|
2010-09-08 17:38:26 +00:00
|
|
|
*/
|
2010-09-04 04:00:09 +00:00
|
|
|
|
2010-09-08 17:38:26 +00:00
|
|
|
/**
|
|
|
|
|
* Transforms CSS data
|
|
|
|
|
*
|
|
|
|
|
* This class provides minification, URL remapping, URL extracting, and data-URL embedding.
|
|
|
|
|
*
|
2010-09-09 22:12:54 +00:00
|
|
|
* @file
|
2010-09-11 10:20:26 +00:00
|
|
|
* @version 0.1.1 -- 2010-09-11
|
2010-09-09 22:12:54 +00:00
|
|
|
* @author Trevor Parscal <tparscal@wikimedia.org>
|
|
|
|
|
* @copyright Copyright 2010 Wikimedia Foundation
|
|
|
|
|
* @license http://www.apache.org/licenses/LICENSE-2.0
|
2010-09-08 17:38:26 +00:00
|
|
|
*/
|
2010-09-04 04:00:09 +00:00
|
|
|
class CSSMin {
|
2010-09-09 21:34:44 +00:00
|
|
|
|
2010-09-04 04:00:09 +00:00
|
|
|
/* Constants */
|
2010-09-09 21:34:44 +00:00
|
|
|
|
2010-09-04 04:00:09 +00:00
|
|
|
/**
|
|
|
|
|
* Maximum file size to still qualify for in-line embedding as a data-URI
|
2010-09-04 12:53:01 +00:00
|
|
|
*
|
2010-12-02 19:49:54 +00:00
|
|
|
* 24,576 is used because Internet Explorer has a 32,768 byte limit for data URIs,
|
|
|
|
|
* which when base64 encoded will result in a 1/3 increase in size.
|
2010-09-04 04:00:09 +00:00
|
|
|
*/
|
|
|
|
|
const EMBED_SIZE_LIMIT = 24576;
|
2011-01-10 21:31:12 +00:00
|
|
|
const URL_REGEX = 'url\(\s*[\'"]?(?P<file>[^\?\)\:\'"]*)\??[^\)\'"]*[\'"]?\s*\)';
|
2010-09-09 21:34:44 +00:00
|
|
|
|
|
|
|
|
/* Protected Static Members */
|
|
|
|
|
|
|
|
|
|
/** @var array List of common image files extensions and mime-types */
|
|
|
|
|
protected static $mimeTypes = array(
|
|
|
|
|
'gif' => 'image/gif',
|
|
|
|
|
'jpe' => 'image/jpeg',
|
|
|
|
|
'jpeg' => 'image/jpeg',
|
|
|
|
|
'jpg' => 'image/jpeg',
|
|
|
|
|
'png' => 'image/png',
|
|
|
|
|
'tif' => 'image/tiff',
|
|
|
|
|
'tiff' => 'image/tiff',
|
|
|
|
|
'xbm' => 'image/x-xbitmap',
|
|
|
|
|
);
|
|
|
|
|
|
2010-09-04 04:00:09 +00:00
|
|
|
/* Static Methods */
|
2010-09-09 21:34:44 +00:00
|
|
|
|
2010-09-04 04:00:09 +00:00
|
|
|
/**
|
|
|
|
|
* Gets a list of local file paths which are referenced in a CSS style sheet
|
2010-09-04 12:53:01 +00:00
|
|
|
*
|
2010-09-04 04:00:09 +00:00
|
|
|
* @param $source string CSS data to remap
|
|
|
|
|
* @param $path string File path where the source was read from (optional)
|
|
|
|
|
* @return array List of local file references
|
|
|
|
|
*/
|
|
|
|
|
public static function getLocalFileReferences( $source, $path = null ) {
|
|
|
|
|
$files = array();
|
2010-12-02 19:49:54 +00:00
|
|
|
$rFlags = PREG_OFFSET_CAPTURE | PREG_SET_ORDER;
|
|
|
|
|
if ( preg_match_all( '/' . self::URL_REGEX . '/', $source, $matches, $rFlags ) ) {
|
2010-09-04 04:00:09 +00:00
|
|
|
foreach ( $matches as $match ) {
|
2010-12-02 19:49:54 +00:00
|
|
|
$file = ( isset( $path )
|
|
|
|
|
? rtrim( $path, '/' ) . '/'
|
|
|
|
|
: '' ) . "{$match['file'][0]}";
|
2010-09-04 12:53:01 +00:00
|
|
|
|
2010-09-04 04:00:09 +00:00
|
|
|
// Only proceed if we can access the file
|
2010-09-16 13:45:01 +00:00
|
|
|
if ( !is_null( $path ) && file_exists( $file ) ) {
|
2010-09-04 04:00:09 +00:00
|
|
|
$files[] = $file;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $files;
|
|
|
|
|
}
|
2010-09-09 21:34:44 +00:00
|
|
|
|
2010-09-04 04:00:09 +00:00
|
|
|
/**
|
2010-12-02 19:49:54 +00:00
|
|
|
* Remaps CSS URL paths and automatically embeds data URIs for URL rules
|
|
|
|
|
* preceded by an /* @embed * / comment
|
2010-09-04 12:53:01 +00:00
|
|
|
*
|
2010-09-04 04:00:09 +00:00
|
|
|
* @param $source string CSS data to remap
|
2010-09-23 19:41:29 +00:00
|
|
|
* @param $local string File path where the source was read from
|
|
|
|
|
* @param $remote string URL path to the file
|
|
|
|
|
* @param $embed ???
|
2010-09-04 04:00:09 +00:00
|
|
|
* @return string Remapped CSS data
|
|
|
|
|
*/
|
2010-09-11 10:20:26 +00:00
|
|
|
public static function remap( $source, $local, $remote, $embed = true ) {
|
2010-12-02 19:49:54 +00:00
|
|
|
$pattern = '/((?P<embed>\s*\/\*\s*\@embed\s*\*\/)(?P<pre>[^\;\}]*))?' .
|
|
|
|
|
self::URL_REGEX . '(?P<post>[^;]*)[\;]?/';
|
2010-09-04 04:00:09 +00:00
|
|
|
$offset = 0;
|
|
|
|
|
while ( preg_match( $pattern, $source, $match, PREG_OFFSET_CAPTURE, $offset ) ) {
|
|
|
|
|
// Shortcuts
|
|
|
|
|
$embed = $match['embed'][0];
|
2010-09-09 21:57:59 +00:00
|
|
|
$pre = $match['pre'][0];
|
|
|
|
|
$post = $match['post'][0];
|
2010-09-11 10:20:26 +00:00
|
|
|
$file = "{$local}/{$match['file'][0]}";
|
|
|
|
|
$url = "{$remote}/{$match['file'][0]}";
|
2010-09-27 18:43:21 +00:00
|
|
|
// Only proceed if we can access the file
|
2010-09-04 04:00:09 +00:00
|
|
|
if ( file_exists( $file ) ) {
|
2010-12-02 19:49:54 +00:00
|
|
|
// Add version parameter as a time-stamp in ISO 8601 format,
|
|
|
|
|
// using Z for the timezone, meaning GMT
|
2010-09-11 10:20:26 +00:00
|
|
|
$url .= '?' . gmdate( 'Y-m-d\TH:i:s\Z', round( filemtime( $file ), -2 ) );
|
2010-09-09 21:34:44 +00:00
|
|
|
// If we the mime-type can't be determined, no embedding will take place
|
|
|
|
|
$type = false;
|
2010-10-18 15:11:48 +00:00
|
|
|
$realpath = realpath( $file );
|
2010-12-02 19:49:54 +00:00
|
|
|
// Try a couple of different ways to get the mime-type of a file,
|
|
|
|
|
// in order of preference
|
|
|
|
|
if ( $realpath
|
2010-12-05 13:38:25 +00:00
|
|
|
&& function_exists( 'finfo_file' ) && function_exists( 'finfo_open' )
|
|
|
|
|
&& defined( 'FILEINFO_MIME_TYPE' ) )
|
2010-12-02 19:49:54 +00:00
|
|
|
{
|
|
|
|
|
// As of PHP 5.3, this is how you get the mime-type of a file;
|
|
|
|
|
// it uses the Fileinfo PECL extension
|
2010-10-18 15:11:48 +00:00
|
|
|
$type = finfo_file( finfo_open( FILEINFO_MIME_TYPE ), $realpath );
|
2010-09-09 21:34:44 +00:00
|
|
|
} else if ( function_exists( 'mime_content_type' ) ) {
|
2010-12-02 19:49:54 +00:00
|
|
|
// Before this was deprecated in PHP 5.3,
|
|
|
|
|
// this used to be how you get the mime-type of a file
|
2010-09-04 04:00:09 +00:00
|
|
|
$type = mime_content_type( $file );
|
2010-09-09 21:34:44 +00:00
|
|
|
} else {
|
2010-12-03 23:34:12 +00:00
|
|
|
// Worst-case scenario has happened,
|
2010-12-02 19:49:54 +00:00
|
|
|
// use the file extension to infer the mime-type
|
2010-09-09 21:34:44 +00:00
|
|
|
$ext = strtolower( pathinfo( $file, PATHINFO_EXTENSION ) );
|
|
|
|
|
if ( isset( self::$mimeTypes[$ext] ) ) {
|
|
|
|
|
$type = self::$mimeTypes[$ext];
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-12-02 19:49:54 +00:00
|
|
|
// Detect when URLs were preceeded with embed tags,
|
|
|
|
|
// and also verify file size is below the limit
|
|
|
|
|
if ( $embed && $type && $match['embed'][1] > 0
|
|
|
|
|
&& filesize( $file ) < self::EMBED_SIZE_LIMIT )
|
|
|
|
|
{
|
2010-09-04 04:00:09 +00:00
|
|
|
// Strip off any trailing = symbols (makes browsers freak out)
|
2010-09-04 10:20:57 +00:00
|
|
|
$data = base64_encode( file_get_contents( $file ) );
|
2010-12-02 19:49:54 +00:00
|
|
|
// Build 2 CSS properties; one which uses a base64 encoded data URI
|
|
|
|
|
// in place of the @embed comment to try and retain line-number integrity,
|
|
|
|
|
// and the other with a remapped an versioned URL and an Internet Explorer
|
|
|
|
|
// hack making it ignored in all browsers that support data URIs
|
|
|
|
|
$replacement = "{$pre}url(data:{$type};base64,{$data}){$post};";
|
|
|
|
|
$replacement .= "{$pre}url({$url}){$post}!ie;";
|
2010-09-04 04:00:09 +00:00
|
|
|
} else {
|
2010-12-02 19:49:54 +00:00
|
|
|
// Build a CSS property with a remapped and versioned URL,
|
|
|
|
|
// preserving comment for debug mode
|
2010-09-09 21:57:59 +00:00
|
|
|
$replacement = "{$embed}{$pre}url({$url}){$post};";
|
2010-09-04 04:00:09 +00:00
|
|
|
}
|
2010-09-04 12:53:01 +00:00
|
|
|
|
2010-09-04 04:00:09 +00:00
|
|
|
// Perform replacement on the source
|
2010-12-02 19:49:54 +00:00
|
|
|
$source = substr_replace( $source,
|
|
|
|
|
$replacement, $match[0][1], strlen( $match[0][0] ) );
|
2010-09-04 04:00:09 +00:00
|
|
|
// Move the offset to the end of the replacement in the source
|
|
|
|
|
$offset = $match[0][1] + strlen( $replacement );
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
// Move the offset to the end of the match, leaving it alone
|
|
|
|
|
$offset = $match[0][1] + strlen( $match[0][0] );
|
|
|
|
|
}
|
|
|
|
|
return $source;
|
|
|
|
|
}
|
2010-09-09 21:34:44 +00:00
|
|
|
|
2010-09-04 04:00:09 +00:00
|
|
|
/**
|
|
|
|
|
* Removes whitespace from CSS data
|
2010-09-04 12:53:01 +00:00
|
|
|
*
|
2010-09-23 19:41:29 +00:00
|
|
|
* @param $css string CSS data to minify
|
2010-09-04 12:53:01 +00:00
|
|
|
* @return string Minified CSS data
|
2010-09-04 04:00:09 +00:00
|
|
|
*/
|
|
|
|
|
public static function minify( $css ) {
|
|
|
|
|
return trim(
|
|
|
|
|
str_replace(
|
|
|
|
|
array( '; ', ': ', ' {', '{ ', ', ', '} ', ';}' ),
|
|
|
|
|
array( ';', ':', '{', '{', ',', '}', '}' ),
|
|
|
|
|
preg_replace( array( '/\s+/', '/\/\*.*?\*\//s' ), array( ' ', '' ), $css )
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
}
|
2010-09-04 12:53:01 +00:00
|
|
|
}
|