#!/usr/bin/env bun import { mkdirSync, readFileSync, writeFileSync } from "node:fs"; import { resolve } from "node:path"; function option(name) { const index = process.argv.indexOf(name); if (index === -1) return null; const value = process.argv[index + 1]; if (value === undefined || value.length === 0 || value.startsWith("--")) throw new Error(`${name} requires a value`); return value; } function record(value, path) { if (typeof value !== "object" || value === null || Array.isArray(value)) throw new Error(`${path} must be an object`); return value; } function required(value, path) { if (typeof value !== "string" || value.length === 0 || value.includes("\n")) throw new Error(`${path} must be a non-empty single-line string`); return value; } function valueAt(root, reference) { return reference.split(".").reduce((value, key) => record(value, reference)[key], root); } function writeValue(outputDir, name, value) { writeFileSync(resolve(outputDir, name), `${value}\n`, { encoding: "utf8", mode: 0o644 }); } function main() { const configPath = option("--config") ?? "config/unidesk-host-k8s.yaml"; const outputDir = resolve(required(option("--output-dir"), "--output-dir")); const config = record(Bun.YAML.parse(readFileSync(configPath, "utf8")), configPath); const delivery = record(config.delivery, "delivery"); const serviceRef = required(delivery.serviceRef, "delivery.serviceRef"); const service = record(valueAt(config, serviceRef), serviceRef); const build = record(delivery.build, "delivery.build"); const proxy = record(build.proxy, "delivery.build.proxy"); const image = record(delivery.image, "delivery.image"); const enabled = delivery.enabled === true; if (delivery.enabled !== true && delivery.enabled !== false) throw new Error("delivery.enabled must be boolean"); const noProxy = proxy.noProxy; if (!Array.isArray(noProxy) || noProxy.some((value) => typeof value !== "string" || value.length === 0)) throw new Error("delivery.build.proxy.noProxy must be a non-empty string array"); mkdirSync(outputDir, { recursive: true }); writeValue(outputDir, "enabled", enabled ? "true" : "false"); writeValue(outputDir, "dockerfile", required(record(service.repository, `${serviceRef}.repository`).dockerfile, `${serviceRef}.repository.dockerfile`)); writeValue(outputDir, "image-repository", required(image.repository, "delivery.image.repository")); writeValue(outputDir, "network-mode", required(build.networkMode, "delivery.build.networkMode")); writeValue(outputDir, "http-proxy", required(proxy.http, "delivery.build.proxy.http")); writeValue(outputDir, "https-proxy", required(proxy.https, "delivery.build.proxy.https")); writeValue(outputDir, "all-proxy", required(proxy.all, "delivery.build.proxy.all")); writeValue(outputDir, "no-proxy", noProxy.join(",")); process.stdout.write(`${JSON.stringify({ ok: true, action: "unidesk-host-release-prepare", enabled, serviceRef, valuesPrinted: false })}\n`); } if (!process.execArgv.includes("--check")) main();