minify-html/nodejs/postinstall.js

83 lines
2.2 KiB
JavaScript
Raw Normal View History

2021-04-05 23:43:55 -04:00
const fs = require("fs");
const https = require("https");
const path = require("path");
const pkg = require("./package.json");
2022-06-21 09:03:35 -04:00
const cp = require("child_process");
const MAX_DOWNLOAD_ATTEMPTS = 4;
2021-04-05 23:43:55 -04:00
const binaryName = [process.platform, process.arch].join("__");
const binaryPath = path.join(__dirname, "index.node");
2021-04-05 23:43:55 -04:00
const wait = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
class StatusError extends Error {
2021-04-05 23:43:55 -04:00
constructor(status) {
super(`Bad status of ${status}`);
this.status = status;
}
}
2021-04-05 23:43:55 -04:00
const fetch = (url) =>
new Promise((resolve, reject) => {
const stream = https.get(url, (resp) => {
if (!resp.statusCode || resp.statusCode < 200 || resp.statusCode > 299) {
reject(new StatusError(resp.statusCode));
// Destroy stream to allow Node.js to exit.
// Destroy after `reject` in case "error" handler is unintentionally triggered.
resp.destroy();
return;
2021-04-05 23:43:55 -04:00
}
const parts = [];
resp.on("data", (chunk) => parts.push(chunk));
resp.on("end", () => resolve(Buffer.concat(parts)));
});
stream.on("error", reject);
});
const downloadNativeBinary = async () => {
for (let attempt = 0; ; attempt++) {
let binary;
try {
2021-04-05 23:43:55 -04:00
binary = await fetch(
2022-06-21 09:03:35 -04:00
`https://wilsonl.in/minify-html/bin/nodejs/${pkg.version}/${binaryName}.node`
2021-04-05 23:43:55 -04:00
);
} catch (e) {
2022-06-21 22:24:52 -04:00
if (
e instanceof StatusError &&
e.status !== 404 &&
attempt < MAX_DOWNLOAD_ATTEMPTS
) {
await wait(Math.random() * 2500 + 500);
continue;
}
throw e;
}
2022-06-21 12:31:10 -04:00
fs.writeFileSync(binaryPath, binary);
break;
}
};
2021-04-05 23:43:55 -04:00
if (
!fs.existsSync(path.join(__dirname, ".no-postinstall")) &&
!fs.existsSync(binaryPath)
) {
downloadNativeBinary().then(
() => console.log(`Downloaded ${pkg.name}`),
(err) => {
2022-06-21 22:24:52 -04:00
console.error(
`Failed to download ${pkg.name}, will build from source: ${err}`
);
2022-06-21 09:03:35 -04:00
const out = cp.spawnSync("npm", ["run", "build-release"], {
cwd: __dirname,
stdio: ["ignore", "inherit", "inherit"],
});
process.exitCode = out.exitCode;
if (out.error) {
throw out.error;
}
2021-04-05 23:43:55 -04:00
}
);
}