@@ -18,178 +18,178 @@ |
||
| 18 | 18 | */ |
| 19 | 19 | class Converter |
| 20 | 20 | { |
| 21 | - /** |
|
| 22 | - * @var string |
|
| 23 | - */ |
|
| 24 | - protected $from; |
|
| 25 | - |
|
| 26 | - /** |
|
| 27 | - * @var string |
|
| 28 | - */ |
|
| 29 | - protected $to; |
|
| 30 | - |
|
| 31 | - /** |
|
| 32 | - * @param string $from The original base path (directory, not file!) |
|
| 33 | - * @param string $to The new base path (directory, not file!) |
|
| 34 | - */ |
|
| 35 | - public function __construct($from, $to) |
|
| 36 | - { |
|
| 37 | - $shared = $this->shared($from, $to); |
|
| 38 | - if ($shared === '') { |
|
| 39 | - // when both paths have nothing in common, one of them is probably |
|
| 40 | - // absolute while the other is relative |
|
| 41 | - $cwd = getcwd(); |
|
| 42 | - $from = strpos($from, $cwd) === 0 ? $from : $cwd.'/'.$from; |
|
| 43 | - $to = strpos($to, $cwd) === 0 ? $to : $cwd.'/'.$to; |
|
| 44 | - |
|
| 45 | - // or traveling the tree via `..` |
|
| 46 | - // attempt to resolve path, or assume it's fine if it doesn't exist |
|
| 47 | - $from = realpath($from) ?: $from; |
|
| 48 | - $to = realpath($to) ?: $to; |
|
| 49 | - } |
|
| 50 | - |
|
| 51 | - $from = $this->normalize($from); |
|
| 52 | - $to = $this->normalize($to); |
|
| 53 | - |
|
| 54 | - $from = $this->dirname($from); |
|
| 55 | - $to = $this->dirname($to); |
|
| 56 | - |
|
| 57 | - $this->from = $from; |
|
| 58 | - $this->to = $to; |
|
| 59 | - } |
|
| 60 | - |
|
| 61 | - /** |
|
| 62 | - * Normalize path. |
|
| 63 | - * |
|
| 64 | - * @param string $path |
|
| 65 | - * |
|
| 66 | - * @return string |
|
| 67 | - */ |
|
| 68 | - protected function normalize($path) |
|
| 69 | - { |
|
| 70 | - // deal with different operating systems' directory structure |
|
| 71 | - $path = rtrim(str_replace(DIRECTORY_SEPARATOR, '/', $path), '/'); |
|
| 72 | - |
|
| 73 | - /* |
|
| 21 | + /** |
|
| 22 | + * @var string |
|
| 23 | + */ |
|
| 24 | + protected $from; |
|
| 25 | + |
|
| 26 | + /** |
|
| 27 | + * @var string |
|
| 28 | + */ |
|
| 29 | + protected $to; |
|
| 30 | + |
|
| 31 | + /** |
|
| 32 | + * @param string $from The original base path (directory, not file!) |
|
| 33 | + * @param string $to The new base path (directory, not file!) |
|
| 34 | + */ |
|
| 35 | + public function __construct($from, $to) |
|
| 36 | + { |
|
| 37 | + $shared = $this->shared($from, $to); |
|
| 38 | + if ($shared === '') { |
|
| 39 | + // when both paths have nothing in common, one of them is probably |
|
| 40 | + // absolute while the other is relative |
|
| 41 | + $cwd = getcwd(); |
|
| 42 | + $from = strpos($from, $cwd) === 0 ? $from : $cwd.'/'.$from; |
|
| 43 | + $to = strpos($to, $cwd) === 0 ? $to : $cwd.'/'.$to; |
|
| 44 | + |
|
| 45 | + // or traveling the tree via `..` |
|
| 46 | + // attempt to resolve path, or assume it's fine if it doesn't exist |
|
| 47 | + $from = realpath($from) ?: $from; |
|
| 48 | + $to = realpath($to) ?: $to; |
|
| 49 | + } |
|
| 50 | + |
|
| 51 | + $from = $this->normalize($from); |
|
| 52 | + $to = $this->normalize($to); |
|
| 53 | + |
|
| 54 | + $from = $this->dirname($from); |
|
| 55 | + $to = $this->dirname($to); |
|
| 56 | + |
|
| 57 | + $this->from = $from; |
|
| 58 | + $this->to = $to; |
|
| 59 | + } |
|
| 60 | + |
|
| 61 | + /** |
|
| 62 | + * Normalize path. |
|
| 63 | + * |
|
| 64 | + * @param string $path |
|
| 65 | + * |
|
| 66 | + * @return string |
|
| 67 | + */ |
|
| 68 | + protected function normalize($path) |
|
| 69 | + { |
|
| 70 | + // deal with different operating systems' directory structure |
|
| 71 | + $path = rtrim(str_replace(DIRECTORY_SEPARATOR, '/', $path), '/'); |
|
| 72 | + |
|
| 73 | + /* |
|
| 74 | 74 | * Example: |
| 75 | 75 | * /home/forkcms/frontend/cache/compiled_templates/../../core/layout/css/../images/img.gif |
| 76 | 76 | * to |
| 77 | 77 | * /home/forkcms/frontend/core/layout/images/img.gif |
| 78 | 78 | */ |
| 79 | - do { |
|
| 80 | - $path = preg_replace('/[^\/]+(?<!\.\.)\/\.\.\//', '', $path, -1, $count); |
|
| 81 | - } while ($count); |
|
| 82 | - |
|
| 83 | - return $path; |
|
| 84 | - } |
|
| 85 | - |
|
| 86 | - /** |
|
| 87 | - * Figure out the shared path of 2 locations. |
|
| 88 | - * |
|
| 89 | - * Example: |
|
| 90 | - * /home/forkcms/frontend/core/layout/images/img.gif |
|
| 91 | - * and |
|
| 92 | - * /home/forkcms/frontend/cache/minified_css |
|
| 93 | - * share |
|
| 94 | - * /home/forkcms/frontend |
|
| 95 | - * |
|
| 96 | - * @param string $path1 |
|
| 97 | - * @param string $path2 |
|
| 98 | - * |
|
| 99 | - * @return string |
|
| 100 | - */ |
|
| 101 | - protected function shared($path1, $path2) |
|
| 102 | - { |
|
| 103 | - // $path could theoretically be empty (e.g. no path is given), in which |
|
| 104 | - // case it shouldn't expand to array(''), which would compare to one's |
|
| 105 | - // root / |
|
| 106 | - $path1 = $path1 ? explode('/', $path1) : array(); |
|
| 107 | - $path2 = $path2 ? explode('/', $path2) : array(); |
|
| 108 | - |
|
| 109 | - $shared = array(); |
|
| 110 | - |
|
| 111 | - // compare paths & strip identical ancestors |
|
| 112 | - foreach ($path1 as $i => $chunk) { |
|
| 113 | - if (isset($path2[$i]) && $path1[$i] == $path2[$i]) { |
|
| 114 | - $shared[] = $chunk; |
|
| 115 | - } else { |
|
| 116 | - break; |
|
| 117 | - } |
|
| 118 | - } |
|
| 119 | - |
|
| 120 | - return implode('/', $shared); |
|
| 121 | - } |
|
| 122 | - |
|
| 123 | - /** |
|
| 124 | - * Convert paths relative from 1 file to another. |
|
| 125 | - * |
|
| 126 | - * E.g. |
|
| 127 | - * ../images/img.gif relative to /home/forkcms/frontend/core/layout/css |
|
| 128 | - * should become: |
|
| 129 | - * ../../core/layout/images/img.gif relative to |
|
| 130 | - * /home/forkcms/frontend/cache/minified_css |
|
| 131 | - * |
|
| 132 | - * @param string $path The relative path that needs to be converted. |
|
| 133 | - * |
|
| 134 | - * @return string The new relative path. |
|
| 135 | - */ |
|
| 136 | - public function convert($path) |
|
| 137 | - { |
|
| 138 | - // quit early if conversion makes no sense |
|
| 139 | - if ($this->from === $this->to) { |
|
| 140 | - return $path; |
|
| 141 | - } |
|
| 142 | - |
|
| 143 | - $path = $this->normalize($path); |
|
| 144 | - // if we're not dealing with a relative path, just return absolute |
|
| 145 | - if (strpos($path, '/') === 0) { |
|
| 146 | - return $path; |
|
| 147 | - } |
|
| 148 | - |
|
| 149 | - // normalize paths |
|
| 150 | - $path = $this->normalize($this->from.'/'.$path); |
|
| 151 | - |
|
| 152 | - // strip shared ancestor paths |
|
| 153 | - $shared = $this->shared($path, $this->to); |
|
| 154 | - $path = mb_substr($path, mb_strlen($shared)); |
|
| 155 | - $to = mb_substr($this->to, mb_strlen($shared)); |
|
| 156 | - |
|
| 157 | - // add .. for every directory that needs to be traversed to new path |
|
| 158 | - $to = str_repeat('../', mb_substr_count($to, '/')); |
|
| 159 | - |
|
| 160 | - return $to.ltrim($path, '/'); |
|
| 161 | - } |
|
| 162 | - |
|
| 163 | - /** |
|
| 164 | - * Attempt to get the directory name from a path. |
|
| 165 | - * |
|
| 166 | - * @param string $path |
|
| 167 | - * |
|
| 168 | - * @return string |
|
| 169 | - */ |
|
| 170 | - public function dirname($path) |
|
| 171 | - { |
|
| 172 | - if (is_file($path)) { |
|
| 173 | - return dirname($path); |
|
| 174 | - } |
|
| 175 | - |
|
| 176 | - if (is_dir($path)) { |
|
| 177 | - return rtrim($path, '/'); |
|
| 178 | - } |
|
| 179 | - |
|
| 180 | - // no known file/dir, start making assumptions |
|
| 181 | - |
|
| 182 | - // ends in / = dir |
|
| 183 | - if (mb_substr($path, -1) === '/') { |
|
| 184 | - return rtrim($path, '/'); |
|
| 185 | - } |
|
| 186 | - |
|
| 187 | - // has a dot in the name, likely a file |
|
| 188 | - if (preg_match('/.*\..*$/', basename($path)) !== 0) { |
|
| 189 | - return dirname($path); |
|
| 190 | - } |
|
| 191 | - |
|
| 192 | - // you're on your own here! |
|
| 193 | - return $path; |
|
| 194 | - } |
|
| 79 | + do { |
|
| 80 | + $path = preg_replace('/[^\/]+(?<!\.\.)\/\.\.\//', '', $path, -1, $count); |
|
| 81 | + } while ($count); |
|
| 82 | + |
|
| 83 | + return $path; |
|
| 84 | + } |
|
| 85 | + |
|
| 86 | + /** |
|
| 87 | + * Figure out the shared path of 2 locations. |
|
| 88 | + * |
|
| 89 | + * Example: |
|
| 90 | + * /home/forkcms/frontend/core/layout/images/img.gif |
|
| 91 | + * and |
|
| 92 | + * /home/forkcms/frontend/cache/minified_css |
|
| 93 | + * share |
|
| 94 | + * /home/forkcms/frontend |
|
| 95 | + * |
|
| 96 | + * @param string $path1 |
|
| 97 | + * @param string $path2 |
|
| 98 | + * |
|
| 99 | + * @return string |
|
| 100 | + */ |
|
| 101 | + protected function shared($path1, $path2) |
|
| 102 | + { |
|
| 103 | + // $path could theoretically be empty (e.g. no path is given), in which |
|
| 104 | + // case it shouldn't expand to array(''), which would compare to one's |
|
| 105 | + // root / |
|
| 106 | + $path1 = $path1 ? explode('/', $path1) : array(); |
|
| 107 | + $path2 = $path2 ? explode('/', $path2) : array(); |
|
| 108 | + |
|
| 109 | + $shared = array(); |
|
| 110 | + |
|
| 111 | + // compare paths & strip identical ancestors |
|
| 112 | + foreach ($path1 as $i => $chunk) { |
|
| 113 | + if (isset($path2[$i]) && $path1[$i] == $path2[$i]) { |
|
| 114 | + $shared[] = $chunk; |
|
| 115 | + } else { |
|
| 116 | + break; |
|
| 117 | + } |
|
| 118 | + } |
|
| 119 | + |
|
| 120 | + return implode('/', $shared); |
|
| 121 | + } |
|
| 122 | + |
|
| 123 | + /** |
|
| 124 | + * Convert paths relative from 1 file to another. |
|
| 125 | + * |
|
| 126 | + * E.g. |
|
| 127 | + * ../images/img.gif relative to /home/forkcms/frontend/core/layout/css |
|
| 128 | + * should become: |
|
| 129 | + * ../../core/layout/images/img.gif relative to |
|
| 130 | + * /home/forkcms/frontend/cache/minified_css |
|
| 131 | + * |
|
| 132 | + * @param string $path The relative path that needs to be converted. |
|
| 133 | + * |
|
| 134 | + * @return string The new relative path. |
|
| 135 | + */ |
|
| 136 | + public function convert($path) |
|
| 137 | + { |
|
| 138 | + // quit early if conversion makes no sense |
|
| 139 | + if ($this->from === $this->to) { |
|
| 140 | + return $path; |
|
| 141 | + } |
|
| 142 | + |
|
| 143 | + $path = $this->normalize($path); |
|
| 144 | + // if we're not dealing with a relative path, just return absolute |
|
| 145 | + if (strpos($path, '/') === 0) { |
|
| 146 | + return $path; |
|
| 147 | + } |
|
| 148 | + |
|
| 149 | + // normalize paths |
|
| 150 | + $path = $this->normalize($this->from.'/'.$path); |
|
| 151 | + |
|
| 152 | + // strip shared ancestor paths |
|
| 153 | + $shared = $this->shared($path, $this->to); |
|
| 154 | + $path = mb_substr($path, mb_strlen($shared)); |
|
| 155 | + $to = mb_substr($this->to, mb_strlen($shared)); |
|
| 156 | + |
|
| 157 | + // add .. for every directory that needs to be traversed to new path |
|
| 158 | + $to = str_repeat('../', mb_substr_count($to, '/')); |
|
| 159 | + |
|
| 160 | + return $to.ltrim($path, '/'); |
|
| 161 | + } |
|
| 162 | + |
|
| 163 | + /** |
|
| 164 | + * Attempt to get the directory name from a path. |
|
| 165 | + * |
|
| 166 | + * @param string $path |
|
| 167 | + * |
|
| 168 | + * @return string |
|
| 169 | + */ |
|
| 170 | + public function dirname($path) |
|
| 171 | + { |
|
| 172 | + if (is_file($path)) { |
|
| 173 | + return dirname($path); |
|
| 174 | + } |
|
| 175 | + |
|
| 176 | + if (is_dir($path)) { |
|
| 177 | + return rtrim($path, '/'); |
|
| 178 | + } |
|
| 179 | + |
|
| 180 | + // no known file/dir, start making assumptions |
|
| 181 | + |
|
| 182 | + // ends in / = dir |
|
| 183 | + if (mb_substr($path, -1) === '/') { |
|
| 184 | + return rtrim($path, '/'); |
|
| 185 | + } |
|
| 186 | + |
|
| 187 | + // has a dot in the name, likely a file |
|
| 188 | + if (preg_match('/.*\..*$/', basename($path)) !== 0) { |
|
| 189 | + return dirname($path); |
|
| 190 | + } |
|
| 191 | + |
|
| 192 | + // you're on your own here! |
|
| 193 | + return $path; |
|
| 194 | + } |
|
| 195 | 195 | } |
@@ -17,97 +17,97 @@ discard block |
||
| 17 | 17 | */ |
| 18 | 18 | class CSS extends Minify |
| 19 | 19 | { |
| 20 | - /** |
|
| 21 | - * @var int |
|
| 22 | - */ |
|
| 23 | - protected $maxImportSize = 5; |
|
| 24 | - |
|
| 25 | - /** |
|
| 26 | - * @var string[] |
|
| 27 | - */ |
|
| 28 | - protected $importExtensions = array( |
|
| 29 | - 'gif' => 'data:image/gif', |
|
| 30 | - 'png' => 'data:image/png', |
|
| 31 | - 'jpe' => 'data:image/jpeg', |
|
| 32 | - 'jpg' => 'data:image/jpeg', |
|
| 33 | - 'jpeg' => 'data:image/jpeg', |
|
| 34 | - 'svg' => 'data:image/svg+xml', |
|
| 35 | - 'woff' => 'data:application/x-font-woff', |
|
| 36 | - 'tif' => 'image/tiff', |
|
| 37 | - 'tiff' => 'image/tiff', |
|
| 38 | - 'xbm' => 'image/x-xbitmap', |
|
| 39 | - ); |
|
| 40 | - |
|
| 41 | - /** |
|
| 42 | - * Set the maximum size if files to be imported. |
|
| 43 | - * |
|
| 44 | - * Files larger than this size (in kB) will not be imported into the CSS. |
|
| 45 | - * Importing files into the CSS as data-uri will save you some connections, |
|
| 46 | - * but we should only import relatively small decorative images so that our |
|
| 47 | - * CSS file doesn't get too bulky. |
|
| 48 | - * |
|
| 49 | - * @param int $size Size in kB |
|
| 50 | - */ |
|
| 51 | - public function setMaxImportSize($size) |
|
| 52 | - { |
|
| 53 | - $this->maxImportSize = $size; |
|
| 54 | - } |
|
| 55 | - |
|
| 56 | - /** |
|
| 57 | - * Set the type of extensions to be imported into the CSS (to save network |
|
| 58 | - * connections). |
|
| 59 | - * Keys of the array should be the file extensions & respective values |
|
| 60 | - * should be the data type. |
|
| 61 | - * |
|
| 62 | - * @param string[] $extensions Array of file extensions |
|
| 63 | - */ |
|
| 64 | - public function setImportExtensions(array $extensions) |
|
| 65 | - { |
|
| 66 | - $this->importExtensions = $extensions; |
|
| 67 | - } |
|
| 68 | - |
|
| 69 | - /** |
|
| 70 | - * Move any import statements to the top. |
|
| 71 | - * |
|
| 72 | - * @param string $content Nearly finished CSS content |
|
| 73 | - * |
|
| 74 | - * @return string |
|
| 75 | - */ |
|
| 76 | - protected function moveImportsToTop($content) |
|
| 77 | - { |
|
| 78 | - if (preg_match_all('/@import[^;]+;/', $content, $matches)) { |
|
| 79 | - |
|
| 80 | - // remove from content |
|
| 81 | - foreach ($matches[0] as $import) { |
|
| 82 | - $content = str_replace($import, '', $content); |
|
| 83 | - } |
|
| 84 | - |
|
| 85 | - // add to top |
|
| 86 | - $content = implode('', $matches[0]).$content; |
|
| 87 | - }; |
|
| 88 | - |
|
| 89 | - return $content; |
|
| 90 | - } |
|
| 91 | - |
|
| 92 | - /** |
|
| 93 | - * Combine CSS from import statements. |
|
| 94 | - * |
|
| 95 | - * @import's will be loaded and their content merged into the original file, |
|
| 96 | - * to save HTTP requests. |
|
| 97 | - * |
|
| 98 | - * @param string $source The file to combine imports for. |
|
| 99 | - * @param string $content The CSS content to combine imports for. |
|
| 100 | - * @param string[] $parents Parent paths, for circular reference checks. |
|
| 101 | - * |
|
| 102 | - * @return string |
|
| 103 | - * |
|
| 104 | - * @throws FileImportException |
|
| 105 | - */ |
|
| 106 | - protected function combineImports($source, $content, $parents) |
|
| 107 | - { |
|
| 108 | - $importRegexes = array( |
|
| 109 | - // @import url(xxx) |
|
| 110 | - '/ |
|
| 20 | + /** |
|
| 21 | + * @var int |
|
| 22 | + */ |
|
| 23 | + protected $maxImportSize = 5; |
|
| 24 | + |
|
| 25 | + /** |
|
| 26 | + * @var string[] |
|
| 27 | + */ |
|
| 28 | + protected $importExtensions = array( |
|
| 29 | + 'gif' => 'data:image/gif', |
|
| 30 | + 'png' => 'data:image/png', |
|
| 31 | + 'jpe' => 'data:image/jpeg', |
|
| 32 | + 'jpg' => 'data:image/jpeg', |
|
| 33 | + 'jpeg' => 'data:image/jpeg', |
|
| 34 | + 'svg' => 'data:image/svg+xml', |
|
| 35 | + 'woff' => 'data:application/x-font-woff', |
|
| 36 | + 'tif' => 'image/tiff', |
|
| 37 | + 'tiff' => 'image/tiff', |
|
| 38 | + 'xbm' => 'image/x-xbitmap', |
|
| 39 | + ); |
|
| 40 | + |
|
| 41 | + /** |
|
| 42 | + * Set the maximum size if files to be imported. |
|
| 43 | + * |
|
| 44 | + * Files larger than this size (in kB) will not be imported into the CSS. |
|
| 45 | + * Importing files into the CSS as data-uri will save you some connections, |
|
| 46 | + * but we should only import relatively small decorative images so that our |
|
| 47 | + * CSS file doesn't get too bulky. |
|
| 48 | + * |
|
| 49 | + * @param int $size Size in kB |
|
| 50 | + */ |
|
| 51 | + public function setMaxImportSize($size) |
|
| 52 | + { |
|
| 53 | + $this->maxImportSize = $size; |
|
| 54 | + } |
|
| 55 | + |
|
| 56 | + /** |
|
| 57 | + * Set the type of extensions to be imported into the CSS (to save network |
|
| 58 | + * connections). |
|
| 59 | + * Keys of the array should be the file extensions & respective values |
|
| 60 | + * should be the data type. |
|
| 61 | + * |
|
| 62 | + * @param string[] $extensions Array of file extensions |
|
| 63 | + */ |
|
| 64 | + public function setImportExtensions(array $extensions) |
|
| 65 | + { |
|
| 66 | + $this->importExtensions = $extensions; |
|
| 67 | + } |
|
| 68 | + |
|
| 69 | + /** |
|
| 70 | + * Move any import statements to the top. |
|
| 71 | + * |
|
| 72 | + * @param string $content Nearly finished CSS content |
|
| 73 | + * |
|
| 74 | + * @return string |
|
| 75 | + */ |
|
| 76 | + protected function moveImportsToTop($content) |
|
| 77 | + { |
|
| 78 | + if (preg_match_all('/@import[^;]+;/', $content, $matches)) { |
|
| 79 | + |
|
| 80 | + // remove from content |
|
| 81 | + foreach ($matches[0] as $import) { |
|
| 82 | + $content = str_replace($import, '', $content); |
|
| 83 | + } |
|
| 84 | + |
|
| 85 | + // add to top |
|
| 86 | + $content = implode('', $matches[0]).$content; |
|
| 87 | + }; |
|
| 88 | + |
|
| 89 | + return $content; |
|
| 90 | + } |
|
| 91 | + |
|
| 92 | + /** |
|
| 93 | + * Combine CSS from import statements. |
|
| 94 | + * |
|
| 95 | + * @import's will be loaded and their content merged into the original file, |
|
| 96 | + * to save HTTP requests. |
|
| 97 | + * |
|
| 98 | + * @param string $source The file to combine imports for. |
|
| 99 | + * @param string $content The CSS content to combine imports for. |
|
| 100 | + * @param string[] $parents Parent paths, for circular reference checks. |
|
| 101 | + * |
|
| 102 | + * @return string |
|
| 103 | + * |
|
| 104 | + * @throws FileImportException |
|
| 105 | + */ |
|
| 106 | + protected function combineImports($source, $content, $parents) |
|
| 107 | + { |
|
| 108 | + $importRegexes = array( |
|
| 109 | + // @import url(xxx) |
|
| 110 | + '/ |
|
| 111 | 111 | # import statement |
| 112 | 112 | @import |
| 113 | 113 | |
@@ -152,8 +152,8 @@ discard block |
||
| 152 | 152 | |
| 153 | 153 | /ix', |
| 154 | 154 | |
| 155 | - // @import 'xxx' |
|
| 156 | - '/ |
|
| 155 | + // @import 'xxx' |
|
| 156 | + '/ |
|
| 157 | 157 | |
| 158 | 158 | # import statement |
| 159 | 159 | @import |
@@ -192,172 +192,172 @@ discard block |
||
| 192 | 192 | ;? |
| 193 | 193 | |
| 194 | 194 | /ix', |
| 195 | - ); |
|
| 196 | - |
|
| 197 | - // find all relative imports in css |
|
| 198 | - $matches = array(); |
|
| 199 | - foreach ($importRegexes as $importRegex) { |
|
| 200 | - if (preg_match_all($importRegex, $content, $regexMatches, PREG_SET_ORDER)) { |
|
| 201 | - $matches = array_merge($matches, $regexMatches); |
|
| 202 | - } |
|
| 203 | - } |
|
| 204 | - |
|
| 205 | - $search = array(); |
|
| 206 | - $replace = array(); |
|
| 207 | - |
|
| 208 | - // loop the matches |
|
| 209 | - foreach ($matches as $match) { |
|
| 210 | - // get the path for the file that will be imported |
|
| 211 | - $importPath = dirname($source).'/'.$match['path']; |
|
| 212 | - |
|
| 213 | - // only replace the import with the content if we can grab the |
|
| 214 | - // content of the file |
|
| 215 | - if ($this->canImportFile($importPath)) { |
|
| 216 | - // check if current file was not imported previously in the same |
|
| 217 | - // import chain. |
|
| 218 | - if (in_array($importPath, $parents)) { |
|
| 219 | - throw new FileImportException('Failed to import file "'.$importPath.'": circular reference detected.'); |
|
| 220 | - } |
|
| 221 | - |
|
| 222 | - // grab referenced file & minify it (which may include importing |
|
| 223 | - // yet other @import statements recursively) |
|
| 224 | - $minifier = new static($importPath); |
|
| 225 | - $importContent = $minifier->execute($source, $parents); |
|
| 226 | - |
|
| 227 | - // check if this is only valid for certain media |
|
| 228 | - if (!empty($match['media'])) { |
|
| 229 | - $importContent = '@media '.$match['media'].'{'.$importContent.'}'; |
|
| 230 | - } |
|
| 231 | - |
|
| 232 | - // add to replacement array |
|
| 233 | - $search[] = $match[0]; |
|
| 234 | - $replace[] = $importContent; |
|
| 235 | - } |
|
| 236 | - } |
|
| 237 | - |
|
| 238 | - // replace the import statements |
|
| 239 | - $content = str_replace($search, $replace, $content); |
|
| 240 | - |
|
| 241 | - return $content; |
|
| 242 | - } |
|
| 243 | - |
|
| 244 | - /** |
|
| 245 | - * Import files into the CSS, base64-ized. |
|
| 246 | - * |
|
| 247 | - * @url(image.jpg) images will be loaded and their content merged into the |
|
| 248 | - * original file, to save HTTP requests. |
|
| 249 | - * |
|
| 250 | - * @param string $source The file to import files for. |
|
| 251 | - * @param string $content The CSS content to import files for. |
|
| 252 | - * |
|
| 253 | - * @return string |
|
| 254 | - */ |
|
| 255 | - protected function importFiles($source, $content) |
|
| 256 | - { |
|
| 257 | - $extensions = array_keys($this->importExtensions); |
|
| 258 | - $regex = '/url\((["\']?)((?!["\']?data:).*?\.('.implode('|', $extensions).'))\\1\)/i'; |
|
| 259 | - if ($extensions && preg_match_all($regex, $content, $matches, PREG_SET_ORDER)) { |
|
| 260 | - $search = array(); |
|
| 261 | - $replace = array(); |
|
| 262 | - |
|
| 263 | - // loop the matches |
|
| 264 | - foreach ($matches as $match) { |
|
| 265 | - // get the path for the file that will be imported |
|
| 266 | - $path = $match[2]; |
|
| 267 | - $path = dirname($source).'/'.$path; |
|
| 268 | - $extension = $match[3]; |
|
| 269 | - |
|
| 270 | - // only replace the import with the content if we're able to get |
|
| 271 | - // the content of the file, and it's relatively small |
|
| 272 | - if ($this->canImportFile($path) && $this->canImportBySize($path)) { |
|
| 273 | - // grab content && base64-ize |
|
| 274 | - $importContent = $this->load($path); |
|
| 275 | - $importContent = base64_encode($importContent); |
|
| 276 | - |
|
| 277 | - // build replacement |
|
| 278 | - $search[] = $match[0]; |
|
| 279 | - $replace[] = 'url('.$this->importExtensions[$extension].';base64,'.$importContent.')'; |
|
| 280 | - } |
|
| 281 | - } |
|
| 282 | - |
|
| 283 | - // replace the import statements |
|
| 284 | - $content = str_replace($search, $replace, $content); |
|
| 285 | - } |
|
| 286 | - |
|
| 287 | - return $content; |
|
| 288 | - } |
|
| 289 | - |
|
| 290 | - /** |
|
| 291 | - * Minify the data. |
|
| 292 | - * Perform CSS optimizations. |
|
| 293 | - * |
|
| 294 | - * @param string[optional] $path Path to write the data to. |
|
| 295 | - * @param string[] $parents Parent paths, for circular reference checks. |
|
| 296 | - * |
|
| 297 | - * @return string The minified data. |
|
| 298 | - */ |
|
| 299 | - public function execute($path = null, $parents = array()) |
|
| 300 | - { |
|
| 301 | - $content = ''; |
|
| 302 | - |
|
| 303 | - // loop css data (raw data and files) |
|
| 304 | - foreach ($this->data as $source => $css) { |
|
| 305 | - /* |
|
| 195 | + ); |
|
| 196 | + |
|
| 197 | + // find all relative imports in css |
|
| 198 | + $matches = array(); |
|
| 199 | + foreach ($importRegexes as $importRegex) { |
|
| 200 | + if (preg_match_all($importRegex, $content, $regexMatches, PREG_SET_ORDER)) { |
|
| 201 | + $matches = array_merge($matches, $regexMatches); |
|
| 202 | + } |
|
| 203 | + } |
|
| 204 | + |
|
| 205 | + $search = array(); |
|
| 206 | + $replace = array(); |
|
| 207 | + |
|
| 208 | + // loop the matches |
|
| 209 | + foreach ($matches as $match) { |
|
| 210 | + // get the path for the file that will be imported |
|
| 211 | + $importPath = dirname($source).'/'.$match['path']; |
|
| 212 | + |
|
| 213 | + // only replace the import with the content if we can grab the |
|
| 214 | + // content of the file |
|
| 215 | + if ($this->canImportFile($importPath)) { |
|
| 216 | + // check if current file was not imported previously in the same |
|
| 217 | + // import chain. |
|
| 218 | + if (in_array($importPath, $parents)) { |
|
| 219 | + throw new FileImportException('Failed to import file "'.$importPath.'": circular reference detected.'); |
|
| 220 | + } |
|
| 221 | + |
|
| 222 | + // grab referenced file & minify it (which may include importing |
|
| 223 | + // yet other @import statements recursively) |
|
| 224 | + $minifier = new static($importPath); |
|
| 225 | + $importContent = $minifier->execute($source, $parents); |
|
| 226 | + |
|
| 227 | + // check if this is only valid for certain media |
|
| 228 | + if (!empty($match['media'])) { |
|
| 229 | + $importContent = '@media '.$match['media'].'{'.$importContent.'}'; |
|
| 230 | + } |
|
| 231 | + |
|
| 232 | + // add to replacement array |
|
| 233 | + $search[] = $match[0]; |
|
| 234 | + $replace[] = $importContent; |
|
| 235 | + } |
|
| 236 | + } |
|
| 237 | + |
|
| 238 | + // replace the import statements |
|
| 239 | + $content = str_replace($search, $replace, $content); |
|
| 240 | + |
|
| 241 | + return $content; |
|
| 242 | + } |
|
| 243 | + |
|
| 244 | + /** |
|
| 245 | + * Import files into the CSS, base64-ized. |
|
| 246 | + * |
|
| 247 | + * @url(image.jpg) images will be loaded and their content merged into the |
|
| 248 | + * original file, to save HTTP requests. |
|
| 249 | + * |
|
| 250 | + * @param string $source The file to import files for. |
|
| 251 | + * @param string $content The CSS content to import files for. |
|
| 252 | + * |
|
| 253 | + * @return string |
|
| 254 | + */ |
|
| 255 | + protected function importFiles($source, $content) |
|
| 256 | + { |
|
| 257 | + $extensions = array_keys($this->importExtensions); |
|
| 258 | + $regex = '/url\((["\']?)((?!["\']?data:).*?\.('.implode('|', $extensions).'))\\1\)/i'; |
|
| 259 | + if ($extensions && preg_match_all($regex, $content, $matches, PREG_SET_ORDER)) { |
|
| 260 | + $search = array(); |
|
| 261 | + $replace = array(); |
|
| 262 | + |
|
| 263 | + // loop the matches |
|
| 264 | + foreach ($matches as $match) { |
|
| 265 | + // get the path for the file that will be imported |
|
| 266 | + $path = $match[2]; |
|
| 267 | + $path = dirname($source).'/'.$path; |
|
| 268 | + $extension = $match[3]; |
|
| 269 | + |
|
| 270 | + // only replace the import with the content if we're able to get |
|
| 271 | + // the content of the file, and it's relatively small |
|
| 272 | + if ($this->canImportFile($path) && $this->canImportBySize($path)) { |
|
| 273 | + // grab content && base64-ize |
|
| 274 | + $importContent = $this->load($path); |
|
| 275 | + $importContent = base64_encode($importContent); |
|
| 276 | + |
|
| 277 | + // build replacement |
|
| 278 | + $search[] = $match[0]; |
|
| 279 | + $replace[] = 'url('.$this->importExtensions[$extension].';base64,'.$importContent.')'; |
|
| 280 | + } |
|
| 281 | + } |
|
| 282 | + |
|
| 283 | + // replace the import statements |
|
| 284 | + $content = str_replace($search, $replace, $content); |
|
| 285 | + } |
|
| 286 | + |
|
| 287 | + return $content; |
|
| 288 | + } |
|
| 289 | + |
|
| 290 | + /** |
|
| 291 | + * Minify the data. |
|
| 292 | + * Perform CSS optimizations. |
|
| 293 | + * |
|
| 294 | + * @param string[optional] $path Path to write the data to. |
|
| 295 | + * @param string[] $parents Parent paths, for circular reference checks. |
|
| 296 | + * |
|
| 297 | + * @return string The minified data. |
|
| 298 | + */ |
|
| 299 | + public function execute($path = null, $parents = array()) |
|
| 300 | + { |
|
| 301 | + $content = ''; |
|
| 302 | + |
|
| 303 | + // loop css data (raw data and files) |
|
| 304 | + foreach ($this->data as $source => $css) { |
|
| 305 | + /* |
|
| 306 | 306 | * Let's first take out strings & comments, since we can't just remove |
| 307 | 307 | * whitespace anywhere. If whitespace occurs inside a string, we should |
| 308 | 308 | * leave it alone. E.g.: |
| 309 | 309 | * p { content: "a test" } |
| 310 | 310 | */ |
| 311 | - $this->extractStrings(); |
|
| 312 | - $this->stripComments(); |
|
| 313 | - $css = $this->replace($css); |
|
| 311 | + $this->extractStrings(); |
|
| 312 | + $this->stripComments(); |
|
| 313 | + $css = $this->replace($css); |
|
| 314 | 314 | |
| 315 | - $css = $this->stripWhitespace($css); |
|
| 316 | - $css = $this->shortenHex($css); |
|
| 317 | - $css = $this->shortenZeroes($css); |
|
| 318 | - $css = $this->stripEmptyTags($css); |
|
| 315 | + $css = $this->stripWhitespace($css); |
|
| 316 | + $css = $this->shortenHex($css); |
|
| 317 | + $css = $this->shortenZeroes($css); |
|
| 318 | + $css = $this->stripEmptyTags($css); |
|
| 319 | 319 | |
| 320 | - // restore the string we've extracted earlier |
|
| 321 | - $css = $this->restoreExtractedData($css); |
|
| 320 | + // restore the string we've extracted earlier |
|
| 321 | + $css = $this->restoreExtractedData($css); |
|
| 322 | 322 | |
| 323 | - $source = is_int($source) ? '' : $source; |
|
| 324 | - $parents = $source ? array_merge($parents, array($source)) : $parents; |
|
| 325 | - $css = $this->combineImports($source, $css, $parents); |
|
| 326 | - $css = $this->importFiles($source, $css); |
|
| 323 | + $source = is_int($source) ? '' : $source; |
|
| 324 | + $parents = $source ? array_merge($parents, array($source)) : $parents; |
|
| 325 | + $css = $this->combineImports($source, $css, $parents); |
|
| 326 | + $css = $this->importFiles($source, $css); |
|
| 327 | 327 | |
| 328 | - /* |
|
| 328 | + /* |
|
| 329 | 329 | * If we'll save to a new path, we'll have to fix the relative paths |
| 330 | 330 | * to be relative no longer to the source file, but to the new path. |
| 331 | 331 | * If we don't write to a file, fall back to same path so no |
| 332 | 332 | * conversion happens (because we still want it to go through most |
| 333 | 333 | * of the move code...) |
| 334 | 334 | */ |
| 335 | - $converter = new Converter($source, $path ?: $source); |
|
| 336 | - $css = $this->move($converter, $css); |
|
| 337 | - |
|
| 338 | - // combine css |
|
| 339 | - $content .= $css; |
|
| 340 | - } |
|
| 341 | - |
|
| 342 | - $content = $this->moveImportsToTop($content); |
|
| 343 | - |
|
| 344 | - return $content; |
|
| 345 | - } |
|
| 346 | - |
|
| 347 | - /** |
|
| 348 | - * Moving a css file should update all relative urls. |
|
| 349 | - * Relative references (e.g. ../images/image.gif) in a certain css file, |
|
| 350 | - * will have to be updated when a file is being saved at another location |
|
| 351 | - * (e.g. ../../images/image.gif, if the new CSS file is 1 folder deeper). |
|
| 352 | - * |
|
| 353 | - * @param Converter $converter Relative path converter |
|
| 354 | - * @param string $content The CSS content to update relative urls for. |
|
| 355 | - * |
|
| 356 | - * @return string |
|
| 357 | - */ |
|
| 358 | - protected function move(Converter $converter, $content) |
|
| 359 | - { |
|
| 360 | - /* |
|
| 335 | + $converter = new Converter($source, $path ?: $source); |
|
| 336 | + $css = $this->move($converter, $css); |
|
| 337 | + |
|
| 338 | + // combine css |
|
| 339 | + $content .= $css; |
|
| 340 | + } |
|
| 341 | + |
|
| 342 | + $content = $this->moveImportsToTop($content); |
|
| 343 | + |
|
| 344 | + return $content; |
|
| 345 | + } |
|
| 346 | + |
|
| 347 | + /** |
|
| 348 | + * Moving a css file should update all relative urls. |
|
| 349 | + * Relative references (e.g. ../images/image.gif) in a certain css file, |
|
| 350 | + * will have to be updated when a file is being saved at another location |
|
| 351 | + * (e.g. ../../images/image.gif, if the new CSS file is 1 folder deeper). |
|
| 352 | + * |
|
| 353 | + * @param Converter $converter Relative path converter |
|
| 354 | + * @param string $content The CSS content to update relative urls for. |
|
| 355 | + * |
|
| 356 | + * @return string |
|
| 357 | + */ |
|
| 358 | + protected function move(Converter $converter, $content) |
|
| 359 | + { |
|
| 360 | + /* |
|
| 361 | 361 | * Relative path references will usually be enclosed by url(). @import |
| 362 | 362 | * is an exception, where url() is not necessary around the path (but is |
| 363 | 363 | * allowed). |
@@ -368,9 +368,9 @@ discard block |
||
| 368 | 368 | * recent PCRE version. That's why I'm doing 2 separate regular |
| 369 | 369 | * expressions & combining the matches after executing of both. |
| 370 | 370 | */ |
| 371 | - $relativeRegexes = array( |
|
| 372 | - // url(xxx) |
|
| 373 | - '/ |
|
| 371 | + $relativeRegexes = array( |
|
| 372 | + // url(xxx) |
|
| 373 | + '/ |
|
| 374 | 374 | # open url() |
| 375 | 375 | url\( |
| 376 | 376 | |
@@ -402,8 +402,8 @@ discard block |
||
| 402 | 402 | |
| 403 | 403 | /ix', |
| 404 | 404 | |
| 405 | - // @import "xxx" |
|
| 406 | - '/ |
|
| 405 | + // @import "xxx" |
|
| 406 | + '/ |
|
| 407 | 407 | # import statement |
| 408 | 408 | @import |
| 409 | 409 | |
@@ -432,167 +432,167 @@ discard block |
||
| 432 | 432 | (?P=quotes) |
| 433 | 433 | |
| 434 | 434 | /ix', |
| 435 | - ); |
|
| 436 | - |
|
| 437 | - // find all relative urls in css |
|
| 438 | - $matches = array(); |
|
| 439 | - foreach ($relativeRegexes as $relativeRegex) { |
|
| 440 | - if (preg_match_all($relativeRegex, $content, $regexMatches, PREG_SET_ORDER)) { |
|
| 441 | - $matches = array_merge($matches, $regexMatches); |
|
| 442 | - } |
|
| 443 | - } |
|
| 444 | - |
|
| 445 | - $search = array(); |
|
| 446 | - $replace = array(); |
|
| 447 | - |
|
| 448 | - // loop all urls |
|
| 449 | - foreach ($matches as $match) { |
|
| 450 | - // determine if it's a url() or an @import match |
|
| 451 | - $type = (strpos($match[0], '@import') === 0 ? 'import' : 'url'); |
|
| 452 | - |
|
| 453 | - // attempting to interpret GET-params makes no sense, so let's discard them for awhile |
|
| 454 | - $params = strrchr($match['path'], '?'); |
|
| 455 | - $url = $params ? substr($match['path'], 0, -strlen($params)) : $match['path']; |
|
| 456 | - |
|
| 457 | - // fix relative url |
|
| 458 | - $url = $converter->convert($url); |
|
| 459 | - |
|
| 460 | - // now that the path has been converted, re-apply GET-params |
|
| 461 | - $url .= $params; |
|
| 462 | - |
|
| 463 | - // build replacement |
|
| 464 | - $search[] = $match[0]; |
|
| 465 | - if ($type == 'url') { |
|
| 466 | - $replace[] = 'url('.$url.')'; |
|
| 467 | - } elseif ($type == 'import') { |
|
| 468 | - $replace[] = '@import "'.$url.'"'; |
|
| 469 | - } |
|
| 470 | - } |
|
| 471 | - |
|
| 472 | - // replace urls |
|
| 473 | - $content = str_replace($search, $replace, $content); |
|
| 474 | - |
|
| 475 | - return $content; |
|
| 476 | - } |
|
| 477 | - |
|
| 478 | - /** |
|
| 479 | - * Shorthand hex color codes. |
|
| 480 | - * #FF0000 -> #F00. |
|
| 481 | - * |
|
| 482 | - * @param string $content The CSS content to shorten the hex color codes for. |
|
| 483 | - * |
|
| 484 | - * @return string |
|
| 485 | - */ |
|
| 486 | - protected function shortenHex($content) |
|
| 487 | - { |
|
| 488 | - $content = preg_replace('/(?<![\'"])#([0-9a-z])\\1([0-9a-z])\\2([0-9a-z])\\3(?![\'"])/i', '#$1$2$3', $content); |
|
| 489 | - |
|
| 490 | - return $content; |
|
| 491 | - } |
|
| 492 | - |
|
| 493 | - /** |
|
| 494 | - * Shorthand 0 values to plain 0, instead of e.g. -0em. |
|
| 495 | - * |
|
| 496 | - * @param string $content The CSS content to shorten the zero values for. |
|
| 497 | - * |
|
| 498 | - * @return string |
|
| 499 | - */ |
|
| 500 | - protected function shortenZeroes($content) |
|
| 501 | - { |
|
| 502 | - // reusable bits of code throughout these regexes: |
|
| 503 | - // before & after are used to make sure we don't match lose unintended |
|
| 504 | - // 0-like values (e.g. in #000, or in http://url/1.0) |
|
| 505 | - // units can be stripped from 0 values, or used to recognize non 0 |
|
| 506 | - // values (where wa may be able to strip a .0 suffix) |
|
| 507 | - $before = '(?<=[:(, ])'; |
|
| 508 | - $after = '(?=[ ,);}])'; |
|
| 509 | - $units = '(em|ex|%|px|cm|mm|in|pt|pc|ch|rem|vh|vw|vmin|vmax|vm)'; |
|
| 510 | - |
|
| 511 | - // strip units after zeroes (0px -> 0) |
|
| 512 | - // NOTE: it should be safe to remove all units for a 0 value, but in |
|
| 513 | - // practice, Webkit (especially Safari) seems to stumble over at least |
|
| 514 | - // 0%, potentially other units as well. Only stripping 'px' for now. |
|
| 515 | - // @see https://github.com/matthiasmullie/minify/issues/60 |
|
| 516 | - $content = preg_replace('/'.$before.'(-?0*(\.0+)?)(?<=0)px'.$after.'/', '\\1', $content); |
|
| 517 | - |
|
| 518 | - // strip 0-digits (.0 -> 0) |
|
| 519 | - $content = preg_replace('/'.$before.'\.0+'.$units.'?'.$after.'/', '0\\1', $content); |
|
| 520 | - // strip trailing 0: 50.10 -> 50.1, 50.10px -> 50.1px |
|
| 521 | - $content = preg_replace('/'.$before.'(-?[0-9]+\.[0-9]+)0+'.$units.'?'.$after.'/', '\\1\\2', $content); |
|
| 522 | - // strip trailing 0: 50.00 -> 50, 50.00px -> 50px |
|
| 523 | - $content = preg_replace('/'.$before.'(-?[0-9]+)\.0+'.$units.'?'.$after.'/', '\\1\\2', $content); |
|
| 524 | - // strip leading 0: 0.1 -> .1, 01.1 -> 1.1 |
|
| 525 | - $content = preg_replace('/'.$before.'(-?)0+([0-9]*\.[0-9]+)'.$units.'?'.$after.'/', '\\1\\2\\3', $content); |
|
| 526 | - |
|
| 527 | - // strip negative zeroes (-0 -> 0) & truncate zeroes (00 -> 0) |
|
| 528 | - $content = preg_replace('/'.$before.'-?0+'.$units.'?'.$after.'/', '0\\1', $content); |
|
| 529 | - |
|
| 530 | - return $content; |
|
| 531 | - } |
|
| 532 | - |
|
| 533 | - /** |
|
| 534 | - * Strip comments from source code. |
|
| 535 | - * |
|
| 536 | - * @param string $content |
|
| 537 | - * |
|
| 538 | - * @return string |
|
| 539 | - */ |
|
| 540 | - protected function stripEmptyTags($content) |
|
| 541 | - { |
|
| 542 | - return preg_replace('/(^|\})[^\{\}]+\{\s*\}/', '\\1', $content); |
|
| 543 | - } |
|
| 544 | - |
|
| 545 | - /** |
|
| 546 | - * Strip comments from source code. |
|
| 547 | - */ |
|
| 548 | - protected function stripComments() |
|
| 549 | - { |
|
| 550 | - $this->registerPattern('/\/\*.*?\*\//s', ''); |
|
| 551 | - } |
|
| 552 | - |
|
| 553 | - /** |
|
| 554 | - * Strip whitespace. |
|
| 555 | - * |
|
| 556 | - * @param string $content The CSS content to strip the whitespace for. |
|
| 557 | - * |
|
| 558 | - * @return string |
|
| 559 | - */ |
|
| 560 | - protected function stripWhitespace($content) |
|
| 561 | - { |
|
| 562 | - // remove leading & trailing whitespace |
|
| 563 | - $content = preg_replace('/^\s*/m', '', $content); |
|
| 564 | - $content = preg_replace('/\s*$/m', '', $content); |
|
| 565 | - |
|
| 566 | - // replace newlines with a single space |
|
| 567 | - $content = preg_replace('/\s+/', ' ', $content); |
|
| 568 | - |
|
| 569 | - // remove whitespace around meta characters |
|
| 570 | - // inspired by stackoverflow.com/questions/15195750/minify-compress-css-with-regex |
|
| 571 | - $content = preg_replace('/\s*([\*$~^|]?+=|[{};,>~]|!important\b)\s*/', '$1', $content); |
|
| 572 | - $content = preg_replace('/([\[(:])\s+/', '$1', $content); |
|
| 573 | - $content = preg_replace('/\s+([\]\)])/', '$1', $content); |
|
| 574 | - $content = preg_replace('/\s+(:)(?![^\}]*\{)/', '$1', $content); |
|
| 575 | - |
|
| 576 | - // whitespace around + and - can only be stripped in selectors, like |
|
| 577 | - // :nth-child(3+2n), not in things like calc(3px + 2px) or shorthands |
|
| 578 | - // like 3px -2px |
|
| 579 | - $content = preg_replace('/\s*([+-])\s*(?=[^}]*{)/', '$1', $content); |
|
| 580 | - |
|
| 581 | - // remove semicolon/whitespace followed by closing bracket |
|
| 582 | - $content = str_replace(';}', '}', $content); |
|
| 583 | - |
|
| 584 | - return trim($content); |
|
| 585 | - } |
|
| 586 | - |
|
| 587 | - /** |
|
| 588 | - * Check if file is small enough to be imported. |
|
| 589 | - * |
|
| 590 | - * @param string $path The path to the file. |
|
| 591 | - * |
|
| 592 | - * @return bool |
|
| 593 | - */ |
|
| 594 | - protected function canImportBySize($path) |
|
| 595 | - { |
|
| 596 | - return ($size = @filesize($path)) && $size <= $this->maxImportSize * 1024; |
|
| 597 | - } |
|
| 435 | + ); |
|
| 436 | + |
|
| 437 | + // find all relative urls in css |
|
| 438 | + $matches = array(); |
|
| 439 | + foreach ($relativeRegexes as $relativeRegex) { |
|
| 440 | + if (preg_match_all($relativeRegex, $content, $regexMatches, PREG_SET_ORDER)) { |
|
| 441 | + $matches = array_merge($matches, $regexMatches); |
|
| 442 | + } |
|
| 443 | + } |
|
| 444 | + |
|
| 445 | + $search = array(); |
|
| 446 | + $replace = array(); |
|
| 447 | + |
|
| 448 | + // loop all urls |
|
| 449 | + foreach ($matches as $match) { |
|
| 450 | + // determine if it's a url() or an @import match |
|
| 451 | + $type = (strpos($match[0], '@import') === 0 ? 'import' : 'url'); |
|
| 452 | + |
|
| 453 | + // attempting to interpret GET-params makes no sense, so let's discard them for awhile |
|
| 454 | + $params = strrchr($match['path'], '?'); |
|
| 455 | + $url = $params ? substr($match['path'], 0, -strlen($params)) : $match['path']; |
|
| 456 | + |
|
| 457 | + // fix relative url |
|
| 458 | + $url = $converter->convert($url); |
|
| 459 | + |
|
| 460 | + // now that the path has been converted, re-apply GET-params |
|
| 461 | + $url .= $params; |
|
| 462 | + |
|
| 463 | + // build replacement |
|
| 464 | + $search[] = $match[0]; |
|
| 465 | + if ($type == 'url') { |
|
| 466 | + $replace[] = 'url('.$url.')'; |
|
| 467 | + } elseif ($type == 'import') { |
|
| 468 | + $replace[] = '@import "'.$url.'"'; |
|
| 469 | + } |
|
| 470 | + } |
|
| 471 | + |
|
| 472 | + // replace urls |
|
| 473 | + $content = str_replace($search, $replace, $content); |
|
| 474 | + |
|
| 475 | + return $content; |
|
| 476 | + } |
|
| 477 | + |
|
| 478 | + /** |
|
| 479 | + * Shorthand hex color codes. |
|
| 480 | + * #FF0000 -> #F00. |
|
| 481 | + * |
|
| 482 | + * @param string $content The CSS content to shorten the hex color codes for. |
|
| 483 | + * |
|
| 484 | + * @return string |
|
| 485 | + */ |
|
| 486 | + protected function shortenHex($content) |
|
| 487 | + { |
|
| 488 | + $content = preg_replace('/(?<![\'"])#([0-9a-z])\\1([0-9a-z])\\2([0-9a-z])\\3(?![\'"])/i', '#$1$2$3', $content); |
|
| 489 | + |
|
| 490 | + return $content; |
|
| 491 | + } |
|
| 492 | + |
|
| 493 | + /** |
|
| 494 | + * Shorthand 0 values to plain 0, instead of e.g. -0em. |
|
| 495 | + * |
|
| 496 | + * @param string $content The CSS content to shorten the zero values for. |
|
| 497 | + * |
|
| 498 | + * @return string |
|
| 499 | + */ |
|
| 500 | + protected function shortenZeroes($content) |
|
| 501 | + { |
|
| 502 | + // reusable bits of code throughout these regexes: |
|
| 503 | + // before & after are used to make sure we don't match lose unintended |
|
| 504 | + // 0-like values (e.g. in #000, or in http://url/1.0) |
|
| 505 | + // units can be stripped from 0 values, or used to recognize non 0 |
|
| 506 | + // values (where wa may be able to strip a .0 suffix) |
|
| 507 | + $before = '(?<=[:(, ])'; |
|
| 508 | + $after = '(?=[ ,);}])'; |
|
| 509 | + $units = '(em|ex|%|px|cm|mm|in|pt|pc|ch|rem|vh|vw|vmin|vmax|vm)'; |
|
| 510 | + |
|
| 511 | + // strip units after zeroes (0px -> 0) |
|
| 512 | + // NOTE: it should be safe to remove all units for a 0 value, but in |
|
| 513 | + // practice, Webkit (especially Safari) seems to stumble over at least |
|
| 514 | + // 0%, potentially other units as well. Only stripping 'px' for now. |
|
| 515 | + // @see https://github.com/matthiasmullie/minify/issues/60 |
|
| 516 | + $content = preg_replace('/'.$before.'(-?0*(\.0+)?)(?<=0)px'.$after.'/', '\\1', $content); |
|
| 517 | + |
|
| 518 | + // strip 0-digits (.0 -> 0) |
|
| 519 | + $content = preg_replace('/'.$before.'\.0+'.$units.'?'.$after.'/', '0\\1', $content); |
|
| 520 | + // strip trailing 0: 50.10 -> 50.1, 50.10px -> 50.1px |
|
| 521 | + $content = preg_replace('/'.$before.'(-?[0-9]+\.[0-9]+)0+'.$units.'?'.$after.'/', '\\1\\2', $content); |
|
| 522 | + // strip trailing 0: 50.00 -> 50, 50.00px -> 50px |
|
| 523 | + $content = preg_replace('/'.$before.'(-?[0-9]+)\.0+'.$units.'?'.$after.'/', '\\1\\2', $content); |
|
| 524 | + // strip leading 0: 0.1 -> .1, 01.1 -> 1.1 |
|
| 525 | + $content = preg_replace('/'.$before.'(-?)0+([0-9]*\.[0-9]+)'.$units.'?'.$after.'/', '\\1\\2\\3', $content); |
|
| 526 | + |
|
| 527 | + // strip negative zeroes (-0 -> 0) & truncate zeroes (00 -> 0) |
|
| 528 | + $content = preg_replace('/'.$before.'-?0+'.$units.'?'.$after.'/', '0\\1', $content); |
|
| 529 | + |
|
| 530 | + return $content; |
|
| 531 | + } |
|
| 532 | + |
|
| 533 | + /** |
|
| 534 | + * Strip comments from source code. |
|
| 535 | + * |
|
| 536 | + * @param string $content |
|
| 537 | + * |
|
| 538 | + * @return string |
|
| 539 | + */ |
|
| 540 | + protected function stripEmptyTags($content) |
|
| 541 | + { |
|
| 542 | + return preg_replace('/(^|\})[^\{\}]+\{\s*\}/', '\\1', $content); |
|
| 543 | + } |
|
| 544 | + |
|
| 545 | + /** |
|
| 546 | + * Strip comments from source code. |
|
| 547 | + */ |
|
| 548 | + protected function stripComments() |
|
| 549 | + { |
|
| 550 | + $this->registerPattern('/\/\*.*?\*\//s', ''); |
|
| 551 | + } |
|
| 552 | + |
|
| 553 | + /** |
|
| 554 | + * Strip whitespace. |
|
| 555 | + * |
|
| 556 | + * @param string $content The CSS content to strip the whitespace for. |
|
| 557 | + * |
|
| 558 | + * @return string |
|
| 559 | + */ |
|
| 560 | + protected function stripWhitespace($content) |
|
| 561 | + { |
|
| 562 | + // remove leading & trailing whitespace |
|
| 563 | + $content = preg_replace('/^\s*/m', '', $content); |
|
| 564 | + $content = preg_replace('/\s*$/m', '', $content); |
|
| 565 | + |
|
| 566 | + // replace newlines with a single space |
|
| 567 | + $content = preg_replace('/\s+/', ' ', $content); |
|
| 568 | + |
|
| 569 | + // remove whitespace around meta characters |
|
| 570 | + // inspired by stackoverflow.com/questions/15195750/minify-compress-css-with-regex |
|
| 571 | + $content = preg_replace('/\s*([\*$~^|]?+=|[{};,>~]|!important\b)\s*/', '$1', $content); |
|
| 572 | + $content = preg_replace('/([\[(:])\s+/', '$1', $content); |
|
| 573 | + $content = preg_replace('/\s+([\]\)])/', '$1', $content); |
|
| 574 | + $content = preg_replace('/\s+(:)(?![^\}]*\{)/', '$1', $content); |
|
| 575 | + |
|
| 576 | + // whitespace around + and - can only be stripped in selectors, like |
|
| 577 | + // :nth-child(3+2n), not in things like calc(3px + 2px) or shorthands |
|
| 578 | + // like 3px -2px |
|
| 579 | + $content = preg_replace('/\s*([+-])\s*(?=[^}]*{)/', '$1', $content); |
|
| 580 | + |
|
| 581 | + // remove semicolon/whitespace followed by closing bracket |
|
| 582 | + $content = str_replace(';}', '}', $content); |
|
| 583 | + |
|
| 584 | + return trim($content); |
|
| 585 | + } |
|
| 586 | + |
|
| 587 | + /** |
|
| 588 | + * Check if file is small enough to be imported. |
|
| 589 | + * |
|
| 590 | + * @param string $path The path to the file. |
|
| 591 | + * |
|
| 592 | + * @return bool |
|
| 593 | + */ |
|
| 594 | + protected function canImportBySize($path) |
|
| 595 | + { |
|
| 596 | + return ($size = @filesize($path)) && $size <= $this->maxImportSize * 1024; |
|
| 597 | + } |
|
| 598 | 598 | } |
@@ -16,326 +16,326 @@ discard block |
||
| 16 | 16 | */ |
| 17 | 17 | abstract class Minify |
| 18 | 18 | { |
| 19 | - /** |
|
| 20 | - * The data to be minified. |
|
| 21 | - * |
|
| 22 | - * @var string[] |
|
| 23 | - */ |
|
| 24 | - protected $data = array(); |
|
| 25 | - |
|
| 26 | - /** |
|
| 27 | - * Array of patterns to match. |
|
| 28 | - * |
|
| 29 | - * @var string[] |
|
| 30 | - */ |
|
| 31 | - protected $patterns = array(); |
|
| 32 | - |
|
| 33 | - /** |
|
| 34 | - * This array will hold content of strings and regular expressions that have |
|
| 35 | - * been extracted from the JS source code, so we can reliably match "code", |
|
| 36 | - * without having to worry about potential "code-like" characters inside. |
|
| 37 | - * |
|
| 38 | - * @var string[] |
|
| 39 | - */ |
|
| 40 | - public $extracted = array(); |
|
| 41 | - |
|
| 42 | - /** |
|
| 43 | - * Init the minify class - optionally, code may be passed along already. |
|
| 44 | - */ |
|
| 45 | - public function __construct(/* $data = null, ... */) |
|
| 46 | - { |
|
| 47 | - // it's possible to add the source through the constructor as well ;) |
|
| 48 | - if (func_num_args()) { |
|
| 49 | - call_user_func_array(array($this, 'add'), func_get_args()); |
|
| 50 | - } |
|
| 51 | - } |
|
| 52 | - |
|
| 53 | - /** |
|
| 54 | - * Add a file or straight-up code to be minified. |
|
| 55 | - * |
|
| 56 | - * @param string $data |
|
| 57 | - */ |
|
| 58 | - public function add($data /* $data = null, ... */) |
|
| 59 | - { |
|
| 60 | - // bogus "usage" of parameter $data: scrutinizer warns this variable is |
|
| 61 | - // not used (we're using func_get_args instead to support overloading), |
|
| 62 | - // but it still needs to be defined because it makes no sense to have |
|
| 63 | - // this function without argument :) |
|
| 64 | - $args = array($data) + func_get_args(); |
|
| 65 | - |
|
| 66 | - // this method can be overloaded |
|
| 67 | - foreach ($args as $data) { |
|
| 68 | - // redefine var |
|
| 69 | - $data = (string) $data; |
|
| 70 | - |
|
| 71 | - // load data |
|
| 72 | - $value = $this->load($data); |
|
| 73 | - $key = ($data != $value) ? $data : count($this->data); |
|
| 74 | - |
|
| 75 | - // store data |
|
| 76 | - $this->data[$key] = $value; |
|
| 77 | - } |
|
| 78 | - } |
|
| 79 | - |
|
| 80 | - /** |
|
| 81 | - * Minify the data & (optionally) saves it to a file. |
|
| 82 | - * |
|
| 83 | - * @param string[optional] $path Path to write the data to. |
|
| 84 | - * |
|
| 85 | - * @return string The minified data. |
|
| 86 | - */ |
|
| 87 | - public function minify($path = null) |
|
| 88 | - { |
|
| 89 | - $content = $this->execute($path); |
|
| 90 | - |
|
| 91 | - // save to path |
|
| 92 | - if ($path !== null) { |
|
| 93 | - $this->save($content, $path); |
|
| 94 | - } |
|
| 95 | - |
|
| 96 | - return $content; |
|
| 97 | - } |
|
| 98 | - |
|
| 99 | - /** |
|
| 100 | - * Minify & gzip the data & (optionally) saves it to a file. |
|
| 101 | - * |
|
| 102 | - * @param string[optional] $path Path to write the data to. |
|
| 103 | - * @param int[optional] $level Compression level, from 0 to 9. |
|
| 104 | - * |
|
| 105 | - * @return string The minified & gzipped data. |
|
| 106 | - */ |
|
| 107 | - public function gzip($path = null, $level = 9) |
|
| 108 | - { |
|
| 109 | - $content = $this->execute($path); |
|
| 110 | - $content = gzencode($content, $level, FORCE_GZIP); |
|
| 111 | - |
|
| 112 | - // save to path |
|
| 113 | - if ($path !== null) { |
|
| 114 | - $this->save($content, $path); |
|
| 115 | - } |
|
| 116 | - |
|
| 117 | - return $content; |
|
| 118 | - } |
|
| 119 | - |
|
| 120 | - /** |
|
| 121 | - * Minify the data & write it to a CacheItemInterface object. |
|
| 122 | - * |
|
| 123 | - * @param CacheItemInterface $item Cache item to write the data to. |
|
| 124 | - * |
|
| 125 | - * @return CacheItemInterface Cache item with the minifier data. |
|
| 126 | - */ |
|
| 127 | - public function cache(CacheItemInterface $item) |
|
| 128 | - { |
|
| 129 | - $content = $this->execute(); |
|
| 130 | - $item->set($content); |
|
| 131 | - |
|
| 132 | - return $item; |
|
| 133 | - } |
|
| 134 | - |
|
| 135 | - /** |
|
| 136 | - * Minify the data. |
|
| 137 | - * |
|
| 138 | - * @param string[optional] $path Path to write the data to. |
|
| 139 | - * |
|
| 140 | - * @return string The minified data. |
|
| 141 | - */ |
|
| 142 | - abstract public function execute($path = null); |
|
| 143 | - |
|
| 144 | - /** |
|
| 145 | - * Load data. |
|
| 146 | - * |
|
| 147 | - * @param string $data Either a path to a file or the content itself. |
|
| 148 | - * |
|
| 149 | - * @return string |
|
| 150 | - */ |
|
| 151 | - protected function load($data) |
|
| 152 | - { |
|
| 153 | - // check if the data is a file |
|
| 154 | - if ($this->canImportFile($data)) { |
|
| 155 | - $data = file_get_contents($data); |
|
| 156 | - |
|
| 157 | - // strip BOM, if any |
|
| 158 | - if (substr($data, 0, 3) == "\xef\xbb\xbf") { |
|
| 159 | - $data = substr($data, 3); |
|
| 160 | - } |
|
| 161 | - } |
|
| 162 | - |
|
| 163 | - return $data; |
|
| 164 | - } |
|
| 165 | - |
|
| 166 | - /** |
|
| 167 | - * Save to file. |
|
| 168 | - * |
|
| 169 | - * @param string $content The minified data. |
|
| 170 | - * @param string $path The path to save the minified data to. |
|
| 171 | - * |
|
| 172 | - * @throws IOException |
|
| 173 | - */ |
|
| 174 | - protected function save($content, $path) |
|
| 175 | - { |
|
| 176 | - $handler = $this->openFileForWriting($path); |
|
| 177 | - |
|
| 178 | - $this->writeToFile($handler, $content); |
|
| 179 | - |
|
| 180 | - @fclose($handler); |
|
| 181 | - } |
|
| 182 | - |
|
| 183 | - /** |
|
| 184 | - * Register a pattern to execute against the source content. |
|
| 185 | - * |
|
| 186 | - * @param string $pattern PCRE pattern. |
|
| 187 | - * @param string|callable $replacement Replacement value for matched pattern. |
|
| 188 | - */ |
|
| 189 | - protected function registerPattern($pattern, $replacement = '') |
|
| 190 | - { |
|
| 191 | - // study the pattern, we'll execute it more than once |
|
| 192 | - $pattern .= 'S'; |
|
| 193 | - |
|
| 194 | - $this->patterns[] = array($pattern, $replacement); |
|
| 195 | - } |
|
| 196 | - |
|
| 197 | - /** |
|
| 198 | - * We can't "just" run some regular expressions against JavaScript: it's a |
|
| 199 | - * complex language. E.g. having an occurrence of // xyz would be a comment, |
|
| 200 | - * unless it's used within a string. Of you could have something that looks |
|
| 201 | - * like a 'string', but inside a comment. |
|
| 202 | - * The only way to accurately replace these pieces is to traverse the JS one |
|
| 203 | - * character at a time and try to find whatever starts first. |
|
| 204 | - * |
|
| 205 | - * @param string $content The content to replace patterns in. |
|
| 206 | - * |
|
| 207 | - * @return string The (manipulated) content. |
|
| 208 | - */ |
|
| 209 | - protected function replace($content) |
|
| 210 | - { |
|
| 211 | - $processed = ''; |
|
| 212 | - $positions = array_fill(0, count($this->patterns), -1); |
|
| 213 | - $matches = array(); |
|
| 214 | - |
|
| 215 | - while ($content) { |
|
| 216 | - // find first match for all patterns |
|
| 217 | - foreach ($this->patterns as $i => $pattern) { |
|
| 218 | - list($pattern, $replacement) = $pattern; |
|
| 219 | - |
|
| 220 | - // no need to re-run matches that are still in the part of the |
|
| 221 | - // content that hasn't been processed |
|
| 222 | - if ($positions[$i] >= 0) { |
|
| 223 | - continue; |
|
| 224 | - } |
|
| 225 | - |
|
| 226 | - $match = null; |
|
| 227 | - if (preg_match($pattern, $content, $match)) { |
|
| 228 | - $matches[$i] = $match; |
|
| 229 | - |
|
| 230 | - // we'll store the match position as well; that way, we |
|
| 231 | - // don't have to redo all preg_matches after changing only |
|
| 232 | - // the first (we'll still know where those others are) |
|
| 233 | - $positions[$i] = strpos($content, $match[0]); |
|
| 234 | - } else { |
|
| 235 | - // if the pattern couldn't be matched, there's no point in |
|
| 236 | - // executing it again in later runs on this same content; |
|
| 237 | - // ignore this one until we reach end of content |
|
| 238 | - unset($matches[$i]); |
|
| 239 | - $positions[$i] = strlen($content); |
|
| 240 | - } |
|
| 241 | - } |
|
| 242 | - |
|
| 243 | - // no more matches to find: everything's been processed, break out |
|
| 244 | - if (!$matches) { |
|
| 245 | - $processed .= $content; |
|
| 246 | - break; |
|
| 247 | - } |
|
| 248 | - |
|
| 249 | - // see which of the patterns actually found the first thing (we'll |
|
| 250 | - // only want to execute that one, since we're unsure if what the |
|
| 251 | - // other found was not inside what the first found) |
|
| 252 | - $discardLength = min($positions); |
|
| 253 | - $firstPattern = array_search($discardLength, $positions); |
|
| 254 | - $match = $matches[$firstPattern][0]; |
|
| 255 | - |
|
| 256 | - // execute the pattern that matches earliest in the content string |
|
| 257 | - list($pattern, $replacement) = $this->patterns[$firstPattern]; |
|
| 258 | - $replacement = $this->replacePattern($pattern, $replacement, $content); |
|
| 259 | - |
|
| 260 | - // figure out which part of the string was unmatched; that's the |
|
| 261 | - // part we'll execute the patterns on again next |
|
| 262 | - $content = substr($content, $discardLength); |
|
| 263 | - $unmatched = (string) substr($content, strpos($content, $match) + strlen($match)); |
|
| 264 | - |
|
| 265 | - // move the replaced part to $processed and prepare $content to |
|
| 266 | - // again match batch of patterns against |
|
| 267 | - $processed .= substr($replacement, 0, strlen($replacement) - strlen($unmatched)); |
|
| 268 | - $content = $unmatched; |
|
| 269 | - |
|
| 270 | - // first match has been replaced & that content is to be left alone, |
|
| 271 | - // the next matches will start after this replacement, so we should |
|
| 272 | - // fix their offsets |
|
| 273 | - foreach ($positions as $i => $position) { |
|
| 274 | - $positions[$i] -= $discardLength + strlen($match); |
|
| 275 | - } |
|
| 276 | - } |
|
| 277 | - |
|
| 278 | - return $processed; |
|
| 279 | - } |
|
| 280 | - |
|
| 281 | - /** |
|
| 282 | - * This is where a pattern is matched against $content and the matches |
|
| 283 | - * are replaced by their respective value. |
|
| 284 | - * This function will be called plenty of times, where $content will always |
|
| 285 | - * move up 1 character. |
|
| 286 | - * |
|
| 287 | - * @param string $pattern Pattern to match. |
|
| 288 | - * @param string|callable $replacement Replacement value. |
|
| 289 | - * @param string $content Content to match pattern against. |
|
| 290 | - * |
|
| 291 | - * @return string |
|
| 292 | - */ |
|
| 293 | - protected function replacePattern($pattern, $replacement, $content) |
|
| 294 | - { |
|
| 295 | - if (is_callable($replacement)) { |
|
| 296 | - return preg_replace_callback($pattern, $replacement, $content, 1, $count); |
|
| 297 | - } else { |
|
| 298 | - return preg_replace($pattern, $replacement, $content, 1, $count); |
|
| 299 | - } |
|
| 300 | - } |
|
| 301 | - |
|
| 302 | - /** |
|
| 303 | - * Strings are a pattern we need to match, in order to ignore potential |
|
| 304 | - * code-like content inside them, but we just want all of the string |
|
| 305 | - * content to remain untouched. |
|
| 306 | - * |
|
| 307 | - * This method will replace all string content with simple STRING# |
|
| 308 | - * placeholder text, so we've rid all strings from characters that may be |
|
| 309 | - * misinterpreted. Original string content will be saved in $this->extracted |
|
| 310 | - * and after doing all other minifying, we can restore the original content |
|
| 311 | - * via restoreStrings(). |
|
| 312 | - * |
|
| 313 | - * @param string[optional] $chars |
|
| 314 | - */ |
|
| 315 | - protected function extractStrings($chars = '\'"') |
|
| 316 | - { |
|
| 317 | - // PHP only supports $this inside anonymous functions since 5.4 |
|
| 318 | - $minifier = $this; |
|
| 319 | - $callback = function ($match) use ($minifier) { |
|
| 320 | - // check the second index here, because the first always contains a quote |
|
| 321 | - if (!$match[2]) { |
|
| 322 | - /* |
|
| 19 | + /** |
|
| 20 | + * The data to be minified. |
|
| 21 | + * |
|
| 22 | + * @var string[] |
|
| 23 | + */ |
|
| 24 | + protected $data = array(); |
|
| 25 | + |
|
| 26 | + /** |
|
| 27 | + * Array of patterns to match. |
|
| 28 | + * |
|
| 29 | + * @var string[] |
|
| 30 | + */ |
|
| 31 | + protected $patterns = array(); |
|
| 32 | + |
|
| 33 | + /** |
|
| 34 | + * This array will hold content of strings and regular expressions that have |
|
| 35 | + * been extracted from the JS source code, so we can reliably match "code", |
|
| 36 | + * without having to worry about potential "code-like" characters inside. |
|
| 37 | + * |
|
| 38 | + * @var string[] |
|
| 39 | + */ |
|
| 40 | + public $extracted = array(); |
|
| 41 | + |
|
| 42 | + /** |
|
| 43 | + * Init the minify class - optionally, code may be passed along already. |
|
| 44 | + */ |
|
| 45 | + public function __construct(/* $data = null, ... */) |
|
| 46 | + { |
|
| 47 | + // it's possible to add the source through the constructor as well ;) |
|
| 48 | + if (func_num_args()) { |
|
| 49 | + call_user_func_array(array($this, 'add'), func_get_args()); |
|
| 50 | + } |
|
| 51 | + } |
|
| 52 | + |
|
| 53 | + /** |
|
| 54 | + * Add a file or straight-up code to be minified. |
|
| 55 | + * |
|
| 56 | + * @param string $data |
|
| 57 | + */ |
|
| 58 | + public function add($data /* $data = null, ... */) |
|
| 59 | + { |
|
| 60 | + // bogus "usage" of parameter $data: scrutinizer warns this variable is |
|
| 61 | + // not used (we're using func_get_args instead to support overloading), |
|
| 62 | + // but it still needs to be defined because it makes no sense to have |
|
| 63 | + // this function without argument :) |
|
| 64 | + $args = array($data) + func_get_args(); |
|
| 65 | + |
|
| 66 | + // this method can be overloaded |
|
| 67 | + foreach ($args as $data) { |
|
| 68 | + // redefine var |
|
| 69 | + $data = (string) $data; |
|
| 70 | + |
|
| 71 | + // load data |
|
| 72 | + $value = $this->load($data); |
|
| 73 | + $key = ($data != $value) ? $data : count($this->data); |
|
| 74 | + |
|
| 75 | + // store data |
|
| 76 | + $this->data[$key] = $value; |
|
| 77 | + } |
|
| 78 | + } |
|
| 79 | + |
|
| 80 | + /** |
|
| 81 | + * Minify the data & (optionally) saves it to a file. |
|
| 82 | + * |
|
| 83 | + * @param string[optional] $path Path to write the data to. |
|
| 84 | + * |
|
| 85 | + * @return string The minified data. |
|
| 86 | + */ |
|
| 87 | + public function minify($path = null) |
|
| 88 | + { |
|
| 89 | + $content = $this->execute($path); |
|
| 90 | + |
|
| 91 | + // save to path |
|
| 92 | + if ($path !== null) { |
|
| 93 | + $this->save($content, $path); |
|
| 94 | + } |
|
| 95 | + |
|
| 96 | + return $content; |
|
| 97 | + } |
|
| 98 | + |
|
| 99 | + /** |
|
| 100 | + * Minify & gzip the data & (optionally) saves it to a file. |
|
| 101 | + * |
|
| 102 | + * @param string[optional] $path Path to write the data to. |
|
| 103 | + * @param int[optional] $level Compression level, from 0 to 9. |
|
| 104 | + * |
|
| 105 | + * @return string The minified & gzipped data. |
|
| 106 | + */ |
|
| 107 | + public function gzip($path = null, $level = 9) |
|
| 108 | + { |
|
| 109 | + $content = $this->execute($path); |
|
| 110 | + $content = gzencode($content, $level, FORCE_GZIP); |
|
| 111 | + |
|
| 112 | + // save to path |
|
| 113 | + if ($path !== null) { |
|
| 114 | + $this->save($content, $path); |
|
| 115 | + } |
|
| 116 | + |
|
| 117 | + return $content; |
|
| 118 | + } |
|
| 119 | + |
|
| 120 | + /** |
|
| 121 | + * Minify the data & write it to a CacheItemInterface object. |
|
| 122 | + * |
|
| 123 | + * @param CacheItemInterface $item Cache item to write the data to. |
|
| 124 | + * |
|
| 125 | + * @return CacheItemInterface Cache item with the minifier data. |
|
| 126 | + */ |
|
| 127 | + public function cache(CacheItemInterface $item) |
|
| 128 | + { |
|
| 129 | + $content = $this->execute(); |
|
| 130 | + $item->set($content); |
|
| 131 | + |
|
| 132 | + return $item; |
|
| 133 | + } |
|
| 134 | + |
|
| 135 | + /** |
|
| 136 | + * Minify the data. |
|
| 137 | + * |
|
| 138 | + * @param string[optional] $path Path to write the data to. |
|
| 139 | + * |
|
| 140 | + * @return string The minified data. |
|
| 141 | + */ |
|
| 142 | + abstract public function execute($path = null); |
|
| 143 | + |
|
| 144 | + /** |
|
| 145 | + * Load data. |
|
| 146 | + * |
|
| 147 | + * @param string $data Either a path to a file or the content itself. |
|
| 148 | + * |
|
| 149 | + * @return string |
|
| 150 | + */ |
|
| 151 | + protected function load($data) |
|
| 152 | + { |
|
| 153 | + // check if the data is a file |
|
| 154 | + if ($this->canImportFile($data)) { |
|
| 155 | + $data = file_get_contents($data); |
|
| 156 | + |
|
| 157 | + // strip BOM, if any |
|
| 158 | + if (substr($data, 0, 3) == "\xef\xbb\xbf") { |
|
| 159 | + $data = substr($data, 3); |
|
| 160 | + } |
|
| 161 | + } |
|
| 162 | + |
|
| 163 | + return $data; |
|
| 164 | + } |
|
| 165 | + |
|
| 166 | + /** |
|
| 167 | + * Save to file. |
|
| 168 | + * |
|
| 169 | + * @param string $content The minified data. |
|
| 170 | + * @param string $path The path to save the minified data to. |
|
| 171 | + * |
|
| 172 | + * @throws IOException |
|
| 173 | + */ |
|
| 174 | + protected function save($content, $path) |
|
| 175 | + { |
|
| 176 | + $handler = $this->openFileForWriting($path); |
|
| 177 | + |
|
| 178 | + $this->writeToFile($handler, $content); |
|
| 179 | + |
|
| 180 | + @fclose($handler); |
|
| 181 | + } |
|
| 182 | + |
|
| 183 | + /** |
|
| 184 | + * Register a pattern to execute against the source content. |
|
| 185 | + * |
|
| 186 | + * @param string $pattern PCRE pattern. |
|
| 187 | + * @param string|callable $replacement Replacement value for matched pattern. |
|
| 188 | + */ |
|
| 189 | + protected function registerPattern($pattern, $replacement = '') |
|
| 190 | + { |
|
| 191 | + // study the pattern, we'll execute it more than once |
|
| 192 | + $pattern .= 'S'; |
|
| 193 | + |
|
| 194 | + $this->patterns[] = array($pattern, $replacement); |
|
| 195 | + } |
|
| 196 | + |
|
| 197 | + /** |
|
| 198 | + * We can't "just" run some regular expressions against JavaScript: it's a |
|
| 199 | + * complex language. E.g. having an occurrence of // xyz would be a comment, |
|
| 200 | + * unless it's used within a string. Of you could have something that looks |
|
| 201 | + * like a 'string', but inside a comment. |
|
| 202 | + * The only way to accurately replace these pieces is to traverse the JS one |
|
| 203 | + * character at a time and try to find whatever starts first. |
|
| 204 | + * |
|
| 205 | + * @param string $content The content to replace patterns in. |
|
| 206 | + * |
|
| 207 | + * @return string The (manipulated) content. |
|
| 208 | + */ |
|
| 209 | + protected function replace($content) |
|
| 210 | + { |
|
| 211 | + $processed = ''; |
|
| 212 | + $positions = array_fill(0, count($this->patterns), -1); |
|
| 213 | + $matches = array(); |
|
| 214 | + |
|
| 215 | + while ($content) { |
|
| 216 | + // find first match for all patterns |
|
| 217 | + foreach ($this->patterns as $i => $pattern) { |
|
| 218 | + list($pattern, $replacement) = $pattern; |
|
| 219 | + |
|
| 220 | + // no need to re-run matches that are still in the part of the |
|
| 221 | + // content that hasn't been processed |
|
| 222 | + if ($positions[$i] >= 0) { |
|
| 223 | + continue; |
|
| 224 | + } |
|
| 225 | + |
|
| 226 | + $match = null; |
|
| 227 | + if (preg_match($pattern, $content, $match)) { |
|
| 228 | + $matches[$i] = $match; |
|
| 229 | + |
|
| 230 | + // we'll store the match position as well; that way, we |
|
| 231 | + // don't have to redo all preg_matches after changing only |
|
| 232 | + // the first (we'll still know where those others are) |
|
| 233 | + $positions[$i] = strpos($content, $match[0]); |
|
| 234 | + } else { |
|
| 235 | + // if the pattern couldn't be matched, there's no point in |
|
| 236 | + // executing it again in later runs on this same content; |
|
| 237 | + // ignore this one until we reach end of content |
|
| 238 | + unset($matches[$i]); |
|
| 239 | + $positions[$i] = strlen($content); |
|
| 240 | + } |
|
| 241 | + } |
|
| 242 | + |
|
| 243 | + // no more matches to find: everything's been processed, break out |
|
| 244 | + if (!$matches) { |
|
| 245 | + $processed .= $content; |
|
| 246 | + break; |
|
| 247 | + } |
|
| 248 | + |
|
| 249 | + // see which of the patterns actually found the first thing (we'll |
|
| 250 | + // only want to execute that one, since we're unsure if what the |
|
| 251 | + // other found was not inside what the first found) |
|
| 252 | + $discardLength = min($positions); |
|
| 253 | + $firstPattern = array_search($discardLength, $positions); |
|
| 254 | + $match = $matches[$firstPattern][0]; |
|
| 255 | + |
|
| 256 | + // execute the pattern that matches earliest in the content string |
|
| 257 | + list($pattern, $replacement) = $this->patterns[$firstPattern]; |
|
| 258 | + $replacement = $this->replacePattern($pattern, $replacement, $content); |
|
| 259 | + |
|
| 260 | + // figure out which part of the string was unmatched; that's the |
|
| 261 | + // part we'll execute the patterns on again next |
|
| 262 | + $content = substr($content, $discardLength); |
|
| 263 | + $unmatched = (string) substr($content, strpos($content, $match) + strlen($match)); |
|
| 264 | + |
|
| 265 | + // move the replaced part to $processed and prepare $content to |
|
| 266 | + // again match batch of patterns against |
|
| 267 | + $processed .= substr($replacement, 0, strlen($replacement) - strlen($unmatched)); |
|
| 268 | + $content = $unmatched; |
|
| 269 | + |
|
| 270 | + // first match has been replaced & that content is to be left alone, |
|
| 271 | + // the next matches will start after this replacement, so we should |
|
| 272 | + // fix their offsets |
|
| 273 | + foreach ($positions as $i => $position) { |
|
| 274 | + $positions[$i] -= $discardLength + strlen($match); |
|
| 275 | + } |
|
| 276 | + } |
|
| 277 | + |
|
| 278 | + return $processed; |
|
| 279 | + } |
|
| 280 | + |
|
| 281 | + /** |
|
| 282 | + * This is where a pattern is matched against $content and the matches |
|
| 283 | + * are replaced by their respective value. |
|
| 284 | + * This function will be called plenty of times, where $content will always |
|
| 285 | + * move up 1 character. |
|
| 286 | + * |
|
| 287 | + * @param string $pattern Pattern to match. |
|
| 288 | + * @param string|callable $replacement Replacement value. |
|
| 289 | + * @param string $content Content to match pattern against. |
|
| 290 | + * |
|
| 291 | + * @return string |
|
| 292 | + */ |
|
| 293 | + protected function replacePattern($pattern, $replacement, $content) |
|
| 294 | + { |
|
| 295 | + if (is_callable($replacement)) { |
|
| 296 | + return preg_replace_callback($pattern, $replacement, $content, 1, $count); |
|
| 297 | + } else { |
|
| 298 | + return preg_replace($pattern, $replacement, $content, 1, $count); |
|
| 299 | + } |
|
| 300 | + } |
|
| 301 | + |
|
| 302 | + /** |
|
| 303 | + * Strings are a pattern we need to match, in order to ignore potential |
|
| 304 | + * code-like content inside them, but we just want all of the string |
|
| 305 | + * content to remain untouched. |
|
| 306 | + * |
|
| 307 | + * This method will replace all string content with simple STRING# |
|
| 308 | + * placeholder text, so we've rid all strings from characters that may be |
|
| 309 | + * misinterpreted. Original string content will be saved in $this->extracted |
|
| 310 | + * and after doing all other minifying, we can restore the original content |
|
| 311 | + * via restoreStrings(). |
|
| 312 | + * |
|
| 313 | + * @param string[optional] $chars |
|
| 314 | + */ |
|
| 315 | + protected function extractStrings($chars = '\'"') |
|
| 316 | + { |
|
| 317 | + // PHP only supports $this inside anonymous functions since 5.4 |
|
| 318 | + $minifier = $this; |
|
| 319 | + $callback = function ($match) use ($minifier) { |
|
| 320 | + // check the second index here, because the first always contains a quote |
|
| 321 | + if (!$match[2]) { |
|
| 322 | + /* |
|
| 323 | 323 | * Empty strings need no placeholder; they can't be confused for |
| 324 | 324 | * anything else anyway. |
| 325 | 325 | * But we still needed to match them, for the extraction routine |
| 326 | 326 | * to skip over this particular string. |
| 327 | 327 | */ |
| 328 | - return $match[0]; |
|
| 329 | - } |
|
| 328 | + return $match[0]; |
|
| 329 | + } |
|
| 330 | 330 | |
| 331 | - $count = count($minifier->extracted); |
|
| 332 | - $placeholder = $match[1].$count.$match[1]; |
|
| 333 | - $minifier->extracted[$placeholder] = $match[1].$match[2].$match[1]; |
|
| 331 | + $count = count($minifier->extracted); |
|
| 332 | + $placeholder = $match[1].$count.$match[1]; |
|
| 333 | + $minifier->extracted[$placeholder] = $match[1].$match[2].$match[1]; |
|
| 334 | 334 | |
| 335 | - return $placeholder; |
|
| 336 | - }; |
|
| 335 | + return $placeholder; |
|
| 336 | + }; |
|
| 337 | 337 | |
| 338 | - /* |
|
| 338 | + /* |
|
| 339 | 339 | * The \\ messiness explained: |
| 340 | 340 | * * Don't count ' or " as end-of-string if it's escaped (has backslash |
| 341 | 341 | * in front of it) |
@@ -347,75 +347,75 @@ discard block |
||
| 347 | 347 | * considered as escape-char (times 2) and to get it in the regex, |
| 348 | 348 | * escaped (times 2) |
| 349 | 349 | */ |
| 350 | - $this->registerPattern('/(['.$chars.'])(.*?(?<!\\\\)(\\\\\\\\)*+)\\1/s', $callback); |
|
| 351 | - } |
|
| 352 | - |
|
| 353 | - /** |
|
| 354 | - * This method will restore all extracted data (strings, regexes) that were |
|
| 355 | - * replaced with placeholder text in extract*(). The original content was |
|
| 356 | - * saved in $this->extracted. |
|
| 357 | - * |
|
| 358 | - * @param string $content |
|
| 359 | - * |
|
| 360 | - * @return string |
|
| 361 | - */ |
|
| 362 | - protected function restoreExtractedData($content) |
|
| 363 | - { |
|
| 364 | - if (!$this->extracted) { |
|
| 365 | - // nothing was extracted, nothing to restore |
|
| 366 | - return $content; |
|
| 367 | - } |
|
| 368 | - |
|
| 369 | - $content = strtr($content, $this->extracted); |
|
| 370 | - |
|
| 371 | - $this->extracted = array(); |
|
| 372 | - |
|
| 373 | - return $content; |
|
| 374 | - } |
|
| 375 | - |
|
| 376 | - /** |
|
| 377 | - * Check if the path is a regular file and can be read. |
|
| 378 | - * |
|
| 379 | - * @param string $path |
|
| 380 | - * |
|
| 381 | - * @return bool |
|
| 382 | - */ |
|
| 383 | - protected function canImportFile($path) |
|
| 384 | - { |
|
| 385 | - return strlen($path) < PHP_MAXPATHLEN && is_file($path) && is_readable($path); |
|
| 386 | - } |
|
| 387 | - |
|
| 388 | - /** |
|
| 389 | - * Attempts to open file specified by $path for writing. |
|
| 390 | - * |
|
| 391 | - * @param string $path The path to the file. |
|
| 392 | - * |
|
| 393 | - * @return resource Specifier for the target file. |
|
| 394 | - * |
|
| 395 | - * @throws IOException |
|
| 396 | - */ |
|
| 397 | - protected function openFileForWriting($path) |
|
| 398 | - { |
|
| 399 | - if (($handler = @fopen($path, 'w')) === false) { |
|
| 400 | - throw new IOException('The file "'.$path.'" could not be opened for writing. Check if PHP has enough permissions.'); |
|
| 401 | - } |
|
| 402 | - |
|
| 403 | - return $handler; |
|
| 404 | - } |
|
| 405 | - |
|
| 406 | - /** |
|
| 407 | - * Attempts to write $content to the file specified by $handler. $path is used for printing exceptions. |
|
| 408 | - * |
|
| 409 | - * @param resource $handler The resource to write to. |
|
| 410 | - * @param string $content The content to write. |
|
| 411 | - * @param string $path The path to the file (for exception printing only). |
|
| 412 | - * |
|
| 413 | - * @throws IOException |
|
| 414 | - */ |
|
| 415 | - protected function writeToFile($handler, $content, $path = '') |
|
| 416 | - { |
|
| 417 | - if (($result = @fwrite($handler, $content)) === false || ($result < strlen($content))) { |
|
| 418 | - throw new IOException('The file "'.$path.'" could not be written to. Check your disk space and file permissions.'); |
|
| 419 | - } |
|
| 420 | - } |
|
| 350 | + $this->registerPattern('/(['.$chars.'])(.*?(?<!\\\\)(\\\\\\\\)*+)\\1/s', $callback); |
|
| 351 | + } |
|
| 352 | + |
|
| 353 | + /** |
|
| 354 | + * This method will restore all extracted data (strings, regexes) that were |
|
| 355 | + * replaced with placeholder text in extract*(). The original content was |
|
| 356 | + * saved in $this->extracted. |
|
| 357 | + * |
|
| 358 | + * @param string $content |
|
| 359 | + * |
|
| 360 | + * @return string |
|
| 361 | + */ |
|
| 362 | + protected function restoreExtractedData($content) |
|
| 363 | + { |
|
| 364 | + if (!$this->extracted) { |
|
| 365 | + // nothing was extracted, nothing to restore |
|
| 366 | + return $content; |
|
| 367 | + } |
|
| 368 | + |
|
| 369 | + $content = strtr($content, $this->extracted); |
|
| 370 | + |
|
| 371 | + $this->extracted = array(); |
|
| 372 | + |
|
| 373 | + return $content; |
|
| 374 | + } |
|
| 375 | + |
|
| 376 | + /** |
|
| 377 | + * Check if the path is a regular file and can be read. |
|
| 378 | + * |
|
| 379 | + * @param string $path |
|
| 380 | + * |
|
| 381 | + * @return bool |
|
| 382 | + */ |
|
| 383 | + protected function canImportFile($path) |
|
| 384 | + { |
|
| 385 | + return strlen($path) < PHP_MAXPATHLEN && is_file($path) && is_readable($path); |
|
| 386 | + } |
|
| 387 | + |
|
| 388 | + /** |
|
| 389 | + * Attempts to open file specified by $path for writing. |
|
| 390 | + * |
|
| 391 | + * @param string $path The path to the file. |
|
| 392 | + * |
|
| 393 | + * @return resource Specifier for the target file. |
|
| 394 | + * |
|
| 395 | + * @throws IOException |
|
| 396 | + */ |
|
| 397 | + protected function openFileForWriting($path) |
|
| 398 | + { |
|
| 399 | + if (($handler = @fopen($path, 'w')) === false) { |
|
| 400 | + throw new IOException('The file "'.$path.'" could not be opened for writing. Check if PHP has enough permissions.'); |
|
| 401 | + } |
|
| 402 | + |
|
| 403 | + return $handler; |
|
| 404 | + } |
|
| 405 | + |
|
| 406 | + /** |
|
| 407 | + * Attempts to write $content to the file specified by $handler. $path is used for printing exceptions. |
|
| 408 | + * |
|
| 409 | + * @param resource $handler The resource to write to. |
|
| 410 | + * @param string $content The content to write. |
|
| 411 | + * @param string $path The path to the file (for exception printing only). |
|
| 412 | + * |
|
| 413 | + * @throws IOException |
|
| 414 | + */ |
|
| 415 | + protected function writeToFile($handler, $content, $path = '') |
|
| 416 | + { |
|
| 417 | + if (($result = @fwrite($handler, $content)) === false || ($result < strlen($content))) { |
|
| 418 | + throw new IOException('The file "'.$path.'" could not be written to. Check your disk space and file permissions.'); |
|
| 419 | + } |
|
| 420 | + } |
|
| 421 | 421 | } |
@@ -842,7 +842,7 @@ |
||
| 842 | 842 | require_once($sourcedir . '/Subs-Boards.php'); |
| 843 | 843 | sortBoards($recycle_boards); |
| 844 | 844 | |
| 845 | - $recycle_boards = array('') + $recycle_boards; |
|
| 845 | + $recycle_boards = array('') + $recycle_boards; |
|
| 846 | 846 | |
| 847 | 847 | // Here and the board settings... |
| 848 | 848 | $config_vars = array( |
@@ -426,8 +426,8 @@ |
||
| 426 | 426 | */ |
| 427 | 427 | function matchIPtoCIDR($ip_address, $cidr_address) |
| 428 | 428 | { |
| 429 | - list ($cidr_network, $cidr_subnetmask) = preg_split('/', $cidr_address); |
|
| 430 | - return (ip2long($ip_address) & (~((1 << (32 - $cidr_subnetmask)) - 1))) == ip2long($cidr_network); |
|
| 429 | + list ($cidr_network, $cidr_subnetmask) = preg_split('/', $cidr_address); |
|
| 430 | + return (ip2long($ip_address) & (~((1 << (32 - $cidr_subnetmask)) - 1))) == ip2long($cidr_network); |
|
| 431 | 431 | } |
| 432 | 432 | |
| 433 | 433 | /** |
@@ -433,7 +433,6 @@ |
||
| 433 | 433 | * Formats data retrieved in other functions into xml format. |
| 434 | 434 | * Additionally formats data based on the specific format passed. |
| 435 | 435 | * This function is recursively called to handle sub arrays of data. |
| 436 | - |
|
| 437 | 436 | * @param array $data The array to output as xml data |
| 438 | 437 | * @param int $i The amount of indentation to use. |
| 439 | 438 | * @param null|string $tag If specified, it will be used instead of the keys of data. |
@@ -1799,9 +1799,9 @@ |
||
| 1799 | 1799 | } |
| 1800 | 1800 | |
| 1801 | 1801 | /** |
| 1802 | - * Callback for createList(). |
|
| 1803 | - * @return int The total number of warning templates |
|
| 1804 | - */ |
|
| 1802 | + * Callback for createList(). |
|
| 1803 | + * @return int The total number of warning templates |
|
| 1804 | + */ |
|
| 1805 | 1805 | function list_getWarningTemplateCount() |
| 1806 | 1806 | { |
| 1807 | 1807 | global $smcFunc, $user_info; |
@@ -2439,7 +2439,6 @@ |
||
| 2439 | 2439 | |
| 2440 | 2440 | /** |
| 2441 | 2441 | * Add a Javascript file for output later |
| 2442 | - |
|
| 2443 | 2442 | * @param string $filename The name of the file to load |
| 2444 | 2443 | * @param array $params An array of parameter info |
| 2445 | 2444 | * Keys are the following: |
@@ -18,10 +18,10 @@ |
||
| 18 | 18 | */ |
| 19 | 19 | class Update_TLD_Regex extends SMF_BackgroundTask |
| 20 | 20 | { |
| 21 | - /** |
|
| 22 | - * This executes the task. It just calls set_tld_regex() in Subs.php |
|
| 23 | - * @return bool Always returns true |
|
| 24 | - */ |
|
| 21 | + /** |
|
| 22 | + * This executes the task. It just calls set_tld_regex() in Subs.php |
|
| 23 | + * @return bool Always returns true |
|
| 24 | + */ |
|
| 25 | 25 | public function execute() |
| 26 | 26 | { |
| 27 | 27 | global $sourcedir; |