2020-05-17 20:09:39 +02:00
|
|
|
/**
|
|
|
|
* Writes compressed C arrays of data files (web interface)
|
|
|
|
* How to use it?
|
|
|
|
*
|
|
|
|
* 1) Install Node 11+ and npm
|
|
|
|
* 2) npm install
|
|
|
|
* 3) npm run build
|
|
|
|
*
|
|
|
|
* If you change data folder often, you can run it in monitoring mode (it will recompile and update *.h on every file change)
|
|
|
|
*
|
|
|
|
* > npm run dev
|
|
|
|
*
|
|
|
|
* How it works?
|
|
|
|
*
|
|
|
|
* It uses NodeJS packages to inline, minify and GZIP files. See writeHtmlGzipped and writeChunks invocations at the bottom of the page.
|
|
|
|
*/
|
|
|
|
|
|
|
|
const fs = require("fs");
|
2020-06-08 19:59:40 +02:00
|
|
|
const packageJson = require("../package.json");
|
2020-05-17 20:09:39 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
function hexdump(buffer) {
|
|
|
|
let lines = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < buffer.length; i += 16) {
|
|
|
|
let block = buffer.slice(i, i + 16); // cut buffer into blocks of 16
|
|
|
|
let hexArray = [];
|
|
|
|
|
|
|
|
for (let value of block) {
|
|
|
|
hexArray.push("0x" + value.toString(16).padStart(2, "0"));
|
|
|
|
}
|
|
|
|
|
|
|
|
let hexString = hexArray.join(", ");
|
|
|
|
let line = ` ${hexString}`;
|
|
|
|
lines.push(line);
|
|
|
|
}
|
|
|
|
|
|
|
|
return lines.join(",\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
const inliner = require("inliner");
|
|
|
|
const zlib = require("zlib");
|
|
|
|
|
2020-06-08 19:59:40 +02:00
|
|
|
function strReplace(str, search, replacement) {
|
|
|
|
return str.split(search).join(replacement);
|
|
|
|
}
|
|
|
|
|
|
|
|
function adoptVersionAndRepo(html) {
|
|
|
|
let repoUrl = packageJson.repository ? packageJson.repository.url : undefined;
|
|
|
|
if (repoUrl) {
|
|
|
|
repoUrl = repoUrl.replace(/^git\+/, "");
|
|
|
|
repoUrl = repoUrl.replace(/\.git$/, "");
|
|
|
|
// Replace we
|
|
|
|
html = strReplace(html, "https://github.com/atuline/WLED", repoUrl);
|
|
|
|
html = strReplace(html, "https://github.com/Aircoookie/WLED", repoUrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
let version = packageJson.version;
|
|
|
|
if (version) {
|
|
|
|
html = strReplace(html, "##VERSION##", version);
|
|
|
|
}
|
|
|
|
|
|
|
|
return html;
|
|
|
|
}
|
|
|
|
|
2020-05-17 20:09:39 +02:00
|
|
|
function writeHtmlGzipped(sourceFile, resultFile) {
|
|
|
|
console.info("Reading " + sourceFile);
|
2020-06-08 19:59:40 +02:00
|
|
|
new inliner(sourceFile, function (error, html) {
|
2020-05-17 20:09:39 +02:00
|
|
|
console.info("Inlined " + html.length + " characters");
|
2020-12-21 19:48:21 +01:00
|
|
|
html = filter(html, "html-minify-ui");
|
|
|
|
console.info("Minified to " + html.length + " characters");
|
2020-05-17 20:09:39 +02:00
|
|
|
|
|
|
|
if (error) {
|
|
|
|
console.warn(error);
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
|
2020-06-08 19:59:40 +02:00
|
|
|
html = adoptVersionAndRepo(html);
|
2020-08-31 10:57:17 +02:00
|
|
|
zlib.gzip(html, { level: zlib.constants.Z_BEST_COMPRESSION }, function (error, result) {
|
2020-05-17 20:09:39 +02:00
|
|
|
if (error) {
|
|
|
|
console.warn(error);
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
|
|
|
|
console.info("Compressed " + result.length + " bytes");
|
|
|
|
const array = hexdump(result);
|
2020-06-10 12:45:44 +02:00
|
|
|
const src = `/*
|
|
|
|
* Binary array for the Web UI.
|
|
|
|
* gzip is used for smaller size and improved speeds.
|
|
|
|
*
|
|
|
|
* Please see https://github.com/Aircoookie/WLED/wiki/Add-own-functionality#web-ui
|
|
|
|
* to find out how to easily modify the web UI source!
|
|
|
|
*/
|
|
|
|
|
2020-05-17 20:09:39 +02:00
|
|
|
// Autogenerated from ${sourceFile}, do not edit!!
|
|
|
|
const uint16_t PAGE_index_L = ${result.length};
|
|
|
|
const uint8_t PAGE_index[] PROGMEM = {
|
|
|
|
${array}
|
|
|
|
};
|
|
|
|
`;
|
|
|
|
console.info("Writing " + resultFile);
|
|
|
|
fs.writeFileSync(resultFile, src);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
const CleanCSS = require("clean-css");
|
2020-10-26 22:31:35 +01:00
|
|
|
const MinifyHTML = require("html-minifier-terser").minify;
|
2020-05-17 20:09:39 +02:00
|
|
|
|
|
|
|
function filter(str, type) {
|
2020-06-08 19:59:40 +02:00
|
|
|
str = adoptVersionAndRepo(str);
|
|
|
|
|
2020-05-17 20:09:39 +02:00
|
|
|
if (type === undefined) {
|
|
|
|
return str;
|
|
|
|
} else if (type == "css-minify") {
|
|
|
|
return new CleanCSS({}).minify(str).styles;
|
|
|
|
} else if (type == "html-minify") {
|
|
|
|
return MinifyHTML(str, {
|
|
|
|
collapseWhitespace: true,
|
|
|
|
maxLineLength: 80,
|
|
|
|
minifyCSS: true,
|
2020-10-26 22:31:35 +01:00
|
|
|
minifyJS: true,
|
2020-06-08 19:59:40 +02:00
|
|
|
continueOnParseError: false,
|
|
|
|
removeComments: true,
|
2020-05-17 20:09:39 +02:00
|
|
|
});
|
2020-12-21 19:48:21 +01:00
|
|
|
} else if (type == "html-minify-ui") {
|
|
|
|
return MinifyHTML(str, {
|
|
|
|
collapseWhitespace: true,
|
|
|
|
conservativeCollapse: true,
|
|
|
|
maxLineLength: 80,
|
|
|
|
minifyCSS: true,
|
|
|
|
minifyJS: true,
|
|
|
|
continueOnParseError: false,
|
|
|
|
removeComments: true,
|
|
|
|
});
|
2020-05-17 20:09:39 +02:00
|
|
|
} else {
|
|
|
|
console.warn("Unknown filter: " + type);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function specToChunk(srcDir, s) {
|
|
|
|
if (s.method == "plaintext") {
|
|
|
|
const buf = fs.readFileSync(srcDir + "/" + s.file);
|
2020-12-20 20:23:20 +01:00
|
|
|
const str = buf.toString("utf-8");
|
2020-05-17 20:09:39 +02:00
|
|
|
const chunk = `
|
|
|
|
// Autogenerated from ${srcDir}/${s.file}, do not edit!!
|
2020-06-08 19:59:40 +02:00
|
|
|
const char ${s.name}[] PROGMEM = R"${s.prepend || ""}${filter(str, s.filter)}${
|
|
|
|
s.append || ""
|
|
|
|
}";
|
2020-05-17 20:09:39 +02:00
|
|
|
|
|
|
|
`;
|
|
|
|
return s.mangle ? s.mangle(chunk) : chunk;
|
|
|
|
} else if (s.method == "binary") {
|
|
|
|
const buf = fs.readFileSync(srcDir + "/" + s.file);
|
|
|
|
const result = hexdump(buf);
|
|
|
|
const chunk = `
|
|
|
|
// Autogenerated from ${srcDir}/${s.file}, do not edit!!
|
|
|
|
const uint16_t ${s.name}_length = ${result.length};
|
|
|
|
const uint8_t ${s.name}[] PROGMEM = {
|
|
|
|
${result}
|
|
|
|
};
|
|
|
|
|
|
|
|
`;
|
|
|
|
return s.mangle ? s.mangle(chunk) : chunk;
|
|
|
|
} else {
|
|
|
|
console.warn("Unknown method: " + s.method);
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function writeChunks(srcDir, specs, resultFile) {
|
2020-06-10 12:45:44 +02:00
|
|
|
let src = `/*
|
|
|
|
* More web UI HTML source arrays.
|
|
|
|
* This file is auto generated, please don't make any changes manually.
|
|
|
|
* Instead, see https://github.com/Aircoookie/WLED/wiki/Add-own-functionality#web-ui
|
|
|
|
* to find out how to easily modify the web UI source!
|
|
|
|
*/
|
|
|
|
`;
|
2020-06-08 19:59:40 +02:00
|
|
|
specs.forEach((s) => {
|
2020-05-17 20:09:39 +02:00
|
|
|
try {
|
|
|
|
console.info("Reading " + srcDir + "/" + s.file + " as " + s.name);
|
|
|
|
src += specToChunk(srcDir, s);
|
|
|
|
} catch (e) {
|
|
|
|
console.warn(
|
|
|
|
"Failed " + s.name + " from " + srcDir + "/" + s.file,
|
|
|
|
e.message.length > 60 ? e.message.substring(0, 60) : e.message
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
console.info("Writing " + src.length + " characters into " + resultFile);
|
|
|
|
fs.writeFileSync(resultFile, src);
|
|
|
|
}
|
|
|
|
|
|
|
|
writeHtmlGzipped("wled00/data/index.htm", "wled00/html_ui.h");
|
|
|
|
|
|
|
|
writeChunks(
|
|
|
|
"wled00/data",
|
|
|
|
[
|
|
|
|
{
|
|
|
|
file: "style.css",
|
|
|
|
name: "PAGE_settingsCss",
|
|
|
|
prepend: "=====(<style>",
|
|
|
|
append: "</style>)=====",
|
|
|
|
method: "plaintext",
|
2020-06-08 19:59:40 +02:00
|
|
|
filter: "css-minify",
|
2020-05-17 20:09:39 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
file: "settings.htm",
|
|
|
|
name: "PAGE_settings",
|
|
|
|
prepend: "=====(",
|
|
|
|
append: ")=====",
|
|
|
|
method: "plaintext",
|
2020-06-08 19:59:40 +02:00
|
|
|
filter: "html-minify",
|
2020-08-03 18:37:25 +02:00
|
|
|
mangle: (str) =>
|
|
|
|
str
|
|
|
|
.replace("%", "%%")
|
|
|
|
.replace(/User Interface\<\/button\>\<\/form\>/gms, "User Interface\<\/button\>\<\/form\>%DMXMENU%"),
|
2020-05-17 20:09:39 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
file: "settings_wifi.htm",
|
|
|
|
name: "PAGE_settings_wifi",
|
|
|
|
prepend: "=====(",
|
|
|
|
append: ")=====",
|
|
|
|
method: "plaintext",
|
|
|
|
filter: "html-minify",
|
2020-06-08 19:59:40 +02:00
|
|
|
mangle: (str) =>
|
2020-05-17 20:09:39 +02:00
|
|
|
str
|
|
|
|
.replace(/\<link rel="stylesheet".*\>/gms, "")
|
|
|
|
.replace(/\<style\>.*\<\/style\>/gms, "%CSS%%SCSS%")
|
2020-05-17 20:59:00 +02:00
|
|
|
.replace(
|
|
|
|
/function GetV().*\<\/script\>/gms,
|
|
|
|
"function GetV() {var d=document;\n"
|
2020-06-08 19:59:40 +02:00
|
|
|
),
|
2020-05-17 20:09:39 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
file: "settings_leds.htm",
|
|
|
|
name: "PAGE_settings_leds",
|
|
|
|
prepend: "=====(",
|
|
|
|
append: ")=====",
|
|
|
|
method: "plaintext",
|
|
|
|
filter: "html-minify",
|
2020-06-08 19:59:40 +02:00
|
|
|
mangle: (str) =>
|
2020-05-17 20:09:39 +02:00
|
|
|
str
|
|
|
|
.replace(/\<link rel="stylesheet".*\>/gms, "")
|
|
|
|
.replace(/\<style\>.*\<\/style\>/gms, "%CSS%%SCSS%")
|
2020-05-17 20:59:00 +02:00
|
|
|
.replace(
|
|
|
|
/function GetV().*\<\/script\>/gms,
|
|
|
|
"function GetV() {var d=document;\n"
|
2020-06-08 19:59:40 +02:00
|
|
|
),
|
2020-05-17 20:09:39 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
file: "settings_dmx.htm",
|
|
|
|
name: "PAGE_settings_dmx",
|
|
|
|
prepend: "=====(",
|
|
|
|
append: ")=====",
|
|
|
|
method: "plaintext",
|
|
|
|
filter: "html-minify",
|
2020-06-08 19:59:40 +02:00
|
|
|
mangle: (str) => {
|
2020-05-17 20:09:39 +02:00
|
|
|
const nocss = str
|
|
|
|
.replace(/\<link rel="stylesheet".*\>/gms, "")
|
2020-05-17 20:59:00 +02:00
|
|
|
.replace(/\<style\>.*\<\/style\>/gms, "%CSS%%SCSS%")
|
|
|
|
.replace(
|
|
|
|
/function GetV().*\<\/script\>/gms,
|
|
|
|
"function GetV() {var d=document;\n"
|
|
|
|
);
|
2020-05-17 20:09:39 +02:00
|
|
|
return `
|
|
|
|
#ifdef WLED_ENABLE_DMX
|
|
|
|
${nocss}
|
|
|
|
#else
|
|
|
|
const char PAGE_settings_dmx[] PROGMEM = R"=====()=====";
|
|
|
|
#endif
|
|
|
|
`;
|
2020-06-08 19:59:40 +02:00
|
|
|
},
|
2020-05-17 20:09:39 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
file: "settings_ui.htm",
|
|
|
|
name: "PAGE_settings_ui",
|
|
|
|
prepend: "=====(",
|
|
|
|
append: ")=====",
|
|
|
|
method: "plaintext",
|
|
|
|
filter: "html-minify",
|
2020-06-08 19:59:40 +02:00
|
|
|
mangle: (str) =>
|
2020-05-17 20:09:39 +02:00
|
|
|
str
|
|
|
|
.replace(/\<link rel="stylesheet".*\>/gms, "")
|
|
|
|
.replace(/\<style\>.*\<\/style\>/gms, "%CSS%%SCSS%")
|
2020-05-17 20:59:00 +02:00
|
|
|
.replace(
|
|
|
|
/function GetV().*\<\/script\>/gms,
|
|
|
|
"function GetV() {var d=document;\n"
|
2020-06-08 19:59:40 +02:00
|
|
|
),
|
2020-05-17 20:09:39 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
file: "settings_sync.htm",
|
|
|
|
name: "PAGE_settings_sync",
|
|
|
|
prepend: "=====(",
|
|
|
|
append: ")=====",
|
|
|
|
method: "plaintext",
|
|
|
|
filter: "html-minify",
|
2020-06-08 19:59:40 +02:00
|
|
|
mangle: (str) =>
|
2020-05-17 20:09:39 +02:00
|
|
|
str
|
|
|
|
.replace(/\<link rel="stylesheet".*\>/gms, "")
|
|
|
|
.replace(/\<style\>.*\<\/style\>/gms, "%CSS%%SCSS%")
|
2020-06-08 19:59:40 +02:00
|
|
|
.replace(/function GetV().*\<\/script\>/gms, "function GetV() {\n"),
|
2020-05-17 20:09:39 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
file: "settings_time.htm",
|
|
|
|
name: "PAGE_settings_time",
|
|
|
|
prepend: "=====(",
|
|
|
|
append: ")=====",
|
|
|
|
method: "plaintext",
|
|
|
|
filter: "html-minify",
|
2020-06-08 19:59:40 +02:00
|
|
|
mangle: (str) =>
|
2020-05-17 20:09:39 +02:00
|
|
|
str
|
|
|
|
.replace(/\<link rel="stylesheet".*\>/gms, "")
|
|
|
|
.replace(/\<style\>.*\<\/style\>/gms, "%CSS%%SCSS%")
|
2020-06-08 19:59:40 +02:00
|
|
|
.replace(/function GetV().*\<\/script\>/gms, "function GetV() {\n"),
|
2020-05-17 20:09:39 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
file: "settings_sec.htm",
|
|
|
|
name: "PAGE_settings_sec",
|
|
|
|
prepend: "=====(",
|
|
|
|
append: ")=====",
|
|
|
|
method: "plaintext",
|
|
|
|
filter: "html-minify",
|
2020-06-08 19:59:40 +02:00
|
|
|
mangle: (str) =>
|
2020-05-17 20:09:39 +02:00
|
|
|
str
|
|
|
|
.replace(/\<link rel="stylesheet".*\>/gms, "")
|
|
|
|
.replace(/\<style\>.*\<\/style\>/gms, "%CSS%%SCSS%")
|
2020-05-17 20:59:00 +02:00
|
|
|
.replace(
|
|
|
|
/function GetV().*\<\/script\>/gms,
|
|
|
|
"function GetV() {var d=document;\n"
|
2020-06-08 19:59:40 +02:00
|
|
|
),
|
|
|
|
},
|
2020-05-17 20:09:39 +02:00
|
|
|
],
|
|
|
|
"wled00/html_settings.h"
|
|
|
|
);
|
|
|
|
|
|
|
|
writeChunks(
|
|
|
|
"wled00/data",
|
|
|
|
[
|
|
|
|
{
|
|
|
|
file: "usermod.htm",
|
|
|
|
name: "PAGE_usermod",
|
|
|
|
prepend: "=====(",
|
|
|
|
append: ")=====",
|
|
|
|
method: "plaintext",
|
2020-05-17 22:22:42 +02:00
|
|
|
filter: "html-minify",
|
2020-06-08 19:59:40 +02:00
|
|
|
mangle: (str) =>
|
|
|
|
str.replace(/fetch\("http\:\/\/.*\/win/gms, 'fetch("/win'),
|
2020-05-17 20:09:39 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
file: "msg.htm",
|
|
|
|
name: "PAGE_msg",
|
|
|
|
prepend: "=====(",
|
|
|
|
append: ")=====",
|
|
|
|
method: "plaintext",
|
2020-05-17 20:59:00 +02:00
|
|
|
filter: "html-minify",
|
2020-06-08 19:59:40 +02:00
|
|
|
mangle: (str) => str.replace(/\<h2\>.*\<\/body\>/gms, "<h2>%MSG%</body>"),
|
2020-05-17 20:09:39 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
file: "dmxmap.htm",
|
|
|
|
name: "PAGE_dmxmap",
|
|
|
|
prepend: "=====(",
|
|
|
|
append: ")=====",
|
|
|
|
method: "plaintext",
|
|
|
|
filter: "html-minify",
|
2020-06-08 19:59:40 +02:00
|
|
|
mangle: (str) => `
|
2020-05-17 20:09:39 +02:00
|
|
|
#ifdef WLED_ENABLE_DMX
|
2020-05-17 20:59:00 +02:00
|
|
|
${str.replace(/function FM\(\)[ ]?\{/gms, "function FM() {%DMXVARS%\n")}
|
2020-05-17 20:09:39 +02:00
|
|
|
#else
|
|
|
|
const char PAGE_dmxmap[] PROGMEM = R"=====()=====";
|
|
|
|
#endif
|
2020-06-08 19:59:40 +02:00
|
|
|
`,
|
2020-05-17 20:09:39 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
file: "update.htm",
|
|
|
|
name: "PAGE_update",
|
|
|
|
prepend: "=====(",
|
|
|
|
append: ")=====",
|
|
|
|
method: "plaintext",
|
2020-06-08 19:59:40 +02:00
|
|
|
filter: "html-minify",
|
2020-05-17 20:09:39 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
file: "welcome.htm",
|
|
|
|
name: "PAGE_welcome",
|
|
|
|
prepend: "=====(",
|
|
|
|
append: ")=====",
|
|
|
|
method: "plaintext",
|
2020-06-08 19:59:40 +02:00
|
|
|
filter: "html-minify",
|
2020-05-17 20:09:39 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
file: "liveview.htm",
|
|
|
|
name: "PAGE_liveview",
|
|
|
|
prepend: "=====(",
|
|
|
|
append: ")=====",
|
|
|
|
method: "plaintext",
|
2020-06-08 19:59:40 +02:00
|
|
|
filter: "html-minify",
|
2020-05-17 20:09:39 +02:00
|
|
|
},
|
2020-11-15 16:37:09 +01:00
|
|
|
{
|
|
|
|
file: "404.htm",
|
|
|
|
name: "PAGE_404",
|
|
|
|
prepend: "=====(",
|
|
|
|
append: ")=====",
|
|
|
|
method: "plaintext",
|
|
|
|
filter: "html-minify",
|
|
|
|
},
|
2020-05-17 20:09:39 +02:00
|
|
|
{
|
|
|
|
file: "favicon.ico",
|
|
|
|
name: "favicon",
|
2020-06-08 19:59:40 +02:00
|
|
|
method: "binary",
|
|
|
|
},
|
2020-05-17 20:09:39 +02:00
|
|
|
],
|
|
|
|
"wled00/html_other.h"
|
|
|
|
);
|