mirror of
https://git.vectorsigma.ru/public/tubearchivist.git
synced 2026-08-04 23:39:18 +00:00
75 lines
1.9 KiB
TypeScript
75 lines
1.9 KiB
TypeScript
import defaultHeaders from '../configuration/defaultHeaders';
|
|
import getApiUrl from '../configuration/getApiUrl';
|
|
import getFetchCredentials from '../configuration/getFetchCredentials';
|
|
import logOut from '../api/actions/logOut';
|
|
import getCookie from './getCookie';
|
|
import Routes from '../configuration/routes/RouteList';
|
|
|
|
export interface ApiClientOptions extends Omit<RequestInit, 'body'> {
|
|
method?: 'GET' | 'POST' | 'PUT' | 'DELETE';
|
|
body?: Record<string, unknown> | string;
|
|
}
|
|
|
|
export interface ApiError {
|
|
status: number;
|
|
message: string;
|
|
}
|
|
|
|
const APIClient = async (
|
|
endpoint: string,
|
|
{ method = 'GET', body, headers = {}, ...options }: ApiClientOptions = {},
|
|
) => {
|
|
const apiUrl = getApiUrl();
|
|
const csrfToken = getCookie('csrftoken');
|
|
|
|
const response = await fetch(`${apiUrl}${endpoint}`, {
|
|
method,
|
|
headers: {
|
|
...defaultHeaders,
|
|
...(csrfToken ? { 'X-CSRFToken': csrfToken } : {}),
|
|
...headers,
|
|
},
|
|
credentials: getFetchCredentials(),
|
|
body: body ? JSON.stringify(body) : undefined,
|
|
...options,
|
|
});
|
|
|
|
// Handle common errors
|
|
if (response.status === 400) {
|
|
const data = await response.json();
|
|
throw {
|
|
status: response.status,
|
|
message: data?.message || 'An error occurred while processing the request.',
|
|
} as ApiError;
|
|
}
|
|
|
|
if (response.status === 401) {
|
|
logOut();
|
|
window.location.href = Routes.Login;
|
|
throw new Error('Unauthorized: Redirecting to login.');
|
|
}
|
|
|
|
if (response.status === 403) {
|
|
logOut();
|
|
window.location.href = Routes.Login;
|
|
throw new Error('Forbidden: Access denied.');
|
|
}
|
|
|
|
// Try parsing response data
|
|
let data;
|
|
try {
|
|
data = await response.json();
|
|
} catch (error) {
|
|
data = null;
|
|
console.error(`error fetching data: ${error}`);
|
|
}
|
|
|
|
if (!response.ok) {
|
|
throw new Error(data?.detail || 'An error occurred while processing the request.');
|
|
}
|
|
|
|
return data;
|
|
};
|
|
|
|
export default APIClient;
|