mirror of
https://github.com/warmbly/warmbly.git
synced 2026-09-07 00:01:37 +00:00
116 lines
3.9 KiB
TypeScript
116 lines
3.9 KiB
TypeScript
import type { AxiosRequestConfig } from "axios"
|
|
import Client from "./Client"
|
|
import getToken from "@/lib/helper/getToken"
|
|
import isExpired from "@/lib/helper/isExpired";
|
|
import { NoToken, SessionExpired } from "@/lib/errors/auth";
|
|
import refreshTokenFn from "./auth/refreshToken";
|
|
import setToken from "@/lib/helper/setToken";
|
|
import reviveDates from "@/lib/helper/reviveDates";
|
|
import type { AppError } from "./normalizeError";
|
|
import { clearTokens } from "@/lib/auth";
|
|
import type Token from "@/lib/api/models/auth/Token";
|
|
|
|
interface AuthRequestConfig extends AxiosRequestConfig {
|
|
authorization?: boolean
|
|
}
|
|
|
|
// Refresh lock: only one refresh at a time, others wait for it
|
|
let refreshPromise: Promise<Token> | null = null;
|
|
|
|
async function ensureValidToken(): Promise<Token> {
|
|
const token = getToken();
|
|
if (!token) {
|
|
throw NoToken;
|
|
}
|
|
|
|
if (token.access_token && !isExpired(token.access_token_expires_at)) {
|
|
return token;
|
|
}
|
|
|
|
// Access token expired — need to refresh
|
|
if (!token.refresh_token || isExpired(token.refresh_token_expires_at)) {
|
|
clearTokens();
|
|
throw SessionExpired;
|
|
}
|
|
|
|
// If a refresh is already in progress, wait for it
|
|
if (refreshPromise) {
|
|
try {
|
|
await refreshPromise;
|
|
const updated = getToken();
|
|
if (updated && updated.access_token && !isExpired(updated.access_token_expires_at)) {
|
|
return updated;
|
|
}
|
|
throw SessionExpired;
|
|
} catch {
|
|
throw SessionExpired;
|
|
}
|
|
}
|
|
|
|
// Start a new refresh
|
|
refreshPromise = refreshTokenFn(token.refresh_token);
|
|
try {
|
|
const newToken = await refreshPromise;
|
|
setToken(newToken);
|
|
return newToken;
|
|
} catch {
|
|
clearTokens();
|
|
throw SessionExpired;
|
|
} finally {
|
|
refreshPromise = null;
|
|
}
|
|
}
|
|
|
|
export default async function Request<T>(config: AuthRequestConfig): Promise<T> {
|
|
if (config.authorization) {
|
|
const token = await ensureValidToken();
|
|
|
|
config.headers = {
|
|
...config.headers,
|
|
Authorization: `Bearer ${token.access_token}`,
|
|
}
|
|
}
|
|
|
|
try {
|
|
const res = await Client.request(config)
|
|
return reviveDates(res.data)
|
|
} catch (error) {
|
|
const appErr = error as AppError;
|
|
|
|
// Only an authorized 401 means the session is gone: refresh, retry once,
|
|
// then give up. A public 401 reaches the caller with its code intact.
|
|
if (config.authorization && (appErr?.status === 401 || appErr?.redirect)) {
|
|
try {
|
|
const token = await ensureValidToken();
|
|
config.headers = {
|
|
...config.headers,
|
|
Authorization: `Bearer ${token.access_token}`,
|
|
}
|
|
const res = await Client.request(config)
|
|
return reviveDates(res.data)
|
|
} catch {
|
|
clearTokens();
|
|
throw SessionExpired;
|
|
}
|
|
}
|
|
|
|
// A denied WRITE action (edit/save/delete) gets one clear, app-wide
|
|
// popup explaining the missing permission (or plan). Reads that 403 are
|
|
// intentionally left to page-level gating (locked surfaces / NoAccess),
|
|
// so we only surface this for mutating methods.
|
|
// A full mailbox allowance is a 403 with its own code and its own
|
|
// dialog (MailboxAllowanceDialog), so it is not a permission problem.
|
|
if (appErr?.status === 403 && appErr.code !== "mailbox_allowance_reached" && typeof window !== "undefined") {
|
|
const method = String(config.method ?? "get").toUpperCase();
|
|
if (method !== "GET" && method !== "HEAD") {
|
|
window.dispatchEvent(
|
|
new CustomEvent("permission-denied", {
|
|
detail: { message: appErr.message },
|
|
}),
|
|
);
|
|
}
|
|
}
|
|
throw error;
|
|
}
|
|
}
|