#!/usr/bin/env node /** * Downloads Ketcher standalone from GitHub releases. * * Version is pinned in package.json under "ketcher.version". * Optional SHA-256 hash in "ketcher.sha256" for integrity verification. * Runs automatically via npm postinstall hook. * * Usage: * node scripts/fetch-ketcher.js # downloads if not present * node scripts/fetch-ketcher.js --force # re-downloads regardless */ const crypto = require("crypto"); const https = require("https"); const fs = require("fs"); const path = require("path"); const { execFileSync } = require("child_process"); const ROOT = path.resolve(__dirname, ".."); const STANDALONE_DIR = path.join(ROOT, "public", "standalone"); const VERSION_FILE = path.join(STANDALONE_DIR, ".ketcher-version"); const FORCE = process.argv.includes("--force"); const MAX_REDIRECTS = 5; // Only follow redirects to these domains (GitHub CDN) const ALLOWED_REDIRECT_DOMAINS = [ "github.com", "githubusercontent.com", ]; function getVersion() { const pkgPath = path.join(ROOT, "package.json"); const pkg = JSON.parse(fs.readFileSync(pkgPath, "utf8")); const version = pkg.ketcher && pkg.ketcher.version; if (!version) { console.error( 'Error: "ketcher.version" not found in package.json.\n' + 'Add: "ketcher": { "version": "3.12.0" }', ); process.exit(1); } // Validate semver format to prevent URL manipulation if (!/^\d+\.\d+\.\d+(-[\w.]+)?$/.test(version)) { console.error( 'Error: Invalid version format "' + version + '". Expected semver (e.g., "3.12.0").', ); process.exit(1); } return { version: version, sha256: (pkg.ketcher && pkg.ketcher.sha256) || null }; } function isAlreadyPresent(version) { if (FORCE) return false; if (!fs.existsSync(VERSION_FILE)) return false; const current = fs.readFileSync(VERSION_FILE, "utf8").trim(); return current === version; } function isAllowedRedirect(url) { if (!url.startsWith("https://")) return false; try { const hostname = new URL(url).hostname; return ALLOWED_REDIRECT_DOMAINS.some(function (domain) { return hostname === domain || hostname.endsWith("." + domain); }); } catch { return false; } } function download(url, redirectCount = 0) { if (redirectCount > MAX_REDIRECTS) { return Promise.reject(new Error("Too many redirects")); } return new Promise(function (resolve, reject) { https .get( url, { headers: { "User-Agent": "cheminformatics-microservice" } }, function (res) { if ( res.statusCode >= 300 && res.statusCode < 400 && res.headers.location ) { const redirectUrl = res.headers.location; if (!isAllowedRedirect(redirectUrl)) { reject( new Error( "Refusing redirect to untrusted URL: " + redirectUrl, ), ); return; } download(redirectUrl, redirectCount + 1) .then(resolve) .catch(reject); return; } if (res.statusCode !== 200) { if (res.statusCode === 404) { reject( new Error( "Ketcher release not found at " + url + "\nCheck that the version in package.json matches a GitHub release.", ), ); } else { reject(new Error("HTTP " + res.statusCode + " for " + url)); } return; } const contentLength = parseInt(res.headers["content-length"], 10); let downloaded = 0; const chunks = []; let lastPercent = -1; res.on("data", function (chunk) { chunks.push(chunk); downloaded += chunk.length; if (contentLength) { const percent = Math.floor((downloaded / contentLength) * 100); if (percent !== lastPercent && percent % 10 === 0) { process.stdout.write(" " + percent + "%\r"); lastPercent = percent; } } }); res.on("end", function () { if (contentLength) process.stdout.write(" 100%\n"); resolve(Buffer.concat(chunks)); }); res.on("error", reject); }, ) .on("error", reject); }); } function verifyIntegrity(buffer, expectedHash) { if (!expectedHash) return; const actualHash = crypto.createHash("sha256").update(buffer).digest("hex"); if (actualHash !== expectedHash) { throw new Error( "Integrity check failed.\n" + " Expected SHA-256: " + expectedHash + "\n" + " Actual SHA-256: " + actualHash + "\n" + "Update ketcher.sha256 in package.json if this is a new version.", ); } console.log("Integrity check passed (SHA-256)."); } function verifyExtraction() { const required = [ path.join(STANDALONE_DIR, "index.html"), path.join(STANDALONE_DIR, "static"), ]; for (const entry of required) { if (!fs.existsSync(entry)) { throw new Error("Verification failed: " + entry + " not found"); } } // Verify no path traversal: all extracted files must be within STANDALONE_DIR const realDir = fs.realpathSync(STANDALONE_DIR); const walk = function (dir) { for (const entry of fs.readdirSync(dir, { withFileTypes: true })) { const fullPath = fs.realpathSync(path.join(dir, entry.name)); if (!fullPath.startsWith(realDir + path.sep) && fullPath !== realDir) { throw new Error("Path traversal detected: " + fullPath); } if (entry.isDirectory()) walk(fullPath); } }; walk(realDir); } async function main() { const config = getVersion(); const version = config.version; const sha256 = config.sha256; if (isAlreadyPresent(version)) { console.log( "Ketcher v" + version + " already present, skipping download.", ); return; } const url = "https://github.com/epam/ketcher/releases/download/v" + version + "/ketcher-standalone-" + version + ".zip"; console.log("Downloading Ketcher v" + version + "..."); console.log(" URL: " + url); const zipBuffer = await download(url); console.log( "Downloaded " + (zipBuffer.length / 1024 / 1024).toFixed(1) + " MB", ); // Verify integrity if SHA-256 is configured verifyIntegrity(zipBuffer, sha256); // Clean existing standalone directory if (fs.existsSync(STANDALONE_DIR)) { fs.rmSync(STANDALONE_DIR, { recursive: true, force: true }); } fs.mkdirSync(STANDALONE_DIR, { recursive: true }); // Write zip to temp file with unique name const zipPath = path.join( ROOT, ".ketcher-download-" + crypto.randomBytes(8).toString("hex") + ".zip", ); fs.writeFileSync(zipPath, zipBuffer); // Extract using unzip (available on macOS, Linux, CI runners) try { execFileSync("unzip", ["-qo", zipPath, "-d", STANDALONE_DIR], { stdio: "pipe", }); } catch (err) { // Clean up zip on failure if (fs.existsSync(zipPath)) fs.unlinkSync(zipPath); throw new Error( "Extraction failed. Is 'unzip' installed?\n" + " macOS: available by default\n" + " Ubuntu/Debian: apt-get install unzip\n" + " Alpine: apk add unzip\n" + " Original error: " + (err.stderr ? err.stderr.toString() : err.message), ); } // Clean up zip fs.unlinkSync(zipPath); // The zip may extract into a subdirectory — flatten if needed const entries = fs.readdirSync(STANDALONE_DIR); if ( entries.length === 1 && fs.statSync(path.join(STANDALONE_DIR, entries[0])).isDirectory() ) { const subdir = path.join(STANDALONE_DIR, entries[0]); for (const item of fs.readdirSync(subdir)) { fs.renameSync( path.join(subdir, item), path.join(STANDALONE_DIR, item), ); } fs.rmdirSync(subdir); } verifyExtraction(); fs.writeFileSync(VERSION_FILE, version); // Print SHA-256 for first-time setup (when no hash is configured) if (!sha256) { const hash = crypto.createHash("sha256").update(zipBuffer).digest("hex"); console.log("Ketcher v" + version + " installed to public/standalone/"); console.log( " TIP: Add SHA-256 to package.json for integrity verification:", ); console.log(' "ketcher": { "version": "' + version + '", "sha256": "' + hash + '" }'); } else { console.log("Ketcher v" + version + " installed to public/standalone/"); } } main().catch(function (err) { console.error("Failed to fetch Ketcher: " + err.message); process.exit(1); });