mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-22 23:31:12 +02:00
- Add baseApiService token clearing on 401 in use-user.ts - Add baseApiService token clearing on 401 in use-chats.ts (both fetchChats and deleteChat) - Add baseApiService token clearing on 401 in use-search-space.ts - Update all redirects to /login?error=session_expired for better UX - Add session_expired error message to auth-errors.ts This ensures consistent session invalidation across all API hooks, preventing stale auth state in the baseApiService singleton.
71 lines
1.9 KiB
TypeScript
71 lines
1.9 KiB
TypeScript
"use client";
|
|
|
|
import { useCallback, useEffect, useState } from "react";
|
|
import { toast } from "sonner";
|
|
import { baseApiService } from "@/lib/apis/base-api.service";
|
|
|
|
interface SearchSpace {
|
|
created_at: string;
|
|
id: number;
|
|
name: string;
|
|
description: string;
|
|
user_id: string;
|
|
}
|
|
|
|
interface UseSearchSpaceOptions {
|
|
searchSpaceId: string | number;
|
|
autoFetch?: boolean;
|
|
}
|
|
|
|
export function useSearchSpace({ searchSpaceId, autoFetch = true }: UseSearchSpaceOptions) {
|
|
const [searchSpace, setSearchSpace] = useState<SearchSpace | null>(null);
|
|
const [loading, setLoading] = useState(true);
|
|
const [error, setError] = useState<string | null>(null);
|
|
|
|
const fetchSearchSpace = useCallback(async () => {
|
|
try {
|
|
// Only run on client-side
|
|
if (typeof window === "undefined") return;
|
|
|
|
setLoading(true);
|
|
const response = await fetch(
|
|
`${process.env.NEXT_PUBLIC_FASTAPI_BACKEND_URL}/api/v1/searchspaces/${searchSpaceId}`,
|
|
{
|
|
headers: {
|
|
Authorization: `Bearer ${localStorage.getItem("surfsense_bearer_token")}`,
|
|
},
|
|
method: "GET",
|
|
}
|
|
);
|
|
|
|
if (response.status === 401) {
|
|
// Clear token from both localStorage and baseApiService
|
|
localStorage.removeItem("surfsense_bearer_token");
|
|
baseApiService.setBearerToken("");
|
|
window.location.href = "/login?error=session_expired";
|
|
throw new Error("Unauthorized: Redirecting to login page");
|
|
}
|
|
|
|
if (!response.ok) {
|
|
throw new Error(`Failed to fetch search space: ${response.status}`);
|
|
}
|
|
|
|
const data = await response.json();
|
|
setSearchSpace(data);
|
|
setError(null);
|
|
} catch (err: any) {
|
|
setError(err.message || "Failed to fetch search space");
|
|
console.error("Error fetching search space:", err);
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
}, [searchSpaceId]);
|
|
|
|
useEffect(() => {
|
|
if (autoFetch) {
|
|
fetchSearchSpace();
|
|
}
|
|
}, [autoFetch, fetchSearchSpace]);
|
|
|
|
return { searchSpace, loading, error, fetchSearchSpace };
|
|
}
|