645 lines
19 KiB
Svelte
645 lines
19 KiB
Svelte
<script lang="ts">
|
|
import { goto } from '$app/navigation';
|
|
import { page } from '$app/state';
|
|
import { onMount } from 'svelte';
|
|
import {
|
|
exchangeOidcCode,
|
|
fetchMe,
|
|
getAuthStatus,
|
|
getOidcProviders,
|
|
login,
|
|
register,
|
|
sendMagicLink,
|
|
setupAdmin,
|
|
type OidcProviders
|
|
} from '$lib/api/endpoints/auth';
|
|
import { i18n, SUPPORTED_LOCALES, setLocale, t, type Locale } from '$lib/i18n/index.svelte';
|
|
import { session } from '$lib/stores/session.svelte';
|
|
|
|
type Mode = 'login' | 'register' | 'setup';
|
|
let mode = $state<Mode>('login');
|
|
// First-run admin setup is only offered after the status probe confirms it.
|
|
let setupAvailable = $state(false);
|
|
// Suppress the auth UI until the onMount probes (session/oidc/status) settle,
|
|
// to avoid flashing the login form before a redirect or the setup wizard.
|
|
let booting = $state(true);
|
|
|
|
// Login
|
|
let username = $state('');
|
|
let password = $state('');
|
|
let showPassword = $state(false);
|
|
let capsOn = $state(false);
|
|
let error = $state('');
|
|
let busy = $state(false);
|
|
|
|
// Register
|
|
let regUsername = $state('');
|
|
let regEmail = $state('');
|
|
let regPassword = $state('');
|
|
let regConfirm = $state('');
|
|
let regError = $state('');
|
|
let regSuccess = $state('');
|
|
let regShowPassword = $state(false);
|
|
let regShowConfirm = $state(false);
|
|
let regCapsOn = $state(false);
|
|
|
|
// Admin setup (first run)
|
|
let setupEmail = $state('');
|
|
let setupPassword = $state('');
|
|
let setupConfirm = $state('');
|
|
let setupShowPassword = $state(false);
|
|
let setupShowConfirm = $state(false);
|
|
let setupCapsOn = $state(false);
|
|
let setupError = $state('');
|
|
let setupSuccess = $state('');
|
|
const setupMatchState = $derived(
|
|
setupConfirm.length === 0 ? '' : setupPassword === setupConfirm ? 'ok' : 'bad'
|
|
);
|
|
|
|
// Magic link
|
|
let magicOpen = $state(false);
|
|
let magicEmail = $state('');
|
|
let magicStatus = $state<{ text: string; ok: boolean } | null>(null);
|
|
|
|
// OIDC
|
|
let oidc = $state<OidcProviders>({ enabled: false });
|
|
const passwordLoginEnabled = $derived(oidc.password_login_enabled !== false);
|
|
|
|
const redirectTarget = $derived(page.url.searchParams.get('redirect') || '/files');
|
|
const matchState = $derived(
|
|
regConfirm.length === 0 ? '' : regPassword === regConfirm ? 'ok' : 'bad'
|
|
);
|
|
|
|
function csrfCookiePresent(): boolean {
|
|
return document.cookie.split('; ').some((c) => c.startsWith('oxicloud_csrf='));
|
|
}
|
|
|
|
function onPwKey(e: KeyboardEvent) {
|
|
capsOn = e.getModifierState?.('CapsLock') ?? false;
|
|
}
|
|
|
|
function onRegPwKey(e: KeyboardEvent) {
|
|
regCapsOn = e.getModifierState?.('CapsLock') ?? false;
|
|
}
|
|
|
|
function onSetupPwKey(e: KeyboardEvent) {
|
|
setupCapsOn = e.getModifierState?.('CapsLock') ?? false;
|
|
}
|
|
|
|
async function onLogin(e: SubmitEvent) {
|
|
e.preventDefault();
|
|
error = '';
|
|
busy = true;
|
|
try {
|
|
const data = await login(username, password);
|
|
if (!csrfCookiePresent()) {
|
|
error = t(
|
|
'auth.cookie_rejected',
|
|
'Login succeeded but the browser rejected the session cookie. If you are on HTTP, set OXICLOUD_COOKIE_SECURE=false or use HTTPS.'
|
|
);
|
|
return;
|
|
}
|
|
session.user = data.user;
|
|
await goto(redirectTarget, { replaceState: true });
|
|
} catch (err) {
|
|
error = err instanceof Error ? err.message : t('auth.login_error', 'Error logging in');
|
|
} finally {
|
|
busy = false;
|
|
}
|
|
}
|
|
|
|
async function onRegister(e: SubmitEvent) {
|
|
e.preventDefault();
|
|
regError = '';
|
|
regSuccess = '';
|
|
if (regPassword !== regConfirm) {
|
|
regError = t('auth.passwords_mismatch', 'Passwords do not match');
|
|
return;
|
|
}
|
|
busy = true;
|
|
try {
|
|
await register(regUsername, regEmail, regPassword);
|
|
regSuccess = t('auth.account_success', 'Account created. You can now sign in.');
|
|
regUsername = regEmail = regPassword = regConfirm = '';
|
|
setTimeout(() => (mode = 'login'), 2000);
|
|
} catch (err) {
|
|
regError =
|
|
err instanceof Error ? err.message : t('auth.register_error', 'Registration failed');
|
|
} finally {
|
|
busy = false;
|
|
}
|
|
}
|
|
|
|
async function onSetup(e: SubmitEvent) {
|
|
e.preventDefault();
|
|
setupError = '';
|
|
setupSuccess = '';
|
|
if (setupPassword !== setupConfirm) {
|
|
setupError = t('auth.passwords_mismatch', 'Passwords do not match');
|
|
return;
|
|
}
|
|
busy = true;
|
|
try {
|
|
await setupAdmin(setupEmail, setupPassword);
|
|
setupSuccess = t('auth.admin_success', 'Administrator created. You can now sign in.');
|
|
setupEmail = setupPassword = setupConfirm = '';
|
|
// Admin now exists — fold the setup affordance away and return to login.
|
|
setupAvailable = false;
|
|
setTimeout(() => {
|
|
mode = 'login';
|
|
setupSuccess = '';
|
|
}, 2000);
|
|
} catch (err) {
|
|
setupError =
|
|
err instanceof Error ? err.message : t('auth.admin_create_error', 'Setup failed');
|
|
} finally {
|
|
busy = false;
|
|
}
|
|
}
|
|
|
|
async function onMagicLink(e: SubmitEvent) {
|
|
e.preventDefault();
|
|
if (!magicEmail) return;
|
|
magicStatus = null;
|
|
busy = true;
|
|
try {
|
|
const result = await sendMagicLink(magicEmail);
|
|
magicStatus =
|
|
result === 'sent'
|
|
? {
|
|
text: t(
|
|
'auth.magic_sent',
|
|
'If an account exists, a sign-in link has been sent. Check your inbox.'
|
|
),
|
|
ok: true
|
|
}
|
|
: {
|
|
text: t(
|
|
'auth.magic_unavailable',
|
|
'Sign-in by email is not available on this server.'
|
|
),
|
|
ok: false
|
|
};
|
|
if (result === 'sent') magicEmail = '';
|
|
} catch {
|
|
magicStatus = { text: t('auth.magic_error', 'Something went wrong. Try again.'), ok: false };
|
|
} finally {
|
|
busy = false;
|
|
}
|
|
}
|
|
|
|
onMount(async () => {
|
|
// 1) OIDC code-exchange fallback: the IdP round-trip may land back here
|
|
// with ?oidc_code=. Exchange it for a session and redirect into the app.
|
|
const oidcCode = page.url.searchParams.get('oidc_code');
|
|
if (oidcCode) {
|
|
const user = await exchangeOidcCode(oidcCode);
|
|
if (user) {
|
|
session.user = user;
|
|
await goto(redirectTarget, { replaceState: true });
|
|
return;
|
|
}
|
|
// Exchange failed — fall through to the normal login UI.
|
|
}
|
|
|
|
// 2) Existing-session probe: if already authenticated, skip the form.
|
|
try {
|
|
const me = await fetchMe();
|
|
if (me) {
|
|
session.user = me;
|
|
await goto(redirectTarget, { replaceState: true });
|
|
return;
|
|
}
|
|
} catch {
|
|
/* probe failed — show the login page */
|
|
}
|
|
|
|
// 3) Bootstrap probe: a fresh install (no admin) must be set up first.
|
|
const [providers, status] = await Promise.all([getOidcProviders(), getAuthStatus()]);
|
|
oidc = providers;
|
|
setupAvailable = !status.initialized;
|
|
if (setupAvailable) mode = 'setup';
|
|
|
|
booting = false;
|
|
});
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>{t('app.title', 'OxiCloud')}</title>
|
|
</svelte:head>
|
|
|
|
<div class="auth-container">
|
|
<div class="auth-panel">
|
|
<div class="auth-logo">
|
|
<div class="auth-logo-icon">
|
|
<svg viewBox="120 120 280 280" aria-hidden="true">
|
|
<path
|
|
d="M345 310c32 0 58-26 58-58s-26-58-58-58c-6.2 0-12 0.9-17.5 2.7C318 166 289 143 255 143c-34.3 0-63.1 22.6-73 53.7C176.9 195.7 171 195 165 195c-32 0-58 26-58 58s26 58 58 58h180z"
|
|
/>
|
|
</svg>
|
|
</div>
|
|
<div class="auth-logo-text"><span class="brand-oxi">Oxi</span>Cloud</div>
|
|
</div>
|
|
|
|
{#if booting}
|
|
<p class="auth-subtitle">{t('common.loading', 'Loading…')}</p>
|
|
{:else}
|
|
<h1 class="auth-title">
|
|
{#if mode === 'login'}
|
|
{t('auth.sign_in', 'Sign in')}
|
|
{:else if mode === 'register'}
|
|
{t('auth.register', 'Create account')}
|
|
{:else}
|
|
{t('auth.setup_title', 'Initial setup')}
|
|
{/if}
|
|
</h1>
|
|
|
|
{#if page.url.searchParams.get('source') === 'session_expired'}
|
|
<div class="auth-error" style="display: block">
|
|
{t('auth.session_expired', 'Your session expired. Please sign in again.')}
|
|
</div>
|
|
{/if}
|
|
|
|
{#if mode === 'login'}
|
|
{#if passwordLoginEnabled}
|
|
{#if error}<div class="auth-error" style="display: block" role="alert">{error}</div>{/if}
|
|
<form class="auth-form" onsubmit={onLogin} novalidate>
|
|
<div class="auth-input-group">
|
|
<label class="auth-label" for="login-username">
|
|
{t('auth.username', 'Username or email')}
|
|
</label>
|
|
<div class="auth-input-wrap auth-input-wrap--user">
|
|
<input
|
|
id="login-username"
|
|
class="auth-input"
|
|
type="text"
|
|
bind:value={username}
|
|
autocomplete="username"
|
|
required
|
|
disabled={busy}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="auth-input-group">
|
|
<label class="auth-label" for="login-password">{t('auth.password', 'Password')}</label
|
|
>
|
|
<div class="auth-input-wrap auth-input-wrap--lock has-toggle">
|
|
<input
|
|
id="login-password"
|
|
class="auth-input"
|
|
type={showPassword ? 'text' : 'password'}
|
|
bind:value={password}
|
|
onkeydown={onPwKey}
|
|
onkeyup={onPwKey}
|
|
autocomplete="current-password"
|
|
required
|
|
disabled={busy}
|
|
/>
|
|
<button
|
|
type="button"
|
|
class="auth-pw-toggle"
|
|
aria-pressed={showPassword}
|
|
aria-label={t('auth.toggle_password', 'Show password')}
|
|
onclick={() => (showPassword = !showPassword)}
|
|
></button>
|
|
</div>
|
|
{#if capsOn}
|
|
<div class="auth-caps-warning">{t('auth.caps_lock', 'Caps Lock is on')}</div>
|
|
{/if}
|
|
</div>
|
|
|
|
<button class="auth-button" type="submit" disabled={busy} aria-busy={busy}>
|
|
{busy ? t('auth.signing_in', 'Signing in…') : t('auth.sign_in', 'Sign in')}
|
|
</button>
|
|
</form>
|
|
|
|
<button class="auth-magic-toggle" onclick={() => (magicOpen = !magicOpen)}>
|
|
{t('auth.magic_prompt', 'No password? Sign in with an email link')}
|
|
</button>
|
|
{#if magicOpen}
|
|
<div class="auth-magic-reveal">
|
|
<p class="auth-hint">
|
|
{t(
|
|
'auth.magic_hint',
|
|
"No password? Enter your email and we'll send you a one-time sign-in link."
|
|
)}
|
|
</p>
|
|
<form class="auth-form" onsubmit={onMagicLink}>
|
|
<div class="auth-input-group">
|
|
<label class="auth-label" for="magic-email">
|
|
{t('auth.magic_email_label', 'Email address')}
|
|
</label>
|
|
<div class="auth-input-wrap auth-input-wrap--mail">
|
|
<input
|
|
id="magic-email"
|
|
class="auth-input"
|
|
type="email"
|
|
bind:value={magicEmail}
|
|
autocomplete="email"
|
|
placeholder={t('auth.email', 'you@example.com')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<button class="auth-button auth-button-secondary" type="submit" disabled={busy}>
|
|
{t('auth.magic_send', 'Send link')}
|
|
</button>
|
|
</form>
|
|
{#if magicStatus}
|
|
<div
|
|
class={magicStatus.ok
|
|
? 'auth-status auth-status-success'
|
|
: 'auth-status auth-status-error'}
|
|
>
|
|
{magicStatus.text}
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
{/if}
|
|
{/if}
|
|
|
|
{#if oidc.enabled}
|
|
{#if passwordLoginEnabled}
|
|
<div class="auth-divider"><span>{t('auth.or', 'or')}</span></div>
|
|
{/if}
|
|
<a class="auth-button auth-button-oidc" href={oidc.authorize_endpoint}>
|
|
{t(
|
|
'auth.sso_login_provider',
|
|
{ provider: oidc.provider_name ?? 'SSO' },
|
|
'Sign in with {{provider}}'
|
|
)}
|
|
</a>
|
|
{/if}
|
|
|
|
{#if passwordLoginEnabled}
|
|
<div class="auth-toggle">
|
|
{t('auth.no_account', 'No account?')}
|
|
<button class="auth-toggle-link" onclick={() => (mode = 'register')}>
|
|
{t('auth.register', 'Create one')}
|
|
</button>
|
|
</div>
|
|
{/if}
|
|
|
|
{#if setupAvailable}
|
|
<div class="auth-toggle">
|
|
{t('auth.admin_setup', 'First time?')}
|
|
<button class="auth-toggle-link" onclick={() => (mode = 'setup')}>
|
|
{t('auth.setup', 'Set up administrator')}
|
|
</button>
|
|
</div>
|
|
{/if}
|
|
{:else if mode === 'register'}
|
|
{#if regError}<div class="auth-error" style="display: block" role="alert">
|
|
{regError}
|
|
</div>{/if}
|
|
{#if regSuccess}<div class="auth-success" style="display: block">{regSuccess}</div>{/if}
|
|
<form class="auth-form" onsubmit={onRegister} novalidate>
|
|
<div class="auth-input-group">
|
|
<label class="auth-label" for="reg-username">{t('auth.username', 'Username')}</label>
|
|
<input
|
|
id="reg-username"
|
|
class="auth-input"
|
|
bind:value={regUsername}
|
|
required
|
|
disabled={busy}
|
|
/>
|
|
</div>
|
|
<div class="auth-input-group">
|
|
<label class="auth-label" for="reg-email">{t('auth.email', 'Email')}</label>
|
|
<input
|
|
id="reg-email"
|
|
class="auth-input"
|
|
type="email"
|
|
bind:value={regEmail}
|
|
required
|
|
disabled={busy}
|
|
/>
|
|
</div>
|
|
<div class="auth-input-group">
|
|
<label class="auth-label" for="reg-password">{t('auth.password', 'Password')}</label>
|
|
<div class="auth-input-wrap auth-input-wrap--lock has-toggle">
|
|
<input
|
|
id="reg-password"
|
|
class="auth-input"
|
|
type={regShowPassword ? 'text' : 'password'}
|
|
bind:value={regPassword}
|
|
onkeydown={onRegPwKey}
|
|
onkeyup={onRegPwKey}
|
|
autocomplete="new-password"
|
|
required
|
|
disabled={busy}
|
|
/>
|
|
<button
|
|
type="button"
|
|
class="auth-pw-toggle"
|
|
aria-pressed={regShowPassword}
|
|
aria-label={t('auth.toggle_password', 'Show password')}
|
|
onclick={() => (regShowPassword = !regShowPassword)}
|
|
></button>
|
|
</div>
|
|
{#if regCapsOn}
|
|
<div class="auth-caps-warning">{t('auth.caps_lock', 'Caps Lock is on')}</div>
|
|
{/if}
|
|
</div>
|
|
<div class="auth-input-group">
|
|
<label class="auth-label" for="reg-confirm"
|
|
>{t('auth.confirm_password', 'Confirm password')}</label
|
|
>
|
|
<div class="auth-input-wrap auth-input-wrap--lock has-toggle">
|
|
<input
|
|
id="reg-confirm"
|
|
class="auth-input"
|
|
type={regShowConfirm ? 'text' : 'password'}
|
|
bind:value={regConfirm}
|
|
onkeydown={onRegPwKey}
|
|
onkeyup={onRegPwKey}
|
|
autocomplete="new-password"
|
|
required
|
|
disabled={busy}
|
|
/>
|
|
<button
|
|
type="button"
|
|
class="auth-pw-toggle"
|
|
aria-pressed={regShowConfirm}
|
|
aria-label={t('auth.toggle_password', 'Show password')}
|
|
onclick={() => (regShowConfirm = !regShowConfirm)}
|
|
></button>
|
|
</div>
|
|
{#if matchState}
|
|
<div
|
|
class="auth-match show {matchState === 'ok' ? 'auth-match--ok' : 'auth-match--bad'}"
|
|
>
|
|
{matchState === 'ok'
|
|
? t('auth.passwords_match', 'Passwords match')
|
|
: t('auth.passwords_mismatch', "Passwords don't match")}
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
<button class="auth-button" type="submit" disabled={busy} aria-busy={busy}>
|
|
{t('auth.register', 'Create account')}
|
|
</button>
|
|
</form>
|
|
<div class="auth-toggle">
|
|
{t('auth.have_account', 'Already have an account?')}
|
|
<button class="auth-toggle-link" onclick={() => (mode = 'login')}>
|
|
{t('auth.sign_in', 'Sign in')}
|
|
</button>
|
|
</div>
|
|
{:else}
|
|
<div class="setup-steps">
|
|
<div class="setup-step">
|
|
<div class="step-number active">1</div>
|
|
<div class="step-title active">{t('auth.setup_step1', 'Admin')}</div>
|
|
</div>
|
|
<div class="setup-step">
|
|
<div class="step-number">2</div>
|
|
<div class="step-title">{t('auth.setup_step2', 'System')}</div>
|
|
</div>
|
|
<div class="setup-step">
|
|
<div class="step-number">3</div>
|
|
<div class="step-title">{t('auth.setup_step3', 'Completed')}</div>
|
|
</div>
|
|
</div>
|
|
|
|
{#if setupError}<div class="auth-error" style="display: block" role="alert">
|
|
{setupError}
|
|
</div>{/if}
|
|
{#if setupSuccess}<div class="auth-success" style="display: block">{setupSuccess}</div>{/if}
|
|
|
|
<form class="auth-form" onsubmit={onSetup} novalidate>
|
|
<div class="auth-input-group">
|
|
<label class="auth-label" for="setup-username">
|
|
{t('auth.admin_username', 'Administrator username')}
|
|
</label>
|
|
<div class="auth-input-wrap auth-input-wrap--user">
|
|
<input id="setup-username" class="auth-input" type="text" value="admin" readonly />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="auth-input-group">
|
|
<label class="auth-label" for="setup-email">
|
|
{t('auth.admin_email', 'Administrator email')}
|
|
</label>
|
|
<div class="auth-input-wrap auth-input-wrap--mail">
|
|
<input
|
|
id="setup-email"
|
|
class="auth-input"
|
|
type="email"
|
|
bind:value={setupEmail}
|
|
autocomplete="email"
|
|
required
|
|
disabled={busy}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="auth-input-group">
|
|
<label class="auth-label" for="setup-password">
|
|
{t('auth.admin_password', 'Administrator password')}
|
|
</label>
|
|
<div class="auth-input-wrap auth-input-wrap--lock has-toggle">
|
|
<input
|
|
id="setup-password"
|
|
class="auth-input"
|
|
type={setupShowPassword ? 'text' : 'password'}
|
|
bind:value={setupPassword}
|
|
onkeydown={onSetupPwKey}
|
|
onkeyup={onSetupPwKey}
|
|
autocomplete="new-password"
|
|
minlength="8"
|
|
required
|
|
disabled={busy}
|
|
/>
|
|
<button
|
|
type="button"
|
|
class="auth-pw-toggle"
|
|
aria-pressed={setupShowPassword}
|
|
aria-label={t('auth.toggle_password', 'Show password')}
|
|
onclick={() => (setupShowPassword = !setupShowPassword)}
|
|
></button>
|
|
</div>
|
|
{#if setupCapsOn}
|
|
<div class="auth-caps-warning">{t('auth.caps_lock', 'Caps Lock is on')}</div>
|
|
{/if}
|
|
</div>
|
|
|
|
<div class="auth-input-group">
|
|
<label class="auth-label" for="setup-confirm">
|
|
{t('auth.confirm_password', 'Confirm password')}
|
|
</label>
|
|
<div class="auth-input-wrap auth-input-wrap--lock has-toggle">
|
|
<input
|
|
id="setup-confirm"
|
|
class="auth-input"
|
|
type={setupShowConfirm ? 'text' : 'password'}
|
|
bind:value={setupConfirm}
|
|
onkeydown={onSetupPwKey}
|
|
onkeyup={onSetupPwKey}
|
|
autocomplete="new-password"
|
|
required
|
|
disabled={busy}
|
|
/>
|
|
<button
|
|
type="button"
|
|
class="auth-pw-toggle"
|
|
aria-pressed={setupShowConfirm}
|
|
aria-label={t('auth.toggle_password', 'Show password')}
|
|
onclick={() => (setupShowConfirm = !setupShowConfirm)}
|
|
></button>
|
|
</div>
|
|
{#if setupMatchState}
|
|
<div
|
|
class="auth-match show {setupMatchState === 'ok'
|
|
? 'auth-match--ok'
|
|
: 'auth-match--bad'}"
|
|
>
|
|
{setupMatchState === 'ok'
|
|
? t('auth.passwords_match', 'Passwords match')
|
|
: t('auth.passwords_mismatch', "Passwords don't match")}
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
|
|
<button class="auth-button" type="submit" disabled={busy} aria-busy={busy}>
|
|
{t('auth.create_admin', 'Create administrator')}
|
|
</button>
|
|
</form>
|
|
|
|
<div class="auth-toggle">
|
|
{t('auth.back_to_login', 'Already configured?')}
|
|
<button class="auth-toggle-link" onclick={() => (mode = 'login')}>
|
|
{t('auth.sign_in', 'Sign in')}
|
|
</button>
|
|
</div>
|
|
{/if}
|
|
{/if}
|
|
|
|
<div class="auth-lang">
|
|
<select
|
|
aria-label={t('settings.language', 'Language')}
|
|
value={i18n.locale}
|
|
onchange={(e) => setLocale(e.currentTarget.value as Locale)}
|
|
>
|
|
{#each SUPPORTED_LOCALES as loc (loc)}
|
|
<option value={loc}>{loc}</option>
|
|
{/each}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.auth-lang {
|
|
margin-top: var(--space-5);
|
|
text-align: center;
|
|
}
|
|
|
|
.auth-lang select {
|
|
padding: var(--space-1) var(--space-3);
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--radius-md);
|
|
background: var(--color-bg-input);
|
|
color: var(--color-text-muted);
|
|
}
|
|
</style>
|