File size: 9,352 Bytes
31daf3d 7d7a53f 171a271 248183e 7a0420c 248183e 40f346c aa4ca1c 2dae031 7d7a53f bb6f8cb 0e5ff83 032678c 9030ab4 06e807a 7d7a53f be2778b e67ab0e 2dae031 31daf3d e4d686c 31daf3d 4331e77 032678c 31daf3d 0e5ff83 be2778b 31daf3d 0e5ff83 e67ab0e 31daf3d 06e807a 31daf3d 3042bb8 31daf3d 50b49a2 29a0119 bb6f8cb 0e5ff83 bb6f8cb 29a0119 bb6f8cb 29a0119 a867716 bb6f8cb 50b49a2 31daf3d 0e5ff83 129fa31 a6fb72d 31daf3d a6fb72d 7d7a53f c0ef209 7d7a53f 91e839b 7d7a53f 248183e c0ef209 9f870c5 c0ef209 9f870c5 4fbf802 9f870c5 0fac874 9f870c5 c0ef209 9f870c5 248183e c4f6eb3 a0c4452 06e807a 129fa31 a2b2e91 0e5ff83 a2b2e91 0e5ff83 a2b2e91 129fa31 a2b2e91 0e5ff83 31daf3d a2b2e91 129fa31 0e5ff83 a2b2e91 129fa31 7d7a53f aa4ca1c 7d7a53f aa4ca1c 24d52b8 7a0420c 40f346c 177f7c5 3fc0402 177f7c5 24d52b8 7a0420c 171a271 2af7726 e8c3662 2af7726 31daf3d 2af7726 7d7a53f 2af7726 50b49a2 6515665 31daf3d 6515665 7d7a53f 50b49a2 7d7a53f |
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 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 |
import { config, ready } from "$lib/server/config";
import type { Handle, HandleServerError, ServerInit, HandleFetch } from "@sveltejs/kit";
import { collections } from "$lib/server/database";
import { base } from "$app/paths";
import {
authenticateRequest,
loginEnabled,
refreshSessionCookie,
triggerOauthFlow,
} from "$lib/server/auth";
import { ERROR_MESSAGES } from "$lib/stores/errors";
import { addWeeks } from "date-fns";
import { checkAndRunMigrations } from "$lib/migrations/migrations";
import { building, dev } from "$app/environment";
import { logger } from "$lib/server/logger";
import { AbortedGenerations } from "$lib/server/abortedGenerations";
import { initExitHandler } from "$lib/server/exitHandler";
import { refreshConversationStats } from "$lib/jobs/refresh-conversation-stats";
import { adminTokenManager } from "$lib/server/adminToken";
import { isHostLocalhost } from "$lib/server/isURLLocal";
import { MetricsServer } from "$lib/server/metrics";
import { loadMcpServersOnStartup } from "$lib/server/mcp/registry";
export const init: ServerInit = async () => {
// Wait for config to be fully loaded
await ready;
// TODO: move this code on a started server hook, instead of using a "building" flag
if (!building) {
// Ensure legacy env expected by some libs: map OPENAI_API_KEY -> HF_TOKEN if absent
const canonicalToken = config.OPENAI_API_KEY || config.HF_TOKEN;
if (canonicalToken) {
process.env.HF_TOKEN ??= canonicalToken;
}
// Warn if legacy-only var is used
if (!config.OPENAI_API_KEY && config.HF_TOKEN) {
logger.warn(
"HF_TOKEN is deprecated in favor of OPENAI_API_KEY. Please migrate to OPENAI_API_KEY."
);
}
logger.info("Starting server...");
initExitHandler();
if (config.METRICS_ENABLED === "true") {
MetricsServer.getInstance();
}
checkAndRunMigrations();
refreshConversationStats();
// Load MCP servers at startup
loadMcpServersOnStartup();
// Init AbortedGenerations refresh process
AbortedGenerations.getInstance();
adminTokenManager.displayToken();
if (config.EXPOSE_API) {
logger.warn(
"The EXPOSE_API flag has been deprecated. The API is now required for chat-ui to work."
);
}
}
};
export const handleError: HandleServerError = async ({ error, event, status, message }) => {
// handle 404
if (building) {
throw error;
}
if (event.route.id === null) {
return {
message: `Page ${event.url.pathname} not found`,
};
}
const errorId = crypto.randomUUID();
logger.error({
locals: event.locals,
url: event.request.url,
params: event.params,
request: event.request,
message,
error,
errorId,
status,
stack: error instanceof Error ? error.stack : undefined,
});
return {
message: "An error occurred",
errorId,
};
};
export const handle: Handle = async ({ event, resolve }) => {
await ready.then(() => {
config.checkForUpdates();
});
logger.debug({
locals: event.locals,
url: event.url.pathname,
params: event.params,
request: event.request,
});
function errorResponse(status: number, message: string) {
const sendJson =
event.request.headers.get("accept")?.includes("application/json") ||
event.request.headers.get("content-type")?.includes("application/json");
return new Response(sendJson ? JSON.stringify({ error: message }) : message, {
status,
headers: {
"content-type": sendJson ? "application/json" : "text/plain",
},
});
}
if (event.url.pathname.startsWith(`${base}/admin/`) || event.url.pathname === `${base}/admin`) {
const ADMIN_SECRET = config.ADMIN_API_SECRET || config.PARQUET_EXPORT_SECRET;
if (!ADMIN_SECRET) {
return errorResponse(500, "Admin API is not configured");
}
if (event.request.headers.get("Authorization") !== `Bearer ${ADMIN_SECRET}`) {
return errorResponse(401, "Unauthorized");
}
}
const auth = await authenticateRequest(
{ type: "svelte", value: event.request.headers },
{ type: "svelte", value: event.cookies },
event.url
);
event.locals.sessionId = auth.sessionId;
if (loginEnabled && !auth.user && !event.url.pathname.startsWith(`${base}/.well-known/`)) {
if (config.AUTOMATIC_LOGIN === "true") {
// AUTOMATIC_LOGIN: always redirect to OAuth flow (unless already on login or healthcheck pages)
if (
!event.url.pathname.startsWith(`${base}/login`) &&
!event.url.pathname.startsWith(`${base}/healthcheck`)
) {
// To get the same CSRF token after callback
refreshSessionCookie(event.cookies, auth.secretSessionId);
return await triggerOauthFlow(event);
}
} else {
// Redirect to OAuth flow unless on the authorized pages (home, shared conversation, login, healthcheck, model thumbnails)
if (
event.url.pathname !== `${base}/` &&
event.url.pathname !== `${base}` &&
!event.url.pathname.startsWith(`${base}/login`) &&
!event.url.pathname.startsWith(`${base}/login/callback`) &&
!event.url.pathname.startsWith(`${base}/healthcheck`) &&
!event.url.pathname.startsWith(`${base}/r/`) &&
!event.url.pathname.startsWith(`${base}/conversation/`) &&
!event.url.pathname.startsWith(`${base}/models/`) &&
!event.url.pathname.startsWith(`${base}/api`)
) {
refreshSessionCookie(event.cookies, auth.secretSessionId);
return triggerOauthFlow(event);
}
}
}
event.locals.user = auth.user || undefined;
event.locals.token = auth.token;
event.locals.isAdmin =
event.locals.user?.isAdmin || adminTokenManager.isAdmin(event.locals.sessionId);
// CSRF protection
const requestContentType = event.request.headers.get("content-type")?.split(";")[0] ?? "";
/** https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form#attr-enctype */
const nativeFormContentTypes = [
"multipart/form-data",
"application/x-www-form-urlencoded",
"text/plain",
];
if (event.request.method === "POST") {
if (nativeFormContentTypes.includes(requestContentType)) {
const origin = event.request.headers.get("origin");
if (!origin) {
return errorResponse(403, "Non-JSON form requests need to have an origin");
}
const validOrigins = [
new URL(event.request.url).host,
...(config.PUBLIC_ORIGIN ? [new URL(config.PUBLIC_ORIGIN).host] : []),
];
if (!validOrigins.includes(new URL(origin).host)) {
return errorResponse(403, "Invalid referer for POST request");
}
}
}
if (
event.request.method === "POST" ||
event.url.pathname.startsWith(`${base}/login`) ||
event.url.pathname.startsWith(`${base}/login/callback`)
) {
// if the request is a POST request or login-related we refresh the cookie
refreshSessionCookie(event.cookies, auth.secretSessionId);
await collections.sessions.updateOne(
{ sessionId: auth.sessionId },
{ $set: { updatedAt: new Date(), expiresAt: addWeeks(new Date(), 2) } }
);
}
if (
loginEnabled &&
!event.locals.user &&
!event.url.pathname.startsWith(`${base}/login`) &&
!event.url.pathname.startsWith(`${base}/admin`) &&
!event.url.pathname.startsWith(`${base}/settings`) &&
!["GET", "OPTIONS", "HEAD"].includes(event.request.method)
) {
return errorResponse(401, ERROR_MESSAGES.authOnly);
}
let replaced = false;
const response = await resolve(event, {
transformPageChunk: (chunk) => {
// For some reason, Sveltekit doesn't let us load env variables from .env in the app.html template
if (replaced || !chunk.html.includes("%gaId%")) {
return chunk.html;
}
replaced = true;
return chunk.html.replace("%gaId%", config.PUBLIC_GOOGLE_ANALYTICS_ID);
},
filterSerializedResponseHeaders: (header) => {
return header.includes("content-type");
},
});
// Add CSP header to disallow framing if ALLOW_IFRAME is not "true"
if (config.ALLOW_IFRAME !== "true") {
response.headers.append("Content-Security-Policy", "frame-ancestors 'none';");
}
if (
event.url.pathname.startsWith(`${base}/login/callback`) ||
event.url.pathname.startsWith(`${base}/login`)
) {
response.headers.append("Cache-Control", "no-store");
}
if (event.url.pathname.startsWith(`${base}/api/`)) {
// get origin from the request
const requestOrigin = event.request.headers.get("origin");
// get origin from the config if its defined
let allowedOrigin = config.PUBLIC_ORIGIN ? new URL(config.PUBLIC_ORIGIN).origin : undefined;
if (
dev || // if we're in dev mode
!requestOrigin || // or the origin is null (SSR)
isHostLocalhost(new URL(requestOrigin).hostname) // or the origin is localhost
) {
allowedOrigin = "*"; // allow all origins
} else if (allowedOrigin === requestOrigin) {
allowedOrigin = requestOrigin; // echo back the caller
}
if (allowedOrigin) {
response.headers.set("Access-Control-Allow-Origin", allowedOrigin);
response.headers.set(
"Access-Control-Allow-Methods",
"GET, POST, PUT, PATCH, DELETE, OPTIONS"
);
response.headers.set("Access-Control-Allow-Headers", "Content-Type, Authorization");
}
}
return response;
};
export const handleFetch: HandleFetch = async ({ event, request, fetch }) => {
if (isHostLocalhost(new URL(request.url).hostname)) {
const cookieHeader = event.request.headers.get("cookie");
if (cookieHeader) {
const headers = new Headers(request.headers);
headers.set("cookie", cookieHeader);
return fetch(new Request(request, { headers }));
}
}
return fetch(request);
};
|