import Cookies from 'js-cookie'; import fp from '@fingerprintjs/fingerprintjs'; import { TOKEN_COOKIE_NAME } from './jwt'; type HttpOptionsType = RequestInit | { headers: Record }; type AppResponse = Record; type FetchError = { status: number; message: string; }; type AppError = { status: number; message: string; errors?: { message: string; location: string }[]; }; type ApiReturn = { response?: ResponseType; error?: ErrorType | FetchError; }; /** * Wrapper around fetch to make it easy to handle errors * * @param url * @param options */ export async function httpCall< ResponseType = AppResponse, ErrorType = AppError >( url: string, options?: HttpOptionsType ): Promise> { try { const fingerprintPromise = await fp.load({ monitoring: false }); const fingerprint = await fingerprintPromise.get(); const response = await fetch(url, { credentials: 'include', ...options, headers: new Headers({ 'Content-Type': 'application/json', Accept: 'application/json', Authorization: `Bearer ${Cookies.get(TOKEN_COOKIE_NAME)}`, 'fp': fingerprint.visitorId, ...(options?.headers ?? {}), }), }); // @ts-ignore const doesAcceptHtml = options?.headers?.['Accept'] === 'text/html'; const data = doesAcceptHtml ? await response.text() : await response.json(); if (response.ok) { return { response: data as ResponseType, error: undefined, }; } // Logout user if token is invalid if (data.status === 401) { Cookies.remove(TOKEN_COOKIE_NAME); window.location.reload(); } return { response: undefined, error: data as ErrorType, }; } catch (error: any) { return { response: undefined, error: { status: 0, message: error.message, }, }; } } export async function httpPost< ResponseType = AppResponse, ErrorType = AppError >( url: string, body: Record, options?: HttpOptionsType ): Promise> { return httpCall(url, { ...options, method: 'POST', body: JSON.stringify(body), }); } export async function httpGet( url: string, queryParams?: Record, options?: HttpOptionsType ): Promise> { const searchParams = new URLSearchParams(queryParams).toString(); const queryUrl = searchParams ? `${url}?${searchParams}` : url; return httpCall(queryUrl, { credentials: 'include', method: 'GET', ...options, }); } export async function httpPatch< ResponseType = AppResponse, ErrorType = AppError >( url: string, body: Record, options?: HttpOptionsType ): Promise> { return httpCall(url, { ...options, method: 'PATCH', body: JSON.stringify(body), }); } export async function httpPut( url: string, body: Record, options?: HttpOptionsType ): Promise> { return httpCall(url, { ...options, method: 'PUT', body: JSON.stringify(body), }); } export async function httpDelete< ResponseType = AppResponse, ErrorType = AppError >( url: string, options?: HttpOptionsType ): Promise> { return httpCall(url, { ...options, method: 'DELETE', }); }