Files
OmniRoute/scripts/docker/patch-standalone-base-path.mjs
Rouzbeh† e3bca29bbc fix(docker): real image tags (bifrost/cliproxyapi) + complete OMNIROUTE_BASE_PATH runtime patcher (#10482)
* fix(docker): real image tags + complete OMNIROUTE_BASE_PATH runtime patcher

Three docker issues fixed:

1. Images that do not exist:
   - bifrost: ghcr.io/maximhq/bifrost:1.5.21 never existed (1.5.x tops at
     v1.5.16, all tags carry the v prefix) -> ghcr.io/maximhq/bifrost:v1.6.11
   - cliproxyapi: ghcr.io/router-for-me/* is not publicly pullable (403);
     the official prebuilt image is docker.io/eceasy/cli-proxy-api, where
     the pinned v6.9.7 exists -> docker.io/eceasy/cli-proxy-api:v6.9.7
   - Verified still-current: redis:8.6.5-alpine (already on Redis 8 since
     #9065; ioredis 5.10 is RESP2/3-compatible, no modules used) and
     qdrant:v1.12.4 -- both exist, unchanged.

2. OMNIROUTE_BASE_PATH ignored on prebuilt images (root cause):
   Next 16 (webpack and Turbopack) app-router renders SSR asset URLs from
   assetPrefix ALONE; basePath only affects routing. The runtime patcher
   (ensure-docker-base-path) rewrote basePath literals only, so a prebuilt
   root-path image patched to /omniroute served the page but every
   /_next/static shell reference stayed unprefixed (404 behind a subpath
   proxy), the RSC flight-payload chunk refs came from client-reference
   manifests baked with unprefixed paths, and the Turbopack client process
   shim ships an empty env object so the client never learns the subpath.
   Extended patch-standalone-base-path.mjs to also rewrite:
   - assetPrefix literals (mirrors the subpath for SSR asset URLs)
   - the NEXT_PUBLIC_OMNIROUTE_BASE_PATH env mirror in the inline config
   - the client process.env shim (.env={}) with the two basePath keys
   - every baked "/_next/static URL (manifests, media imports, .html pages)
   next.config.mjs now mirrors basePath into assetPrefix so REBUILT images
   bake prefixed assets too. E2E-verified on the published main-web image:
   HTML under /omniroute now has 16/16 prefixed JS srcs and 82/82 prefixed
   flight refs (was 13/9 + ~150 unprefixed), prefixed assets return 200.

* chore(changelog): fragment for #10482 (docker images + basepath patcher)

* chore(changelog): bullet-form fragment for #10482

* Merge branch 'release/v3.8.50' into fix/docker-compose-images-and-basepath

* test(fix): refresh expired alibaba quota sample validity and onnxruntime pin for v3.8.50 base

- alibaba-free-tier-quota-fetcher.test.ts: sample quotaValidityPeriod
  (2026-08-16 16:00 UTC) is in the past, making every quota entry classify
  as expired/not_capable; bump to 2028-01-01 UTC so the text/merge
  classification tests exercise the intended path again.
- optional-transformers-dependency.test.ts: onnxruntime-node pin assertion
  updated from ~1.24.3 to ~1.27.0 to match package.json (bumped by #10403);
  the regular-not-optional intent is unchanged.

---------

Co-authored-by: Rouzbeh <rqzbeh@users.noreply.github.com>
2026-08-17 08:24:27 -03:00

227 lines
7.7 KiB
JavaScript

/**
* Rewrites Next.js standalone manifests and embedded basePath literals so a bundle
* built for the domain root can serve under OMNIROUTE_BASE_PATH at container start.
*/
import fs from "node:fs";
import path from "node:path";
import { normalizeBasePath } from "../build/normalizeBasePath.mjs";
const JSON_MANIFEST_NAMES = new Set([
"routes-manifest.json",
"prerender-manifest.json",
"required-server-files.json",
"images-manifest.json",
"app-path-routes-manifest.json",
]);
/**
* @param {string} appRoot
* @returns {string[]}
*/
export function discoverNextDistRoots(appRoot) {
const candidates = [".build/next", ".next", path.join(".build", "next")];
const found = [];
for (const rel of candidates) {
const abs = path.join(appRoot, rel);
if (fs.existsSync(path.join(abs, "routes-manifest.json"))) {
found.push(abs);
}
}
return found;
}
/**
* @param {unknown} node
* @param {string} basePath
*/
function patchJsonNode(node, basePath) {
if (!node || typeof node !== "object") return;
if (Array.isArray(node)) {
for (const entry of node) patchJsonNode(entry, basePath);
return;
}
for (const [key, value] of Object.entries(node)) {
if (key === "basePath" && typeof value === "string") {
node[key] = basePath;
continue;
}
patchJsonNode(value, basePath);
}
}
/**
* @param {string} filePath
* @param {string} basePath
*/
export function patchJsonManifestFile(filePath, basePath) {
const raw = fs.readFileSync(filePath, "utf8");
const parsed = JSON.parse(raw);
patchJsonNode(parsed, basePath);
const next = `${JSON.stringify(parsed, null, 2)}\n`;
if (next !== raw) {
fs.writeFileSync(filePath, next);
return true;
}
return false;
}
const BASE_PATH_LITERAL_RE =
/(?:basePath|assetPrefix)\s*:\s*(?:""|''|``)|(?:basePath|assetPrefix)\s*:\s*void 0|"(?:basePath|assetPrefix)"\s*:\s*""|"NEXT_PUBLIC_OMNIROUTE_BASE_PATH"\s*:\s*""|NEXT_PUBLIC_OMNIROUTE_BASE_PATH\s*:\s*""/g;
/**
* Rewrite the bare config literals Next bakes into the standalone output:
* - `basePath` (routing + server-rendered links) — the original scope;
* - `assetPrefix` (Next 16 app-router renders SSR asset URLs from
* `assetPrefix` ALONE — basePath only affects routing, so a subpath
* deploy must mirror it or every `/_next/static` shell reference 404s);
* - the `NEXT_PUBLIC_OMNIROUTE_BASE_PATH` env mirror in the inline
* nextConfig (server.js) so server-side env reads stay consistent.
*
* @param {string} content
* @param {string} basePath
*/
export function patchBasePathLiterals(content, basePath) {
const escaped = basePath.replace(/\\/g, "\\\\").replace(/"/g, '\\"');
return content.replace(BASE_PATH_LITERAL_RE, (match) => {
if (match.startsWith('"NEXT_PUBLIC_OMNIROUTE_BASE_PATH"')) {
return `"NEXT_PUBLIC_OMNIROUTE_BASE_PATH":"${escaped}"`;
}
if (match.startsWith("NEXT_PUBLIC_OMNIROUTE_BASE_PATH")) {
return `NEXT_PUBLIC_OMNIROUTE_BASE_PATH:"${escaped}"`;
}
if (match.startsWith('"')) {
// `"basePath":""` / `"assetPrefix":""` (JSON-ish inline config)
const key = match.slice(1, match.indexOf('"', 1));
return `"${key}":"${escaped}"`;
}
// `basePath:""` / `basePath:void 0` / `assetPrefix:""` (minified code)
const key = match.slice(0, match.indexOf(":")).trim();
return `${key}:"${escaped}"`;
});
}
/**
* Turbopack's client `process` shim ships an empty env object (`.env={}`).
* Next 16's client code reads NEXT_PUBLIC_* / OMNIROUTE_BASE_PATH from it at
* runtime, so without this the client never learns the subpath and the
* dashboard's fetch/EventSource rewriting (basePathFetch) silently stays on
* the root path. Populate the two keys the app reads.
*
* @param {string} content
* @param {string} basePath
*/
export function patchProcessEnvShim(content, basePath) {
const escaped = basePath.replace(/\\/g, "\\\\").replace(/"/g, '\\"');
return content.replace(/\.env=\{\}/g, () => {
const keys = `OMNIROUTE_BASE_PATH:"${escaped}",NEXT_PUBLIC_OMNIROUTE_BASE_PATH:"${escaped}"`;
return `.env={${keys}}`;
});
}
/**
* Rewrite baked absolute asset URLs (`"/_next/static/..."`) to the subpath.
* Covers the client-reference-manifest chunk lists (they are serialized into
* the RSC flight payload verbatim) and the client/server chunk media imports
* — every `/ _next/static` reference must be prefixed because the standalone
* server only serves assets under basePath.
*
* @param {string} content
* @param {string} basePath
*/
export function patchBakedAssetUrls(content, basePath) {
const escaped = basePath.replace(/\\/g, "\\\\").replace(/"/g, '\\"');
return content.replace(
/(["'`])\/_next\/static/g,
(_match, quote) => `${quote}${escaped}/_next/static`
);
}
/**
* @param {string} rootDir
* @param {string} basePath
*/
function walkAndPatchTextFiles(rootDir, basePath) {
let patchedFiles = 0;
const stack = [rootDir];
while (stack.length > 0) {
const current = stack.pop();
if (!current) continue;
for (const entry of fs.readdirSync(current, { withFileTypes: true })) {
const full = path.join(current, entry.name);
if (entry.isDirectory()) {
stack.push(full);
continue;
}
if (!/\.(?:js|json|cjs|mjs|html)$/.test(entry.name)) continue;
const before = fs.readFileSync(full, "utf8");
const after = [patchBasePathLiterals, patchProcessEnvShim, patchBakedAssetUrls].reduce(
(content, patch) => patch(content, basePath),
before
);
if (after !== before) {
fs.writeFileSync(full, after);
patchedFiles += 1;
}
}
}
return patchedFiles;
}
/**
* @param {object} opts
* @param {string} opts.appRoot standalone bundle root (cwd in Docker)
* @param {string} opts.fromBasePath normalized baked base path
* @param {string} opts.toBasePath normalized runtime base path
*/
export function patchStandaloneBasePath({ appRoot, fromBasePath, toBasePath }) {
const from = normalizeBasePath(fromBasePath);
const to = normalizeBasePath(toBasePath);
if (from === to) {
return { changed: false, patchedManifests: 0, patchedTextFiles: 0, distRoots: [] };
}
if (from) {
throw new Error(
`runtime OMNIROUTE_BASE_PATH (${to || "(root)"}) does not match the image build ` +
`(${from}). Rebuild with --build-arg OMNIROUTE_BASE_PATH=${to || '""'}.`
);
}
if (!to) {
throw new Error("patchStandaloneBasePath requires a non-empty target base path");
}
const distRoots = discoverNextDistRoots(appRoot);
if (distRoots.length === 0) {
throw new Error(
"could not locate routes-manifest.json under .build/next or .next in the standalone bundle"
);
}
let patchedManifests = 0;
let patchedTextFiles = 0;
for (const distRoot of distRoots) {
for (const name of JSON_MANIFEST_NAMES) {
const manifestPath = path.join(distRoot, name);
if (!fs.existsSync(manifestPath)) continue;
if (patchJsonManifestFile(manifestPath, to)) patchedManifests += 1;
}
const serverDir = path.join(distRoot, "server");
if (fs.existsSync(serverDir)) patchedTextFiles += walkAndPatchTextFiles(serverDir, to);
const staticDir = path.join(distRoot, "static");
if (fs.existsSync(staticDir)) patchedTextFiles += walkAndPatchTextFiles(staticDir, to);
}
for (const entry of ["server.js", "server-ws.mjs"]) {
const serverEntry = path.join(appRoot, entry);
if (!fs.existsSync(serverEntry)) continue;
const before = fs.readFileSync(serverEntry, "utf8");
const after = patchBasePathLiterals(before, to);
if (after !== before) {
fs.writeFileSync(serverEntry, after);
patchedTextFiles += 1;
}
}
return { changed: true, patchedManifests, patchedTextFiles, distRoots, toBasePath: to };
}