Merge pull request #714 from Luca-Timo/feat/first-run-setup-wizard
feat: zero-config first run — in-browser admin bootstrap + auto-generated secrets
This commit is contained in:
@@ -79,6 +79,8 @@ import { MaintenanceWrapper } from './components/MaintenanceWrapper';
|
||||
import { GlobalThemeProvider } from './components/GlobalThemeProvider';
|
||||
import { ConfirmDialogProvider } from './components/common';
|
||||
import { usePublicSettings } from './hooks/usePublicSettings';
|
||||
import { SetupPage } from './pages/SetupPage';
|
||||
import { AdminAuthProvider } from './contexts';
|
||||
|
||||
// Create a client
|
||||
const queryClient = new QueryClient({
|
||||
@@ -214,6 +216,13 @@ function App() {
|
||||
</GalleryAuthProvider>
|
||||
} />
|
||||
|
||||
{/* First-run setup — public, self-closes once an admin exists */}
|
||||
<Route path="/setup" element={
|
||||
<AdminAuthProvider>
|
||||
<SetupPage />
|
||||
</AdminAuthProvider>
|
||||
} />
|
||||
|
||||
{/* Admin routes - wrap with AdminAuthProvider */}
|
||||
<Route path="/admin" element={<AdminAuthWrapper />}>
|
||||
<Route path="login" element={<AdminLoginPage />} />
|
||||
|
||||
@@ -3462,6 +3462,40 @@
|
||||
"regenerateToken": "Link neu generieren",
|
||||
"tokenRegenerated": "Kundenzugangs-Link neu generiert"
|
||||
},
|
||||
"setup": {
|
||||
"title": "Willkommen bei PicPeak",
|
||||
"subtitle": "Erstellen Sie Ihr Administrator-Konto, um loszulegen",
|
||||
"tokenStepSubtitle": "Geben Sie zunächst Ihren einmaligen Setup-Token ein",
|
||||
"accountStepSubtitle": "Erstellen Sie nun Ihr Administrator-Konto",
|
||||
"stepOf": "Schritt {{current}} von {{total}}",
|
||||
"continue": "Weiter",
|
||||
"back": "Zurück",
|
||||
"tokenLabel": "Setup-Token",
|
||||
"tokenPlaceholder": "Einmaligen Setup-Token einfügen",
|
||||
"tokenHint": "Wird beim ersten Start in den Server-Logs ausgegeben (auch in data/SETUP_TOKEN gespeichert).",
|
||||
"tokenRequired": "Der Setup-Token ist erforderlich",
|
||||
"tokenCommandLabel": "Token nicht gefunden? Führen Sie dies im Projektverzeichnis aus:",
|
||||
"copyCommand": "Befehl kopieren",
|
||||
"tokenRotatedLink": "Logs bereits rotiert? Zur Einrichtungsanleitung",
|
||||
"tokenLocationHint": "Nicht gefunden? Führen Sie aus: docker compose logs backend | grep -i \"setup token\"",
|
||||
"invalidToken": "Dieser Setup-Token ist ungültig.",
|
||||
"passwordRequirements": "Verwenden Sie mindestens 8 Zeichen mit einem Groß- und einem Kleinbuchstaben sowie einer Ziffer.",
|
||||
"emailLabel": "E-Mail-Adresse",
|
||||
"emailPlaceholder": "[email protected]",
|
||||
"emailRequired": "E-Mail ist erforderlich",
|
||||
"invalidEmail": "Bitte geben Sie eine gültige E-Mail-Adresse ein",
|
||||
"passwordLabel": "Passwort",
|
||||
"passwordPlaceholder": "Wählen Sie ein sicheres Passwort",
|
||||
"passwordRequired": "Passwort ist erforderlich",
|
||||
"passwordMinLength": "Das Passwort muss mindestens 8 Zeichen lang sein",
|
||||
"confirmLabel": "Passwort bestätigen",
|
||||
"confirmPlaceholder": "Passwort erneut eingeben",
|
||||
"passwordMismatch": "Die Passwörter stimmen nicht überein",
|
||||
"submit": "Admin-Konto erstellen",
|
||||
"success": "Admin-Konto erstellt. Willkommen!",
|
||||
"genericError": "Einrichtung fehlgeschlagen. Bitte versuchen Sie es erneut.",
|
||||
"tooManyAttempts": "Zu viele Versuche. Bitte warten Sie einen Moment und versuchen Sie es erneut."
|
||||
},
|
||||
"adminLogin": {
|
||||
"title": "Admin-Anmeldung",
|
||||
"subtitle": "Melden Sie sich an, um Ihre Fotogalerien zu verwalten",
|
||||
|
||||
@@ -3358,6 +3358,40 @@
|
||||
"fourStarsPlus": "4+ Stars",
|
||||
"fiveStarsOnly": "5 Stars Only"
|
||||
},
|
||||
"setup": {
|
||||
"title": "Welcome to PicPeak",
|
||||
"subtitle": "Create your administrator account to get started",
|
||||
"tokenStepSubtitle": "First, enter your one-time setup token",
|
||||
"accountStepSubtitle": "Now create your administrator account",
|
||||
"stepOf": "Step {{current}} of {{total}}",
|
||||
"continue": "Continue",
|
||||
"back": "Back",
|
||||
"tokenLabel": "Setup token",
|
||||
"tokenPlaceholder": "Paste the one-time setup token",
|
||||
"tokenHint": "Printed to the server logs on first start (also saved to data/SETUP_TOKEN).",
|
||||
"tokenRequired": "The setup token is required",
|
||||
"tokenCommandLabel": "Can't find your token? Run this in the project directory:",
|
||||
"copyCommand": "Copy command",
|
||||
"tokenRotatedLink": "Logs already rotated away? Read the setup guide",
|
||||
"tokenLocationHint": "Can't find it? Run: docker compose logs backend | grep -i \"setup token\"",
|
||||
"invalidToken": "That setup token is not valid.",
|
||||
"passwordRequirements": "Use at least 8 characters with an upper-case letter, a lower-case letter and a number.",
|
||||
"emailLabel": "Email address",
|
||||
"emailPlaceholder": "[email protected]",
|
||||
"emailRequired": "Email is required",
|
||||
"invalidEmail": "Please enter a valid email address",
|
||||
"passwordLabel": "Password",
|
||||
"passwordPlaceholder": "Choose a strong password",
|
||||
"passwordRequired": "Password is required",
|
||||
"passwordMinLength": "Password must be at least 8 characters",
|
||||
"confirmLabel": "Confirm password",
|
||||
"confirmPlaceholder": "Re-enter your password",
|
||||
"passwordMismatch": "Passwords do not match",
|
||||
"submit": "Create admin account",
|
||||
"success": "Admin account created. Welcome!",
|
||||
"genericError": "Setup failed. Please try again.",
|
||||
"tooManyAttempts": "Too many attempts. Please wait a moment and try again."
|
||||
},
|
||||
"adminLogin": {
|
||||
"title": "Admin Login",
|
||||
"subtitle": "Sign in to manage your photo galleries",
|
||||
|
||||
@@ -0,0 +1,358 @@
|
||||
import React, { useState } from 'react';
|
||||
import { Navigate, useNavigate } from 'react-router-dom';
|
||||
import { useQuery } from '@tanstack/react-query';
|
||||
import { Key, Mail, Lock, Eye, EyeOff, AlertCircle, ArrowLeft, ArrowRight, Copy, Check, ExternalLink } from 'lucide-react';
|
||||
import { toast } from 'react-toastify';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
|
||||
import { Button, Input, Card, Loading } from '../components/common';
|
||||
import { useAdminAuth } from '../contexts';
|
||||
import { setupService } from '../services/setup.service';
|
||||
import { resolveLoginLogoClasses } from '../utils/loginLogoSize';
|
||||
import type { AdminUser } from '../types';
|
||||
|
||||
// Where the first-run setup is documented, for the case where the server logs
|
||||
// have already rotated away and the admin can no longer grep the token out.
|
||||
const SETUP_DOCS_URL =
|
||||
'https://github.com/PicPeak/picpeak/blob/main/README.md#first-run--create-your-admin-account';
|
||||
|
||||
// First-run screen. Reached on a fresh instance where no admin account exists
|
||||
// yet — creates the first (super_admin) account from the browser using the
|
||||
// one-time setup token printed to the server logs. Once an admin exists the
|
||||
// endpoints self-close and this page redirects to the login.
|
||||
//
|
||||
// Split into two steps so the token-recovery guidance gets the space it needs:
|
||||
// 1. paste the one-time setup token (with the `docker compose logs` recovery
|
||||
// command shown prominently right under the field)
|
||||
// 2. choose the admin email + password
|
||||
export const SetupPage: React.FC = () => {
|
||||
const { t } = useTranslation();
|
||||
const navigate = useNavigate();
|
||||
const { login } = useAdminAuth();
|
||||
|
||||
const { data: status, isLoading: statusLoading, isError: statusError } = useQuery({
|
||||
queryKey: ['setup-status'],
|
||||
queryFn: setupService.getSetupStatus,
|
||||
retry: false,
|
||||
staleTime: Infinity,
|
||||
});
|
||||
|
||||
const [step, setStep] = useState<'token' | 'account'>('token');
|
||||
const [form, setForm] = useState({ token: '', email: '', password: '', confirm: '' });
|
||||
const [showPassword, setShowPassword] = useState(false);
|
||||
const [isSubmitting, setIsSubmitting] = useState(false);
|
||||
const [isVerifyingToken, setIsVerifyingToken] = useState(false);
|
||||
const [copied, setCopied] = useState(false);
|
||||
const [errors, setErrors] = useState<Record<string, string>>({});
|
||||
|
||||
if (statusLoading) {
|
||||
return <Loading fullScreen />;
|
||||
}
|
||||
// Setup already done, OR the status couldn't be read (e.g. a transient 500) →
|
||||
// go to login rather than flashing the create-admin form on a configured
|
||||
// instance. Only render the wizard when we know an admin is genuinely missing.
|
||||
if (statusError || !status?.needsAdmin) {
|
||||
return <Navigate to="/admin/login" replace />;
|
||||
}
|
||||
|
||||
const setField = (field: keyof typeof form) => (e: React.ChangeEvent<HTMLInputElement>) => {
|
||||
setForm((prev) => ({ ...prev, [field]: e.target.value }));
|
||||
if (errors[field]) setErrors((prev) => ({ ...prev, [field]: '' }));
|
||||
};
|
||||
|
||||
const recoveryCommand = 'docker compose logs backend | grep -i "setup token"';
|
||||
|
||||
const copyRecoveryCommand = async () => {
|
||||
try {
|
||||
await navigator.clipboard.writeText(recoveryCommand);
|
||||
setCopied(true);
|
||||
window.setTimeout(() => setCopied(false), 2000);
|
||||
} catch {
|
||||
// Clipboard unavailable (e.g. non-secure context) — the command is still
|
||||
// visible for the user to copy by hand, so fail quietly.
|
||||
}
|
||||
};
|
||||
|
||||
const validateToken = (): boolean => {
|
||||
const next: Record<string, string> = {};
|
||||
if (!form.token.trim()) next.token = t('setup.tokenRequired');
|
||||
setErrors(next);
|
||||
return Object.keys(next).length === 0;
|
||||
};
|
||||
|
||||
const validateAccount = (): boolean => {
|
||||
const next: Record<string, string> = {};
|
||||
if (!form.email) next.email = t('setup.emailRequired');
|
||||
else if (!/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(form.email)) next.email = t('setup.invalidEmail');
|
||||
if (!form.password) next.password = t('setup.passwordRequired');
|
||||
// Mirror the server's rule (validatePassword): >=8 chars with upper, lower
|
||||
// and a digit — so the user isn't bounced by the server after a green client.
|
||||
else if (!/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d).{8,}$/.test(form.password)) next.password = t('setup.passwordRequirements');
|
||||
if (form.confirm !== form.password) next.confirm = t('setup.passwordMismatch');
|
||||
setErrors(next);
|
||||
return Object.keys(next).length === 0;
|
||||
};
|
||||
|
||||
const handleTokenContinue = async (e: React.FormEvent) => {
|
||||
e.preventDefault();
|
||||
toast.dismiss();
|
||||
if (!validateToken()) return;
|
||||
// Verify the token server-side before advancing — a wrong token is caught
|
||||
// here at "Continue" rather than after the user has filled in the account
|
||||
// step. The token is checked, not consumed; createInitialAdmin still burns
|
||||
// it atomically on final submit.
|
||||
setIsVerifyingToken(true);
|
||||
setErrors({});
|
||||
try {
|
||||
await setupService.verifyToken(form.token.trim());
|
||||
setStep('account');
|
||||
} catch (error: any) {
|
||||
const httpStatus = error.response?.status;
|
||||
if (httpStatus === 429) {
|
||||
toast.error(t('setup.tooManyAttempts'));
|
||||
} else if (httpStatus === 409) {
|
||||
// Someone else finished setup first — send to login.
|
||||
navigate('/admin/login', { replace: true });
|
||||
} else {
|
||||
setErrors({ token: t('setup.invalidToken') });
|
||||
}
|
||||
} finally {
|
||||
setIsVerifyingToken(false);
|
||||
}
|
||||
};
|
||||
|
||||
const handleSubmit = async (e: React.FormEvent) => {
|
||||
e.preventDefault();
|
||||
toast.dismiss();
|
||||
if (!validateAccount()) return;
|
||||
|
||||
setIsSubmitting(true);
|
||||
setErrors({});
|
||||
try {
|
||||
const { user } = await setupService.createInitialAdmin({
|
||||
token: form.token.trim(),
|
||||
email: form.email.trim(),
|
||||
password: form.password,
|
||||
});
|
||||
// Cookie is set by the backend; register the session and enter the app.
|
||||
const adminUser: AdminUser = {
|
||||
id: user.id,
|
||||
username: user.username,
|
||||
email: user.email,
|
||||
mustChangePassword: false,
|
||||
role: { name: user.role.name, displayName: user.role.displayName ?? user.role.name },
|
||||
};
|
||||
login('', adminUser);
|
||||
toast.success(t('setup.success'));
|
||||
navigate('/admin/dashboard', { replace: true });
|
||||
} catch (error: any) {
|
||||
const httpStatus = error.response?.status;
|
||||
const data = error.response?.data;
|
||||
// Map the server's field back to a translated message instead of
|
||||
// rendering its raw English error verbatim.
|
||||
const fieldKey: Record<string, string> = {
|
||||
token: 'setup.invalidToken',
|
||||
email: 'setup.invalidEmail',
|
||||
password: 'setup.passwordRequirements',
|
||||
};
|
||||
// A rejected token belongs to step 1 — send the user back there to fix it
|
||||
// rather than showing the error on a field the account step doesn't render.
|
||||
const bounceToTokenStep = (field: string) => {
|
||||
if (field === 'token') setStep('token');
|
||||
};
|
||||
if (httpStatus === 429) {
|
||||
toast.error(t('setup.tooManyAttempts'));
|
||||
} else if (httpStatus === 409) {
|
||||
// Someone else finished setup first — send to login.
|
||||
navigate('/admin/login', { replace: true });
|
||||
} else if (data?.field && fieldKey[data.field]) {
|
||||
setErrors({ [data.field]: t(fieldKey[data.field]) });
|
||||
bounceToTokenStep(data.field);
|
||||
} else if (Array.isArray(data?.errors) && data.errors.length) {
|
||||
const p = data.errors[0]?.path || data.errors[0]?.param;
|
||||
if (p && fieldKey[p]) {
|
||||
setErrors({ [p]: t(fieldKey[p]) });
|
||||
bounceToTokenStep(p);
|
||||
} else {
|
||||
setErrors({ form: t('setup.genericError') });
|
||||
}
|
||||
} else {
|
||||
setErrors({ form: t('setup.genericError') });
|
||||
}
|
||||
} finally {
|
||||
setIsSubmitting(false);
|
||||
}
|
||||
};
|
||||
|
||||
const stepNumber = step === 'token' ? 1 : 2;
|
||||
|
||||
return (
|
||||
<div className="min-h-screen flex items-center justify-center p-4" style={{ backgroundColor: 'var(--color-background, #fafafa)' }}>
|
||||
<div className="w-full max-w-md">
|
||||
<div className="text-center mb-8">
|
||||
{/* On a fresh instance there are no branding settings yet, so use the
|
||||
bundled PicPeak logo — the same default the login page falls back
|
||||
to — on the cream brand plate. Size matches the login default
|
||||
(`medium`) so the two screens read identically. */}
|
||||
{(() => {
|
||||
const cls = resolveLoginLogoClasses(undefined);
|
||||
return (
|
||||
<div className={`${cls.frameOuter} mx-auto mb-6 rounded-2xl flex items-center justify-center`} style={{ backgroundColor: '#eee6d2' }}>
|
||||
<img src="/picpeak-logo-transparent.png" alt="PicPeak" className={`${cls.frameInner} object-contain`} />
|
||||
</div>
|
||||
);
|
||||
})()}
|
||||
<h1 className="text-3xl font-bold" style={{ color: 'var(--color-text, #171717)' }}>{t('setup.title')}</h1>
|
||||
<p className="mt-2" style={{ color: 'var(--color-text, #171717)', opacity: 0.7 }}>
|
||||
{step === 'token' ? t('setup.tokenStepSubtitle') : t('setup.accountStepSubtitle')}
|
||||
</p>
|
||||
<p className="mt-3 text-xs font-medium tracking-wide uppercase" style={{ color: 'var(--color-text, #171717)', opacity: 0.5 }}>
|
||||
{t('setup.stepOf', { current: stepNumber, total: 2 })}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<Card padding="lg">
|
||||
{errors.form && (
|
||||
<div className="mb-6 bg-red-50 border border-red-200 rounded-lg p-4 flex items-start gap-3">
|
||||
<AlertCircle className="w-5 h-5 text-red-600 flex-shrink-0 mt-0.5" />
|
||||
<p className="text-sm text-red-800">{errors.form}</p>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{step === 'token' ? (
|
||||
<form onSubmit={handleTokenContinue} className="space-y-6">
|
||||
<div>
|
||||
<label htmlFor="setup-token" className="block text-sm font-medium text-neutral-700 mb-1">
|
||||
{t('setup.tokenLabel')}
|
||||
</label>
|
||||
<Input
|
||||
id="setup-token"
|
||||
type="text"
|
||||
value={form.token}
|
||||
onChange={setField('token')}
|
||||
error={errors.token}
|
||||
placeholder={t('setup.tokenPlaceholder')}
|
||||
leftIcon={<Key className="w-5 h-5 text-neutral-400" />}
|
||||
autoFocus
|
||||
/>
|
||||
<p className="mt-1 text-xs text-neutral-500">{t('setup.tokenHint')}</p>
|
||||
|
||||
{/* Recovery guidance sits directly under the field it explains. */}
|
||||
<div className="mt-4 rounded-lg border border-neutral-200 bg-neutral-50 p-3">
|
||||
<p className="text-xs font-medium text-neutral-600">{t('setup.tokenCommandLabel')}</p>
|
||||
<div className="mt-2 flex items-center gap-2">
|
||||
<code className="flex-1 overflow-x-auto whitespace-nowrap rounded bg-neutral-900 px-3 py-2 font-mono text-xs text-neutral-100">
|
||||
{recoveryCommand}
|
||||
</code>
|
||||
<button
|
||||
type="button"
|
||||
onClick={copyRecoveryCommand}
|
||||
className="flex-shrink-0 rounded-md border border-neutral-200 bg-white p-2 text-neutral-500 hover:text-neutral-700 transition-colors"
|
||||
aria-label={t('setup.copyCommand')}
|
||||
title={t('setup.copyCommand')}
|
||||
>
|
||||
{copied ? <Check className="w-4 h-4 text-green-600" /> : <Copy className="w-4 h-4" />}
|
||||
</button>
|
||||
</div>
|
||||
<a
|
||||
href={SETUP_DOCS_URL}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="mt-2 inline-flex items-center gap-1 text-xs hover:underline"
|
||||
style={{ color: 'var(--color-primary, #5C8762)' }}
|
||||
>
|
||||
{t('setup.tokenRotatedLink')}
|
||||
<ExternalLink className="w-3 h-3" />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<Button type="submit" variant="primary" size="lg" isLoading={isVerifyingToken} className="w-full" rightIcon={<ArrowRight className="w-4 h-4" />}>
|
||||
{t('setup.continue')}
|
||||
</Button>
|
||||
</form>
|
||||
) : (
|
||||
<form onSubmit={handleSubmit} className="space-y-6">
|
||||
<div>
|
||||
<label htmlFor="setup-email" className="block text-sm font-medium text-neutral-700 mb-1">
|
||||
{t('setup.emailLabel')}
|
||||
</label>
|
||||
<Input
|
||||
id="setup-email"
|
||||
type="email"
|
||||
value={form.email}
|
||||
onChange={setField('email')}
|
||||
error={errors.email}
|
||||
placeholder={t('setup.emailPlaceholder')}
|
||||
leftIcon={<Mail className="w-5 h-5 text-neutral-400" />}
|
||||
autoComplete="email"
|
||||
autoFocus
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label htmlFor="setup-password" className="block text-sm font-medium text-neutral-700 mb-1">
|
||||
{t('setup.passwordLabel')}
|
||||
</label>
|
||||
<div className="relative">
|
||||
<Input
|
||||
id="setup-password"
|
||||
type={showPassword ? 'text' : 'password'}
|
||||
value={form.password}
|
||||
onChange={setField('password')}
|
||||
error={errors.password}
|
||||
placeholder={t('setup.passwordPlaceholder')}
|
||||
leftIcon={<Lock className="w-5 h-5 text-neutral-400" />}
|
||||
autoComplete="new-password"
|
||||
/>
|
||||
<button
|
||||
type="button"
|
||||
onClick={() => setShowPassword(!showPassword)}
|
||||
className="absolute right-3 top-3 text-neutral-400 hover:text-neutral-600 transition-colors"
|
||||
tabIndex={-1}
|
||||
>
|
||||
{showPassword ? <EyeOff className="w-5 h-5" /> : <Eye className="w-5 h-5" />}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label htmlFor="setup-confirm" className="block text-sm font-medium text-neutral-700 mb-1">
|
||||
{t('setup.confirmLabel')}
|
||||
</label>
|
||||
<Input
|
||||
id="setup-confirm"
|
||||
type={showPassword ? 'text' : 'password'}
|
||||
value={form.confirm}
|
||||
onChange={setField('confirm')}
|
||||
error={errors.confirm}
|
||||
placeholder={t('setup.confirmPlaceholder')}
|
||||
leftIcon={<Lock className="w-5 h-5 text-neutral-400" />}
|
||||
autoComplete="new-password"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="flex gap-3">
|
||||
<Button
|
||||
type="button"
|
||||
variant="outline"
|
||||
size="lg"
|
||||
onClick={() => { toast.dismiss(); setErrors({}); setStep('token'); }}
|
||||
disabled={isSubmitting}
|
||||
leftIcon={<ArrowLeft className="w-4 h-4" />}
|
||||
>
|
||||
{t('setup.back')}
|
||||
</Button>
|
||||
<Button type="submit" variant="primary" size="lg" isLoading={isSubmitting} className="flex-1">
|
||||
{t('setup.submit')}
|
||||
</Button>
|
||||
</div>
|
||||
</form>
|
||||
)}
|
||||
</Card>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
SetupPage.displayName = 'SetupPage';
|
||||
@@ -1,5 +1,6 @@
|
||||
import React, { useState, useEffect } from 'react';
|
||||
import { Navigate, useSearchParams } from 'react-router-dom';
|
||||
import { useQuery } from '@tanstack/react-query';
|
||||
import { Lock, Mail, Eye, EyeOff, AlertCircle } from 'lucide-react';
|
||||
import { toast } from 'react-toastify';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
@@ -7,6 +8,7 @@ import { useTranslation } from 'react-i18next';
|
||||
import { Button, Input, Card, ReCaptcha } from '../../components/common';
|
||||
import { useAdminAuth } from '../../contexts';
|
||||
import { authService } from '../../services/auth.service';
|
||||
import { setupService } from '../../services/setup.service';
|
||||
import { usePublicSettings } from '../../hooks/usePublicSettings';
|
||||
import { useAdminDarkMode } from '../../contexts/AdminDarkModeContext';
|
||||
import { resolveLoginLogoClasses } from '../../utils/loginLogoSize';
|
||||
@@ -50,6 +52,17 @@ export const AdminLoginPage: React.FC = () => {
|
||||
}
|
||||
}, [searchParams, t]);
|
||||
|
||||
// Fresh instance with no admin yet → send to first-run setup.
|
||||
const { data: setupStatus } = useQuery({
|
||||
queryKey: ['setup-status'],
|
||||
queryFn: setupService.getSetupStatus,
|
||||
retry: false,
|
||||
staleTime: Infinity,
|
||||
});
|
||||
if (setupStatus?.needsAdmin) {
|
||||
return <Navigate to="/setup" replace />;
|
||||
}
|
||||
|
||||
// Redirect if already authenticated or login successful
|
||||
if (isAuthenticated || loginSuccess) {
|
||||
return <Navigate to="/admin/dashboard" replace />;
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
import { api } from '../config/api';
|
||||
|
||||
export interface SetupStatus {
|
||||
needsAdmin: boolean;
|
||||
complete: boolean;
|
||||
}
|
||||
|
||||
export interface SetupAdminUser {
|
||||
id: number;
|
||||
username: string;
|
||||
email: string;
|
||||
role: { name: string; displayName?: string };
|
||||
}
|
||||
|
||||
export interface CreateInitialAdminInput {
|
||||
token: string;
|
||||
email: string;
|
||||
password: string;
|
||||
}
|
||||
|
||||
// First-run bootstrap. Public endpoints that self-close once an admin exists.
|
||||
export const setupService = {
|
||||
async getSetupStatus(): Promise<SetupStatus> {
|
||||
const response = await api.get<SetupStatus>('/setup/status');
|
||||
return response.data;
|
||||
},
|
||||
|
||||
// Step-1 pre-flight: confirm the token is valid before advancing to the
|
||||
// account step. Rejects (400, field: 'token') on a wrong token without
|
||||
// burning it. Throws on non-2xx so the caller can branch on the status.
|
||||
async verifyToken(token: string): Promise<{ valid: boolean }> {
|
||||
const response = await api.post<{ valid: boolean }>('/setup/verify-token', { token });
|
||||
return response.data;
|
||||
},
|
||||
|
||||
async createInitialAdmin(input: CreateInitialAdminInput): Promise<{ user: SetupAdminUser }> {
|
||||
// Admin JWT is returned as an HttpOnly cookie (mirrors login); body carries the user.
|
||||
const response = await api.post<{ user: SetupAdminUser }>('/setup/admin', input);
|
||||
return response.data;
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user