Skip to content

Instantly share code, notes, and snippets.

@jonleverrier
Last active April 20, 2018 08:13
Show Gist options
  • Save jonleverrier/869644f6fe608623b86f92b0158badb8 to your computer and use it in GitHub Desktop.
Save jonleverrier/869644f6fe608623b86f92b0158badb8 to your computer and use it in GitHub Desktop.
minifyHTML Plugin for MODX. Based on the PHPWee PHP Minifier class. This plugin will minify and compress the html output of your resources which have a content type of text/html.
<?php
/**
* minifyHTML Plugin for MODX
* Based on the PHPWee PHP Minifier class
*
* This plugin uses a forked version of PHPWee PHP Minifier
* which has been patched and updated
*
* For more info see;
* https://github.com/ashucg/phpwee-php-minifier
* https://raw.githubusercontent.com/ashucg/phpwee-php-minifier/master/src/HtmlMin/HtmlMin.php
*
* Version: 1.0
* Events: OnWebPagePrerender
* @author Jon Leverrier <jon@youandmedigital.com>
*
*/
switch ($modx->event->name) {
case 'OnWebPagePrerender':
/*
PHPWee PHP Minifier Package - http://searchturbine.com/php/phpwee
Copyright (c) 2015, SearchTurbine - Enterprise Search for Everyone
http://searchturbine.com/
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
// -- Class Name : HtmlMin
// -- Purpose : PHP class to minify html code.
// -- Usage: echo PHPWee\Minify::html($myhtml);
// -- notes: aply data-no-min to a style or script node to exempt it
// -- HTML 4, XHTML, and HTML 5 compliant
class HtmlMin{
// -- Function Name : minify - Params : $html
// the js and css functions have been removed
public static function minify($html){
$doc = new \DOMDocument();
$doc->preserveWhiteSpace = false;
if(function_exists('mb_convert_encoding'))
$html = mb_convert_encoding($html, 'HTML-ENTITIES', 'UTF-8');
@$doc->loadHTML($html);
$xpath = new \DOMXPath($doc);
foreach ($xpath->query('//comment()') as $comment) {
$val= $comment->nodeValue;
if( strpos($val,'[')===false){
$comment->parentNode->removeChild($comment);
}
}
$doc->normalizeDocument();
$textnodes = $xpath->query('//text()');
$skip = ["style","pre","code","script","textarea","urlset","url","loc"];
foreach($textnodes as $t){
$xp = $t->getNodePath();
$doskip = false;
foreach($skip as $pattern){
if(strpos($xp,"/$pattern")!==false){
$doskip = true;
break;
}
}
if($doskip){
continue;
}
$t->nodeValue = preg_replace("/\s{2,}/", " ", $t->nodeValue);
}
$doc->normalizeDocument();
$divnodes = $xpath->query('//div|//p|//nav|//footer|//article|//script|//hr|//br');
foreach($divnodes as $d){
$candidates = [];
if(count($d->childNodes)){
$candidates[] = $d->firstChild;
$candidates[] = $d->lastChild;
$candidates[] = $d->previousSibling;
$candidates[] = $d->nextSibling;
}
foreach($candidates as $c){
if($c==null){
continue;
}
if($c->nodeType==3){
$c->nodeValue = preg_replace('/\s{2,}/im', '', $c->nodeValue);
}
}
}
$doc->normalizeDocument();
return ($doc->saveHTML());
}
}
// apply minified output to resource output
$output = &$modx->resource->_output;
// only minify the HTML content type
if ($modx->resource->get('content_type')==1){
$output = HtmlMin::minify($output);
}
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment