-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbaseClient.ts
More file actions
488 lines (442 loc) · 12.7 KB
/
baseClient.ts
File metadata and controls
488 lines (442 loc) · 12.7 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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
import axios, {
AxiosError,
type AxiosInstance,
type AxiosRequestConfig,
type AxiosResponse,
} from 'axios'
import axiosRetry, { isNetworkOrIdempotentRequestError } from 'axios-retry'
import type { ICredentials } from './helpers/credentials'
import {
BadRequestError,
ConflictError,
NotFoundError,
UnauthorizedError,
UnprocessableEntityError,
sanitizeErrorData,
} from './helpers/errors'
/**
* Configuration for the keep alive feature
*/
export type KeepAliveConfig = {
/**
* Whether to keep the connection alive
*/
enabled: boolean
/**
* Maximum number of sockets to keep alive
*/
maxSockets?: number
/**
* Maximum number of free sockets to keep alive
*/
maxFreeSockets?: number
/**
* Keep alive milliseconds (how long to keep the connection alive)
*/
keepAliveMsecs?: number
}
/**
* Configuration for retry mechanism
*/
export type RetryConfig = {
/**
* Whether to enable retry mechanism (default: true)
*/
enabled: boolean
/**
* Maximum number of retry attempts (default: 3)
*/
maxRetries?: number
}
/**
* Base configuration for the client
*/
export type ClientConfig = {
/**
* Base URL for the API
*/
baseUrl?: string
/**
* Keep the connection alive
*/
keepAlive?: KeepAliveConfig
/**
* Timeout for requests in milliseconds (default: 1000)
*/
timeout?: number
/**
* Retry configuration
*/
retry?: RetryConfig
}
/**
* Default configuration for the client
*/
export const DEFAULT_CONFIG: Required<ClientConfig> = {
baseUrl: `http://localhost:${process.env.NITTEI__HTTP_PORT ?? '5000'}/api/v1`,
keepAlive: {
enabled: false,
},
timeout: 1000,
retry: {
enabled: true,
maxRetries: 3,
},
}
/**
* Base client for the API
* This client is used to centralize configuration needed for calling the API
* It shouldn't be exposed to the end user
*/
export abstract class NitteiBaseClient {
constructor(private readonly axiosClient: AxiosInstance) {}
/**
* Private generic function to call the API
* @private
* @param method - HTTP method to use
* @param path - path to the endpoint
* @param data - data to send to the server
* @param params - query parameters
* @returns Axios response
*/
private async callApi<T>({
method,
path,
data,
params,
}: {
method: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'
path: string
data?: unknown
params?: Record<string, unknown>
}): Promise<AxiosResponse<T>> {
let res: AxiosResponse<T> | undefined
try {
res = await this.axiosClient({ method, url: path, data, params })
} catch (error) {
// Technically this one shouldn't be triggered, because we are using validateStatus: () => true
// We handle the errors ourselves in the `handleStatusCode` call below
// This is just in case
if (error instanceof AxiosError) {
const sanitizedErrorData = sanitizeErrorData(
error?.response?.data ??
(error.cause as Error)?.message ??
error.message
)
throw new Error(
`Request failed with ${error?.status ? `status code ${error.status}` : 'no status code'} (${sanitizedErrorData})`
)
}
// This might happen if we don't have any status code
const sanitizedErrorData = sanitizeErrorData(
(error as Error)?.message ?? String(error)
)
throw new Error(`Unknown error (no status code) (${sanitizedErrorData})`)
}
if (!res) {
throw new Error('No response from the server')
}
this.handleStatusCode(res)
return res
}
/**
* Make a GET request to the API
* @private
* @param path - path to the endpoint
* @param params - query parameters
* @throws Error if the status code is 400 or higher
* @returns response's data
*/
protected async get<T>(
path: string,
params: Record<string, unknown> = {}
): Promise<T> {
const res = await this.callApi<T>({
method: 'GET',
path,
params,
})
return res.data
}
/**
* Make a POST request to the API
* @private
* @param path - path to the endpoint
* @param data - data to send to the server
* @throws Error if the status code is 400 or higher
* @returns response's data
*/
protected async post<T>(path: string, data: unknown): Promise<T> {
const res = await this.callApi<T>({
method: 'POST',
path,
data,
})
return res.data
}
/**
* Make a PUT request to the API
* @private
* @param path - path to the endpoint
* @param data - data to send to the server
* @throws Error if the status code is 400 or higher
* @returns response's data
*/
protected async put<T>(path: string, data: unknown): Promise<T> {
const res = await this.callApi<T>({
method: 'PUT',
path,
data,
})
return res.data
}
/**
* Make a PATCH request to the API
* @private
* @param path - path to the endpoint
* @param data - data to send to the server
* @throws Error if the status code is 400 or higher
* @returns response's data
*/
protected async patch<T>(path: string, data: unknown): Promise<T> {
const res = await this.callApi<T>({
method: 'PATCH',
path,
data,
})
return res.data
}
/**
* Make a DELETE request to the API
* Note: this one doesn't have a body
* @private
* @param path - path to the endpoint
* @throws Error if the status code is 400 or higher
* @returns response's data
*/
protected async delete<T>(path: string): Promise<T> {
const res = await this.callApi<T>({
method: 'DELETE',
path,
})
return res.data
}
/**
* Make a DELETE request to the API with a body
* @private
* @param path - path to the endpoint
* @param data - data to send to the server
* @throws Error if the status code is 400 or higher
* @returns response's data
*/
protected async deleteWithBody<T>(path: string, data: unknown): Promise<T> {
const res = await this.callApi<T>({
method: 'DELETE',
data,
path,
})
return res.data
}
/**
* Handle status code from the server
* @param res - response from the server
* @throws Error if the status code is 400 or higher
*/
private handleStatusCode(res: AxiosResponse): void {
if (res.status >= 500) {
const sanitizedErrorString = sanitizeErrorData(res.data)
throw new Error(
`Internal server error, please try again later (${res.status}) (${sanitizedErrorString})`
)
}
if (res.status >= 400) {
const sanitizedErrorData = sanitizeErrorData(res.data)
if (res.status === 400) {
throw new BadRequestError(sanitizedErrorData)
}
if (res.status === 401 || res.status === 403) {
throw new UnauthorizedError(sanitizedErrorData)
}
if (res.status === 404) {
throw new NotFoundError(sanitizedErrorData)
}
if (res.status === 409) {
throw new ConflictError(sanitizedErrorData)
}
if (res.status === 422) {
throw new UnprocessableEntityError(sanitizedErrorData)
}
throw new Error(
`Request failed with status code ${res.status} (${sanitizedErrorData})`
)
}
}
}
/**
* Create an Axios instance for the frontend
*
* Compared to the backend, this function is not async
* And the frontend cannot keep the connection alive
*
* @param args specify base URL for the API
* @param credentials credentials for the API
* @returns an Axios instance
*/
export const createAxiosInstanceFrontend = (
args: {
baseUrl: string
timeout: number
retry: RetryConfig
},
credentials: ICredentials
): AxiosInstance => {
const config: AxiosRequestConfig = {
timeout: args.timeout,
baseURL: args.baseUrl,
headers: credentials.createAuthHeaders(),
validateStatus: () => true, // allow all status codes without throwing error
paramsSerializer: params => {
if (!params) {
return ''
}
const filteredMap = Object.entries(params)
.filter(([, value]) => value !== undefined)
.reduce(
(acc, [key, value]) => {
acc[key] = value
return acc
},
{} as Record<string, string>
)
return new URLSearchParams(filteredMap).toString()
},
}
const axiosClient = axios.create(config)
if (args.retry.enabled) {
axiosRetry(axiosClient, {
retries: args.retry.maxRetries ?? 3,
retryDelay: axiosRetry.exponentialDelay,
retryCondition: canRequestBeRetried,
shouldResetTimeout: true,
})
}
return axiosClient
}
/**
* Create an Axios instance for the backend
*
* On the backend (NodeJS), it is possible to keep the connection alive
* @param args specify base URL and if the connection should be kept alive
* @param credentials credentials for the API
* @returns Promise of an Axios instance
*/
export const createAxiosInstanceBackend = async (
args: {
baseUrl: string
keepAlive: KeepAliveConfig
timeout: number
retry: RetryConfig
},
credentials: ICredentials
): Promise<AxiosInstance> => {
const config: AxiosRequestConfig = {
timeout: args.timeout,
baseURL: args.baseUrl,
headers: credentials.createAuthHeaders(),
validateStatus: () => true, // allow all status codes without throwing error
paramsSerializer: params => {
if (!params) {
return ''
}
const filteredMap = Object.entries(params)
.filter(([, value]) => value !== undefined)
.reduce(
(acc, [key, value]) => {
acc[key] = value
return acc
},
{} as Record<string, string>
)
return new URLSearchParams(filteredMap).toString()
},
}
// If keepAlive is true, and if we are in NodeJS
// create an agent to keep the connection alive
if (
args.keepAlive.enabled &&
typeof module !== 'undefined' &&
module.exports
) {
// This is a dynamic import to avoid loading this module in the browser
const CacheableLookupLib = await import('cacheable-lookup')
// Create a cacheable lookup instance
// Goal is to make DNS lookup fully async + avoid hitting the limit of 4 UV threads
// See https://marmelab.com/blog/2025/07/28/dns-in-nodejs.html (for example) on the subject
const cacheableLookup = new CacheableLookupLib.default()
if (args.baseUrl.startsWith('https')) {
// This is a dynamic import to avoid loading the https module in the browser
const https = await import('node:https')
// Default values are what we evaluated to be good for our load
const httpsAgent = new https.Agent({
keepAlive: true,
maxSockets: args.keepAlive.maxSockets ?? 75,
maxFreeSockets: args.keepAlive.maxFreeSockets ?? 10,
keepAliveMsecs: args.keepAlive.keepAliveMsecs ?? 60000,
})
cacheableLookup.install(httpsAgent)
config.httpsAgent = httpsAgent
} else {
// This is a dynamic import to avoid loading the http module in the browser
const http = await import('node:http')
// Default values are what we evaluated to be good for our load
const httpAgent = new http.Agent({
keepAlive: true,
maxSockets: args.keepAlive.maxSockets ?? 75,
maxFreeSockets: args.keepAlive.maxFreeSockets ?? 10,
keepAliveMsecs: args.keepAlive.keepAliveMsecs ?? 60000,
})
cacheableLookup.install(httpAgent)
config.httpAgent = httpAgent
}
}
const axiosClient = axios.create(config)
if (args.retry.enabled) {
axiosRetry(axiosClient, {
retries: args.retry.maxRetries ?? 3,
retryDelay: axiosRetry.exponentialDelay,
retryCondition: canRequestBeRetried,
shouldResetTimeout: true,
})
}
return axiosClient
}
// Idempotent endpoints (populated by the decorator)
const idempotentEndpoints = new Set<string>()
/**
* Mark the method as idempotent, which effectively adds it to the list of endpoints that can be retried without side-effects
* @param endpoint - the endpoint to mark as idempotent (url)
* @returns the decorator function
*/
export function IdempotentRequest(endpoint: string) {
// Register this endpoint as idempotent
idempotentEndpoints.add(endpoint)
return (
_target: unknown,
_propertyKey: string | symbol,
descriptor: PropertyDescriptor
): PropertyDescriptor => descriptor
}
/**
* Internal function for checking if an HTTP request can be retried without side-effects
*/
const canRequestBeRetried = (error: AxiosError): boolean => {
// Default condition
if (isNetworkOrIdempotentRequestError(error)) {
return true
}
// Allow some POST requests to be retried (e.g. searches)
if (idempotentEndpoints.has(error.config?.url ?? '')) {
return true
}
return false
}