Files
caddy-proxy-manager/app/(dashboard)/audit-log/AuditLogClient.tsx
fuomag9 3a16d6e9b1 Replace next-auth with Better Auth, migrate DB columns to camelCase
- 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>
2026-04-12 21:11:48 +02:00

128 lines
3.4 KiB
TypeScript

"use client";
import { useCallback, useEffect, useRef, useState } from "react";
import { usePathname, useRouter, useSearchParams } from "next/navigation";
import { Badge } from "@/components/ui/badge";
import { Card, CardContent } from "@/components/ui/card";
import { DataTable } from "@/components/ui/DataTable";
import { SearchField } from "@/components/ui/SearchField";
import { PageHeader } from "@/components/ui/PageHeader";
type EventRow = {
id: number;
createdAt: string;
user: string;
summary: string;
};
type Props = {
events: EventRow[];
pagination: { total: number; page: number; perPage: number };
initialSearch: string;
};
export default function AuditLogClient({ events, pagination, initialSearch }: Props) {
const router = useRouter();
const pathname = usePathname();
const searchParams = useSearchParams();
const [searchTerm, setSearchTerm] = useState(initialSearch);
useEffect(() => {
setSearchTerm(initialSearch);
}, [initialSearch]);
const debounceRef = useRef<ReturnType<typeof setTimeout> | null>(null);
const updateSearch = useCallback(
(value: string) => {
if (debounceRef.current) clearTimeout(debounceRef.current);
debounceRef.current = setTimeout(() => {
const params = new URLSearchParams(searchParams.toString());
if (value.trim()) {
params.set("search", value.trim());
} else {
params.delete("search");
}
params.delete("page"); // reset to page 1 on new search
router.push(`${pathname}?${params.toString()}`);
}, 400);
},
[router, pathname, searchParams]
);
useEffect(() => {
return () => {
if (debounceRef.current) clearTimeout(debounceRef.current);
};
}, []);
const columns = [
{
id: "created_at",
label: "Time",
width: 180,
render: (r: EventRow) => (
<span className="text-sm text-muted-foreground whitespace-nowrap">
{new Date(r.createdAt).toLocaleString()}
</span>
),
},
{
id: "user",
label: "User",
width: 160,
render: (r: EventRow) => (
<Badge variant="outline">{r.user}</Badge>
),
},
{
id: "summary",
label: "Event",
render: (r: EventRow) => (
<p className="text-sm">{r.summary}</p>
),
},
];
const mobileCard = (r: EventRow) => (
<Card>
<CardContent className="p-3 flex flex-col gap-1">
<div className="flex justify-between items-center">
<Badge variant="outline">{r.user}</Badge>
<span className="text-xs text-muted-foreground">
{new Date(r.createdAt).toLocaleString()}
</span>
</div>
<p className="text-sm">{r.summary}</p>
</CardContent>
</Card>
);
return (
<div className="flex flex-col gap-6 w-full">
<PageHeader
title="Audit Log"
description="Review configuration changes and user activity."
/>
<div className="flex items-center gap-2">
<SearchField
value={searchTerm}
onChange={(e) => {
setSearchTerm(e.target.value);
updateSearch(e.target.value);
}}
placeholder="Search audit log..."
/>
</div>
<DataTable
columns={columns}
data={events}
keyField="id"
emptyMessage="No audit events found"
pagination={pagination}
mobileCard={mobileCard}
/>
</div>
);
}