Two cleanups in one pass: 1. Update import paths app-wide from `~/lib/auth.server` to `~/lib/auth/session.server` for the four session helpers (sessionStorage, createSession, getSessionUser, destroySession). ~40 files: 33 simple path swaps where the file imported only session symbols, 5 splits where it also imported per-method auth functions (auth.verify.tsx, api.settings.email.ts, activities.\$id.tsx, routes.\$id.tsx, auth.accept-terms.tsx) — those keep one import from auth.server (for verifyMagicToken, canView, recordTermsAcceptance, etc.) and gain a second import from auth/session.server. Two more files used relative paths and were missed by the first grep pass (lib/oauth.server.ts and routes/oauth.authorize.tsx) — migrated too. The @deprecated re-exports block in auth.server.ts is gone. 2. Rename the new auth files to follow the project's `.server.ts` convention so Vite/React Router treat them as server-only (they read process.env.SESSION_SECRET, hit the DB, etc. — must NOT enter the client bundle): - auth/session.ts → auth/session.server.ts - auth/completion.ts → auth/completion.server.ts - auth/completion.test.ts → auth/completion.server.test.ts Done with `git mv` so blame is preserved. Verified: typecheck + lint green; 126 unit tests pass. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
48 lines
1.8 KiB
TypeScript
48 lines
1.8 KiB
TypeScript
import { data } from "react-router";
|
|
import type { Route } from "./+types/api.auth.login";
|
|
import { startAuthentication, finishAuthentication, createMagicToken, verifyLoginCode } from "~/lib/auth.server";
|
|
import { completeAuth } from "~/lib/auth/completion.server";
|
|
import { sendMagicLink } from "~/lib/email.server";
|
|
|
|
export async function action({ request }: Route.ActionArgs) {
|
|
const body = await request.json();
|
|
const { step, response, challenge, email, code, returnTo } = body;
|
|
|
|
try {
|
|
if (step === "start-passkey") {
|
|
const options = await startAuthentication();
|
|
return data({ step: "challenge", options });
|
|
}
|
|
|
|
if (step === "finish-passkey") {
|
|
const userId = await finishAuthentication(response, challenge);
|
|
return completeAuth({ userId, request, returnTo, mode: "json" });
|
|
}
|
|
|
|
if (step === "magic-link") {
|
|
const { token, code: loginCode } = await createMagicToken(email);
|
|
const origin = process.env.ORIGIN ?? "http://localhost:3000";
|
|
const link = `${origin}/auth/verify?token=${token}`;
|
|
// In dev, return the link and code directly
|
|
if (process.env.NODE_ENV !== "production") {
|
|
console.log(`[Magic Link] ${email}: ${link} (code: ${loginCode})`);
|
|
return data({ step: "magic-link-sent", devLink: link, code: loginCode });
|
|
}
|
|
|
|
await sendMagicLink(email, link, loginCode);
|
|
return data({ step: "magic-link-sent" });
|
|
}
|
|
|
|
if (step === "verify-code") {
|
|
if (!email || !code) {
|
|
return data({ error: "Email and code are required" }, { status: 400 });
|
|
}
|
|
const userId = await verifyLoginCode(email, code);
|
|
return completeAuth({ userId, request, returnTo, mode: "json" });
|
|
}
|
|
|
|
return data({ error: "Invalid step" }, { status: 400 });
|
|
} catch (e) {
|
|
return data({ error: (e as Error).message }, { status: 400 });
|
|
}
|
|
}
|