Spaces:
Running
Running
File size: 2,546 Bytes
ed57015 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | const BASE = import.meta.env.BASE_URL.replace(/\/$/, '');
const TOKEN_KEY = 'freellmapi_dashboard_token';
// Dashboard session token (#35). Stored in localStorage; sent as a Bearer on
// every /api request and cleared on a 401.
export function getToken(): string | null {
try { return localStorage.getItem(TOKEN_KEY); } catch { return null; }
}
export function setToken(token: string): void {
try { localStorage.setItem(TOKEN_KEY, token); } catch { /* ignore */ }
}
export function clearToken(): void {
try { localStorage.removeItem(TOKEN_KEY); } catch { /* ignore */ }
}
export const UNAUTHORIZED_EVENT = 'freellmapi:unauthorized';
export async function apiFetch<T>(path: string, options?: RequestInit): Promise<T> {
const token = getToken();
const res = await fetch(`${BASE}${path}`, {
// `...options` first so an explicit method/body/signal applies, but headers
// are merged last — otherwise an options.headers would clobber the
// Content-Type and Authorization we set here.
...options,
headers: {
'Content-Type': 'application/json',
...(token ? { Authorization: `Bearer ${token}` } : {}),
...options?.headers,
},
});
if (res.status === 401) {
// Session missing/expired — drop the token and let the AuthGate re-render.
clearToken();
window.dispatchEvent(new CustomEvent(UNAUTHORIZED_EVENT));
}
if (!res.ok) {
const body = await res.json().catch(() => ({ error: { message: res.statusText } }));
throw new Error(body.error?.message ?? `HTTP ${res.status}`);
}
// A 200 whose body isn't JSON means this request never reached the API — the
// usual cause is a reverse proxy (or static host) serving the dashboard's
// index.html for /api/* instead of forwarding it to the backend. Without this
// guard the raw res.json() throws an opaque "Unexpected token '<'", which on
// the setup/login form surfaces as "sign up page cannot work". Say what's
// actually wrong. (#257)
const text = await res.text();
try {
return JSON.parse(text) as T;
} catch {
throw new Error(
`Expected JSON from ${path} but got a non-JSON response. The API isn't reachable at this origin — ` +
`make sure the backend is running and that /api is forwarded to it, not served as the dashboard's static files.`,
);
}
}
export async function logout(): Promise<void> {
try { await apiFetch('/api/auth/logout', { method: 'POST' }); } catch { /* ignore */ }
clearToken();
window.dispatchEvent(new CustomEvent(UNAUTHORIZED_EVENT));
}
|