mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-25 12:05:06 +02:00
AuthStore.initialize() cleared the stored token on any error from `api.getMe()`, which meant a transient failure — backend rolling restart, network blip, HMR-aborted fetch in local dev — would force a re-login. On 401 the token is already cleared upstream via ApiClient.onUnauthorized, so the store's catch block only needs to reset the in-memory user state. Check `err instanceof ApiError && err.status === 401` before clearing workspace context; leave the token in storage for every other error so the next initialize() can retry. Adds regression tests covering the 401 / 500 / network-failure / happy paths.
128 lines
3.8 KiB
TypeScript
128 lines
3.8 KiB
TypeScript
import { create } from "zustand";
|
|
import type { User, StorageAdapter } from "../types";
|
|
import { ApiError, type ApiClient } from "../api/client";
|
|
import { setCurrentWorkspace } from "../platform/workspace-storage";
|
|
|
|
export interface AuthStoreOptions {
|
|
api: ApiClient;
|
|
storage: StorageAdapter;
|
|
onLogin?: () => void;
|
|
onLogout?: () => void;
|
|
/** When true, rely on HttpOnly cookies instead of localStorage for auth tokens. */
|
|
cookieAuth?: boolean;
|
|
}
|
|
|
|
export interface AuthState {
|
|
user: User | null;
|
|
isLoading: boolean;
|
|
|
|
initialize: () => Promise<void>;
|
|
sendCode: (email: string) => Promise<void>;
|
|
verifyCode: (email: string, code: string) => Promise<User>;
|
|
loginWithGoogle: (code: string, redirectUri: string) => Promise<User>;
|
|
loginWithToken: (token: string) => Promise<User>;
|
|
logout: () => void;
|
|
setUser: (user: User) => void;
|
|
}
|
|
|
|
export function createAuthStore(options: AuthStoreOptions) {
|
|
const { api, storage, onLogin, onLogout, cookieAuth } = options;
|
|
|
|
return create<AuthState>((set) => ({
|
|
user: null,
|
|
isLoading: true,
|
|
|
|
initialize: async () => {
|
|
if (cookieAuth) {
|
|
// In cookie mode, the HttpOnly cookie is sent automatically.
|
|
// Try to fetch the current user — if the cookie exists the server will accept it.
|
|
try {
|
|
const user = await api.getMe();
|
|
set({ user, isLoading: false });
|
|
} catch {
|
|
set({ user: null, isLoading: false });
|
|
}
|
|
return;
|
|
}
|
|
|
|
// Token mode: read from localStorage (Electron / legacy).
|
|
const token = storage.getItem("multica_token");
|
|
if (!token) {
|
|
set({ isLoading: false });
|
|
return;
|
|
}
|
|
|
|
api.setToken(token);
|
|
|
|
try {
|
|
const user = await api.getMe();
|
|
set({ user, isLoading: false });
|
|
} catch (err) {
|
|
// Only clear the stored token on a genuine auth failure (401). For
|
|
// transient errors — network blips, backend rolling restarts, 5xx,
|
|
// aborted fetches — keep the token so the next initialize() (next
|
|
// page load or focus-refresh) can retry. The 401 path's token
|
|
// cleanup is handled upstream by ApiClient.handleUnauthorized via
|
|
// the onUnauthorized callback; we only need to reset the in-memory
|
|
// user + workspace state here.
|
|
if (err instanceof ApiError && err.status === 401) {
|
|
setCurrentWorkspace(null, null);
|
|
}
|
|
set({ user: null, isLoading: false });
|
|
}
|
|
},
|
|
|
|
sendCode: async (email: string) => {
|
|
await api.sendCode(email);
|
|
},
|
|
|
|
verifyCode: async (email: string, code: string) => {
|
|
const { token, user } = await api.verifyCode(email, code);
|
|
if (!cookieAuth) {
|
|
// Token mode: persist for Electron / legacy.
|
|
storage.setItem("multica_token", token);
|
|
api.setToken(token);
|
|
}
|
|
onLogin?.();
|
|
set({ user });
|
|
return user;
|
|
},
|
|
|
|
loginWithGoogle: async (code: string, redirectUri: string) => {
|
|
const { token, user } = await api.googleLogin(code, redirectUri);
|
|
if (!cookieAuth) {
|
|
storage.setItem("multica_token", token);
|
|
api.setToken(token);
|
|
}
|
|
onLogin?.();
|
|
set({ user });
|
|
return user;
|
|
},
|
|
|
|
loginWithToken: async (token: string) => {
|
|
storage.setItem("multica_token", token);
|
|
api.setToken(token);
|
|
const user = await api.getMe();
|
|
onLogin?.();
|
|
set({ user, isLoading: false });
|
|
return user;
|
|
},
|
|
|
|
logout: () => {
|
|
if (cookieAuth) {
|
|
// Clear server-side HttpOnly cookie.
|
|
api.logout().catch(() => {});
|
|
}
|
|
storage.removeItem("multica_token");
|
|
api.setToken(null);
|
|
setCurrentWorkspace(null, null);
|
|
onLogout?.();
|
|
set({ user: null });
|
|
},
|
|
|
|
setUser: (user: User) => {
|
|
set({ user });
|
|
},
|
|
}));
|
|
}
|