mirror of
https://github.com/shuaiplus/nodewarden.git
synced 2026-06-20 13:00:39 +00:00
18d3490c4f
- Added functions for managing account passkeys including creation, listing, updating, and deletion. - Introduced login methods using account passkeys with options for direct unlock and login-only modes. - Enhanced error handling and response parsing for passkey-related API calls. - Updated UI styles for account passkey management components. - Added new translations for account passkey features in multiple languages. - Modified network status handling to improve service reachability checks.
162 lines
5.0 KiB
TypeScript
162 lines
5.0 KiB
TypeScript
import { deriveLoginHashLocally, unlockVaultKey } from '@/lib/api/auth';
|
|
import type { Profile, SessionState, TokenSuccess } from '@/lib/types';
|
|
|
|
const OFFLINE_UNLOCK_KEY = 'nodewarden.web.offline-unlock.v1';
|
|
|
|
interface OfflineUnlockRecord {
|
|
version: 1;
|
|
email: string;
|
|
profile: Profile;
|
|
profileKey: string;
|
|
kdfIterations: number;
|
|
savedAt: number;
|
|
}
|
|
|
|
function normalizeEmail(email: string | null | undefined): string {
|
|
return String(email || '').trim().toLowerCase();
|
|
}
|
|
|
|
function stripOfflineProfile(profile: Profile): Profile {
|
|
return {
|
|
...profile,
|
|
email: normalizeEmail(profile.email),
|
|
key: '',
|
|
privateKey: null,
|
|
};
|
|
}
|
|
|
|
function parseRecord(raw: string | null): OfflineUnlockRecord | null {
|
|
if (!raw) return null;
|
|
try {
|
|
const parsed = JSON.parse(raw) as Partial<OfflineUnlockRecord>;
|
|
const email = normalizeEmail(parsed.email);
|
|
const profileKey = String(parsed.profileKey || '').trim();
|
|
const iterations = Number(parsed.kdfIterations || 0);
|
|
if (parsed.version !== 1 || !email || !profileKey || !Number.isFinite(iterations) || iterations <= 0) {
|
|
return null;
|
|
}
|
|
const profile = parsed.profile && typeof parsed.profile === 'object'
|
|
? stripOfflineProfile(parsed.profile as Profile)
|
|
: {
|
|
id: '',
|
|
email,
|
|
name: email,
|
|
key: '',
|
|
privateKey: null,
|
|
role: 'user' as const,
|
|
};
|
|
return {
|
|
version: 1,
|
|
email,
|
|
profile,
|
|
profileKey,
|
|
kdfIterations: iterations,
|
|
savedAt: Number(parsed.savedAt || 0) || 0,
|
|
};
|
|
} catch {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
function readRecord(): OfflineUnlockRecord | null {
|
|
if (typeof localStorage === 'undefined') return null;
|
|
return parseRecord(localStorage.getItem(OFFLINE_UNLOCK_KEY));
|
|
}
|
|
|
|
export function hasOfflineUnlockRecord(email?: string | null): boolean {
|
|
const record = readRecord();
|
|
if (!record) return false;
|
|
const normalized = normalizeEmail(email);
|
|
return !normalized || record.email === normalized;
|
|
}
|
|
|
|
export function getOfflineUnlockKdfIterations(email?: string | null): number | null {
|
|
const record = readRecord();
|
|
if (!record) return null;
|
|
const normalized = normalizeEmail(email);
|
|
if (normalized && record.email !== normalized) return null;
|
|
return record.kdfIterations;
|
|
}
|
|
|
|
export function loadOfflineProfileSnapshot(email?: string | null): Profile | null {
|
|
const record = readRecord();
|
|
if (!record) return null;
|
|
const normalized = normalizeEmail(email);
|
|
if (normalized && record.email !== normalized) return null;
|
|
return stripOfflineProfile(record.profile);
|
|
}
|
|
|
|
export function saveOfflineUnlockRecord(args: {
|
|
email: string;
|
|
profile: Profile;
|
|
profileKey: string;
|
|
kdfIterations: number;
|
|
}): void {
|
|
if (typeof localStorage === 'undefined') return;
|
|
const email = normalizeEmail(args.email || args.profile.email);
|
|
const profileKey = String(args.profileKey || '').trim();
|
|
const kdfIterations = Number(args.kdfIterations || 0);
|
|
if (!email || !profileKey || !Number.isFinite(kdfIterations) || kdfIterations <= 0) return;
|
|
const record: OfflineUnlockRecord = {
|
|
version: 1,
|
|
email,
|
|
profile: stripOfflineProfile({ ...args.profile, email }),
|
|
profileKey,
|
|
kdfIterations,
|
|
savedAt: Date.now(),
|
|
};
|
|
localStorage.setItem(OFFLINE_UNLOCK_KEY, JSON.stringify(record));
|
|
}
|
|
|
|
export function clearOfflineUnlockRecord(): void {
|
|
try {
|
|
localStorage.removeItem(OFFLINE_UNLOCK_KEY);
|
|
} catch {
|
|
// Ignore storage failures during logout cleanup.
|
|
}
|
|
}
|
|
|
|
export async function unlockOfflineVault(
|
|
session: SessionState,
|
|
profile: Profile | null,
|
|
password: string
|
|
): Promise<{ session: SessionState; profile: Profile }> {
|
|
const record = readRecord();
|
|
const email = normalizeEmail(profile?.email || session.email);
|
|
if (!record || record.email !== email) {
|
|
throw new Error('Offline unlock is not available on this device.');
|
|
}
|
|
const derived = await deriveLoginHashLocally(record.email, password, record.kdfIterations);
|
|
return unlockOfflineVaultWithMasterKey(session, profile, derived.masterKey);
|
|
}
|
|
|
|
export async function unlockOfflineVaultWithMasterKey(
|
|
session: SessionState,
|
|
profile: Profile | null,
|
|
masterKey: Uint8Array
|
|
): Promise<{ session: SessionState; profile: Profile }> {
|
|
const record = readRecord();
|
|
const email = normalizeEmail(profile?.email || session.email);
|
|
if (!record || record.email !== email) {
|
|
throw new Error('Offline unlock is not available on this device.');
|
|
}
|
|
const keys = await unlockVaultKey(record.profileKey, masterKey);
|
|
const { accessToken: _accessToken, refreshToken: _refreshToken, ...offlineSession } = session;
|
|
return {
|
|
session: {
|
|
...offlineSession,
|
|
email: record.email,
|
|
...keys,
|
|
},
|
|
profile: {
|
|
...stripOfflineProfile(record.profile),
|
|
key: record.profileKey,
|
|
},
|
|
};
|
|
}
|
|
|
|
export function kdfIterationsFromLogin(token: TokenSuccess, fallbackIterations: number): number {
|
|
const value = Number(token.KdfIterations || fallbackIterations || 600000);
|
|
return Number.isFinite(value) && value > 0 ? value : 600000;
|
|
}
|