chore: npm update
This commit is contained in:
parent
0d2eb146d2
commit
618647f2ce
2 changed files with 394 additions and 124 deletions
|
|
@ -3,9 +3,9 @@ const path = require("path");
|
|||
const TOML = require('fast-toml');
|
||||
const UglifyJS = require('uglify-js');
|
||||
const jsonminify = require("jsonminify");
|
||||
const replace = require('replace-in-file');
|
||||
const util = require("util");
|
||||
const util = require("util");
|
||||
const { exec } = require("child_process");
|
||||
const { exit } = require('process');
|
||||
const execPromise = util.promisify(exec);
|
||||
|
||||
if (!(fs.existsSync('config.toml'))) {
|
||||
|
|
@ -21,9 +21,6 @@ const search_library = data.extra.search_library;
|
|||
const index_format = data.search.index_format;
|
||||
const uglyurls = data.extra.uglyurls;
|
||||
const js_bundle = data.extra.js_bundle;
|
||||
const offline = data.extra.offline;
|
||||
const online_url = data.extra.online_url;
|
||||
const online_indexformat = data.extra.online_indexformat;
|
||||
const pwa = data.extra.pwa;
|
||||
const pwa_VER = data.extra.pwa_VER;
|
||||
const pwa_NORM_TTL = data.extra.pwa_NORM_TTL;
|
||||
|
|
@ -33,6 +30,23 @@ const pwa_TTL_LONG = data.extra.pwa_TTL_LONG;
|
|||
const pwa_TTL_EXEMPT = data.extra.pwa_TTL_EXEMPT;
|
||||
const pwa_cache_all = data.extra.pwa_cache_all;
|
||||
const pwa_BASE_CACHE_FILES = data.extra.pwa_BASE_CACHE_FILES;
|
||||
const pwa_IGNORE_FILES = data.extra.pwa_IGNORE_FILES;
|
||||
|
||||
// This is used to pass arguments to zola via npm, for example:
|
||||
// npm run abridge -- "--base-url https://abridge.pages.dev"
|
||||
var args = process.argv[2] ? ' ' + process.argv[2] : '';
|
||||
|
||||
// check if abridge is used directly or as a theme.
|
||||
bpath = '';
|
||||
if (fs.existsSync('./themes')) {
|
||||
bpath = 'themes/abridge/';
|
||||
}
|
||||
// cleanup pagefind files from old builds.
|
||||
_rmRegex(path.join(__dirname, "static/js/"), /^wasm.*pagefind$/);
|
||||
_rmRegex(path.join(__dirname, "static/js/"), /^pagefind.*pf_meta$/);
|
||||
_rmRegex(path.join(__dirname, "static/js/"), /^pagefind-entry.*json$/);
|
||||
_rmRecursive(path.join(__dirname, "static/js/index"));
|
||||
_rmRecursive(path.join(__dirname, "static/js/fragment"));
|
||||
|
||||
async function execWrapper(cmd) {
|
||||
const { stdout, stderr } = await execPromise(cmd);
|
||||
|
|
@ -40,98 +54,90 @@ async function execWrapper(cmd) {
|
|||
console.log(stdout);
|
||||
}
|
||||
if (stderr) {
|
||||
console.log('ERROR: '+stderr);
|
||||
console.log('ERROR: ' + stderr);
|
||||
}
|
||||
}
|
||||
|
||||
async function abridge() {
|
||||
if (offline === false) {
|
||||
if (typeof online_url !== 'undefined' && typeof online_indexformat !== 'undefined') {
|
||||
replace.sync({files: 'config.toml', from: /base_url.*=.*/g, to: "base_url = \""+online_url+"\""});
|
||||
replace.sync({files: 'config.toml', from: /index_format.*=.*/g, to: "index_format = \""+online_indexformat+"\""});
|
||||
}
|
||||
} else if (offline === true) {
|
||||
if (typeof online_url !== 'undefined' && typeof online_indexformat !== 'undefined') {
|
||||
replace.sync({files: 'config.toml', from: /base_url.*=.*/g, to: "base_url = \""+__dirname+"\/public\""});
|
||||
replace.sync({files: 'config.toml', from: /index_format.*=.*/g, to: "index_format = \"elasticlunr_javascript\""});
|
||||
} else {
|
||||
throw new Error('ERROR: offline = true requires that online_url and online_indexformat are set in config.toml, so that the base_url and index_format can be restored if offline is later set to false.');
|
||||
}
|
||||
await sync();
|
||||
const { replaceInFileSync } = await import('replace-in-file');
|
||||
// set index_format for chosen search_library accordingly.
|
||||
if (search_library === 'offline') {
|
||||
replaceInFileSync({ files: 'config.toml', from: /index_format.*=.*/g, to: "index_format = \"elasticlunr_javascript\"" });
|
||||
args = args + " -u \"" + __dirname + "\/public\""//set base_url to the path on disk for offline site.
|
||||
} else if (search_library === 'elasticlunrjava') {
|
||||
replaceInFileSync({ files: 'config.toml', from: /index_format.*=.*/g, to: "index_format = \"elasticlunr_javascript\"" });
|
||||
} else if (search_library === 'elasticlunr') {
|
||||
replaceInFileSync({ files: 'config.toml', from: /index_format.*=.*/g, to: "index_format = \"elasticlunr_json\"" });
|
||||
} else if (search_library === 'pagefind') {
|
||||
replaceInFileSync({ files: 'config.toml', from: /index_format.*=.*/g, to: "index_format = \"fuse_json\"" });
|
||||
} else if (search_library === 'tinysearch') {
|
||||
replaceInFileSync({ files: 'config.toml', from: /index_format.*=.*/g, to: "index_format = \"fuse_json\"" });
|
||||
}
|
||||
|
||||
console.log('Zola Build to generate files for minification:');
|
||||
await execWrapper('zola build');
|
||||
await execWrapper('zola build' + args);
|
||||
|
||||
//check that static/js exists, do this after zola build, it will handle creating static if missing.
|
||||
var jsdir = 'static/js';
|
||||
try {
|
||||
fs.mkdirSync(jsdir);
|
||||
} catch(e) {
|
||||
} catch (e) {
|
||||
if (e.code != 'EEXIST') throw e;
|
||||
}
|
||||
|
||||
// check if abridge is used directly or as a theme.
|
||||
bpath = '';
|
||||
if (fs.existsSync('./themes')) {
|
||||
bpath = 'themes/abridge/';
|
||||
}
|
||||
|
||||
base_url = data.base_url;
|
||||
if (base_url.slice(-1) == "/") {
|
||||
base_url = base_url.slice(0, -1);
|
||||
base_url = base_url.slice(0, -1);
|
||||
}
|
||||
|
||||
if (search_library === 'elasticlunr') {
|
||||
if (fs.existsSync('content/static/stork_toml.md')) {
|
||||
replace.sync({files: 'content/static/stork_toml.md', from: /draft.*=.*/g, to: "draft = true"});
|
||||
}
|
||||
if (fs.existsSync('content/static/tinysearch_json.md')) {
|
||||
replace.sync({files: 'content/static/tinysearch_json.md', from: /draft.*=.*/g, to: "draft = true"});
|
||||
}
|
||||
} else if (search_library === 'tinysearch') {
|
||||
if (!fs.existsSync('content/static/tinysearch_json.md')) {// 'content/static/tinysearch_json.md' file is missing, copy from abridge theme.
|
||||
fs.copyFileSync(bpath+'content/static/tinysearch_json.md', 'content/static/tinysearch_json.md',fs.constants.COPYFILE_EXCL);
|
||||
}
|
||||
if (fs.existsSync('content/static/stork_toml.md')) {
|
||||
replace.sync({files: 'content/static/stork_toml.md', from: /draft.*=.*/g, to: "draft = true"});
|
||||
}
|
||||
if (fs.existsSync('content/static/tinysearch_json.md')) {
|
||||
replace.sync({files: 'content/static/tinysearch_json.md', from: /draft.*=.*/g, to: "draft = false"});
|
||||
}
|
||||
// zola build && mkdir -p tmp && tinysearch --optimize --path tmp public/data_tinysearch/index.html && rsync -avz tmp/*.wasm static/ && rm -rf tmp
|
||||
} else if (search_library === 'stork') {
|
||||
if (search_library === 'pagefind') {
|
||||
// Generate pagefind index at start, otherwise it happens too late asyncronously.
|
||||
await createPagefindIndex(); // makes program wait for pagefind build execution
|
||||
_rmRegex(path.join(__dirname, "static/js/"), /^pagefind\.js$/);//pagefind temporary intermediate files
|
||||
_rmRegex(path.join(__dirname, "static/js/"), /^pagefind-.*\.js$/);//pagefind temporary intermediate files
|
||||
_rmRegex(path.join(__dirname, "static/js/"), /^pagefind-.*\.css$/);//pagefind temporary intermediate files
|
||||
|
||||
if (!fs.existsSync('content/static/stork_toml.md')) {// 'content/static/stork_toml.md' file is missing, copy from abridge theme.
|
||||
fs.copyFileSync(bpath+'content/static/stork_toml.md', 'content/static/stork_toml.md',fs.constants.COPYFILE_EXCL);
|
||||
}
|
||||
if (fs.existsSync('content/static/stork_toml.md')) {
|
||||
replace.sync({files: 'content/static/stork_toml.md', from: /draft.*=.*/g, to: "draft = false"});
|
||||
}
|
||||
if (fs.existsSync('content/static/tinysearch_json.md')) {
|
||||
replace.sync({files: 'content/static/tinysearch_json.md', from: /draft.*=.*/g, to: "draft = true"});
|
||||
}
|
||||
// zola build && stork build --input public/data_stork/index.html --output static/stork.st
|
||||
// This line in pagefind is causing a problem for the PWA:
|
||||
// var e = await (await fetch(this.basePath + "pagefind-entry.json?ts=" + Date.now())).json();
|
||||
// instead generate an epoch timestamp at build and add it to the filename.
|
||||
var hash = Math.floor(new Date().getTime() / 1000);
|
||||
fs.renameSync(path.join(__dirname, "static/js/pagefind-entry.json"), path.join(__dirname, "static/js/pagefind-entry-" + hash + ".json"));
|
||||
|
||||
// original: var e=await(await fetch(this.basePath+"pagefind-entry.json?ts="+Date.now())).json();
|
||||
// new: var e=await(await fetch(this.basePath+"pagefind-entry-1723268715.json")).json();
|
||||
// Tricky regex, so I split it into two replaceInFileSync() calls, pull requests welcome if you can improve this.
|
||||
replaceInFileSync({ files: path.join(__dirname, "static/js/pagefind_search.js"), from: /pagefind-entry\.json\?ts=/g, to: "pagefind-entry-" + hash + "\.json" });
|
||||
replaceInFileSync({ files: path.join(__dirname, "static/js/pagefind_search.js"), from: /Date.now\(\)/g, to: "\"\"" });
|
||||
|
||||
//copy to public so the files are included in the PWA cache list if necessary.
|
||||
fs.copyFileSync(path.join(__dirname, "static/js/pagefind-entry-" + hash + ".json"), path.join(__dirname, "public/js/pagefind-entry-" + hash + ".json"))
|
||||
_cpRegex(path.join(__dirname, "static/js/"), path.join(__dirname, "public/js/"), /^pagefind-entry\.json$/);
|
||||
_cpRegex(path.join(__dirname, "static/js/"), path.join(__dirname, "public/js/"), /^pagefind.*pf_meta$/);
|
||||
_cpRegex(path.join(__dirname, "static/js/"), path.join(__dirname, "public/js/"), /^wasm.*pagefind$/);
|
||||
_cpRecursive(path.join(__dirname, "static/js/index"), path.join(__dirname, "public/js/index"));
|
||||
_cpRecursive(path.join(__dirname, "static/js/fragment"), path.join(__dirname, "public/js/fragment"));
|
||||
}
|
||||
|
||||
if (pwa) {// Update pwa settings, file list, and hashes.
|
||||
if (typeof pwa_VER !== 'undefined' && typeof pwa_NORM_TTL !== 'undefined' && typeof pwa_LONG_TTL !== 'undefined' && typeof pwa_TTL_NORM !== 'undefined' && typeof pwa_TTL_LONG !== 'undefined' && typeof pwa_TTL_EXEMPT !== 'undefined') {
|
||||
// update from abridge theme.
|
||||
fs.copyFileSync(bpath+'static/sw.js', 'static/sw.js');
|
||||
fs.copyFileSync(bpath+'static/js/sw_load.js', 'static/js/sw_load.js');
|
||||
fs.copyFileSync(bpath + 'static/sw.js', 'static/sw.js');
|
||||
fs.copyFileSync(bpath + 'static/js/sw_load.js', 'static/js/sw_load.js');
|
||||
// Update settings in PWA javascript file, using options parsed from config.toml. sw.min.js?v=3.10.0", "++"
|
||||
if (fs.existsSync('static/js/sw_load.js')) {
|
||||
sw_load_min = '.js?v=';
|
||||
if (js_bundle) {
|
||||
sw_load_min = '.min.js?v=';
|
||||
}
|
||||
replace.sync({files: 'static/js/sw_load.js', from: /sw.*v=.*/g, to: "sw"+sw_load_min+pwa_VER+"\","});
|
||||
replaceInFileSync({ files: 'static/js/sw_load.js', from: /sw.*v=.*/g, to: "sw" + sw_load_min + pwa_VER + "\"," });
|
||||
}
|
||||
if (fs.existsSync('static/sw.js')) {
|
||||
replace.sync({files: 'static/sw.js', from: /NORM_TTL.*=.*/g, to: "NORM_TTL = "+pwa_NORM_TTL+";"});
|
||||
replace.sync({files: 'static/sw.js', from: /LONG_TTL.*=.*/g, to: "LONG_TTL = "+pwa_LONG_TTL+";"});
|
||||
replace.sync({files: 'static/sw.js', from: /TTL_NORM.*=.*/g, to: "TTL_NORM = ["+pwa_TTL_NORM+"];"});
|
||||
replace.sync({files: 'static/sw.js', from: /TTL_LONG.*=.*/g, to: "TTL_LONG = ["+pwa_TTL_LONG+"];"});
|
||||
replace.sync({files: 'static/sw.js', from: /TTL_EXEMPT.*=.*/g, to: "TTL_EXEMPT = ["+pwa_TTL_EXEMPT+"];"});
|
||||
replaceInFileSync({ files: 'static/sw.js', from: /NORM_TTL.*=.*/g, to: "NORM_TTL = " + pwa_NORM_TTL + ";" });
|
||||
replaceInFileSync({ files: 'static/sw.js', from: /LONG_TTL.*=.*/g, to: "LONG_TTL = " + pwa_LONG_TTL + ";" });
|
||||
replaceInFileSync({ files: 'static/sw.js', from: /TTL_NORM.*=.*/g, to: "TTL_NORM = [" + pwa_TTL_NORM + "];" });
|
||||
replaceInFileSync({ files: 'static/sw.js', from: /TTL_LONG.*=.*/g, to: "TTL_LONG = [" + pwa_TTL_LONG + "];" });
|
||||
replaceInFileSync({ files: 'static/sw.js', from: /TTL_EXEMPT.*=.*/g, to: "TTL_EXEMPT = [" + pwa_TTL_EXEMPT + "];" });
|
||||
}
|
||||
|
||||
if (pwa_cache_all === true) {
|
||||
|
|
@ -141,34 +147,42 @@ async function abridge() {
|
|||
var dir = 'public';
|
||||
try {
|
||||
fs.mkdirSync(dir);
|
||||
} catch(e) {
|
||||
} catch (e) {
|
||||
if (e.code != 'EEXIST') throw e;
|
||||
}
|
||||
const path = './public/';
|
||||
cache = 'this.BASE_CACHE_FILES = [';
|
||||
cache = '';
|
||||
files = fs.readdirSync(path, { recursive: true, withFileTypes: false })
|
||||
.forEach(
|
||||
(file) => {
|
||||
// check if is directory, if not then add the path/file
|
||||
if (!fs.lstatSync(path+file).isDirectory()) {
|
||||
// format output
|
||||
item = "/"+file.replace(/index\.html$/i,'');// strip index.html from path
|
||||
item = item.replace(/^\/sw(\.min)?\.js/i,'');// dont cache service worker
|
||||
.forEach(
|
||||
(file) => {
|
||||
// check if is directory, if not then add the path/file
|
||||
if (!fs.lstatSync(path + file).isDirectory()) {
|
||||
// format output
|
||||
item = "/" + file.replace(/index\.html$/i, '');// strip index.html from path
|
||||
item = item.replace(/\\/g, '/');// replace backslash with forward slash for Windows
|
||||
|
||||
// if formatted output is not empty line then append it to cache var
|
||||
if (item != '') {// skip empty lines
|
||||
cache = cache+"'"+item+"',";
|
||||
var arrayLength = pwa_IGNORE_FILES.length;
|
||||
for (var i = 0; i < arrayLength; i++) {
|
||||
regex = new RegExp(`^\/${pwa_IGNORE_FILES[i]}`, `i`);
|
||||
item = item.replace(regex, '');// dont cache files in the pwa_IGNORE_FILES array
|
||||
}
|
||||
|
||||
// if formatted output is not empty line then append it to cache var
|
||||
if (item != '') {// skip empty lines
|
||||
cache = cache + "'" + item + "',";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
);
|
||||
cache = cache.slice(0, -1)+'];'// remove the last comma and close the array
|
||||
);
|
||||
cache = cache.slice(0, -1)// remove the last comma
|
||||
} else if (pwa_BASE_CACHE_FILES) {
|
||||
cache = 'this.BASE_CACHE_FILES = ['+pwa_BASE_CACHE_FILES+'];';
|
||||
cache = pwa_BASE_CACHE_FILES;
|
||||
}
|
||||
|
||||
cache = cache.split(",").sort().join(",")//sort the cache list, this should help keep the commit history cleaner.
|
||||
cache = 'this.BASE_CACHE_FILES = [' + cache + '];';
|
||||
// update the BASE_CACHE_FILES variable in the sw.js service worker file
|
||||
results = replace.sync({
|
||||
results = replaceInFileSync({
|
||||
files: 'static/sw.js',
|
||||
from: /this\.BASE_CACHE_FILES =.*/g,
|
||||
to: cache,
|
||||
|
|
@ -180,15 +194,16 @@ async function abridge() {
|
|||
}
|
||||
|
||||
if (bpath === '') {// abridge used directly
|
||||
// These are truely static js files, so they should only need to be updated by abridge maintainer or contributors.
|
||||
_headersWASM();
|
||||
// These are truely static js files, so they should only need to be updated by the abridge maintainer or contributors.
|
||||
minify(['static/js/theme.js']);
|
||||
minify(['static/js/theme_light.js']);
|
||||
minify(['static/js/katex.min.js','static/js/mathtex-script-type.min.js','static/js/katex-auto-render.min.js','static/js/katexoptions.js'],'static/js/katexbundle.min.js');
|
||||
minify(['static/js/elasticlunr.min.js','static/js/search.js'],'static/js/search_elasticlunr.min.js');
|
||||
minify(['static/js/stork.js','static/js/stork_config.js'],'static/js/search_stork.min.js');
|
||||
minify(['static/js/tinysearch.js'],'static/js/search_tinysearch.min.js');
|
||||
minify(['static/js/prestyle.js','static/js/theme_button.js','static/js/email.js','static/js/codecopy.js','static/js/sw_load.js'],'static/js/abridge_nosearch.min.js');
|
||||
minify(['static/js/prestyle.js','static/js/theme_button.js','static/js/email.js','static/js/codecopy.js'],'static/js/abridge_nosearch_nopwa.min.js');
|
||||
// Something went wrong with minifying katexbundle, so commenting this out for now
|
||||
// minify(['static/js/katex.min.js','static/js/mathtex-script-type.min.js','static/js/katex-auto-render.min.js','static/js/katexoptions.js'],'static/js/katexbundle.min.js');
|
||||
minify(['static/js/elasticlunr.min.js', 'static/js/search.js'], 'static/js/search_elasticlunr.min.js');
|
||||
minify(['static/js/tinysearch.js'], 'static/js/search_tinysearch.min.js');
|
||||
minify(['static/js/prestyle.js', 'static/js/theme_button.js', 'static/js/email.js', 'static/js/codecopy.js', 'static/js/sw_load.js'], 'static/js/abridge_nosearch.min.js');
|
||||
minify(['static/js/prestyle.js', 'static/js/theme_button.js', 'static/js/email.js', 'static/js/codecopy.js'], 'static/js/abridge_nosearch_nopwa.min.js');
|
||||
minify(['static/js/sw_load.js']);
|
||||
minify(['static/sw.js']);
|
||||
} else if (pwa) {
|
||||
|
|
@ -200,56 +215,108 @@ async function abridge() {
|
|||
if (fs.existsSync('static/manifest.json')) {
|
||||
let out;
|
||||
try {
|
||||
out = JSON.minify(fs.readFileSync('static/manifest.json', {encoding:"utf-8"}));
|
||||
} catch(err) {
|
||||
out = JSON.minify(fs.readFileSync('static/manifest.json', { encoding: "utf-8" }));
|
||||
} catch (err) {
|
||||
console.log(err);
|
||||
}
|
||||
fs.writeFileSync('static/manifest.min.json', out);
|
||||
}
|
||||
|
||||
abridge_bundle = bundle(bpath,js_prestyle,js_switcher,js_email_encode,js_copycode,search_library,index_format,uglyurls,false);
|
||||
minify(abridge_bundle,'static/js/abridge_nopwa.min.js');
|
||||
abridge_bundle = bundle(bpath, js_prestyle, js_switcher, js_email_encode, js_copycode, search_library, index_format, uglyurls, false);
|
||||
minify(abridge_bundle, 'static/js/abridge_nopwa.min.js');
|
||||
|
||||
abridge_bundle = bundle(bpath,js_prestyle,js_switcher,js_email_encode,js_copycode,search_library,index_format,uglyurls,pwa);
|
||||
minify(abridge_bundle,'static/js/abridge.min.js');
|
||||
abridge_bundle = bundle(bpath, js_prestyle, js_switcher, js_email_encode, js_copycode, search_library, index_format, uglyurls, pwa);
|
||||
minify(abridge_bundle, 'static/js/abridge.min.js');
|
||||
|
||||
// cleanup
|
||||
_rmRegex(path.join(__dirname, "static/js/"), /^pagefind_search\.js$/);//pagefind intermediate file that is now in bundle.
|
||||
|
||||
console.log('Zola Build to generate new integrity hashes for the previously minified files:');
|
||||
await execWrapper('zola build');
|
||||
await execWrapper('zola build' + args);
|
||||
}
|
||||
|
||||
function bundle(bpath,js_prestyle,js_switcher,js_email_encode,js_copycode,search_library,index_format,uglyurls,pwa) {
|
||||
async function _headersWASM() {
|
||||
// running WASM in the browser requires wasm-unsafe-eval if using Content-Security-Policy:
|
||||
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/script-src#unsafe_webassembly_execution
|
||||
// This function adds wasm-unsafe-eval to the pagefind and tinysearch demos without adding it to the elasticlunr demo.
|
||||
const { replaceInFileSync } = await import('replace-in-file');
|
||||
if (search_library === 'pagefind') {
|
||||
replaceInFileSync({ files: 'static/_headers', from: /script-src 'self'/g, to: "script-src 'wasm-unsafe-eval' 'self'" });
|
||||
} else if (search_library === 'tinysearch') {
|
||||
replaceInFileSync({ files: 'static/_headers', from: /script-src 'self'/g, to: "script-src 'wasm-unsafe-eval' 'self'" });
|
||||
} else {
|
||||
replaceInFileSync({ files: 'static/_headers', from: /script-src 'wasm-unsafe-eval' 'self'/g, to: "script-src 'self'" });
|
||||
}
|
||||
}
|
||||
|
||||
function _rmRecursive(targetFiles) {
|
||||
try {
|
||||
fs.rmSync(targetFiles, { recursive: true });
|
||||
} catch (error) {
|
||||
if (error.code !== 'ENOENT') {// Ignore if does not exist, that is the desired result.
|
||||
console.error("An error occurred:", error);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function _cpRecursive(source, dest) {
|
||||
try {
|
||||
fs.cpSync(source, dest, { recursive: true });
|
||||
} catch (error) {
|
||||
console.error("An error occurred:", error);
|
||||
}
|
||||
}
|
||||
|
||||
function _rmRegex(path, regex) {
|
||||
try {
|
||||
fs.readdirSync(path).filter(f => regex.test(f)).forEach(f => fs.unlinkSync(path + f));
|
||||
} catch (error) {
|
||||
if (error.code !== 'ENOENT') {// Ignore if does not exist, that is the desired result.
|
||||
console.error("An error occurred:", error);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function _cpRegex(source, dest, regex) {
|
||||
try {
|
||||
fs.readdirSync(source).filter(f => regex.test(f)).forEach(f => fs.copyFileSync(source + f, dest + f));
|
||||
} catch (error) {
|
||||
console.error("An error occurred:", error);
|
||||
}
|
||||
}
|
||||
|
||||
function bundle(bpath, js_prestyle, js_switcher, js_email_encode, js_copycode, search_library, index_format, uglyurls, pwa) {
|
||||
minify_files = [];
|
||||
|
||||
if (js_prestyle) {
|
||||
minify_files.push(bpath+'static/js/prestyle.js');
|
||||
minify_files.push(path.join(bpath, 'static/js/prestyle.js'));
|
||||
}
|
||||
if (js_switcher) {
|
||||
minify_files.push(bpath+'static/js/theme_button.js');
|
||||
minify_files.push(path.join(bpath, 'static/js/theme_button.js'));
|
||||
}
|
||||
if (js_email_encode) {
|
||||
minify_files.push(bpath+'static/js/email.js');
|
||||
minify_files.push(path.join(bpath, 'static/js/email.js'));
|
||||
}
|
||||
if (js_copycode) {
|
||||
minify_files.push(bpath+'static/js/codecopy.js');
|
||||
minify_files.push(path.join(bpath, 'static/js/codecopy.js'));
|
||||
}
|
||||
if (search_library) {
|
||||
if ((search_library === 'elasticlunr' && offline === true) || (search_library === 'elasticlunr' && index_format === 'elasticlunr_javascript' && uglyurls === true)) {
|
||||
minify_files.push('public/search_index.en.js');
|
||||
minify_files.push(bpath+'static/js/elasticlunr.min.js');
|
||||
minify_files.push(bpath+'static/js/searchjavaugly.js');
|
||||
} else if (search_library === 'elasticlunr' && index_format === 'elasticlunr_javascript') {
|
||||
minify_files.push('public/search_index.en.js');
|
||||
minify_files.push(bpath+'static/js/elasticlunr.min.js');
|
||||
minify_files.push(bpath+'static/js/searchjava.js');
|
||||
} else if (search_library === 'elasticlunr') {//abridge default
|
||||
minify_files.push(bpath+'static/js/elasticlunr.min.js');
|
||||
minify_files.push(bpath+'static/js/search.js');
|
||||
} else if (search_library === 'stork') {
|
||||
minify_files.push(bpath+'static/js/stork.js');
|
||||
minify_files.push(bpath+'static/js/stork_config.js');
|
||||
} else if (search_library === 'tinysearch') {
|
||||
minify_files.push(bpath+'static/js/tinysearch.js');
|
||||
}
|
||||
if ((search_library === 'offline' || (search_library === 'elasticlunrjava' && uglyurls === true))) {
|
||||
minify_files.push('public/search_index.en.js');
|
||||
minify_files.push(path.join(bpath, 'static/js/elasticlunr.min.js'));
|
||||
minify_files.push(path.join(bpath, 'static/js/searchjavaugly.js'));
|
||||
} else if (search_library === 'elasticlunrjava') {
|
||||
minify_files.push('public/search_index.en.js');
|
||||
minify_files.push(path.join(bpath, 'static/js/elasticlunr.min.js'));
|
||||
minify_files.push(path.join(bpath, 'static/js/searchjava.js'));
|
||||
} else if (search_library === 'elasticlunr') {//abridge default
|
||||
minify_files.push(path.join(bpath, 'static/js/elasticlunr.min.js'));
|
||||
minify_files.push(path.join(bpath, 'static/js/search.js'));
|
||||
} else if (search_library === 'pagefind') {
|
||||
minify_files.push(path.join(__dirname, 'static/js/pagefind_search.js'));
|
||||
} else if (search_library === 'tinysearch') {
|
||||
minify_files.push(path.join(bpath, 'static/js/tinysearch.js'));
|
||||
}
|
||||
}
|
||||
if (pwa) {
|
||||
minify_files.push('static/js/sw_load.js');
|
||||
|
|
@ -257,7 +324,7 @@ function bundle(bpath,js_prestyle,js_switcher,js_email_encode,js_copycode,search
|
|||
return minify_files;
|
||||
}
|
||||
|
||||
function minify(fileA,outfile) {
|
||||
function minify(fileA, outfile) {
|
||||
const options = {
|
||||
mangle: true,
|
||||
compress: {
|
||||
|
|
@ -277,14 +344,211 @@ function minify(fileA,outfile) {
|
|||
}
|
||||
}
|
||||
if (!outfile) {// outfile parameter omitted, infer based on input
|
||||
outfile = fileA[0].slice(0,-2)+'min.js';
|
||||
outfile = fileA[0].slice(0, -2) + 'min.js';
|
||||
}
|
||||
var filesContents = fileA.map(function (file) {// array input to support multiple files
|
||||
return fs.readFileSync(file, 'utf8');
|
||||
return fs.readFileSync(file, 'utf8');
|
||||
});
|
||||
|
||||
result = UglifyJS.minify(filesContents, options);
|
||||
fs.writeFileSync(outfile, result.code);
|
||||
|
||||
}
|
||||
|
||||
abridge();
|
||||
async function searchChange(searchOption) {
|
||||
const { replaceInFileSync } = await import('replace-in-file');
|
||||
replaceInFileSync({ files: 'config.toml', from: /search_library.*=.*/g, to: 'search_library = \"' + searchOption + '\"' });
|
||||
}
|
||||
|
||||
if (args === ' offline') {
|
||||
searchChange('offline');
|
||||
} else if (args === ' elasticlunrjava') {
|
||||
searchChange('elasticlunrjava');
|
||||
} else if (args === ' elasticlunr') {
|
||||
searchChange('elasticlunr');
|
||||
} else if (args === ' pagefind') {
|
||||
searchChange('pagefind');
|
||||
} else if (args === ' tinysearch') {
|
||||
searchChange('tinysearch');
|
||||
} else {
|
||||
abridge();
|
||||
}
|
||||
|
||||
async function createPagefindIndex() {
|
||||
console.log("Creating Pagefind index...");
|
||||
const pagefind = await import("pagefind");// Dynamically import the pagefind module
|
||||
const publicFolder = path.join(__dirname, "public");
|
||||
const files = fs.readdirSync(publicFolder);
|
||||
let langArray = [];
|
||||
|
||||
files.forEach((file) => {
|
||||
if (file.startsWith("search_index")) {
|
||||
langArray.push(file.split(".")[1]);
|
||||
}
|
||||
});
|
||||
|
||||
const { index } = await pagefind.createIndex();
|
||||
// Assuming index, fs, and path are already defined and properly imported
|
||||
|
||||
// Convert each lang in langArray to a promise that performs the desired operations
|
||||
const promises = langArray.map((lang) =>
|
||||
(async () => {
|
||||
const filePath = path.join(__dirname, "public/search_index." + lang + ".json");
|
||||
|
||||
// Read the file content synchronously (consider using async readFile for better performance)
|
||||
const fileContent = fs.readFileSync(filePath);
|
||||
const data = JSON.parse(fileContent);
|
||||
|
||||
// Add each record to the index asynchronously
|
||||
for (const record of data) {
|
||||
await index.addCustomRecord({
|
||||
url: record.url,
|
||||
content: record.body,
|
||||
language: lang,
|
||||
meta: {
|
||||
title: record.title,
|
||||
description: record.meta,
|
||||
},
|
||||
});
|
||||
}
|
||||
})()
|
||||
);
|
||||
|
||||
// Execute all promises concurrently
|
||||
await Promise.all(promises)
|
||||
.then(async () => {
|
||||
// Write the index files to disk
|
||||
const { errors } = await index.writeFiles({
|
||||
outputPath: path.join(__dirname, "./static/js/"),
|
||||
});
|
||||
if (errors.length > 0) {
|
||||
console.log("Errors: ", errors);
|
||||
}
|
||||
})
|
||||
.then(async () => {
|
||||
// Edit the pagefind to convert from MJS to CJS
|
||||
const pagefindPath = path.join(__dirname, "static/js/pagefind.js");//source pagefind from node module
|
||||
let pagefindContent = fs.readFileSync(pagefindPath, "utf8");
|
||||
// Remove 'import.meta.url' from the pagefind file and exports
|
||||
pagefindContent = pagefindContent
|
||||
.replace(
|
||||
/initPrimary\(\)\{([^{}]*\{[^{}]*\})*[^{}]*\}/g,
|
||||
`initPrimary(){}`
|
||||
) // Remove annoying function
|
||||
.replace(/;export\{[^}]*\}/g, "");
|
||||
fs.writeFileSync(pagefindPath, pagefindContent);
|
||||
|
||||
// now insert the CJS into the anonymous function within pagefind.search.js
|
||||
const pagefind_searchPath = path.join(bpath, "static/js/pagefind.search.js");//file to insert into
|
||||
const search_pagefindPath = path.join(__dirname, "static/js/pagefind_search.js");//output
|
||||
let pagefind_searchContent = fs.readFileSync(pagefind_searchPath, "utf8");
|
||||
// Now insert into pagefind.search.js at this location: //insertHere
|
||||
pagefind_searchContent = pagefind_searchContent.replace(/\/\/insertHere/g, pagefindContent);
|
||||
fs.writeFileSync(search_pagefindPath, pagefind_searchContent);
|
||||
|
||||
})
|
||||
.then(async () => {
|
||||
await pagefind.close();
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error("An error occurred:", error);
|
||||
});
|
||||
}
|
||||
|
||||
async function sync() {
|
||||
// Check if the submodule is present, if not skip entire function
|
||||
if (!fs.existsSync(path.join(__dirname, "themes/abridge"))) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Checks for changes from local version in static, package.json and config.toml
|
||||
// and if there are changes it sync from the submodule
|
||||
|
||||
// Check for changes in static
|
||||
const staticFolder = path.join(__dirname, "static/js");
|
||||
const submoduleFolder = path.join(__dirname, "themes/abridge/static/js");
|
||||
|
||||
fs.mkdirSync(staticFolder, { recursive: true });
|
||||
|
||||
const files = fs.readdirSync(staticFolder);
|
||||
|
||||
files.forEach((file) => {
|
||||
if (file.endsWith(".js") && !file.endsWith(".min.js")) {
|
||||
try {
|
||||
const localFile = path.join(staticFolder, file);
|
||||
const submoduleFile = path.join(submoduleFolder, file);
|
||||
const localFileContent = fs.readFileSync(localFile, "utf-8");
|
||||
const submoduleFileContent = fs.readFileSync(submoduleFile, "utf-8");
|
||||
|
||||
if (localFileContent !== submoduleFileContent) {
|
||||
console.log(`Updating ${file} from submodule`);
|
||||
fs.copyFileSync(submoduleFile, localFile);
|
||||
}
|
||||
} catch (error) {
|
||||
console.log(`Skipping ${file} due to error: ${error}`);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// Check for changes in package.json
|
||||
const packageJson = path.join(__dirname, "package.json");
|
||||
const submodulePackageJson = path.join(__dirname, "themes/abridge/package.json");
|
||||
|
||||
const packageJsonContent = fs.readFileSync(packageJson, "utf-8");
|
||||
const submodulePackageJsonContent = fs.readFileSync(submodulePackageJson, "utf-8");
|
||||
|
||||
// Check for changes in dependencies - prompting an npm update
|
||||
let checkPackageVersion = function (content) {
|
||||
let matches = content.match(/"dependencies": \{([^}]+)\}/)[1]; // Look in the dependencies section
|
||||
return [...matches.matchAll(/"(\w+-\w+|\w+)": "[^0-9]*([0-9])/g)].map(match => ({ // Extract all packages and their major version number (aka for breaking changes which need an update)
|
||||
name: match[1],
|
||||
majorVersion: match[2]
|
||||
})).sort((a, b) => a.name.localeCompare(b.name));
|
||||
};
|
||||
|
||||
if (packageJsonContent !== submodulePackageJsonContent) {
|
||||
console.log("Updating package.json from submodule");
|
||||
fs.copyFileSync(submodulePackageJson, packageJson);
|
||||
}
|
||||
|
||||
const packageVersionLocal = checkPackageVersion(packageJsonContent);
|
||||
const packageVersionSubmodule = checkPackageVersion(submodulePackageJsonContent);
|
||||
if (JSON.stringify(packageVersionLocal) !== JSON.stringify(packageVersionSubmodule)) {
|
||||
console.log(
|
||||
"\x1b[31m%s\x1b[0m",
|
||||
"warning:",
|
||||
"The packages are out of date, please run `npm install` to update them."
|
||||
);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
const configToml = path.join(__dirname, "config.toml");
|
||||
const submoduleConfigToml = path.join(__dirname, "themes/abridge/config.toml");
|
||||
|
||||
let adjustTomlContent = function (content) {
|
||||
content = content.replace(/^\s+|\s+$|\s+(?=\s)/g, ""); // Remove all leading and trailing whitespaces and multiple whitespaces
|
||||
content = content.replace(/(^#)(?=\s*\w+\s*=\s*)|[[:blank:]]*#.*$/gm, ""); // A regex to selectively remove all comments, and to uncomment all commented config lines
|
||||
content = content.replace(/(\[([^]]*)\])|(\{([^}]*)\})/gs, ""); // A regex to remove all tables and arrays
|
||||
content = content.replace(
|
||||
/(^#.*$|(["']).*?\2|(?<=\s)#.*$|\btrue\b|\bfalse\b)/gm,
|
||||
""
|
||||
); // A regex to remove all user added content, (so you can tell if the .toml format has changed)
|
||||
return content.trim(); // Finally remove any leading or trailing white spaces
|
||||
};
|
||||
|
||||
const configTomlContent = adjustTomlContent(
|
||||
fs.readFileSync(configToml, "utf-8")
|
||||
);
|
||||
const submoduleConfigTomlContent = adjustTomlContent(
|
||||
fs.readFileSync(submoduleConfigToml, "utf-8")
|
||||
);
|
||||
|
||||
if (configTomlContent !== submoduleConfigTomlContent) {
|
||||
// This should say info: then the message in blue (which works in every terminal)
|
||||
console.log(
|
||||
"\x1b[34m%s\x1b[0m",
|
||||
"info:",
|
||||
"The config.toml file format may have changed, please update it manually."
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue