2026-05-15 07:04:11 -07:00
|
|
|
import { db } from "@/lib/db/client";
|
|
|
|
|
import { users } from "@/lib/db/schema";
|
|
|
|
|
import { and, eq } from "drizzle-orm";
|
|
|
|
|
import type { AuthenticatedClaims } from "@/lib/auth/jwt";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Per-request user context for MCP tool handlers.
|
|
|
|
|
*
|
|
|
|
|
* Resolves (or creates) the internal `users` row from the Authentik OIDC
|
|
|
|
|
* claims so tools work with stable UUID foreign keys rather than raw `sub`
|
|
|
|
|
* strings.
|
2026-05-17 09:50:59 -07:00
|
|
|
*
|
|
|
|
|
* `groups` and `defaultProjectKey` are populated by the MCP route handler
|
|
|
|
|
* (Agent A's work): groups come from the JWT's `groups` claim cross-
|
|
|
|
|
* checked against the `user_groups` table; defaultProjectKey is the value
|
|
|
|
|
* of the `X-Project-Key` header attached to the inbound request, used as
|
|
|
|
|
* a fallback when a tool call doesn't include `project` explicitly.
|
2026-05-15 07:04:11 -07:00
|
|
|
*/
|
|
|
|
|
export interface UserContext {
|
|
|
|
|
/** Internal users.id UUID. */
|
|
|
|
|
userId: string;
|
|
|
|
|
/** OIDC sub claim (stable identifier from Authentik). */
|
|
|
|
|
sub: string;
|
|
|
|
|
/** OIDC issuer. */
|
|
|
|
|
iss: string;
|
|
|
|
|
/** Optional profile fields if present in the access token. */
|
|
|
|
|
email: string | null;
|
|
|
|
|
name: string | null;
|
2026-05-17 09:50:59 -07:00
|
|
|
/**
|
|
|
|
|
* Group names this user belongs to (from the OIDC `groups` claim,
|
|
|
|
|
* cross-checked against `user_groups`). Drives sharing authorization;
|
|
|
|
|
* empty means the user is only a member of their own private projects.
|
|
|
|
|
*/
|
|
|
|
|
groups: string[];
|
|
|
|
|
/**
|
|
|
|
|
* Default project key from the inbound MCP request's `X-Project-Key`
|
|
|
|
|
* header. Tools that accept a `project` argument fall back to this
|
|
|
|
|
* when none is provided so a Claude Code session pre-pinned to a repo
|
|
|
|
|
* doesn't have to repeat it on every call.
|
|
|
|
|
*/
|
|
|
|
|
defaultProjectKey?: string;
|
2026-05-15 07:04:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export async function userContextFromClaims(claims: AuthenticatedClaims): Promise<UserContext> {
|
|
|
|
|
const email = (claims.email as string | undefined) ?? null;
|
|
|
|
|
const name = (claims.name as string | undefined) ?? null;
|
|
|
|
|
const picture = (claims.picture as string | undefined) ?? null;
|
|
|
|
|
|
|
|
|
|
const row = await db
|
|
|
|
|
.insert(users)
|
|
|
|
|
.values({
|
|
|
|
|
oidcSub: claims.sub,
|
|
|
|
|
oidcIss: claims.iss,
|
|
|
|
|
email,
|
|
|
|
|
name,
|
|
|
|
|
picture,
|
|
|
|
|
})
|
|
|
|
|
.onConflictDoUpdate({
|
|
|
|
|
target: [users.oidcIss, users.oidcSub],
|
|
|
|
|
set: {
|
|
|
|
|
email,
|
|
|
|
|
name,
|
|
|
|
|
picture,
|
|
|
|
|
lastSeenAt: new Date(),
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
.returning({ id: users.id });
|
|
|
|
|
|
|
|
|
|
const userId = row[0]?.id;
|
|
|
|
|
if (!userId) {
|
|
|
|
|
// Race against another upsert — fall back to a select.
|
|
|
|
|
const existing = await db
|
|
|
|
|
.select({ id: users.id })
|
|
|
|
|
.from(users)
|
|
|
|
|
.where(and(eq(users.oidcIss, claims.iss), eq(users.oidcSub, claims.sub)))
|
|
|
|
|
.limit(1);
|
|
|
|
|
if (!existing[0]) throw new Error("user upsert failed and not found on re-read");
|
2026-05-17 09:50:59 -07:00
|
|
|
return {
|
|
|
|
|
userId: existing[0].id,
|
|
|
|
|
sub: claims.sub,
|
|
|
|
|
iss: claims.iss,
|
|
|
|
|
email,
|
|
|
|
|
name,
|
|
|
|
|
groups: [],
|
|
|
|
|
};
|
2026-05-15 07:04:11 -07:00
|
|
|
}
|
|
|
|
|
|
2026-05-17 09:50:59 -07:00
|
|
|
// `groups` is left empty here; Agent A's MCP route handler widens it
|
|
|
|
|
// with the JWT's `groups` claim after this base context resolves.
|
|
|
|
|
return { userId, sub: claims.sub, iss: claims.iss, email, name, groups: [] };
|
2026-05-15 07:04:11 -07:00
|
|
|
}
|