mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
6faf41b8ab
PocketBase backend for showcase-ops: Dockerfile + entrypoint for the Railway-hosted instance, JSVM main.pb.js hook for CORS + request shaping, migration sequence creating status / status_history / alert_state collections, CORS config, and the recreate_collections v1/v2 + drop_history_fail_count schema drift corrections.
90 lines
3.3 KiB
JavaScript
90 lines
3.3 KiB
JavaScript
/// <reference path="../pb_data/types.d.ts" />
|
|
//
|
|
// CORS wiring for PocketBase 0.22.
|
|
//
|
|
// Context: the browser dashboard at
|
|
// https://dashboard.showcase.copilotkit.ai talks directly to PocketBase
|
|
// (see showcase/shell-dashboard/src/lib/pb.ts) for live status + status
|
|
// history. That cross-origin fetch requires the server to emit
|
|
// Access-Control-Allow-Origin for our allowlisted origins.
|
|
//
|
|
// PB 0.22 does NOT expose CORS through `settings.meta.cors`; that field
|
|
// simply does not exist on 0.22 settings. The earlier
|
|
// `1745194000_cors.js` migration wrote to it anyway — a silent no-op.
|
|
// The correct integration point is a pb_hooks middleware that:
|
|
// 1. Handles OPTIONS preflight by returning 204 with the CORS headers.
|
|
// 2. Echoes Access-Control-Allow-Origin on the actual response when the
|
|
// request Origin is in our allowlist.
|
|
//
|
|
// Hooks files are loaded automatically by `pocketbase serve` from
|
|
// `--hooksDir` (default `<dataDir>/../pb_hooks` — see Dockerfile layout).
|
|
// Nothing else is required to activate them.
|
|
//
|
|
// PB_CORS_ORIGINS (comma-separated) augments the baked-in prod origin
|
|
// additively. An operator can add staging / preview origins without a
|
|
// code change; removing the prod default still requires editing this
|
|
// file (env var cannot retire it).
|
|
|
|
// Built-in prod origin baked in so a fresh Railway volume is immediately
|
|
// reachable from the production dashboard without requiring operator
|
|
// env-var configuration. If prod ever moves off
|
|
// dashboard.showcase.copilotkit.ai, change this default — env var alone
|
|
// won't retire the stale origin.
|
|
const CORS_DEFAULT_ORIGINS = ["https://dashboard.showcase.copilotkit.ai"];
|
|
|
|
function corsAllowedOrigins() {
|
|
const extra = ($os.getenv("PB_CORS_ORIGINS") || "")
|
|
.split(",")
|
|
.map(function (s) {
|
|
return s.trim();
|
|
})
|
|
.filter(function (s) {
|
|
return s.length > 0;
|
|
});
|
|
return CORS_DEFAULT_ORIGINS.concat(extra);
|
|
}
|
|
|
|
function originAllowed(origin, allowlist) {
|
|
if (!origin) return false;
|
|
for (let i = 0; i < allowlist.length; i++) {
|
|
if (allowlist[i] === origin) return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
// Middleware registered at Pre so CORS runs before auth short-circuits
|
|
// OPTIONS preflights. PB 0.22 exposes `e.router.use(...)` on the echo
|
|
// router inside `onBeforeServe`; the callback receives the echo context
|
|
// as its argument.
|
|
onBeforeServe((e) => {
|
|
e.router.use((next) => {
|
|
return (c) => {
|
|
const origin = c.request().header.get("Origin");
|
|
const allowlist = corsAllowedOrigins();
|
|
if (originAllowed(origin, allowlist)) {
|
|
c.response().header().set("Access-Control-Allow-Origin", origin);
|
|
c.response().header().set("Vary", "Origin");
|
|
c.response()
|
|
.header()
|
|
.set(
|
|
"Access-Control-Allow-Methods",
|
|
"GET, POST, PATCH, DELETE, OPTIONS",
|
|
);
|
|
c.response()
|
|
.header()
|
|
.set(
|
|
"Access-Control-Allow-Headers",
|
|
"Content-Type, Authorization, X-Requested-With",
|
|
);
|
|
c.response().header().set("Access-Control-Max-Age", "600");
|
|
}
|
|
// Short-circuit preflight so downstream handlers (auth, routing)
|
|
// don't reject OPTIONS with 401/404.
|
|
if (c.request().method === "OPTIONS") {
|
|
return c.noContent(204);
|
|
}
|
|
return next(c);
|
|
};
|
|
});
|
|
});
|