mirror of
https://github.com/Chewbaccalakis/rfid-database.git
synced 2026-09-10 00:11:56 -07:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
924b889f76 | ||
|
|
4593052348 | ||
|
|
d07bf72e23 | ||
|
|
3331944773 |
+4
-20
@@ -1,10 +1,4 @@
|
|||||||
AUTH_SECRET=change-me-to-a-long-random-string
|
AUTH_SECRET=change-me-to-a-long-random-string
|
||||||
|
|
||||||
# Public URL of this app (important behind reverse proxies / Docker)
|
|
||||||
# Example: http://localhost:3000 or https://rfid.example.com
|
|
||||||
# AUTH_URL=http://localhost:3000
|
|
||||||
# AUTH_TRUST_HOST=true
|
|
||||||
|
|
||||||
# Optional: path to SQLite file (default ./data/rfid.db)
|
# Optional: path to SQLite file (default ./data/rfid.db)
|
||||||
# RFID_DB_PATH=./data/rfid.db
|
# RFID_DB_PATH=./data/rfid.db
|
||||||
|
|
||||||
@@ -16,20 +10,10 @@ AUTH_SECRET=change-me-to-a-long-random-string
|
|||||||
# CREATE_USER_PASSWORD=changeme
|
# CREATE_USER_PASSWORD=changeme
|
||||||
# CREATE_USER_NAME=Admin
|
# CREATE_USER_NAME=Admin
|
||||||
|
|
||||||
# Optional OIDC (Authentik, Keycloak, Authelia, Google, etc.)
|
# Optional OIDC (Authentik, Keycloak, Authelia, etc.)
|
||||||
# Setting these three enables the "Sign in with SSO" button automatically
|
|
||||||
# (no NEXT_PUBLIC_* flag needed).
|
|
||||||
#
|
|
||||||
# In your IdP, create a confidential OIDC client with redirect URI:
|
|
||||||
# {AUTH_URL}/api/auth/callback/oidc
|
|
||||||
# e.g. http://localhost:3000/api/auth/callback/oidc
|
|
||||||
#
|
|
||||||
# AUTH_OIDC_ISSUER must be the issuer that serves
|
|
||||||
# {issuer}/.well-known/openid-configuration
|
|
||||||
# Authentik example: https://sso.example.com/application/o/rfid/
|
|
||||||
# Keycloak example: https://sso.example.com/realms/myrealm
|
|
||||||
#
|
|
||||||
# AUTH_OIDC_ISSUER=https://sso.example.com/application/o/rfid/
|
# AUTH_OIDC_ISSUER=https://sso.example.com/application/o/rfid/
|
||||||
# AUTH_OIDC_CLIENT_ID=
|
# AUTH_OIDC_CLIENT_ID=
|
||||||
# AUTH_OIDC_CLIENT_SECRET=
|
# AUTH_OIDC_CLIENT_SECRET=
|
||||||
# AUTH_OIDC_NAME=Authentik
|
# AUTH_OIDC_NAME=SSO
|
||||||
|
# NEXT_PUBLIC_AUTH_OIDC_ENABLED=1
|
||||||
|
# NEXT_PUBLIC_AUTH_OIDC_NAME=SSO
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check:
|
check:
|
||||||
name: lint-typecheck-test-build
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
@@ -19,6 +18,3 @@ jobs:
|
|||||||
- run: npm run lint
|
- run: npm run lint
|
||||||
- run: npm run typecheck
|
- run: npm run typecheck
|
||||||
- run: npm test
|
- run: npm test
|
||||||
- run: npm run build
|
|
||||||
env:
|
|
||||||
AUTH_SECRET: ci-build-secret-at-least-32-characters
|
|
||||||
|
|||||||
@@ -1,60 +0,0 @@
|
|||||||
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
|
|
||||||
@@ -30,65 +30,13 @@ Open http://localhost:3000 and sign in.
|
|||||||
| Variable | Required | Description |
|
| Variable | Required | Description |
|
||||||
|----------|----------|-------------|
|
|----------|----------|-------------|
|
||||||
| `AUTH_SECRET` | yes | NextAuth secret |
|
| `AUTH_SECRET` | yes | NextAuth secret |
|
||||||
| `AUTH_URL` | recommended | Public app URL (e.g. `https://rfid.example.com`) |
|
|
||||||
| `RFID_DB_PATH` | no | SQLite path (default `./data/rfid.db`) |
|
| `RFID_DB_PATH` | no | SQLite path (default `./data/rfid.db`) |
|
||||||
| `AUTH_OIDC_ISSUER` | for OIDC | Issuer URL (must expose `/.well-known/openid-configuration`) |
|
| `AUTH_OIDC_ISSUER` | no | OIDC issuer URL |
|
||||||
| `AUTH_OIDC_CLIENT_ID` | for OIDC | OIDC client id |
|
| `AUTH_OIDC_CLIENT_ID` | no | OIDC client id |
|
||||||
| `AUTH_OIDC_CLIENT_SECRET` | for OIDC | OIDC client secret |
|
| `AUTH_OIDC_CLIENT_SECRET` | no | OIDC client secret |
|
||||||
| `AUTH_OIDC_NAME` | no | SSO button label (default `SSO`) |
|
| `AUTH_OIDC_NAME` | no | Button label (default `SSO`) |
|
||||||
|
| `NEXT_PUBLIC_AUTH_OIDC_ENABLED` | no | Set `1` to show SSO button |
|
||||||
### Enabling OIDC
|
| `NEXT_PUBLIC_AUTH_OIDC_NAME` | no | Public SSO button label |
|
||||||
|
|
||||||
1. **Pull latest and rebuild** (OIDC button detection changed recently):
|
|
||||||
```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
|
|
||||||
```
|
|
||||||
Example: `https://rfid.atlashorizon.net/api/auth/callback/oidc`
|
|
||||||
4. Put these in `.env`:
|
|
||||||
```bash
|
|
||||||
AUTH_URL=https://rfid.atlashorizon.net
|
|
||||||
AUTH_SECRET=...long random...
|
|
||||||
AUTH_OIDC_ISSUER=https://auth.atlashorizon.net
|
|
||||||
AUTH_OIDC_CLIENT_ID=rfiddb
|
|
||||||
AUTH_OIDC_CLIENT_SECRET=...
|
|
||||||
AUTH_OIDC_NAME=AtlasHorizon
|
|
||||||
```
|
|
||||||
5. Restart, then verify the running app sees config (no secrets returned):
|
|
||||||
```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:
|
|
||||||
- `AUTH_OIDC_ISSUER` must match discovery (`{issuer}/.well-known/openid-configuration`).
|
|
||||||
- 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.
|
|
||||||
- If the button is missing, you are almost certainly on an old image — rebuild.
|
|
||||||
|
|
||||||
## REST API (`/api/v1`)
|
## REST API (`/api/v1`)
|
||||||
|
|
||||||
@@ -132,29 +80,9 @@ curl -sH "Authorization: Bearer $TOKEN" -H "Content-Type: application/json" \
|
|||||||
npm test
|
npm test
|
||||||
npm run lint
|
npm run lint
|
||||||
npm run typecheck
|
npm run typecheck
|
||||||
npm run build
|
|
||||||
```
|
```
|
||||||
|
|
||||||
GitHub Actions on every pull request and push to `main`:
|
GitHub Actions runs lint, typecheck, and tests on every pull request and push to `main`.
|
||||||
|
|
||||||
1. **lint / typecheck / test / Next.js build**
|
|
||||||
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
|
||||||
|
|
||||||
|
|||||||
+5
-6
@@ -1,13 +1,9 @@
|
|||||||
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:
|
||||||
@@ -20,12 +16,15 @@ services:
|
|||||||
PORT: "3000"
|
PORT: "3000"
|
||||||
HOSTNAME: 0.0.0.0
|
HOSTNAME: 0.0.0.0
|
||||||
AUTH_TRUST_HOST: "true"
|
AUTH_TRUST_HOST: "true"
|
||||||
# OIDC: set AUTH_OIDC_ISSUER / CLIENT_ID / CLIENT_SECRET (and AUTH_URL)
|
|
||||||
# in .env — the login page picks them up at runtime.
|
|
||||||
# Optional bootstrap (only creates if missing):
|
# Optional bootstrap (only creates if missing):
|
||||||
# CREATE_USER_EMAIL: [email protected]
|
# CREATE_USER_EMAIL: [email protected]
|
||||||
# CREATE_USER_PASSWORD: change-me
|
# CREATE_USER_PASSWORD: change-me
|
||||||
# CREATE_USER_NAME: Admin
|
# CREATE_USER_NAME: Admin
|
||||||
|
# Optional OIDC — also set NEXT_PUBLIC_* in .env if using SSO button
|
||||||
|
# AUTH_OIDC_ISSUER: ${AUTH_OIDC_ISSUER:-}
|
||||||
|
# AUTH_OIDC_CLIENT_ID: ${AUTH_OIDC_CLIENT_ID:-}
|
||||||
|
# AUTH_OIDC_CLIENT_SECRET: ${AUTH_OIDC_CLIENT_SECRET:-}
|
||||||
|
# AUTH_OIDC_NAME: ${AUTH_OIDC_NAME:-SSO}
|
||||||
volumes:
|
volumes:
|
||||||
- rfid-data:/data
|
- rfid-data:/data
|
||||||
healthcheck:
|
healthcheck:
|
||||||
|
|||||||
@@ -1,30 +0,0 @@
|
|||||||
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.",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
+89
-9
@@ -1,15 +1,95 @@
|
|||||||
import { isOidcConfigured } from "@/lib/auth/oidc";
|
"use client";
|
||||||
import { LoginPageClient } from "@/components/LoginPageClient";
|
|
||||||
|
|
||||||
// OIDC env is only available at runtime (Docker). Never prerender this page
|
import { FormEvent, useState } from "react";
|
||||||
// at build time or the SSO button stays permanently hidden.
|
import { signIn } from "next-auth/react";
|
||||||
export const dynamic = "force-dynamic";
|
import { useRouter, useSearchParams } from "next/navigation";
|
||||||
|
import { Suspense } from "react";
|
||||||
|
|
||||||
|
function LoginForm() {
|
||||||
|
const router = useRouter();
|
||||||
|
const params = useSearchParams();
|
||||||
|
const callbackUrl = params.get("callbackUrl") || "/";
|
||||||
|
const [email, setEmail] = useState("");
|
||||||
|
const [password, setPassword] = useState("");
|
||||||
|
const [error, setError] = useState<string | null>(null);
|
||||||
|
const [loading, setLoading] = useState(false);
|
||||||
|
const oidcName = process.env.NEXT_PUBLIC_AUTH_OIDC_NAME || "SSO";
|
||||||
|
const oidcEnabled = process.env.NEXT_PUBLIC_AUTH_OIDC_ENABLED === "1";
|
||||||
|
|
||||||
|
async function onSubmit(e: FormEvent) {
|
||||||
|
e.preventDefault();
|
||||||
|
setLoading(true);
|
||||||
|
setError(null);
|
||||||
|
const res = await signIn("credentials", {
|
||||||
|
email,
|
||||||
|
password,
|
||||||
|
redirect: false,
|
||||||
|
callbackUrl,
|
||||||
|
});
|
||||||
|
setLoading(false);
|
||||||
|
if (res?.error) {
|
||||||
|
setError("Invalid email or password");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
router.push(callbackUrl);
|
||||||
|
router.refresh();
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div style={{ maxWidth: 400, margin: "3rem auto" }}>
|
||||||
|
<h1 className="page-title">RFID Database</h1>
|
||||||
|
<p className="page-sub">Sign in to manage site tag dumps</p>
|
||||||
|
{error && <div className="error-banner">{error}</div>}
|
||||||
|
<form className="panel stack" onSubmit={onSubmit}>
|
||||||
|
<div className="field">
|
||||||
|
<label className="label" htmlFor="email">
|
||||||
|
Email
|
||||||
|
</label>
|
||||||
|
<input
|
||||||
|
id="email"
|
||||||
|
className="input"
|
||||||
|
type="email"
|
||||||
|
autoComplete="username"
|
||||||
|
value={email}
|
||||||
|
onChange={(e) => setEmail(e.target.value)}
|
||||||
|
required
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="field">
|
||||||
|
<label className="label" htmlFor="password">
|
||||||
|
Password
|
||||||
|
</label>
|
||||||
|
<input
|
||||||
|
id="password"
|
||||||
|
className="input"
|
||||||
|
type="password"
|
||||||
|
autoComplete="current-password"
|
||||||
|
value={password}
|
||||||
|
onChange={(e) => setPassword(e.target.value)}
|
||||||
|
required
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<button className="btn" type="submit" disabled={loading}>
|
||||||
|
{loading ? "Signing in…" : "Sign in"}
|
||||||
|
</button>
|
||||||
|
{oidcEnabled && (
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="btn btn-secondary"
|
||||||
|
onClick={() => signIn("oidc", { callbackUrl })}
|
||||||
|
>
|
||||||
|
Sign in with {oidcName}
|
||||||
|
</button>
|
||||||
|
)}
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
export default function LoginPage() {
|
export default function LoginPage() {
|
||||||
return (
|
return (
|
||||||
<LoginPageClient
|
<Suspense>
|
||||||
oidcEnabled={isOidcConfigured()}
|
<LoginForm />
|
||||||
oidcName={process.env.AUTH_OIDC_NAME || "SSO"}
|
</Suspense>
|
||||||
/>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,140 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import { FormEvent, useEffect, useState } from "react";
|
|
||||||
import { signIn } from "next-auth/react";
|
|
||||||
import { useRouter, useSearchParams } from "next/navigation";
|
|
||||||
import { Suspense } from "react";
|
|
||||||
|
|
||||||
type Props = {
|
|
||||||
oidcEnabled: boolean;
|
|
||||||
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) {
|
|
||||||
const router = useRouter();
|
|
||||||
const params = useSearchParams();
|
|
||||||
const callbackUrl = params.get("callbackUrl") || "/";
|
|
||||||
const [email, setEmail] = useState("");
|
|
||||||
const [password, setPassword] = useState("");
|
|
||||||
const [error, setError] = useState<string | null>(
|
|
||||||
authErrorMessage(params.get("error"))
|
|
||||||
);
|
|
||||||
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) {
|
|
||||||
e.preventDefault();
|
|
||||||
setLoading(true);
|
|
||||||
setError(null);
|
|
||||||
const res = await signIn("credentials", {
|
|
||||||
email,
|
|
||||||
password,
|
|
||||||
redirect: false,
|
|
||||||
callbackUrl,
|
|
||||||
});
|
|
||||||
setLoading(false);
|
|
||||||
if (res?.error) {
|
|
||||||
setError("Invalid email or password");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
router.push(callbackUrl);
|
|
||||||
router.refresh();
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div style={{ maxWidth: 400, margin: "3rem auto" }}>
|
|
||||||
<h1 className="page-title">RFID Database</h1>
|
|
||||||
<p className="page-sub">Sign in to manage site tag dumps</p>
|
|
||||||
{error && <div className="error-banner">{error}</div>}
|
|
||||||
<form className="panel stack" onSubmit={onSubmit}>
|
|
||||||
<div className="field">
|
|
||||||
<label className="label" htmlFor="email">
|
|
||||||
Email
|
|
||||||
</label>
|
|
||||||
<input
|
|
||||||
id="email"
|
|
||||||
className="input"
|
|
||||||
type="email"
|
|
||||||
autoComplete="username"
|
|
||||||
value={email}
|
|
||||||
onChange={(e) => setEmail(e.target.value)}
|
|
||||||
required
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div className="field">
|
|
||||||
<label className="label" htmlFor="password">
|
|
||||||
Password
|
|
||||||
</label>
|
|
||||||
<input
|
|
||||||
id="password"
|
|
||||||
className="input"
|
|
||||||
type="password"
|
|
||||||
autoComplete="current-password"
|
|
||||||
value={password}
|
|
||||||
onChange={(e) => setPassword(e.target.value)}
|
|
||||||
required
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<button className="btn" type="submit" disabled={loading}>
|
|
||||||
{loading ? "Signing in…" : "Sign in"}
|
|
||||||
</button>
|
|
||||||
{showOidc && (
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
className="btn btn-secondary"
|
|
||||||
onClick={() => signIn("oidc", { callbackUrl })}
|
|
||||||
>
|
|
||||||
Sign in with {displayName}
|
|
||||||
</button>
|
|
||||||
)}
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function LoginPageClient(props: Props) {
|
|
||||||
return (
|
|
||||||
<Suspense>
|
|
||||||
<LoginForm {...props} />
|
|
||||||
</Suspense>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
+17
-51
@@ -6,9 +6,6 @@ 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 { emailFromOidcProfile, isOidcConfigured } from "@/lib/auth/oidc";
|
|
||||||
|
|
||||||
export { emailFromOidcProfile, isOidcConfigured } from "@/lib/auth/oidc";
|
|
||||||
|
|
||||||
function buildProviders(): Provider[] {
|
function buildProviders(): Provider[] {
|
||||||
const providers: Provider[] = [
|
const providers: Provider[] = [
|
||||||
@@ -35,45 +32,18 @@ function buildProviders(): Provider[] {
|
|||||||
}),
|
}),
|
||||||
];
|
];
|
||||||
|
|
||||||
if (isOidcConfigured()) {
|
const issuer = process.env.AUTH_OIDC_ISSUER;
|
||||||
const issuer = process.env.AUTH_OIDC_ISSUER!.replace(/\/$/, "");
|
const clientId = process.env.AUTH_OIDC_CLIENT_ID;
|
||||||
|
const clientSecret = process.env.AUTH_OIDC_CLIENT_SECRET;
|
||||||
|
if (issuer && clientId && clientSecret) {
|
||||||
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,
|
issuer,
|
||||||
wellKnown: `${issuer}/.well-known/openid-configuration`,
|
clientId,
|
||||||
clientId: process.env.AUTH_OIDC_CLIENT_ID!,
|
clientSecret,
|
||||||
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
|
|
||||||
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -85,24 +55,12 @@ export const { handlers, auth, signIn, signOut } = NextAuth({
|
|||||||
providers: buildProviders(),
|
providers: buildProviders(),
|
||||||
callbacks: {
|
callbacks: {
|
||||||
...authConfig.callbacks,
|
...authConfig.callbacks,
|
||||||
async signIn({ user, account, profile }) {
|
async signIn({ user, account }) {
|
||||||
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();
|
||||||
@@ -124,3 +82,11 @@ export const { handlers, auth, signIn, signOut } = NextAuth({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
export function isOidcConfigured(): boolean {
|
||||||
|
return Boolean(
|
||||||
|
process.env.AUTH_OIDC_ISSUER &&
|
||||||
|
process.env.AUTH_OIDC_CLIENT_ID &&
|
||||||
|
process.env.AUTH_OIDC_CLIENT_SECRET
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,27 +0,0 @@
|
|||||||
export function isOidcConfigured(): boolean {
|
|
||||||
return Boolean(
|
|
||||||
process.env.AUTH_OIDC_ISSUER?.trim() &&
|
|
||||||
process.env.AUTH_OIDC_CLIENT_ID?.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;
|
|
||||||
}
|
|
||||||
@@ -21,10 +21,6 @@ import { GET as getTags, POST as postTag } from "@/app/api/v1/tags/route";
|
|||||||
import { PUT as putByUid } from "@/app/api/v1/tags/by-uid/[uid]/route";
|
import { PUT as putByUid } from "@/app/api/v1/tags/by-uid/[uid]/route";
|
||||||
import { GET as getExport } from "@/app/api/v1/tags/[id]/export/route";
|
import { GET as getExport } from "@/app/api/v1/tags/[id]/export/route";
|
||||||
import { GET as listTokens, POST as createToken } from "@/app/api/v1/tokens/route";
|
import { GET as listTokens, POST as createToken } from "@/app/api/v1/tokens/route";
|
||||||
import { DELETE as deleteToken } from "@/app/api/v1/tokens/[id]/route";
|
|
||||||
import { GET as search } from "@/app/api/v1/search/route";
|
|
||||||
import { GET as getBackup, POST as postBackup } from "@/app/api/v1/backup/route";
|
|
||||||
import { POST as importTag } from "@/app/api/v1/tags/import/route";
|
|
||||||
import { NextRequest } from "next/server";
|
import { NextRequest } from "next/server";
|
||||||
|
|
||||||
function req(url: string, init?: ConstructorParameters<typeof NextRequest>[1]) {
|
function req(url: string, init?: ConstructorParameters<typeof NextRequest>[1]) {
|
||||||
@@ -193,81 +189,9 @@ describe("API v1 integration", () => {
|
|||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
||||||
const revoked = await deleteToken(
|
|
||||||
req(`http://localhost/api/v1/tokens/${data.id}`, {
|
|
||||||
method: "DELETE",
|
|
||||||
headers: auth,
|
|
||||||
}),
|
|
||||||
{ params: Promise.resolve({ id: data.id }) }
|
|
||||||
);
|
|
||||||
expect(revoked.status).toBe(200);
|
|
||||||
|
|
||||||
const db = getDb();
|
const db = getDb();
|
||||||
const user = db.select().from(users).where(eq(users.id, userId)).get();
|
const user = db.select().from(users).where(eq(users.id, userId)).get();
|
||||||
expect(user?.email).toBe("[email protected]");
|
expect(user?.email).toBe("[email protected]");
|
||||||
expect(db.select().from(sites).all().length).toBeGreaterThanOrEqual(0);
|
expect(db.select().from(sites).all().length).toBeGreaterThanOrEqual(0);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("searches, imports MCT, and backs up", async () => {
|
|
||||||
const auth = { Authorization: `Bearer ${bearer}` };
|
|
||||||
|
|
||||||
const siteRes = await postSite(
|
|
||||||
req("http://localhost/api/v1/sites", {
|
|
||||||
method: "POST",
|
|
||||||
headers: { ...auth, "Content-Type": "application/json" },
|
|
||||||
body: JSON.stringify({ code: "C", name: "Lab" }),
|
|
||||||
})
|
|
||||||
);
|
|
||||||
const site = await siteRes.json();
|
|
||||||
|
|
||||||
const mct = `+UID: AABBCCDD
|
|
||||||
+Sector: 0
|
|
||||||
AABBCCDD00112233445566778899AABB
|
|
||||||
00000000000000000000000000000000
|
|
||||||
00000000000000000000000000000000
|
|
||||||
FFFFFFFFFFFFFF078069FFFFFFFFFFFF
|
|
||||||
`;
|
|
||||||
|
|
||||||
const imported = await importTag(
|
|
||||||
req("http://localhost/api/v1/tags/import", {
|
|
||||||
method: "POST",
|
|
||||||
headers: { ...auth, "Content-Type": "application/json" },
|
|
||||||
body: JSON.stringify({
|
|
||||||
siteId: site.id,
|
|
||||||
label: "Imported fob",
|
|
||||||
content: mct,
|
|
||||||
filename: "sample.mct",
|
|
||||||
}),
|
|
||||||
})
|
|
||||||
);
|
|
||||||
expect(imported.status).toBe(201);
|
|
||||||
const tag = await imported.json();
|
|
||||||
expect(tag.uid).toBe("AABBCCDD");
|
|
||||||
|
|
||||||
const searchRes = await search(
|
|
||||||
req("http://localhost/api/v1/search?q=Imported", { headers: auth })
|
|
||||||
);
|
|
||||||
expect(searchRes.status).toBe(200);
|
|
||||||
const found = await searchRes.json();
|
|
||||||
expect(found.tags.some((t: { label: string }) => t.label === "Imported fob")).toBe(
|
|
||||||
true
|
|
||||||
);
|
|
||||||
|
|
||||||
const backupRes = await getBackup(
|
|
||||||
req("http://localhost/api/v1/backup", { headers: auth })
|
|
||||||
);
|
|
||||||
expect(backupRes.status).toBe(200);
|
|
||||||
const backup = await backupRes.json();
|
|
||||||
expect(backup.sites.length).toBeGreaterThanOrEqual(1);
|
|
||||||
expect(backup.tags.length).toBeGreaterThanOrEqual(1);
|
|
||||||
|
|
||||||
const restore = await postBackup(
|
|
||||||
req("http://localhost/api/v1/backup", {
|
|
||||||
method: "POST",
|
|
||||||
headers: { ...auth, "Content-Type": "application/json" },
|
|
||||||
body: JSON.stringify({ ...backup, mode: "merge" }),
|
|
||||||
})
|
|
||||||
);
|
|
||||||
expect(restore.status).toBe(200);
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,90 +0,0 @@
|
|||||||
import { describe, expect, it } from "vitest";
|
|
||||||
import { exportTag } from "@/lib/rfid/exporters";
|
|
||||||
import {
|
|
||||||
dumpDataSchema,
|
|
||||||
mifareClassicDumpSchema,
|
|
||||||
siteCreateSchema,
|
|
||||||
tagCreateSchema,
|
|
||||||
} from "@/lib/validation/rfid";
|
|
||||||
|
|
||||||
const classicDump = {
|
|
||||||
size: "1K" as const,
|
|
||||||
sectors: [
|
|
||||||
{
|
|
||||||
index: 0,
|
|
||||||
blocks: [
|
|
||||||
"04A1B2C304A1B2C304A1B2C304A1B2C3",
|
|
||||||
"00000000000000000000000000000000",
|
|
||||||
"00000000000000000000000000000000",
|
|
||||||
"FFFFFFFFFFFFFF078069FFFFFFFFFFFF",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
|
|
||||||
const sampleTag = {
|
|
||||||
id: "00000000-0000-4000-8000-000000000001",
|
|
||||||
label: "Dock fob",
|
|
||||||
frequency: "HF",
|
|
||||||
protocol: "MIFARE_CLASSIC_1K",
|
|
||||||
uid: "04A1B2C3",
|
|
||||||
dumpData: classicDump,
|
|
||||||
keys: { A: ["FFFFFFFFFFFF"], B: [] },
|
|
||||||
notes: null as string | null,
|
|
||||||
};
|
|
||||||
|
|
||||||
describe("exporters", () => {
|
|
||||||
it("exports canonical JSON", () => {
|
|
||||||
const out = exportTag(sampleTag, "json");
|
|
||||||
expect(out.contentType).toBe("application/json");
|
|
||||||
const parsed = JSON.parse(out.body);
|
|
||||||
expect(parsed.uid).toBe("04A1B2C3");
|
|
||||||
expect(parsed.dumpData.size).toBe("1K");
|
|
||||||
});
|
|
||||||
|
|
||||||
it("exports proxmark JSON with blocks", () => {
|
|
||||||
const out = exportTag(sampleTag, "proxmark");
|
|
||||||
const parsed = JSON.parse(out.body);
|
|
||||||
expect(parsed.FileType).toBe("mfcard");
|
|
||||||
expect(parsed.blocks).toHaveLength(4);
|
|
||||||
expect(parsed.Card.UID).toBe("04A1B2C3");
|
|
||||||
});
|
|
||||||
|
|
||||||
it("exports MCT text", () => {
|
|
||||||
const out = exportTag(sampleTag, "mct");
|
|
||||||
expect(out.body).toContain("+UID: 04A1B2C3");
|
|
||||||
expect(out.body).toContain("+Sector: 0");
|
|
||||||
});
|
|
||||||
|
|
||||||
it("exports hex listing", () => {
|
|
||||||
const out = exportTag(sampleTag, "hex");
|
|
||||||
expect(out.body).toContain("# UID 04A1B2C3");
|
|
||||||
expect(out.body).toContain("S0B0");
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe("validation schemas", () => {
|
|
||||||
it("accepts valid classic dump", () => {
|
|
||||||
expect(mifareClassicDumpSchema.safeParse(classicDump).success).toBe(true);
|
|
||||||
expect(dumpDataSchema.safeParse(classicDump).success).toBe(true);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("rejects invalid site codes", () => {
|
|
||||||
expect(
|
|
||||||
siteCreateSchema.safeParse({ name: "Lab", code: "bad code!" }).success
|
|
||||||
).toBe(false);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("accepts valid tag create payload", () => {
|
|
||||||
const parsed = tagCreateSchema.safeParse({
|
|
||||||
siteId: "00000000-0000-4000-8000-000000000099",
|
|
||||||
label: "Dock",
|
|
||||||
frequency: "HF",
|
|
||||||
protocol: "MIFARE_CLASSIC_1K",
|
|
||||||
uid: "04:A1:B2:C3",
|
|
||||||
dumpData: classicDump,
|
|
||||||
keys: { A: ["FFFFFFFFFFFF"] },
|
|
||||||
});
|
|
||||||
expect(parsed.success).toBe(true);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
import { afterEach, describe, expect, it } from "vitest";
|
|
||||||
import { isOidcConfigured } from "@/lib/auth/oidc";
|
|
||||||
|
|
||||||
describe("isOidcConfigured", () => {
|
|
||||||
const keys = [
|
|
||||||
"AUTH_OIDC_ISSUER",
|
|
||||||
"AUTH_OIDC_CLIENT_ID",
|
|
||||||
"AUTH_OIDC_CLIENT_SECRET",
|
|
||||||
] as const;
|
|
||||||
const previous: Record<string, string | undefined> = {};
|
|
||||||
|
|
||||||
afterEach(() => {
|
|
||||||
for (const key of keys) {
|
|
||||||
if (previous[key] === undefined) delete process.env[key];
|
|
||||||
else process.env[key] = previous[key];
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function save() {
|
|
||||||
for (const key of keys) previous[key] = process.env[key];
|
|
||||||
}
|
|
||||||
|
|
||||||
it("is false when any var is missing", () => {
|
|
||||||
save();
|
|
||||||
delete process.env.AUTH_OIDC_ISSUER;
|
|
||||||
delete process.env.AUTH_OIDC_CLIENT_ID;
|
|
||||||
delete process.env.AUTH_OIDC_CLIENT_SECRET;
|
|
||||||
expect(isOidcConfigured()).toBe(false);
|
|
||||||
|
|
||||||
process.env.AUTH_OIDC_ISSUER = "https://sso.example.com/";
|
|
||||||
process.env.AUTH_OIDC_CLIENT_ID = "id";
|
|
||||||
expect(isOidcConfigured()).toBe(false);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("is true when all three are set", () => {
|
|
||||||
save();
|
|
||||||
process.env.AUTH_OIDC_ISSUER = "https://sso.example.com/";
|
|
||||||
process.env.AUTH_OIDC_CLIENT_ID = "id";
|
|
||||||
process.env.AUTH_OIDC_CLIENT_SECRET = "secret";
|
|
||||||
expect(isOidcConfigured()).toBe(true);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
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();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
Reference in New Issue
Block a user