mirror of
https://github.com/Wei-Shaw/sub2api.git
synced 2026-09-21 22:31:42 +08:00
后端: - Gemini /v1beta 鉴权中间件补齐主中间件的授权校验: API Key 的 IP 白/黑名单、 专属分组授权、运行时过期/配额二次检查, 修复经 Gemini 端点绕过 IP ACL、 越权访问专属分组、以及状态未刷新时的配额/有效期绕过窗口。 - 粘性会话等待计划分支改走 newSelectionResult 以 hydrate 账号凭证, 修复调度 快照中账号凭证被剥离导致等待路径转发鉴权失败。 - SSE 流式转发客户端断开时不再 break 跳过当前事件 usage 合并, 修复少计费。 - Forward 对 nil gin.Context 的防御补齐; 上游错误体读取失败时记录日志避免静默。 前端: - logout 将本地会话清理移入 finally, 服务端吊销失败也保证本地登出。 - Stripe 弹窗轮询改用正确的 auth_token 键并加防重入; 收到 INIT 后清除兜底 超时定时器, onUnmounted 清理 message 监听器。 - token 刷新请求补充 30s 超时, 避免挂起导致请求队列与 loading 永久卡死。 - 路由守卫在公共设置未加载时先 await fetchPublicSettings, 避免 payment/ risk_control 被误判为未启用而错误拦截。 - 支付状态轮询回调补充防重入与终态守卫。 Co-authored-by: Cursor <cursoragent@cursor.com>
309 lines
10 KiB
TypeScript
309 lines
10 KiB
TypeScript
/**
|
|
* Axios HTTP Client Configuration
|
|
* Base client with interceptors for authentication, token refresh, and error handling
|
|
*/
|
|
|
|
import axios, { AxiosInstance, AxiosError, InternalAxiosRequestConfig, AxiosResponse } from 'axios'
|
|
import type { ApiResponse } from '@/types'
|
|
import { getLocale } from '@/i18n'
|
|
import { getAPIBaseURL } from './url'
|
|
export { buildApiUrl, buildGatewayUrl } from './url'
|
|
|
|
// ==================== Axios Instance Configuration ====================
|
|
|
|
export const apiClient: AxiosInstance = axios.create({
|
|
baseURL: getAPIBaseURL(),
|
|
withCredentials: true,
|
|
timeout: 30000,
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
}
|
|
})
|
|
|
|
// ==================== Token Refresh State ====================
|
|
|
|
// Track if a token refresh is in progress to prevent multiple simultaneous refresh requests
|
|
let isRefreshing = false
|
|
// Queue of requests waiting for token refresh
|
|
let refreshSubscribers: Array<(token: string) => void> = []
|
|
|
|
/**
|
|
* Subscribe to token refresh completion
|
|
*/
|
|
function subscribeTokenRefresh(callback: (token: string) => void): void {
|
|
refreshSubscribers.push(callback)
|
|
}
|
|
|
|
/**
|
|
* Notify all subscribers that token has been refreshed
|
|
*/
|
|
function onTokenRefreshed(token: string): void {
|
|
refreshSubscribers.forEach((callback) => callback(token))
|
|
refreshSubscribers = []
|
|
}
|
|
|
|
// ==================== Request Interceptor ====================
|
|
|
|
// Get user's timezone
|
|
const getUserTimezone = (): string => {
|
|
try {
|
|
return Intl.DateTimeFormat().resolvedOptions().timeZone
|
|
} catch {
|
|
return 'UTC'
|
|
}
|
|
}
|
|
|
|
apiClient.interceptors.request.use(
|
|
(config: InternalAxiosRequestConfig) => {
|
|
// Attach token from localStorage
|
|
const token = localStorage.getItem('auth_token')
|
|
if (token && config.headers) {
|
|
config.headers.Authorization = `Bearer ${token}`
|
|
}
|
|
|
|
// Attach locale for backend translations
|
|
if (config.headers) {
|
|
config.headers['Accept-Language'] = getLocale()
|
|
}
|
|
|
|
// Attach timezone for all GET requests (backend may use it for default date ranges)
|
|
if (config.method === 'get') {
|
|
if (!config.params) {
|
|
config.params = {}
|
|
}
|
|
config.params.timezone = getUserTimezone()
|
|
}
|
|
|
|
return config
|
|
},
|
|
(error) => {
|
|
return Promise.reject(error)
|
|
}
|
|
)
|
|
|
|
// ==================== Response Interceptor ====================
|
|
|
|
apiClient.interceptors.response.use(
|
|
(response: AxiosResponse) => {
|
|
// Unwrap standard API response format { code, message, data }
|
|
const apiResponse = response.data as ApiResponse<unknown>
|
|
if (apiResponse && typeof apiResponse === 'object' && 'code' in apiResponse) {
|
|
if (apiResponse.code === 0) {
|
|
// Success - return the data portion
|
|
response.data = apiResponse.data
|
|
} else {
|
|
// API error
|
|
const resp = apiResponse as unknown as Record<string, unknown>
|
|
return Promise.reject({
|
|
status: response.status,
|
|
code: apiResponse.code,
|
|
message: apiResponse.message || 'Unknown error',
|
|
reason: resp.reason,
|
|
metadata: resp.metadata,
|
|
})
|
|
}
|
|
}
|
|
return response
|
|
},
|
|
async (error: AxiosError<ApiResponse<unknown>>) => {
|
|
// Request cancellation: keep the original axios cancellation error so callers can ignore it.
|
|
// Otherwise we'd misclassify it as a generic "network error".
|
|
if (error.code === 'ERR_CANCELED' || axios.isCancel(error)) {
|
|
return Promise.reject(error)
|
|
}
|
|
|
|
const originalRequest = error.config as InternalAxiosRequestConfig & { _retry?: boolean }
|
|
|
|
// Handle common errors
|
|
if (error.response) {
|
|
const { status, data } = error.response
|
|
const url = String(error.config?.url || '')
|
|
|
|
// Validate `data` shape to avoid HTML error pages breaking our error handling.
|
|
const apiData = (typeof data === 'object' && data !== null ? data : {}) as Record<string, any>
|
|
|
|
// Ops monitoring disabled: treat as feature-flagged 404, and proactively redirect away
|
|
// from ops pages to avoid broken UI states.
|
|
if (status === 404 && apiData.message === 'Ops monitoring is disabled') {
|
|
try {
|
|
localStorage.setItem('ops_monitoring_enabled_cached', 'false')
|
|
} catch {
|
|
// ignore localStorage failures
|
|
}
|
|
try {
|
|
window.dispatchEvent(new CustomEvent('ops-monitoring-disabled'))
|
|
} catch {
|
|
// ignore event failures
|
|
}
|
|
|
|
if (window.location.pathname.startsWith('/admin/ops')) {
|
|
window.location.href = '/admin/settings'
|
|
}
|
|
|
|
return Promise.reject({
|
|
status,
|
|
code: 'OPS_DISABLED',
|
|
message: apiData.message || error.message,
|
|
url
|
|
})
|
|
}
|
|
|
|
if (status === 423 && apiData.code === 'ADMIN_COMPLIANCE_ACK_REQUIRED') {
|
|
try {
|
|
window.dispatchEvent(new CustomEvent('admin-compliance-required', {
|
|
detail: apiData.metadata || {}
|
|
}))
|
|
} catch {
|
|
// ignore event failures
|
|
}
|
|
|
|
return Promise.reject({
|
|
status,
|
|
code: apiData.code,
|
|
message: apiData.message || error.message,
|
|
metadata: apiData.metadata,
|
|
})
|
|
}
|
|
|
|
// 401: Try to refresh the token if we have a refresh token
|
|
// This handles TOKEN_EXPIRED, INVALID_TOKEN, TOKEN_REVOKED, etc.
|
|
if (status === 401 && !originalRequest._retry) {
|
|
const refreshToken = localStorage.getItem('refresh_token')
|
|
const isAuthEndpoint =
|
|
url.includes('/auth/login') || url.includes('/auth/register') || url.includes('/auth/refresh')
|
|
|
|
// If we have a refresh token and this is not an auth endpoint, try to refresh
|
|
if (refreshToken && !isAuthEndpoint) {
|
|
if (isRefreshing) {
|
|
// Wait for the ongoing refresh to complete
|
|
return new Promise((resolve, reject) => {
|
|
subscribeTokenRefresh((newToken: string) => {
|
|
if (newToken) {
|
|
// Mark as retried to prevent infinite loop if retry also returns 401
|
|
originalRequest._retry = true
|
|
if (originalRequest.headers) {
|
|
originalRequest.headers.Authorization = `Bearer ${newToken}`
|
|
}
|
|
resolve(apiClient(originalRequest))
|
|
} else {
|
|
// Refresh failed, reject with original error
|
|
reject({
|
|
status,
|
|
code: apiData.code,
|
|
message: apiData.message || apiData.detail || error.message
|
|
})
|
|
}
|
|
})
|
|
})
|
|
}
|
|
|
|
originalRequest._retry = true
|
|
isRefreshing = true
|
|
|
|
try {
|
|
// Call refresh endpoint directly to avoid circular dependency
|
|
const refreshResponse = await axios.post(
|
|
`${getAPIBaseURL()}/auth/refresh`,
|
|
{ refresh_token: refreshToken },
|
|
// 显式设置超时:裸 axios 默认无限等待,若刷新请求挂起会导致 isRefreshing
|
|
// 永远为 true,所有排队的 401 重试请求永久卡死,页面 loading 无法恢复。
|
|
{ headers: { 'Content-Type': 'application/json' }, timeout: 30000 }
|
|
)
|
|
|
|
const refreshData = refreshResponse.data as ApiResponse<{
|
|
access_token: string
|
|
refresh_token: string
|
|
expires_in: number
|
|
}>
|
|
|
|
if (refreshData.code === 0 && refreshData.data) {
|
|
const { access_token, refresh_token: newRefreshToken, expires_in } = refreshData.data
|
|
|
|
// Update tokens in localStorage (convert expires_in to timestamp)
|
|
localStorage.setItem('auth_token', access_token)
|
|
localStorage.setItem('refresh_token', newRefreshToken)
|
|
localStorage.setItem('token_expires_at', String(Date.now() + expires_in * 1000))
|
|
|
|
// Notify subscribers with new token
|
|
onTokenRefreshed(access_token)
|
|
|
|
// Retry the original request with new token
|
|
if (originalRequest.headers) {
|
|
originalRequest.headers.Authorization = `Bearer ${access_token}`
|
|
}
|
|
|
|
isRefreshing = false
|
|
return apiClient(originalRequest)
|
|
}
|
|
|
|
// Refresh response was not successful, fall through to clear auth
|
|
throw new Error('Token refresh failed')
|
|
} catch (refreshError) {
|
|
// Refresh failed - notify subscribers with empty token
|
|
onTokenRefreshed('')
|
|
isRefreshing = false
|
|
|
|
// Clear tokens and redirect to login
|
|
localStorage.removeItem('auth_token')
|
|
localStorage.removeItem('refresh_token')
|
|
localStorage.removeItem('auth_user')
|
|
localStorage.removeItem('token_expires_at')
|
|
sessionStorage.setItem('auth_expired', '1')
|
|
|
|
if (!window.location.pathname.includes('/login')) {
|
|
window.location.href = '/login'
|
|
}
|
|
|
|
return Promise.reject({
|
|
status: 401,
|
|
code: 'TOKEN_REFRESH_FAILED',
|
|
message: 'Session expired. Please log in again.'
|
|
})
|
|
}
|
|
}
|
|
|
|
// No refresh token or is auth endpoint - clear auth and redirect
|
|
const hasToken = !!localStorage.getItem('auth_token')
|
|
const headers = error.config?.headers as Record<string, unknown> | undefined
|
|
const authHeader = headers?.Authorization ?? headers?.authorization
|
|
const sentAuth =
|
|
typeof authHeader === 'string'
|
|
? authHeader.trim() !== ''
|
|
: Array.isArray(authHeader)
|
|
? authHeader.length > 0
|
|
: !!authHeader
|
|
|
|
localStorage.removeItem('auth_token')
|
|
localStorage.removeItem('refresh_token')
|
|
localStorage.removeItem('auth_user')
|
|
localStorage.removeItem('token_expires_at')
|
|
if ((hasToken || sentAuth) && !isAuthEndpoint) {
|
|
sessionStorage.setItem('auth_expired', '1')
|
|
}
|
|
// Only redirect if not already on login page
|
|
if (!window.location.pathname.includes('/login')) {
|
|
window.location.href = '/login'
|
|
}
|
|
}
|
|
|
|
// Return structured error
|
|
return Promise.reject({
|
|
status,
|
|
code: apiData.code,
|
|
reason: apiData.reason,
|
|
error: apiData.error,
|
|
message: apiData.message || apiData.detail || error.message,
|
|
metadata: apiData.metadata,
|
|
})
|
|
}
|
|
|
|
// Network error
|
|
return Promise.reject({
|
|
status: 0,
|
|
message: 'Network error. Please check your connection.'
|
|
})
|
|
}
|
|
)
|
|
|
|
export default apiClient
|