mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-26 09:52:11 +03:00
Reorganizes the 29 active scripts under scripts/ into purpose-driven subfolders: - scripts/build/ (11) — Build, install, publish, runtime env - scripts/dev/ (13) — Dev servers, test runners, healthchecks - scripts/check/ (10) — Lint/validation/coverage checks - scripts/docs/ (2) — Docs index and provider reference generation - scripts/i18n/ (+3) — Adds Python translation utilities (check/validate/autotranslate) - scripts/ad-hoc/ (4) — One-shot maintenance utilities Updates all references in package.json, electron/package.json, .husky/pre-commit, .github/workflows/ci.yml, Dockerfile, src/, tests/, scripts/ internal cross-imports, playwright.config.ts, and English docs (CODEBASE_DOCUMENTATION, ENVIRONMENT, FEATURES, RELEASE_CHECKLIST, COVERAGE_PLAN, ELECTRON_GUIDE, I18N, GEMINI). Also patches scripts/build/pack-artifact-policy.ts so the npm pack allowlist mirrors the new layout. Validates with: - npm run lint (exit 0 — pre-existing minified-bundle errors only) - npm run typecheck:core (exit 0) - npm run check:docs-all (exit 0) - unit tests for moved scripts (57 tests pass) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
110 lines
3.7 KiB
JavaScript
110 lines
3.7 KiB
JavaScript
#!/usr/bin/env node
|
|
|
|
import fs from "node:fs";
|
|
import http from "node:http";
|
|
import path from "node:path";
|
|
import next from "next";
|
|
import { bootstrapEnv } from "../build/bootstrap-env.mjs";
|
|
import { resolveRuntimePorts, withRuntimePortEnv } from "../build/runtime-env.mjs";
|
|
import { createOmnirouteWsBridge } from "./v1-ws-bridge.mjs";
|
|
import { createResponsesWsProxy } from "./responses-ws-proxy.mjs";
|
|
import { randomUUID } from "node:crypto";
|
|
|
|
// Add check for conflicting app/ directory (Issue #1206)
|
|
const rootAppDir = path.join(process.cwd(), "app");
|
|
if (fs.existsSync(rootAppDir) && fs.statSync(rootAppDir).isDirectory()) {
|
|
console.error("\x1b[31m[FATAL ERROR]\x1b[0m Next.js App Router conflict detected!");
|
|
console.error(`A root-level 'app/' directory was found at: ${rootAppDir}`);
|
|
console.error("This conflicts with the 'src/app/' directory on Windows environments.");
|
|
console.error("Next.js will serve 404s for all pages because it prefers the root 'app/' folder.");
|
|
console.error("Please rename or delete the root 'app/' directory before starting OmniRoute.\n");
|
|
process.exit(1);
|
|
}
|
|
|
|
const mode = process.argv[2] === "start" ? "start" : "dev";
|
|
const dev = mode === "dev";
|
|
|
|
const bootstrappedEnv = bootstrapEnv();
|
|
const runtimePorts = resolveRuntimePorts(bootstrappedEnv);
|
|
const mergedEnv = withRuntimePortEnv(bootstrappedEnv, runtimePorts);
|
|
|
|
for (const [key, value] of Object.entries(mergedEnv)) {
|
|
if (value !== undefined) {
|
|
process.env[key] = value;
|
|
}
|
|
}
|
|
|
|
const { dashboardPort } = runtimePorts;
|
|
const hostname = process.env.HOST || "0.0.0.0";
|
|
const useTurbopack = dev && mergedEnv.OMNIROUTE_USE_TURBOPACK === "1";
|
|
process.env.OMNIROUTE_WS_BRIDGE_SECRET ||= randomUUID();
|
|
|
|
const nextApp = next({
|
|
dev,
|
|
dir: process.cwd(),
|
|
hostname,
|
|
port: dashboardPort,
|
|
turbopack: useTurbopack,
|
|
});
|
|
|
|
async function start() {
|
|
await nextApp.prepare();
|
|
|
|
const requestHandler = nextApp.getRequestHandler();
|
|
const upgradeHandler = nextApp.getUpgradeHandler();
|
|
const responsesWsProxy = createResponsesWsProxy({
|
|
baseUrl: `http://127.0.0.1:${dashboardPort}`,
|
|
bridgeSecret: process.env.OMNIROUTE_WS_BRIDGE_SECRET,
|
|
});
|
|
const wsBridge = createOmnirouteWsBridge({
|
|
baseUrl: `http://127.0.0.1:${dashboardPort}`,
|
|
});
|
|
|
|
const server = http.createServer((req, res) => requestHandler(req, res));
|
|
server.on("upgrade", async (req, socket, head) => {
|
|
try {
|
|
const responsesWsHandled = await responsesWsProxy.handleUpgrade(req, socket, head);
|
|
if (responsesWsHandled) return;
|
|
const handled = await wsBridge.handleUpgrade(req, socket, head);
|
|
if (handled) return;
|
|
await upgradeHandler(req, socket, head);
|
|
} catch (error) {
|
|
if (!socket.destroyed) {
|
|
socket.destroy(error instanceof Error ? error : undefined);
|
|
}
|
|
console.error("[WS] Upgrade handling failed:", error);
|
|
}
|
|
});
|
|
|
|
server.on("error", (error) => {
|
|
console.error("[FATAL] Next custom server failed:", error);
|
|
process.exit(1);
|
|
});
|
|
|
|
const shutdown = async (signal) => {
|
|
try {
|
|
await new Promise((resolve) => server.close(resolve));
|
|
await nextApp.close();
|
|
} catch (error) {
|
|
console.error(`[SHUTDOWN] Failed during ${signal}:`, error);
|
|
} finally {
|
|
process.exit(0);
|
|
}
|
|
};
|
|
|
|
process.on("SIGINT", () => void shutdown("SIGINT"));
|
|
process.on("SIGTERM", () => void shutdown("SIGTERM"));
|
|
|
|
server.listen(dashboardPort, hostname, () => {
|
|
const bundler = dev ? (useTurbopack ? "turbopack" : "webpack") : "production";
|
|
console.log(
|
|
`[Next] ${mode} server listening on http://${hostname}:${dashboardPort} (${bundler})`
|
|
);
|
|
});
|
|
}
|
|
|
|
start().catch((error) => {
|
|
console.error("[FATAL] Failed to start Next custom server:", error);
|
|
process.exit(1);
|
|
});
|