mirror of
https://github.com/certctl-io/certctl.git
synced 2026-08-25 22:21:25 +02:00
Add SHA-256 API key authentication with constant-time comparison, configurable token bucket rate limiter, CORS origin allowlist middleware, and React auth context with login page. Auth info endpoint bootstraps GUI without credentials. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
25 lines
697 B
TypeScript
25 lines
697 B
TypeScript
import type { ReactNode } from 'react';
|
|
import { useAuth } from './AuthProvider';
|
|
import LoginPage from '../pages/LoginPage';
|
|
|
|
export default function AuthGate({ children }: { children: ReactNode }) {
|
|
const { loading, authRequired, authenticated } = useAuth();
|
|
|
|
if (loading) {
|
|
return (
|
|
<div className="min-h-screen bg-slate-900 flex items-center justify-center">
|
|
<div className="text-center">
|
|
<h1 className="text-2xl font-bold text-blue-400 mb-2">certctl</h1>
|
|
<p className="text-sm text-slate-400">Connecting...</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (authRequired && !authenticated) {
|
|
return <LoginPage />;
|
|
}
|
|
|
|
return <>{children}</>;
|
|
}
|