File size: 3,483 Bytes
68ca1f1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
// minify.js
const { minify } = require('html-minifier');
const cheerio = require('cheerio');
function sanitizeHtml(html) {
try {
// Remove conditional comments
html = html.replace(/<!--\[if.*?<!\[endif\]-->/gs, '');
// Fix incomplete URLs
html = html.replace(/src="https?:\/\/[^"]*\.{3}"/g, '');
// Remove problematic script tags
html = html.replace(/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi, '');
return html;
} catch (err) {
console.warn('HTML sanitization failed:', err);
return html;
}
}
function validateHtml(html) {
try {
const $ = cheerio.load(html, {
xmlMode: false,
decodeEntities: false
});
const issues = [];
if ($('html').length === 0) issues.push('Missing html tag');
if ($('head').length === 0) issues.push('Missing head tag');
if ($('body').length === 0) issues.push('Missing body tag');
return issues;
} catch (err) {
console.warn('HTML validation failed:', err);
return ['Validation error: ' + err.message];
}
}
function safeMinify(html, options = {}) {
const defaultOptions = {
removeComments: true,
collapseWhitespace: true,
minifyCSS: true,
minifyJS: true,
conservativeCollapse: true,
keepClosingSlash: true,
removeAttributeQuotes: false,
removeEmptyAttributes: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: false,
removeStyleLinkTypeAttributes: false,
sortAttributes: true,
sortClassName: true
};
const minifyOptions = { ...defaultOptions, ...options };
try {
// Try full minification first
return minify(html, minifyOptions);
} catch (err) {
console.warn('Full minification failed, trying conservative mode:', err);
try {
// Fall back to conservative minification
return minify(html, {
removeComments: true,
collapseWhitespace: true,
conservativeCollapse: true,
keepClosingSlash: true,
removeAttributeQuotes: false,
removeEmptyAttributes: false,
removeRedundantAttributes: false
});
} catch (err2) {
console.error('Conservative minification also failed:', err2);
return html;
}
}
}
function minifyHtml(html, options = {}) {
const result = {
originalSize: html.length,
minifiedHtml: '',
success: false,
issues: [],
stats: {},
error: null
};
try {
// Step 1: Validate HTML
const validationIssues = validateHtml(html);
result.issues = validationIssues;
// Step 2: Sanitize HTML
const sanitized = sanitizeHtml(html);
// Step 3: Minify HTML
const minified = safeMinify(sanitized, options);
result.minifiedHtml = minified;
result.success = true;
// Step 4: Calculate stats
result.stats = {
originalSize: html.length,
minifiedSize: minified.length,
reduction: ((html.length - minified.length) / html.length * 100).toFixed(2) + '%',
validationIssues: validationIssues.length,
timestamp: new Date().toISOString()
};
} catch (err) {
result.error = {
message: err.message,
stack: err.stack
};
result.minifiedHtml = html; // Return original HTML if processing fails
}
return result;
}
module.exports = {
minifyHtml,
validateHtml,
sanitizeHtml
}; |