Files
SnapOtter/apps/api/src/plugins/auth.ts
T

1055 lines
35 KiB
TypeScript
Raw Normal View History

import { createHash, randomBytes, randomUUID, scrypt, timingSafeEqual } from "node:crypto";
import { promisify } from "node:util";
import { and, eq, ne, sql } from "drizzle-orm";
import type { FastifyInstance, FastifyReply, FastifyRequest } from "fastify";
import { z } from "zod";
import { env } from "../config.js";
import { db, schema } from "../db/index.js";
import { auditLog, sanitizeAuditInput } from "../lib/audit.js";
import { getPermissions, requirePermission } from "../permissions.js";
const scryptAsync = promisify(scrypt);
// ── Types ─────────────────────────────────────────────────────────
export interface AuthUser {
id: string;
username: string;
role: string;
apiKeyPermissions?: string[];
}
2026-04-04 17:44:51 +08:00
const MAX_USERS = env.MAX_USERS;
// ── Password hashing ──────────────────────────────────────────────
const SALT_LENGTH = 32;
const KEY_LENGTH = 64;
export async function hashPassword(password: string): Promise<string> {
const salt = randomBytes(SALT_LENGTH).toString("hex");
const derived = (await scryptAsync(password, salt, KEY_LENGTH)) as Buffer;
return `${salt}:${derived.toString("hex")}`;
}
export async function verifyPassword(password: string, stored: string): Promise<boolean> {
const [salt, hash] = stored.split(":");
if (!salt || !hash) return false;
const derived = (await scryptAsync(password, salt, KEY_LENGTH)) as Buffer;
const storedBuf = Buffer.from(hash, "hex");
if (derived.length !== storedBuf.length) return false;
return timingSafeEqual(derived, storedBuf);
}
/**
* Compute a fast lookup prefix for an API key.
* Uses SHA-256 (not scrypt) so lookups are O(1) instead of O(n).
*/
export function computeKeyPrefix(rawKey: string): string {
return createHash("sha256").update(rawKey).digest("hex").slice(0, 16);
}
const PASSWORD_RULES =
"Password must be at least 8 characters with uppercase, lowercase, and a number";
function validatePasswordStrength(password: string): string | null {
if (password.length < 8) return PASSWORD_RULES;
if (!/[A-Z]/.test(password)) return PASSWORD_RULES;
if (!/[a-z]/.test(password)) return PASSWORD_RULES;
if (!/[0-9]/.test(password)) return PASSWORD_RULES;
return null;
}
function validateUsername(username: string): string | null {
if (username.length < 3 || username.length > 50) {
return "Username must be between 3 and 50 characters";
}
if (!/^[a-zA-Z0-9_.-]+$/.test(username)) {
return "Username can only contain letters, numbers, dots, hyphens, and underscores";
}
return null;
}
// ── Zod schemas for auth request bodies ──────────────────────────
export const loginSchema = z.object({
username: z.string().min(1, "Username is required").max(255, "Username too long"),
password: z.string().min(1, "Password is required").max(1024, "Password too long"),
});
export const changePasswordSchema = z.object({
currentPassword: z.string().min(1, "Current password is required").max(1024, "Password too long"),
newPassword: z.string().min(1, "New password is required").max(1024, "Password too long"),
});
export const registerSchema = z.object({
username: z.string().min(1, "Username is required").max(255, "Username too long"),
password: z.string().min(1, "Password is required").max(1024, "Password too long"),
role: z.string().optional(),
team: z.string().optional(),
});
const updateUserSchema = z.object({
role: z.string().optional(),
team: z.string().optional(),
});
export const resetPasswordSchema = z.object({
newPassword: z.string().min(1, "New password is required").max(1024, "Password too long"),
});
// ── Request helpers ───────────────────────────────────────────────
/** Extract the authenticated user attached by authMiddleware. */
export function getAuthUser(request: FastifyRequest): AuthUser | null {
return (request as FastifyRequest & { user?: AuthUser }).user ?? null;
}
/** Require an authenticated user, sending 401 if missing. */
export function requireAuth(request: FastifyRequest, reply: FastifyReply): AuthUser | null {
const user = getAuthUser(request);
if (!user) {
reply.status(401).send({ error: "Authentication required", code: "AUTH_REQUIRED" });
return null;
}
return user;
}
/** Require an admin user, sending 403 if not admin. */
export function requireAdmin(request: FastifyRequest, reply: FastifyReply): AuthUser | null {
const user = requireAuth(request, reply);
if (!user) return null;
if (user.role !== "admin") {
reply.status(403).send({ error: "Admin access required", code: "FORBIDDEN" });
return null;
}
return user;
}
// ── Session helpers ────────────────────────────────────────────────
const SESSION_DURATION_MS = env.SESSION_DURATION_HOURS * 60 * 60 * 1000;
export function createSessionToken(): string {
return randomUUID();
}
// ── Default admin creation ─────────────────────────────────────────
export async function ensureAnonymousUser(): Promise<void> {
const [existing] = await db.select().from(schema.users).where(eq(schema.users.id, "anonymous"));
if (existing) return;
await db
.insert(schema.users)
.values({
id: "anonymous",
username: "anonymous",
role: "admin",
mustChangePassword: false,
authProvider: "local",
})
.onConflictDoNothing();
}
export async function ensureDefaultAdmin(): Promise<void> {
const existingUsers = await db.select().from(schema.users);
if (existingUsers.length > 0) return;
const id = randomUUID();
const passwordHash = await hashPassword(env.DEFAULT_PASSWORD);
const mustChange = !env.SKIP_MUST_CHANGE_PASSWORD;
const result = await db
.insert(schema.users)
.values({
id,
username: env.DEFAULT_USERNAME,
passwordHash,
role: "admin",
mustChangePassword: mustChange,
})
.onConflictDoNothing();
if (result.rowCount && result.rowCount > 0) {
console.log(
mustChange
? `Default admin user '${env.DEFAULT_USERNAME}' created - password change required on first login`
: `Default admin user '${env.DEFAULT_USERNAME}' created (password change skipped via env)`,
);
}
}
/**
* Seed the three built-in roles (admin, editor, user) that the legacy SQLite
* migration 0007_custom_roles.sql used to insert. The Postgres baseline is
* DDL-only, so these must be created at boot time instead.
*
* Uses onConflictDoNothing so the function is safe to call when:
* - Roles already exist from a previous boot
* - Roles were imported by the 1.x SQLite-to-Postgres data migrator
*/
// Must match ROLE_PERMISSIONS in permissions.ts (the 1.x post-0010 state).
export async function ensureBuiltinRoles(): Promise<void> {
const builtinRoles = [
{
id: "builtin-admin",
name: "admin",
description: "Full administrative access",
permissions: [
"tools:use",
"files:own",
"files:all",
"apikeys:own",
"apikeys:all",
"pipelines:own",
"pipelines:all",
"settings:read",
"settings:write",
"users:manage",
"teams:manage",
"features:manage",
"system:health",
"audit:read",
"compliance:manage",
"webhooks:manage",
"security:manage",
],
isBuiltin: true,
},
{
id: "builtin-editor",
name: "editor",
description: "Can see all files and pipelines",
permissions: [
"tools:use",
"files:own",
"files:all",
"apikeys:own",
"pipelines:own",
"pipelines:all",
"settings:read",
],
isBuiltin: true,
},
{
id: "builtin-user",
name: "user",
description: "Basic tool access",
permissions: ["tools:use", "files:own", "apikeys:own", "pipelines:own", "settings:read"],
isBuiltin: true,
},
];
for (const role of builtinRoles) {
await db.insert(schema.roles).values(role).onConflictDoNothing();
}
}
// ── Login attempt limit ──────────────────────────────────────────
async function getLoginAttemptLimit(): Promise<number> {
const [row] = await db
.select()
.from(schema.settings)
.where(eq(schema.settings.key, "loginAttemptLimit"));
if (row) {
const parsed = parseInt(row.value, 10);
if (!Number.isNaN(parsed) && parsed > 0) return parsed;
}
return env.LOGIN_ATTEMPT_LIMIT;
}
// ── Auth routes ────────────────────────────────────────────────────
export async function authRoutes(app: FastifyInstance): Promise<void> {
// POST /api/auth/login
app.post(
"/api/auth/login",
{ config: { rateLimit: { max: getLoginAttemptLimit, timeWindow: "1 minute" } } },
async (request: FastifyRequest, reply: FastifyReply) => {
if (!env.AUTH_ENABLED) {
return reply.status(403).send({ error: "Authentication is disabled" });
}
const parsed = loginSchema.safeParse(request.body);
if (!parsed.success) {
return reply.status(400).send({ error: "Username and password are required" });
}
const body = parsed.data;
// Postgres rejects NUL bytes (\x00) in text columns. Valid usernames
// never contain NUL, so such credentials can never match -- return 401
// immediately (same result SQLite produced by running the query).
if (body.username.includes("\x00") || body.password.includes("\x00")) {
return reply.status(401).send({ error: "Invalid credentials" });
}
const [user] = await db
.select()
.from(schema.users)
.where(eq(schema.users.username, body.username));
if (!user || !user.passwordHash) {
await auditLog(request.log, "LOGIN_FAILED", {
username: sanitizeAuditInput(body.username),
reason: "unknown_user",
}, request.ip);
return reply.status(401).send({ error: "Invalid credentials" });
}
const valid = await verifyPassword(body.password, user.passwordHash);
if (!valid) {
await auditLog(request.log, "LOGIN_FAILED", {
username: sanitizeAuditInput(body.username),
reason: "bad_password",
}, request.ip);
return reply.status(401).send({ error: "Invalid credentials" });
}
// Create session
const token = createSessionToken();
const expiresAt = new Date(Date.now() + SESSION_DURATION_MS);
await db.insert(schema.sessions).values({
id: token,
userId: user.id,
expiresAt,
});
await auditLog(request.log, "LOGIN_SUCCESS", { userId: user.id, username: user.username }, request.ip);
const [teamRow] = await db.select().from(schema.teams).where(eq(schema.teams.id, user.team));
return reply.send({
token,
user: {
id: user.id,
username: user.username,
role: user.role,
mustChangePassword: env.SKIP_MUST_CHANGE_PASSWORD ? false : user.mustChangePassword,
permissions: await getPermissions(user.role),
teamName: teamRow?.name ?? user.team,
analyticsEnabled: user.analyticsEnabled ?? null,
analyticsConsentShownAt: user.analyticsConsentShownAt?.getTime() ?? null,
analyticsConsentRemindAt: user.analyticsConsentRemindAt?.getTime() ?? null,
},
expiresAt: expiresAt.toISOString(),
});
},
);
// POST /api/auth/logout
app.post("/api/auth/logout", async (request: FastifyRequest, reply: FastifyReply) => {
const token = extractToken(request);
const user = getAuthUser(request);
let logoutUrl: string | undefined;
if (token) {
const [session] = await db
.select()
.from(schema.sessions)
.where(eq(schema.sessions.id, token));
if (session?.idToken && env.OIDC_ENABLED) {
try {
const { getOidcEndSessionEndpoint } = await import("./oidc.js");
const endSessionEndpoint = getOidcEndSessionEndpoint();
if (endSessionEndpoint) {
const params = new URLSearchParams({
id_token_hint: session.idToken,
post_logout_redirect_uri: `${env.EXTERNAL_URL}/login`,
});
logoutUrl = `${endSessionEndpoint}?${params.toString()}`;
}
} catch {
// OIDC plugin not loaded or discovery not cached
}
}
await db.delete(schema.sessions).where(eq(schema.sessions.id, token));
}
// Clear the session cookie
const cookieReply = reply as FastifyReply & {
clearCookie?: (name: string, opts: Record<string, unknown>) => void;
};
if (typeof cookieReply.clearCookie === "function") {
cookieReply.clearCookie("snapotter-session", { path: "/" });
}
await auditLog(request.log, "LOGOUT", { userId: user?.id }, request.ip);
return reply.send({ ok: true, ...(logoutUrl && { logoutUrl }) });
});
// GET /api/auth/session
app.get("/api/auth/session", async (request: FastifyRequest, reply: FastifyReply) => {
if (!env.AUTH_ENABLED) {
return reply.send({
user: {
id: "anonymous",
username: "anonymous",
role: "admin",
mustChangePassword: false,
permissions: await getPermissions("admin"),
analyticsEnabled: null,
analyticsConsentShownAt: null,
analyticsConsentRemindAt: null,
},
expiresAt: null,
});
}
const token = extractToken(request);
if (!token) {
return reply.status(401).send({ error: "No session token provided" });
}
const [session] = await db.select().from(schema.sessions).where(eq(schema.sessions.id, token));
if (!session || session.expiresAt < new Date()) {
if (session) {
await db.delete(schema.sessions).where(eq(schema.sessions.id, token));
}
return reply.status(401).send({ error: "Session expired or invalid" });
}
const [user] = await db.select().from(schema.users).where(eq(schema.users.id, session.userId));
if (!user) {
return reply.status(401).send({ error: "User not found" });
}
return reply.send({
user: {
id: user.id,
username: user.username,
role: user.role,
mustChangePassword: env.SKIP_MUST_CHANGE_PASSWORD ? false : user.mustChangePassword,
permissions: await getPermissions(user.role),
authProvider: user.authProvider ?? "local",
loginMethod: session.idToken ? "oidc" : "local",
email: user.email ?? null,
hasLocalPassword: !!user.passwordHash,
hasOidcLink: !!user.externalId,
analyticsEnabled: user.analyticsEnabled ?? null,
analyticsConsentShownAt: user.analyticsConsentShownAt?.getTime() ?? null,
analyticsConsentRemindAt: user.analyticsConsentRemindAt?.getTime() ?? null,
},
expiresAt: session.expiresAt.toISOString(),
});
});
// POST /api/auth/change-password
app.post("/api/auth/change-password", async (request: FastifyRequest, reply: FastifyReply) => {
const authUser = requireAuth(request, reply);
if (!authUser) return;
const parsed = changePasswordSchema.safeParse(request.body);
if (!parsed.success) {
return reply.status(400).send({
error: "Current password and new password are required",
code: "VALIDATION_ERROR",
});
}
const body = parsed.data;
const pwError = validatePasswordStrength(body.newPassword);
if (pwError) {
return reply.status(400).send({
error: pwError,
code: "VALIDATION_ERROR",
});
}
const [user] = await db.select().from(schema.users).where(eq(schema.users.id, authUser.id));
if (!user) {
return reply.status(404).send({ error: "User not found", code: "NOT_FOUND" });
}
if (!user.passwordHash) {
return reply.status(400).send({
error: "Password changes are managed by your identity provider.",
code: "OIDC_NO_PASSWORD",
});
}
const valid = await verifyPassword(body.currentPassword, user.passwordHash);
if (!valid) {
return reply
.status(401)
.send({ error: "Current password is incorrect", code: "INVALID_PASSWORD" });
}
const newHash = await hashPassword(body.newPassword);
await db
.update(schema.users)
.set({ passwordHash: newHash, mustChangePassword: false, updatedAt: new Date() })
.where(eq(schema.users.id, authUser.id));
// Invalidate all other sessions for this user
const currentToken = extractToken(request);
if (currentToken) {
await db
.delete(schema.sessions)
.where(and(eq(schema.sessions.userId, authUser.id), ne(schema.sessions.id, currentToken)));
}
// Revoke all API keys - if credentials were compromised, keys must be rotated too
await db.delete(schema.apiKeys).where(eq(schema.apiKeys.userId, authUser.id));
await auditLog(request.log, "PASSWORD_CHANGED", {
userId: authUser.id,
username: authUser.username,
}, request.ip);
return reply.send({ ok: true });
});
// GET /api/auth/users (admin only)
app.get("/api/auth/users", async (request: FastifyRequest, reply: FastifyReply) => {
const admin = await requirePermission("users:manage")(request, reply);
if (!admin) return;
const users = await db
.select({
id: schema.users.id,
username: schema.users.username,
role: schema.users.role,
team: schema.users.team,
authProvider: schema.users.authProvider,
email: schema.users.email,
externalId: schema.users.externalId,
passwordHash: schema.users.passwordHash,
createdAt: schema.users.createdAt,
})
.from(schema.users);
2026-04-04 17:44:51 +08:00
// Build a team ID -> name lookup
const allTeams = await db.select().from(schema.teams);
2026-04-04 17:44:51 +08:00
const teamNameById = new Map(allTeams.map((t) => [t.id, t.name]));
return reply.send({
users: users.map((u) => ({
id: u.id,
username: u.username,
role: u.role,
2026-04-04 17:44:51 +08:00
team: teamNameById.get(u.team) ?? u.team,
authProvider: u.authProvider ?? "local",
email: u.email ?? null,
hasLocalPassword: !!u.passwordHash,
hasOidcLink: !!u.externalId,
createdAt: u.createdAt.toISOString(),
})),
maxUsers: MAX_USERS,
});
});
// POST /api/auth/register (admin only)
app.post("/api/auth/register", async (request: FastifyRequest, reply: FastifyReply) => {
const admin = await requirePermission("users:manage")(request, reply);
if (!admin) return;
const parsed = registerSchema.safeParse(request.body);
if (!parsed.success) {
return reply.status(400).send({
error: "Username and password are required",
code: "VALIDATION_ERROR",
});
}
const body = parsed.data;
const usernameError = validateUsername(body.username);
if (usernameError) {
return reply.status(400).send({
error: usernameError,
code: "VALIDATION_ERROR",
});
}
const registerPwError = validatePasswordStrength(body.password);
if (registerPwError) {
return reply.status(400).send({
error: registerPwError,
code: "VALIDATION_ERROR",
});
}
const validBuiltinRoles = ["admin", "editor", "user"];
let role: string = "user";
if (body.role) {
if (validBuiltinRoles.includes(body.role)) {
role = body.role;
} else {
const [customRole] = await db
.select()
.from(schema.roles)
.where(eq(schema.roles.name, body.role));
if (customRole) {
role = body.role;
}
}
}
// Escalation prevention
const roleHierarchy: Record<string, number> = { admin: 3, editor: 2, user: 1 };
const actorLevel = roleHierarchy[admin.role] ?? 0;
const targetLevel = roleHierarchy[role] ?? 0;
if (targetLevel > actorLevel) {
return reply.status(403).send({
error: "Cannot create a user with a higher role than your own",
code: "ESCALATION_DENIED",
});
}
// Resolve team -- frontend sends team name (e.g. "Default"), not ID
const requestedTeam = body.team;
2026-04-04 17:44:51 +08:00
let teamId: string;
let teamName: string;
if (requestedTeam) {
// Look up by name first, then fall back to ID
const [teamByName] = await db
.select()
.from(schema.teams)
.where(eq(schema.teams.name, requestedTeam));
const [teamById] = teamByName
? [null]
: await db.select().from(schema.teams).where(eq(schema.teams.id, requestedTeam));
const found = teamByName || teamById;
if (!found)
return reply.status(400).send({ error: "Team not found", code: "VALIDATION_ERROR" });
2026-04-04 17:44:51 +08:00
teamId = found.id;
teamName = found.name;
} else {
const [defaultTeam] = await db
.select()
.from(schema.teams)
.where(eq(schema.teams.name, "Default"));
2026-04-04 17:44:51 +08:00
teamId = defaultTeam?.id || "default-team-00000000";
teamName = defaultTeam?.name || "Default";
}
// Check for duplicate username first (so 409 takes priority over limit)
const [existing] = await db
.select()
.from(schema.users)
.where(eq(schema.users.username, body.username));
if (existing) {
return reply.status(409).send({
error: "Username already exists",
code: "CONFLICT",
});
}
// Check user limit (0 = unlimited)
if (MAX_USERS > 0) {
const allUsers = await db.select().from(schema.users);
const userCount = allUsers.length;
if (userCount >= MAX_USERS) {
return reply.status(403).send({
error: `User limit reached (${MAX_USERS} max)`,
code: "USER_LIMIT_REACHED",
});
}
}
const id = randomUUID();
const passwordHash = await hashPassword(body.password);
await db.insert(schema.users).values({
id,
username: body.username,
passwordHash,
role,
team: teamId,
mustChangePassword: true,
});
await auditLog(request.log, "USER_CREATED", {
adminId: admin.id,
newUserId: id,
newUsername: body.username,
role,
}, request.ip);
return reply.status(201).send({
id,
username: body.username,
role,
2026-04-04 17:44:51 +08:00
team: teamName,
});
});
// PUT /api/auth/users/:id (admin only — update role/team)
app.put(
"/api/auth/users/:id",
async (request: FastifyRequest<{ Params: { id: string } }>, reply: FastifyReply) => {
const admin = await requirePermission("users:manage")(request, reply);
if (!admin) return;
const { id } = request.params;
const parsed = updateUserSchema.safeParse(request.body);
if (!parsed.success) {
return reply.status(400).send({
error: parsed.error.issues.map((i) => i.message).join("; "),
code: "VALIDATION_ERROR",
});
}
const body = parsed.data;
const [user] = await db.select().from(schema.users).where(eq(schema.users.id, id));
if (!user) {
return reply.status(404).send({ error: "User not found", code: "NOT_FOUND" });
}
const updates: { role?: string; team?: string; updatedAt: Date } = {
updatedAt: new Date(),
};
// Escalation prevention
if (body.role) {
const roleHierarchy: Record<string, number> = { admin: 3, editor: 2, user: 1 };
const actorLevel = roleHierarchy[admin.role] ?? 0;
const targetLevel = roleHierarchy[body.role] ?? 0;
if (targetLevel > actorLevel) {
return reply.status(403).send({
error: "Cannot assign a role higher than your own",
code: "ESCALATION_DENIED",
});
}
}
if (body.role) {
const validBuiltinRoles = ["admin", "editor", "user"];
const [customRoleRow] = validBuiltinRoles.includes(body.role)
? [null]
: await db.select().from(schema.roles).where(eq(schema.roles.name, body.role));
const isValid = validBuiltinRoles.includes(body.role) || customRoleRow;
if (isValid) {
// Prevent removing your own admin role
if (id === admin.id && body.role !== "admin") {
return reply.status(400).send({
error: "Cannot remove your own admin role",
code: "SELF_DEMOTE",
});
}
// Last admin protection
if (user.role === "admin" && body.role !== "admin") {
const [adminCount] = await db
.select({ count: sql<number>`COUNT(*)` })
.from(schema.users)
.where(eq(schema.users.role, "admin"));
if (adminCount && adminCount.count <= 1) {
return reply.status(400).send({
error: "Cannot demote the last admin",
code: "LAST_ADMIN",
});
}
}
updates.role = body.role;
}
}
if (body.team?.trim()) {
2026-04-04 17:44:51 +08:00
// Look up by name first, then fall back to ID
const [teamByName] = await db
.select()
.from(schema.teams)
.where(eq(schema.teams.name, body.team.trim()));
const [teamById] = teamByName
? [null]
: await db.select().from(schema.teams).where(eq(schema.teams.id, body.team.trim()));
2026-04-04 17:44:51 +08:00
const found = teamByName || teamById;
if (!found) {
return reply.status(400).send({ error: "Team not found", code: "VALIDATION_ERROR" });
}
2026-04-04 17:44:51 +08:00
updates.team = found.id;
}
await db.update(schema.users).set(updates).where(eq(schema.users.id, id));
// Invalidate all sessions when role changes to force re-login with new permissions
if (updates.role && updates.role !== user.role) {
await db.delete(schema.sessions).where(eq(schema.sessions.userId, id));
request.log.info(
{ targetUserId: id, oldRole: user.role, newRole: updates.role },
"Sessions invalidated due to role change",
);
}
await auditLog(request.log, "USER_UPDATED", {
adminId: admin.id,
targetUserId: id,
changes: { role: updates.role, team: updates.team },
}, request.ip);
return reply.send({ ok: true });
},
);
// POST /api/auth/users/:id/reset-password (admin only)
app.post(
"/api/auth/users/:id/reset-password",
async (request: FastifyRequest<{ Params: { id: string } }>, reply: FastifyReply) => {
const admin = await requirePermission("users:manage")(request, reply);
if (!admin) return;
const { id } = request.params;
const parsed = resetPasswordSchema.safeParse(request.body);
if (!parsed.success) {
return reply.status(400).send({
error: "New password is required",
code: "VALIDATION_ERROR",
});
}
const body = parsed.data;
const pwError = validatePasswordStrength(body.newPassword);
if (pwError) {
return reply.status(400).send({
error: pwError,
code: "VALIDATION_ERROR",
});
}
const [user] = await db.select().from(schema.users).where(eq(schema.users.id, id));
if (!user) {
return reply.status(404).send({ error: "User not found", code: "NOT_FOUND" });
}
if (!user.passwordHash) {
return reply.status(400).send({
error: "Cannot reset password for OIDC user.",
code: "OIDC_NO_PASSWORD",
});
}
const newHash = await hashPassword(body.newPassword);
await db
.update(schema.users)
.set({ passwordHash: newHash, mustChangePassword: true, updatedAt: new Date() })
.where(eq(schema.users.id, id));
// Invalidate all sessions for this user
await db.delete(schema.sessions).where(eq(schema.sessions.userId, id));
// Revoke all API keys
await db.delete(schema.apiKeys).where(eq(schema.apiKeys.userId, id));
await auditLog(request.log, "PASSWORD_RESET", {
adminId: admin.id,
targetUserId: id,
targetUsername: user.username,
}, request.ip);
return reply.send({ ok: true });
},
);
// DELETE /api/auth/users/:id (admin only, can't delete self)
app.delete(
"/api/auth/users/:id",
async (request: FastifyRequest<{ Params: { id: string } }>, reply: FastifyReply) => {
const admin = await requirePermission("users:manage")(request, reply);
if (!admin) return;
const { id } = request.params;
if (id === admin.id) {
return reply.status(400).send({
error: "Cannot delete your own account",
code: "SELF_DELETE",
});
}
const [user] = await db.select().from(schema.users).where(eq(schema.users.id, id));
if (!user) {
return reply.status(404).send({ error: "User not found", code: "NOT_FOUND" });
}
// Delete associated sessions
await db.delete(schema.sessions).where(eq(schema.sessions.userId, id));
// Delete the user (cascades to api_keys via FK)
await db.delete(schema.users).where(eq(schema.users.id, id));
await auditLog(request.log, "USER_DELETED", {
adminId: admin.id,
deletedUserId: id,
deletedUsername: user.username,
}, request.ip);
return reply.send({ ok: true });
},
);
}
// ── Token extraction ───────────────────────────────────────────────
function extractToken(request: FastifyRequest): string | null {
const authHeader = request.headers.authorization;
if (authHeader?.startsWith("Bearer ")) {
return authHeader.slice(7);
}
const cookies = (request as FastifyRequest & { cookies?: Record<string, string> }).cookies;
if (cookies?.["snapotter-session"]) {
return cookies["snapotter-session"];
}
return null;
}
// ── Auth middleware ────────────────────────────────────────────────
const PUBLIC_PATHS = [
"/api/v1/health",
"/api/v1/readyz",
"/api/v1/config/",
"/api/auth/",
"/api/v1/download/",
"/api/v1/jobs/",
"/api/docs",
"/api/v1/openapi.yaml",
"/api/v1/meme-templates/",
];
function isPublicRoute(url: string): boolean {
// Non-API routes are public (SPA static files — auth is handled client-side)
if (!url.startsWith("/api/")) return true;
// Download URLs use unguessable UUIDs as capability tokens — no auth needed
return PUBLIC_PATHS.some((path) => url.startsWith(path));
}
export async function authMiddleware(app: FastifyInstance): Promise<void> {
app.addHook("preHandler", async (request: FastifyRequest, reply: FastifyReply) => {
if (!env.AUTH_ENABLED) {
(request as FastifyRequest & { user?: AuthUser }).user = {
id: "anonymous",
username: "anonymous",
role: "admin",
};
return;
}
const isPublic = isPublicRoute(request.url);
const token = extractToken(request);
if (!token) {
// Public routes don't require a token
if (isPublic) return;
return reply.status(401).send({ error: "Authentication required" });
}
const [session] = await db.select().from(schema.sessions).where(eq(schema.sessions.id, token));
if (!session || session.expiresAt < new Date()) {
if (session) {
await db.delete(schema.sessions).where(eq(schema.sessions.id, token));
}
// Try API key authentication if token has si_ prefix
if (token.startsWith("si_")) {
const prefix = computeKeyPrefix(token);
// Lookup by prefix (O(1) instead of scanning all keys)
const candidates = await db
.select()
.from(schema.apiKeys)
.where(eq(schema.apiKeys.keyPrefix, prefix));
// Fall back to full scan for legacy keys without a prefix (bounded to 100)
let keysToCheck: typeof candidates;
if (candidates.length > 0) {
keysToCheck = candidates;
} else {
request.log.warn(
"Legacy API key lookup triggered (no keyPrefix match). Migrate keys to use prefix-based lookup.",
);
const allKeys = await db.select().from(schema.apiKeys);
keysToCheck = allKeys.filter((k) => !k.keyPrefix).slice(0, 100);
}
for (const key of keysToCheck) {
const matches = await verifyPassword(token, key.keyHash);
if (matches) {
// Check expiration
if (key.expiresAt && key.expiresAt < new Date()) {
// Key expired - skip it
continue;
}
// Backfill prefix for legacy keys
if (!key.keyPrefix) {
await db
.update(schema.apiKeys)
.set({ keyPrefix: prefix, lastUsedAt: new Date() })
.where(eq(schema.apiKeys.id, key.id));
} else {
await db
.update(schema.apiKeys)
.set({ lastUsedAt: new Date() })
.where(eq(schema.apiKeys.id, key.id));
}
// Load the user
const [apiUser] = await db
.select()
.from(schema.users)
.where(eq(schema.users.id, key.userId));
if (apiUser) {
const keyPermissions = key.permissions ?? undefined;
(request as FastifyRequest & { user?: AuthUser }).user = {
id: apiUser.id,
username: apiUser.username,
role: apiUser.role,
apiKeyPermissions: keyPermissions,
};
return;
}
}
}
}
// Public routes can proceed without a valid session
if (isPublic) return;
return reply.status(401).send({ error: "Session expired or invalid" });
}
const [user] = await db.select().from(schema.users).where(eq(schema.users.id, session.userId));
if (!user) {
if (isPublic) return;
return reply.status(401).send({ error: "User not found" });
}
// Attach user info to request for downstream handlers
// (always populate when a valid session exists, even on public routes)
(request as FastifyRequest & { user?: AuthUser }).user = {
id: user.id,
username: user.username,
role: user.role,
};
// Enforce mustChangePassword — block non-auth API calls
// (skipped when SKIP_MUST_CHANGE_PASSWORD=true for CI/dev environments)
if (user.mustChangePassword && !env.SKIP_MUST_CHANGE_PASSWORD) {
const allowed = [
"/api/auth/change-password",
"/api/auth/logout",
"/api/auth/session",
"/api/v1/config/",
];
if (!allowed.some((p) => request.url.startsWith(p)) && request.url.startsWith("/api/")) {
return reply.status(403).send({
error: "Password change required",
code: "MUST_CHANGE_PASSWORD",
});
}
}
});
}