-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
259 lines (234 loc) · 9.7 KB
/
Copy pathserver.js
File metadata and controls
259 lines (234 loc) · 9.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
import express from "express";
import session from "express-session";
import cookieParser from "cookie-parser";
import cors from "cors";
import helmet from "helmet";
import rateLimit from "express-rate-limit";
import { createServer } from "http";
import { config } from "./lib/config.mjs";
import { configuredModelCatalog, providerCredentialKey, resolvePiModel } from "./lib/pi-model.mjs";
import { passport } from "./lib/auth.mjs";
import { ensureGitAskpass } from "./lib/git-creds.mjs";
import { ensurePiProviderConfig } from "./lib/pi-config.mjs";
import { seedPiComponents } from "./lib/pi-component-seed.mjs";
import { bootstrapSelfHostedProviderCredential } from "./lib/pi-provider-bootstrap.mjs";
import { SQLiteSessionStore } from "./lib/sqlite-session-store.mjs";
import { publicReadinessReport, readinessReport, versionReport } from "./lib/health.mjs";
import { attachTerminalWebSocket } from "./routes/terminal.js";
import { activeStreamingCount } from "./lib/agent-manager.mjs";
import { prepareInterruptedSessions, resumeInterruptedSessions } from "./lib/session-recovery.mjs";
import { beginDrain } from "./lib/shutdown-state.mjs";
import authRoutes from "./routes/auth.js";
import spacesRoutes from "./routes/spaces.js";
import sessionsRoutes from "./routes/sessions.js";
import secretsRoutes from "./routes/secrets.js";
import settingsRoutes from "./routes/settings.js";
import filesRoutes from "./routes/files.js";
import reposRoutes from "./routes/repos.js";
import adminRoutes from "./routes/admin.js";
import orgRoutes from "./routes/orgs.js";
import resolveRoutes from "./routes/resolve.js";
import gitRoutes from "./routes/git.js";
import apiTokenRoutes from "./routes/api-tokens.js";
import billingRoutes, { webhookRouter as billingWebhookRoutes } from "./routes/billing.js";
import appStoreRoutes from "./routes/app-store.js";
import contentRoutes from "./routes/content.js";
import hammersmithRoutes, { hammersmithCapabilityRouter } from "./routes/hammersmith.js";
const app = express();
app.set("trust proxy", 1);
const server = createServer(app);
// Write the portable git credential helper (provider-aware token routing).
ensureGitAskpass();
// Write pi's fornace LLM provider config from runtime env (LLM_API_KEY),
// never baked into the Docker image — see lib/pi-config.mjs.
ensurePiProviderConfig();
// Seed DATA_DIR/pi-agent with the reviewed Pi components so self-host RPC
// sessions load the same pinned packages the image bakes for microVMs.
try {
const result = seedPiComponents();
if (result.changed.length) {
console.log(`[pi-components] seeded ${result.changed.join(", ")}`);
}
} catch (error) {
console.error("[pi-components] seeding failed:", error.message);
}
// A self-host installer may supply PI_PROVIDER_API_KEY for the first boot.
// Persist it encrypted, then remove it before any agent process can inherit it.
const providerBootstrap = bootstrapSelfHostedProviderCredential();
if (providerBootstrap.status === "created") {
console.log(`[provider] encrypted ${providerBootstrap.keyName} for self-host agents`);
}
app.use(helmet({
contentSecurityPolicy: {
directives: {
defaultSrc: ["'self'"],
scriptSrc: ["'self'"],
// Inline styles: the boot-screen <style> block in index.html + React
// inline style attributes. Styles are not an XSS escalation vector.
styleSrc: ["'self'", "'unsafe-inline'"],
// Avatars come from GitHub/GitLab over https; allow data: URIs too.
imgSrc: ["'self'", "data:", "https:", "http:"],
fontSrc: ["'self'"],
// All API, SSE (EventSource) and WebSocket traffic is same-origin.
connectSrc: ["'self'"],
objectSrc: ["'none'"],
baseUri: ["'self'"],
formAction: ["'self'"],
frameAncestors: ["'none'"],
},
},
crossOriginEmbedderPolicy: false,
}));
// These routes deliberately avoid auth/session dependencies. Liveness proves
// only that the Node event loop can answer; readiness covers durable state and
// hosted execution prerequisites and returns 503 until they are usable.
app.get("/api/health/live", (req, res) => res.json({ live: true }));
app.get("/api/health/version", (req, res) => res.json(versionReport()));
app.get("/api/health/ready", (req, res) => {
const report = readinessReport();
res.status(report.ready ? 200 : 503).json(publicReadinessReport(report));
});
// Intentionally public and mounted before the authenticated /api limiter.
// It exposes only coarse install/readiness state and a validated monitor URL.
app.use(hammersmithCapabilityRouter);
const apiLimiter = rateLimit({
windowMs: 15 * 60 * 1000,
max: 500,
standardHeaders: true,
legacyHeaders: false,
});
const authLimiter = rateLimit({
windowMs: 15 * 60 * 1000,
max: 20,
message: { error: "Too many auth attempts, try again later" },
});
app.use("/auth/", authLimiter);
app.use("/api/", apiLimiter);
app.use(cors({ origin: config.appUrl, credentials: true }));
const sessionMiddleware = session({
store: new SQLiteSessionStore(),
secret: config.sessionSecret,
resave: false,
saveUninitialized: false,
cookie: {
httpOnly: true,
secure: config.isProd,
sameSite: config.isProd ? "lax" : "lax",
maxAge: 7 * 24 * 60 * 60 * 1000,
},
});
app.use(cors({ origin: config.appUrl, credentials: true }));
// Stripe webhook needs the raw, untouched request body for signature
// verification — must be mounted BEFORE express.json() and scoped to this
// exact path only (raw parsing must not swallow the body of every other
// route). No-ops with 404 when billing isn't configured (routes/billing.js).
app.use((req, res, next) => {
if (req.path === "/api/billing/webhook") return express.raw({ type: "application/json" })(req, res, next);
next();
}, billingWebhookRoutes);
app.use(express.json({ limit: "10mb" }));
app.use(cookieParser());
app.use(sessionMiddleware);
app.use(passport.initialize());
app.use(passport.session());
// Cookie-authenticated write requests must originate from this deployment.
// SameSite cookies reduce risk but do not replace an Origin check, especially
// for WebSocket-adjacent or multipart flows. Requests without Origin are kept
// available for native/CLI bearer-token clients; browsers attach Origin on
// cross-site unsafe requests. Stripe's signed webhook is mounted above this.
let appOrigin = null;
try { appOrigin = new URL(config.appUrl).origin; } catch {}
app.use((req, res, next) => {
if (!['POST', 'PUT', 'PATCH', 'DELETE'].includes(req.method)) return next();
const origin = req.headers.origin;
if (origin && appOrigin && origin !== appOrigin) {
return res.status(403).json({ error: 'Cross-site request blocked' });
}
next();
});
app.use(authRoutes);
app.use(spacesRoutes);
app.use(sessionsRoutes);
app.use(secretsRoutes);
app.use(settingsRoutes);
app.use(hammersmithRoutes);
app.use(filesRoutes);
app.use(reposRoutes);
app.use(adminRoutes);
app.use(orgRoutes);
app.use(resolveRoutes);
app.use(gitRoutes);
app.use(apiTokenRoutes);
app.use(billingRoutes);
app.use(appStoreRoutes);
// Public content hub (guides, comparisons, llms.txt) — server-rendered, no
// auth, must be mounted before the SPA catch-all so its paths win.
app.use(contentRoutes);
// Model listing endpoint
app.get("/api/models", (req, res) => {
const selected = resolvePiModel();
res.json({
models: configuredModelCatalog(),
configured: true,
provider: selected.provider,
defaultModel: selected.model,
credentialKey: providerCredentialKey(selected.provider),
});
});
if (config.isProd) {
const { existsSync } = await import("fs");
const distPath = "./frontend/dist";
if (existsSync(distPath)) {
app.use(express.static(distPath));
app.use((req, res, next) => {
if (req.path.startsWith("/api/") || req.path.startsWith("/auth/") || req.path.startsWith("/ws/")) {
return next();
}
res.sendFile("index.html", { root: distPath });
});
}
}
attachTerminalWebSocket(server, sessionMiddleware);
// Freeze stale in-flight rows BEFORE accepting new work. The delayed recovery
// scan below can then never mistake a fresh turn for one from the old process.
prepareInterruptedSessions();
app.use((err, req, res, next) => {
console.error("[error]", err.message, err.stack);
res.status(err.status || 500).json({ error: err.message || "Internal server error" });
});
server.listen(config.port, () => {
console.log(`Waynode listening on :${config.port} (${config.nodeEnv})`);
console.log(` Repos: ${config.reposDir}`);
console.log(` DB: ${config.dbPath}`);
});
// Recovery continuation: any turn a restart left unfinished resumes on its
// own, so unattended (goal) work survives deploys and crashes.
setTimeout(() => {
resumeInterruptedSessions()
.then(({ resumed, failed }) => {
if (resumed || failed) console.log(`[recovery] resumed=${resumed} failed=${failed}`);
})
.catch((error) => console.error("[recovery] boot scan failed:", error.message));
}, 3_000);
// Graceful deploy drain: stop accepting turns, give streaming agents the
// drain window to settle, then exit. Whatever is still running is resumed by
// the next boot's recovery scan.
async function drainAndExit(signal) {
console.log(`[shutdown] ${signal} received: draining (limit ${config.drainMs}ms)`);
beginDrain();
const deadline = Date.now() + config.drainMs;
await new Promise((resolve) => {
const check = () => {
const busy = activeStreamingCount();
if (busy === 0 || Date.now() >= deadline) return resolve();
console.log(`[shutdown] waiting for ${busy} agent turn(s) to settle`);
setTimeout(check, 2_000);
};
check();
});
console.log("[shutdown] closing");
server.close(() => process.exit(0));
setTimeout(() => process.exit(0), 5_000).unref();
}
process.on("SIGTERM", () => void drainAndExit("SIGTERM"));
process.on("SIGINT", () => void drainAndExit("SIGINT"));