3a16d6e9b1
- Replace next-auth v5 beta with better-auth v1.6.2 (stable releases)
- Add multi-provider OAuth support with admin UI configuration
- New oauthProviders table with encrypted secrets (AES-256-GCM)
- Env var bootstrap (OAUTH_*) syncs to DB, UI-created providers fully editable
- OAuth provider REST API: GET/POST/PUT/DELETE /api/v1/oauth-providers
- Settings page "Authentication Providers" section for admin management
- Account linking uses new accounts table (multi-provider per user)
- Username plugin for credentials sign-in (replaces email@localhost pattern)
- bcrypt password compatibility (existing hashes work)
- Database-backed sessions via Kysely adapter (bun:sqlite direct)
- Configurable rate limiting via AUTH_RATE_LIMIT_* env vars
- All DB columns migrated from snake_case to camelCase
- All TypeScript types/models migrated to camelCase properties
- Removed casing: "snake_case" from Drizzle config
- Callback URL format: {baseUrl}/api/auth/oauth2/callback/{providerId}
- package-lock.json removed and gitignored (using bun.lock)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
import AuditLogClient from "./AuditLogClient";
|
|
import { listAuditEvents, countAuditEvents } from "@/src/lib/models/audit";
|
|
import { listUsers } from "@/src/lib/models/user";
|
|
import { requireAdmin } from "@/src/lib/auth";
|
|
|
|
const PER_PAGE = 50;
|
|
|
|
interface PageProps {
|
|
searchParams: Promise<{ page?: string; search?: string }>;
|
|
}
|
|
|
|
export default async function AuditLogPage({ searchParams }: PageProps) {
|
|
await requireAdmin();
|
|
const { page: pageParam, search: searchParam } = await searchParams;
|
|
const page = Math.max(1, parseInt(pageParam ?? "1", 10) || 1);
|
|
const search = searchParam?.trim() || undefined;
|
|
const offset = (page - 1) * PER_PAGE;
|
|
|
|
const [events, total, users] = await Promise.all([
|
|
listAuditEvents(PER_PAGE, offset, search),
|
|
countAuditEvents(search),
|
|
listUsers(),
|
|
]);
|
|
|
|
const userMap = new Map(users.map((user) => [user.id, user]));
|
|
|
|
return (
|
|
<AuditLogClient
|
|
events={events.map((event) => ({
|
|
id: event.id,
|
|
createdAt: event.createdAt,
|
|
summary: event.summary ?? `${event.action} on ${event.entityType}`,
|
|
user: event.userId
|
|
? userMap.get(event.userId)?.name ??
|
|
userMap.get(event.userId)?.email ??
|
|
"System"
|
|
: "System",
|
|
}))}
|
|
pagination={{ total, page, perPage: PER_PAGE }}
|
|
initialSearch={search ?? ""}
|
|
/>
|
|
);
|
|
}
|