Files
SnapOtter/apps/web/src/hooks/use-auth.ts
T

126 lines
3.1 KiB
TypeScript
Raw Normal View History

import { useEffect, useState } from "react";
import { formatHeaders } from "@/lib/api";
import { useConnectionStore } from "@/stores/connection-store";
interface AuthState {
loading: boolean;
authEnabled: boolean;
isAuthenticated: boolean;
mustChangePassword: boolean;
role: string | null;
permissions: string[];
}
const ALL_PERMISSIONS = [
"tools:use",
"files:own",
"files:all",
"apikeys:own",
"apikeys:all",
"pipelines:own",
"pipelines:all",
"settings:read",
"settings:write",
"users:manage",
"teams:manage",
"branding:manage",
];
export function useAuth() {
const [state, setState] = useState<AuthState>({
loading: true,
authEnabled: false,
isAuthenticated: false,
mustChangePassword: false,
role: null,
permissions: [],
});
useEffect(() => {
let cancelled = false;
async function checkAuth() {
try {
const configRes = await fetch("/api/v1/config/auth");
const config = await configRes.json();
if (!config.authEnabled) {
if (!cancelled)
setState({
loading: false,
authEnabled: false,
isAuthenticated: true,
mustChangePassword: false,
role: "admin",
permissions: ALL_PERMISSIONS,
});
return;
}
const token = localStorage.getItem("ashim-token");
if (!token) {
if (!cancelled)
setState({
loading: false,
authEnabled: true,
isAuthenticated: false,
mustChangePassword: false,
role: null,
permissions: [],
});
return;
}
const sessionRes = await fetch("/api/auth/session", {
headers: formatHeaders(),
});
if (sessionRes.ok) {
const session = await sessionRes.json();
const mustChange = session.user?.mustChangePassword === true;
if (!cancelled)
setState({
loading: false,
authEnabled: true,
isAuthenticated: true,
mustChangePassword: mustChange,
role: session.user?.role ?? null,
permissions: session.user?.permissions ?? [],
});
} else {
localStorage.removeItem("ashim-token");
if (!cancelled)
setState({
loading: false,
authEnabled: true,
isAuthenticated: false,
mustChangePassword: false,
role: null,
permissions: [],
});
}
} catch {
// API unreachable — stay in loading state.
// ConnectionBanner explains the outage. AuthGuard shows spinner.
}
}
checkAuth();
const unsubscribe = useConnectionStore.subscribe((curr, prev) => {
if (prev.status !== "reconnected" && curr.status === "reconnected") {
checkAuth();
}
});
return () => {
cancelled = true;
unsubscribe();
};
}, []);
const hasPermission = (permission: string) => state.permissions.includes(permission);
return { ...state, hasPermission };
}