-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.ts
More file actions
418 lines (364 loc) · 10.8 KB
/
Copy pathclient.ts
File metadata and controls
418 lines (364 loc) · 10.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
/**
* API Client with Authentication and Encryption Support
* Handles HTTP requests, token management, and automatic encryption/decryption
*/
import axios, {
AxiosInstance,
AxiosRequestConfig,
AxiosResponse,
AxiosError,
InternalAxiosRequestConfig
} from 'axios'
import toast from 'react-hot-toast'
// Crypto manager for encryption/decryption
import { cryptoManager } from '@crypto/cryptoManager'
// Types
export interface ApiResponse<T = unknown> {
success: boolean
data?: T
message?: string
error?: string
details?: unknown
}
export interface ApiError {
message: string
status: number
code?: string
details?: unknown
}
export interface RequestConfig extends AxiosRequestConfig {
encrypt?: boolean
decrypt?: boolean
skipAuth?: boolean
skipErrorToast?: boolean
}
class ApiClient {
private instance: AxiosInstance
private authToken: string | null = null
private refreshPromise: Promise<string> | null = null
constructor() {
this.instance = axios.create({
baseURL: import.meta.env.VITE_API_URL || '/api',
timeout: 30000,
headers: {
'Content-Type': 'application/json',
},
})
this.setupInterceptors()
}
/**
* Setup request and response interceptors
*/
private setupInterceptors(): void {
// Request interceptor
this.instance.interceptors.request.use(
async (config: InternalAxiosRequestConfig) => {
// Add auth token if available and not explicitly skipped
if (this.authToken && !config.skipAuth) {
config.headers.Authorization = `Bearer ${this.authToken}`
}
// Add request ID for tracking
config.headers['X-Request-ID'] = crypto.randomUUID()
// Add timestamp
config.headers['X-Request-Time'] = new Date().toISOString()
// Encrypt request body if requested and crypto is ready
if (config.encrypt && cryptoManager.hasUserKey && config.data) {
try {
const encryptedData = await cryptoManager.encryptString(
typeof config.data === 'string' ? config.data : JSON.stringify(config.data)
)
config.data = { encrypted: encryptedData }
config.headers['X-Encrypted'] = 'true'
} catch (error) {
console.error('Failed to encrypt request data:', error)
throw new Error('Encryption failed')
}
}
return config
},
(error) => {
return Promise.reject(error)
}
)
// Response interceptor
this.instance.interceptors.response.use(
async (response: AxiosResponse) => {
// Decrypt response if it's encrypted
if (response.config.decrypt && response.data?.encrypted) {
try {
const decryptedData = await cryptoManager.decryptString(response.data.encrypted)
response.data = JSON.parse(decryptedData)
} catch (error) {
console.error('Failed to decrypt response data:', error)
throw new Error('Decryption failed')
}
}
return response
},
async (error: AxiosError) => {
const originalRequest = error.config as RequestConfig & { _retry?: boolean }
// Handle 401 errors (token expired)
if (error.response?.status === 401 && !originalRequest._retry) {
originalRequest._retry = true
try {
// Try to refresh the token
const newToken = await this.refreshToken()
if (newToken && originalRequest.headers) {
originalRequest.headers.Authorization = `Bearer ${newToken}`
return this.instance(originalRequest)
}
} catch (refreshError) {
// Refresh failed, redirect to login
this.handleAuthError()
return Promise.reject(refreshError)
}
}
// Handle other errors
this.handleError(error, originalRequest)
return Promise.reject(error)
}
)
}
/**
* Set authentication token
*/
setAuthToken(token: string): void {
this.authToken = token
}
/**
* Clear authentication token
*/
clearAuthToken(): void {
this.authToken = null
}
/**
* Refresh authentication token
*/
private refreshToken(): Promise<string> {
// Prevent multiple simultaneous refresh requests
if (this.refreshPromise) {
return this.refreshPromise
}
this.refreshPromise = new Promise((resolve, reject) => { (async () => {
try {
// Get refresh token from localStorage or store
const storedAuth = localStorage.getItem('turning-wheel-auth')
if (!storedAuth) {
throw new Error('No refresh token available')
}
const authData = JSON.parse(storedAuth)
const refreshToken = authData.state?.tokens?.refreshToken
if (!refreshToken) {
throw new Error('No refresh token available')
}
// Make refresh request without interceptors
const response = await axios.post(
`${this.instance.defaults.baseURL}/auth/refresh`,
{ refreshToken },
{
headers: { 'Content-Type': 'application/json' }
}
)
const { tokens } = response.data.data
this.setAuthToken(tokens.accessToken)
// Update stored tokens
const updatedAuthData = {
...authData,
state: {
...authData.state,
tokens
}
}
localStorage.setItem('turning-wheel-auth', JSON.stringify(updatedAuthData))
resolve(tokens.accessToken)
} catch (error) {
reject(error)
} finally {
this.refreshPromise = null
}})() })
return this.refreshPromise
}
/**
* Handle authentication errors
*/
private handleAuthError(): void {
// Clear stored auth data
localStorage.removeItem('turning-wheel-auth')
this.clearAuthToken()
// Redirect to login (if not already there)
if (!window.location.pathname.includes('/auth')) {
toast.error('Session expired. Please log in again.')
window.location.href = '/auth'
}
}
/**
* Handle API errors
*/
private handleError(error: AxiosError, config?: RequestConfig): void {
if (config?.skipErrorToast) {
return
}
const response = error.response
const message = response?.data?.message || response?.data?.error || error.message
// Don't show toast for certain status codes
const skipToastCodes = [401, 404]
if (response && skipToastCodes.includes(response.status)) {
return
}
// Show error toast
toast.error(message || 'An unexpected error occurred')
// Log error details in development
if (import.meta.env.DEV) {
console.error('API Error:', {
url: error.config?.url,
method: error.config?.method,
status: response?.status,
message: message,
response: response?.data
})
}
}
/**
* GET request
*/
get<T>(url: string, config?: RequestConfig): Promise<AxiosResponse<ApiResponse<T>>> {
return this.instance.get(url, config)
}
/**
* POST request
*/
post<T>(url: string, data?: unknown, config?: RequestConfig): Promise<AxiosResponse<ApiResponse<T>>> {
return this.instance.post(url, data, config)
}
/**
* PUT request
*/
put<T>(url: string, data?: unknown, config?: RequestConfig): Promise<AxiosResponse<ApiResponse<T>>> {
return this.instance.put(url, data, config)
}
/**
* PATCH request
*/
patch<T>(url: string, data?: unknown, config?: RequestConfig): Promise<AxiosResponse<ApiResponse<T>>> {
return this.instance.patch(url, data, config)
}
/**
* DELETE request
*/
delete<T>(url: string, config?: RequestConfig): Promise<AxiosResponse<ApiResponse<T>>> {
return this.instance.delete(url, config)
}
/**
* Upload file with progress tracking
*/
uploadFile<T>(
url: string,
file: File,
onProgress?: (progress: number) => void,
config?: RequestConfig
): Promise<AxiosResponse<ApiResponse<T>>> {
const formData = new FormData()
formData.append('file', file)
return this.instance.post(url, formData, {
...config,
headers: {
...config?.headers,
'Content-Type': 'multipart/form-data',
},
onUploadProgress: (progressEvent) => {
if (onProgress && progressEvent.total) {
const progress = Math.round((progressEvent.loaded * 100) / progressEvent.total)
onProgress(progress)
}
},
})
}
/**
* Download file with progress tracking
*/
async downloadFile(
url: string,
filename?: string,
onProgress?: (progress: number) => void,
config?: RequestConfig
): Promise<void> {
const response = await this.instance.get(url, {
...config,
responseType: 'blob',
onDownloadProgress: (progressEvent) => {
if (onProgress && progressEvent.total) {
const progress = Math.round((progressEvent.loaded * 100) / progressEvent.total)
onProgress(progress)
}
},
})
// Create download link
const blob = new Blob([response.data])
const downloadUrl = window.URL.createObjectURL(blob)
const link = document.createElement('a')
link.href = downloadUrl
link.download = filename || 'download'
document.body.appendChild(link)
link.click()
document.body.removeChild(link)
window.URL.revokeObjectURL(downloadUrl)
}
/**
* Make encrypted request
*/
encryptedRequest<T>(
method: 'get' | 'post' | 'put' | 'patch' | 'delete',
url: string,
data?: unknown,
config?: RequestConfig
): Promise<AxiosResponse<ApiResponse<T>>> {
const encryptedConfig: RequestConfig = {
...config,
encrypt: method !== 'get',
decrypt: true
}
switch (method) {
case 'get':
return this.get<T>(url, encryptedConfig)
case 'post':
return this.post<T>(url, data, encryptedConfig)
case 'put':
return this.put<T>(url, data, encryptedConfig)
case 'patch':
return this.patch<T>(url, data, encryptedConfig)
case 'delete':
return this.delete<T>(url, encryptedConfig)
default:
throw new Error(`Unsupported method: ${method}`)
}
}
/**
* Health check
*/
async healthCheck(): Promise<boolean> {
try {
const response = await this.get('/health', { skipAuth: true, skipErrorToast: true })
return response.data.success
} catch {
return false
}
}
/**
* Get current user
*/
getCurrentUser(): Promise<AxiosResponse<ApiResponse<unknown>>> {
return this.get('/auth/me')
}
/**
* Get instance for direct use
*/
getInstance(): AxiosInstance {
return this.instance
}
}
// Create and export singleton instance
export const apiClient = new ApiClient()
// Export types and utilities
export { ApiClient }
export type { ApiResponse, ApiError, RequestConfig }
export default apiClient