Author SHA1 Message Date
Cursor Agent 96c6df2fff Fix OIDC email: load Authelia profile from UserInfo
Auth.js OIDC only reads ID-token claims by default; Authelia puts
email on UserInfo. Set idToken:false, harden claim extraction, and
document an optional Authelia claims_policy.
2026-08-24 04:25:50 +00:00
Nick TrochalakisandCursor Agent c33f651cfe Fix Authelia OIDC: send state (+ remove login redirect hint) (#9)
Auth.js OIDC defaults to PKCE-only, so no `state` was sent; Authelia
rejects that. Enable checks: pkce + state. Remove the public redirect
URI hint from the login page.

Co-authored-by: Cursor Agent <[email protected]>
2026-08-24 04:19:29 +00:00
Nick TrochalakisandCursor Agent 443dba5bba Publish Docker image to GHCR on each main build (#8)
Add a Docker workflow that builds on PRs and pushes to
ghcr.io/chewbaccalakis/rfid-database on main (latest + sha) and v* tags.
Drop the redundant docker-build job from CI.

Co-authored-by: Cursor Agent <[email protected]>
2026-08-24 04:10:58 +00:00
Nick Trochalakis 3bcdc14106 Merge pull request #7 from Chewbaccalakis/cursor/fix-login-dynamic-oidc-e593
Fix OIDC button: force dynamic /login (was prerendered at build)
2026-08-23 21:05:12 -07:00
Cursor Agent f2de0e3892 Fix missing OIDC button: stop static-prerendering /login
/login was prerendered at Docker build time when AUTH_OIDC_* were
unset, baking oidcEnabled=false into the page. Force dynamic render
and also read /api/v1/auth/config on the client as a fallback.
2026-08-24 04:02:37 +00:00
Nick TrochalakisandCursor Agent cd1a2fe808 Harden OIDC + auth config diagnostics endpoint (#6)
Request openid email profile, use client_secret_post, surface OIDC
errors on /login, and expose a no-auth diagnostics endpoint so operators
can verify the running container sees AUTH_OIDC_* and the callback URL.

Co-authored-by: Cursor Agent <[email protected]>
2026-08-24 03:57:29 +00:00
Nick TrochalakisandCursor Agent 6d76fecde9 Fix OIDC: enable from runtime AUTH_OIDC_* (no NEXT_PUBLIC flag) (#5)
The SSO button required NEXT_PUBLIC_AUTH_OIDC_ENABLED, which is baked
at build time and silently fails under Docker runtime env. Drive the
login button from server-side AUTH_OIDC_* instead, and document IdP
redirect URI + AUTH_URL setup.

Co-authored-by: Cursor Agent <[email protected]>
2026-08-24 00:13:51 +00:00
10 changed files with 293 additions and 32 deletions
-8
View File
@@ -22,11 +22,3 @@ jobs:
- run: npm run build - run: npm run build
env: env:
AUTH_SECRET: ci-build-secret-at-least-32-characters AUTH_SECRET: ci-build-secret-at-least-32-characters
docker:
name: docker-build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build production image
run: docker build -t rfid-database:ci .
+60
View File
@@ -0,0 +1,60 @@
name: Docker
on:
push:
branches: [main]
tags: ["v*"]
pull_request:
branches: [main]
env:
REGISTRY: ghcr.io
# GHCR requires lowercase image names
IMAGE_NAME: ghcr.io/chewbaccalakis/rfid-database
jobs:
build-and-push:
name: build-and-push
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
attestations: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GitHub Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels)
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.IMAGE_NAME }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=sha,prefix=sha-,format=short
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
+58 -14
View File
@@ -39,28 +39,56 @@ Open http://localhost:3000 and sign in.
### Enabling OIDC ### Enabling OIDC
1. In your IdP, create a **confidential** OIDC application. 1. **Pull latest and rebuild** (OIDC button detection changed recently):
2. Set the redirect / callback URI to: ```bash
git pull
docker compose up -d --build
```
2. In your IdP, create a **confidential** OIDC application.
3. Set the redirect / callback URI to **exactly**:
``` ```
{AUTH_URL}/api/auth/callback/oidc {AUTH_URL}/api/auth/callback/oidc
``` ```
Example: `http://localhost:3000/api/auth/callback/oidc` Example: `https://rfid.atlashorizon.net/api/auth/callback/oidc`
3. Put these in `.env` (Docker Compose reads `.env` automatically): 4. Put these in `.env`:
```bash ```bash
AUTH_URL=http://localhost:3000 AUTH_URL=https://rfid.atlashorizon.net
AUTH_SECRET=...long random... AUTH_SECRET=...long random...
AUTH_OIDC_ISSUER=https://sso.example.com/application/o/rfid/ AUTH_OIDC_ISSUER=https://auth.atlashorizon.net
AUTH_OIDC_CLIENT_ID=... AUTH_OIDC_CLIENT_ID=rfiddb
AUTH_OIDC_CLIENT_SECRET=... AUTH_OIDC_CLIENT_SECRET=...
AUTH_OIDC_NAME=Authentik AUTH_OIDC_NAME=AtlasHorizon
``` ```
4. Restart the app (`docker compose up -d` or restart `npm run dev`). 5. Restart, then verify the running app sees config (no secrets returned):
5. Open `/login` — you should see **Sign in with Authentik** (or your `AUTH_OIDC_NAME`). ```bash
curl -s https://rfid.atlashorizon.net/api/v1/auth/config | jq
```
You want `"oidcEnabled": true` and `"callbackUrl"` matching your IdP.
6. Open `/login` — you should see **Sign in with AtlasHorizon**.
Notes: Notes:
- `AUTH_OIDC_ISSUER` must be exactly the issuer value from discovery (trailing slash matters for some IdPs). - `AUTH_OIDC_ISSUER` must match discovery (`{issuer}/.well-known/openid-configuration`).
- The IdP must return an **email** claim; accounts are created/linked by email. - The app requests `openid email profile` and loads profile from **UserInfo** (Authelia puts `email` there by default).
- Optional Authelia hardening — also put email on the ID token:
```yaml
identity_providers:
oidc:
claims_policies:
rfiddb:
id_token:
- 'email'
- 'email_verified'
- 'preferred_username'
- 'name'
clients:
- client_id: 'rfiddb'
claims_policy: 'rfiddb'
# ...rest of client...
```
- Local password login stays available alongside SSO. - Local password login stays available alongside SSO.
- If the button is missing, you are almost certainly on an old image — rebuild.
## REST API (`/api/v1`) ## REST API (`/api/v1`)
@@ -107,10 +135,26 @@ npm run typecheck
npm run build npm run build
``` ```
GitHub Actions runs on every pull request and push to `main`: GitHub Actions on every pull request and push to `main`:
1. **lint / typecheck / test / Next.js build** 1. **lint / typecheck / test / Next.js build**
2. **`docker build`** — catches Dockerfile parse/build failures (the class of break that conflict markers previously caused) 2. **Docker image** — build on PRs; on `main` (and `v*` tags) push to GHCR:
`ghcr.io/chewbaccalakis/rfid-database`
### Pull the published image
```bash
docker pull ghcr.io/chewbaccalakis/rfid-database:latest
# or a specific commit: ghcr.io/chewbaccalakis/rfid-database:sha-<shortsha>
```
If the package is private, authenticate first:
```bash
echo $GITHUB_TOKEN | docker login ghcr.io -u USERNAME --password-stdin
```
Or in Compose, set `image: ghcr.io/chewbaccalakis/rfid-database:latest` and comment out `build:`.
## Docker ## Docker
+4
View File
@@ -1,9 +1,13 @@
services: services:
rfid-database: rfid-database:
# Local build (default):
build: build:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
image: rfid-database:local image: rfid-database:local
# Or pull from GHCR instead of building:
# image: ghcr.io/chewbaccalakis/rfid-database:latest
# pull_policy: always
container_name: rfid-database container_name: rfid-database
restart: unless-stopped restart: unless-stopped
ports: ports:
+30
View File
@@ -0,0 +1,30 @@
import { jsonOk } from "@/lib/api/errors";
import { isOidcConfigured } from "@/lib/auth/oidc";
/**
* Public auth diagnostics (no secrets).
* Useful to verify the running container sees OIDC env vars.
*/
export async function GET() {
const authUrl = (process.env.AUTH_URL || "").replace(/\/$/, "");
const oidcEnabled = isOidcConfigured();
return jsonOk({
oidcEnabled,
oidcName: process.env.AUTH_OIDC_NAME || "SSO",
issuer: process.env.AUTH_OIDC_ISSUER || null,
clientIdSet: Boolean(process.env.AUTH_OIDC_CLIENT_ID?.trim()),
clientSecretSet: Boolean(process.env.AUTH_OIDC_CLIENT_SECRET?.trim()),
authUrl: authUrl || null,
authSecretSet: Boolean(
process.env.AUTH_SECRET?.trim() &&
process.env.AUTH_SECRET !== "change-me-to-a-long-random-string"
),
callbackUrl: authUrl
? `${authUrl}/api/auth/callback/oidc`
: "/api/auth/callback/oidc",
hint: oidcEnabled
? "OIDC looks configured. Register callbackUrl exactly in your IdP."
: "Set AUTH_OIDC_ISSUER, AUTH_OIDC_CLIENT_ID, and AUTH_OIDC_CLIENT_SECRET, then restart.",
});
}
+4
View File
@@ -1,6 +1,10 @@
import { isOidcConfigured } from "@/lib/auth/oidc"; import { isOidcConfigured } from "@/lib/auth/oidc";
import { LoginPageClient } from "@/components/LoginPageClient"; import { LoginPageClient } from "@/components/LoginPageClient";
// OIDC env is only available at runtime (Docker). Never prerender this page
// at build time or the SSO button stays permanently hidden.
export const dynamic = "force-dynamic";
export default function LoginPage() { export default function LoginPage() {
return ( return (
<LoginPageClient <LoginPageClient
+46 -4
View File
@@ -1,6 +1,6 @@
"use client"; "use client";
import { FormEvent, useState } from "react"; import { FormEvent, useEffect, useState } from "react";
import { signIn } from "next-auth/react"; import { signIn } from "next-auth/react";
import { useRouter, useSearchParams } from "next/navigation"; import { useRouter, useSearchParams } from "next/navigation";
import { Suspense } from "react"; import { Suspense } from "react";
@@ -10,14 +10,56 @@ type Props = {
oidcName: string; oidcName: string;
}; };
type AuthConfig = {
oidcEnabled: boolean;
oidcName: string;
};
function authErrorMessage(code: string | null): string | null {
if (!code) return null;
switch (code) {
case "EmailRequired":
return "Your IdP did not return an email claim. Enable the email scope/claim for this OIDC client.";
case "OAuthCallbackError":
case "Callback":
return "OIDC callback failed. Check redirect URI, client secret, and container logs.";
case "OAuthSignin":
return "Could not start OIDC login. Check AUTH_OIDC_ISSUER discovery and client id.";
case "Configuration":
return "Auth configuration error. Verify AUTH_SECRET, AUTH_URL, and OIDC env vars.";
case "AccessDenied":
return "Access denied by the identity provider.";
default:
return `Sign-in error: ${code}`;
}
}
function LoginForm({ oidcEnabled, oidcName }: Props) { function LoginForm({ oidcEnabled, oidcName }: Props) {
const router = useRouter(); const router = useRouter();
const params = useSearchParams(); const params = useSearchParams();
const callbackUrl = params.get("callbackUrl") || "/"; const callbackUrl = params.get("callbackUrl") || "/";
const [email, setEmail] = useState(""); const [email, setEmail] = useState("");
const [password, setPassword] = useState(""); const [password, setPassword] = useState("");
const [error, setError] = useState<string | null>(null); const [error, setError] = useState<string | null>(
authErrorMessage(params.get("error"))
);
const [loading, setLoading] = useState(false); const [loading, setLoading] = useState(false);
const [runtimeOidc, setRuntimeOidc] = useState<AuthConfig | null>(null);
// Belt-and-suspenders: ask the live API so a stale static shell can't hide SSO
useEffect(() => {
fetch("/api/v1/auth/config")
.then((r) => (r.ok ? r.json() : null))
.then((data: AuthConfig | null) => {
if (data) setRuntimeOidc(data);
})
.catch(() => {
/* ignore */
});
}, []);
const showOidc = runtimeOidc?.oidcEnabled ?? oidcEnabled;
const displayName = runtimeOidc?.oidcName || oidcName;
async function onSubmit(e: FormEvent) { async function onSubmit(e: FormEvent) {
e.preventDefault(); e.preventDefault();
@@ -75,13 +117,13 @@ function LoginForm({ oidcEnabled, oidcName }: Props) {
<button className="btn" type="submit" disabled={loading}> <button className="btn" type="submit" disabled={loading}>
{loading ? "Signing in…" : "Sign in"} {loading ? "Signing in…" : "Sign in"}
</button> </button>
{oidcEnabled && ( {showOidc && (
<button <button
type="button" type="button"
className="btn btn-secondary" className="btn btn-secondary"
onClick={() => signIn("oidc", { callbackUrl })} onClick={() => signIn("oidc", { callbackUrl })}
> >
Sign in with {oidcName} Sign in with {displayName}
</button> </button>
)} )}
</form> </form>
+47 -6
View File
@@ -6,9 +6,9 @@ import { eq } from "drizzle-orm";
import { getDb } from "@/db/client"; import { getDb } from "@/db/client";
import { users } from "@/db/schema"; import { users } from "@/db/schema";
import { authConfig } from "@/lib/auth/auth.config"; import { authConfig } from "@/lib/auth/auth.config";
import { isOidcConfigured } from "@/lib/auth/oidc"; import { emailFromOidcProfile, isOidcConfigured } from "@/lib/auth/oidc";
export { isOidcConfigured } from "@/lib/auth/oidc"; export { emailFromOidcProfile, isOidcConfigured } from "@/lib/auth/oidc";
function buildProviders(): Provider[] { function buildProviders(): Provider[] {
const providers: Provider[] = [ const providers: Provider[] = [
@@ -36,15 +36,44 @@ function buildProviders(): Provider[] {
]; ];
if (isOidcConfigured()) { if (isOidcConfigured()) {
const issuer = process.env.AUTH_OIDC_ISSUER!.replace(/\/$/, "");
providers.push({ providers.push({
id: "oidc", id: "oidc",
name: process.env.AUTH_OIDC_NAME || "SSO", name: process.env.AUTH_OIDC_NAME || "SSO",
type: "oidc", type: "oidc",
issuer: process.env.AUTH_OIDC_ISSUER!, issuer,
wellKnown: `${issuer}/.well-known/openid-configuration`,
clientId: process.env.AUTH_OIDC_CLIENT_ID!, clientId: process.env.AUTH_OIDC_CLIENT_ID!,
clientSecret: process.env.AUTH_OIDC_CLIENT_SECRET!, clientSecret: process.env.AUTH_OIDC_CLIENT_SECRET!,
// Auth.js OIDC defaults to PKCE-only; Authelia requires a strong `state`
checks: ["pkce", "state"],
// Authelia (and many IdPs) put `email` on UserInfo, not the ID token.
// Auth.js OIDC otherwise only reads ID-token claims.
idToken: false,
authorization: {
params: {
scope: "openid email profile",
},
},
client: {
token_endpoint_auth_method: "client_secret_post",
},
// Link OIDC logins to existing local users by email // Link OIDC logins to existing local users by email
allowDangerousEmailAccountLinking: true, allowDangerousEmailAccountLinking: true,
profile(profile: Record<string, unknown>) {
const email = emailFromOidcProfile(profile);
return {
id: String(profile.sub ?? email ?? crypto.randomUUID()),
name:
(typeof profile.name === "string" && profile.name) ||
(typeof profile.preferred_username === "string" &&
profile.preferred_username) ||
email ||
"OIDC user",
email: email ?? undefined,
image: typeof profile.picture === "string" ? profile.picture : null,
};
},
} as Provider); } as Provider);
} }
@@ -56,12 +85,24 @@ export const { handlers, auth, signIn, signOut } = NextAuth({
providers: buildProviders(), providers: buildProviders(),
callbacks: { callbacks: {
...authConfig.callbacks, ...authConfig.callbacks,
async signIn({ user, account }) { async signIn({ user, account, profile }) {
if (account?.provider === "credentials") return true; if (account?.provider === "credentials") return true;
if (!user.email) return false;
const email =
user.email?.trim().toLowerCase() ||
emailFromOidcProfile((profile ?? {}) as Record<string, unknown>);
if (!email) {
console.error(
"[auth] OIDC sign-in rejected: no email in profile. Claim keys:",
profile ? Object.keys(profile) : []
);
return "/login?error=EmailRequired";
}
user.email = email;
const db = getDb(); const db = getDb();
const email = user.email.toLowerCase();
let existing = db.select().from(users).where(eq(users.email, email)).get(); let existing = db.select().from(users).where(eq(users.email, email)).get();
if (!existing) { if (!existing) {
const id = crypto.randomUUID(); const id = crypto.randomUUID();
+20
View File
@@ -5,3 +5,23 @@ export function isOidcConfigured(): boolean {
process.env.AUTH_OIDC_CLIENT_SECRET?.trim() process.env.AUTH_OIDC_CLIENT_SECRET?.trim()
); );
} }
/** Pull an email out of common OIDC claim shapes (Authelia, Keycloak, etc.). */
export function emailFromOidcProfile(
profile: Record<string, unknown>
): string | null {
const candidates = [
profile.email,
profile.preferred_username,
profile.upn,
profile.mail,
(profile.user as { email?: unknown } | undefined)?.email,
];
for (const value of candidates) {
if (typeof value !== "string") continue;
const trimmed = value.trim();
if (trimmed.includes("@")) return trimmed.toLowerCase();
}
return null;
}
+24
View File
@@ -0,0 +1,24 @@
import { describe, expect, it } from "vitest";
import { emailFromOidcProfile } from "@/lib/auth/oidc";
describe("emailFromOidcProfile", () => {
it("reads email claim", () => {
expect(emailFromOidcProfile({ email: "[email protected]" })).toBe(
"[email protected]"
);
});
it("falls back to preferred_username when it looks like an email", () => {
expect(
emailFromOidcProfile({ preferred_username: "[email protected]" })
).toBe("[email protected]");
});
it("ignores non-email preferred_username", () => {
expect(emailFromOidcProfile({ preferred_username: "nick" })).toBeNull();
});
it("returns null when nothing usable is present", () => {
expect(emailFromOidcProfile({ sub: "abc", name: "Nick" })).toBeNull();
});
});