Adds `requireSecret(name, devFallback)` in lib/config.server.ts and `getDatabaseUrl()` in @trails-cool/db. Both: - return the env var when set, - fall back to the dev default in non-production, - throw at boot in production if the env var is missing OR matches the known dev fallback (which would otherwise silently ship a public secret / point at localhost). Applied to: - JWT_SECRET (lib/jwt.server.ts) — was `?? "dev-jwt-secret-change-in-production"` - SESSION_SECRET (lib/auth/session.server.ts) — was `?? "dev-secret-change-in-production"` - DATABASE_URL (server.ts health + boss; packages/db migrate-data) — was `?? "postgres://trails:trails@localhost:5432/trails"` Why: these strings are in the repo and known to attackers. A misconfigured prod deploy that forgot to set them would either run with guessable signing keys (full session/JWT forgery) or connect to a non-existent localhost DB. Better to refuse to start than to silently operate insecurely. Tests: - packages/db/src/get-database-url.test.ts (5 cases) - lib/config.server.test.ts gains `requireSecret` cases (4 new) Full repo: pnpm typecheck, pnpm lint, pnpm test all green. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
75 lines
2.5 KiB
TypeScript
75 lines
2.5 KiB
TypeScript
// Cookie session storage. Lives here (separate from auth.server.ts) so
|
|
// the post-verify chokepoint (./completion.ts) can compose it without
|
|
// dragging the entire auth surface in.
|
|
//
|
|
// The legacy import path `~/lib/auth.server` continues to re-export
|
|
// these symbols for backwards compat — see auth.server.ts.
|
|
|
|
import { createCookieSessionStorage, redirect } from "react-router";
|
|
import { eq } from "drizzle-orm";
|
|
import { users } from "@trails-cool/db/schema/journal";
|
|
import { getDb } from "../db.ts";
|
|
import { requireSecret } from "../config.server.ts";
|
|
|
|
const sessionSecret = requireSecret("SESSION_SECRET", "dev-secret-change-in-production");
|
|
|
|
export const sessionStorage = createCookieSessionStorage({
|
|
cookie: {
|
|
name: "__session",
|
|
httpOnly: true,
|
|
secure: process.env.NODE_ENV === "production",
|
|
sameSite: "lax",
|
|
path: "/",
|
|
maxAge: 60 * 60 * 24 * 30, // 30 days
|
|
secrets: [sessionSecret],
|
|
},
|
|
});
|
|
|
|
export async function createSession(userId: string, request: Request) {
|
|
const session = await sessionStorage.getSession(request.headers.get("Cookie"));
|
|
session.set("userId", userId);
|
|
return sessionStorage.commitSession(session);
|
|
}
|
|
|
|
export async function getSessionUser(request: Request) {
|
|
const db = getDb();
|
|
const session = await sessionStorage.getSession(request.headers.get("Cookie"));
|
|
const userId = session.get("userId");
|
|
if (!userId) return null;
|
|
|
|
const [user] = await db.select().from(users).where(eq(users.id, userId));
|
|
return user ?? null;
|
|
}
|
|
|
|
/**
|
|
* Loader/action helper: return the session user or throw a redirect to
|
|
* /auth/login. Centralizes the repeated
|
|
* const user = await getSessionUser(request);
|
|
* if (!user) return redirect("/auth/login");
|
|
* pattern across page loaders and form actions.
|
|
*/
|
|
export async function requireSessionUser(request: Request) {
|
|
const user = await getSessionUser(request);
|
|
if (!user) {
|
|
throw redirect("/auth/login");
|
|
}
|
|
return user;
|
|
}
|
|
|
|
/**
|
|
* Same as requireSessionUser but throws a 401 JSON response instead of a
|
|
* redirect. For fetcher/JSON endpoints (`/api/*` non-v1) where redirecting
|
|
* would confuse the client-side caller.
|
|
*/
|
|
export async function requireSessionUserJson(request: Request) {
|
|
const user = await getSessionUser(request);
|
|
if (!user) {
|
|
throw Response.json({ error: "Unauthorized" }, { status: 401 });
|
|
}
|
|
return user;
|
|
}
|
|
|
|
export async function destroySession(request: Request) {
|
|
const session = await sessionStorage.getSession(request.headers.get("Cookie"));
|
|
return sessionStorage.destroySession(session);
|
|
}
|