forked from Portkey-AI/gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.ts
214 lines (187 loc) · 5.34 KB
/
utils.ts
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
import { HookEventType, PluginContext } from './types';
interface PostOptions extends RequestInit {
headers?: Record<string, string>;
}
interface ErrorResponse {
status: number;
statusText: string;
body: string;
}
class HttpError extends Error {
response: ErrorResponse;
constructor(message: string, response: ErrorResponse) {
super(message);
this.name = 'HttpError';
this.response = response;
}
}
class TimeoutError extends Error {
url: string;
timeout: number;
method: string;
constructor(message: string, url: string, timeout: number, method: string) {
super(message);
this.name = 'TimeoutError';
this.url = url;
this.timeout = timeout;
this.method = method;
}
}
export const getText = (
context: PluginContext,
eventType: HookEventType
): string => {
switch (eventType) {
case 'beforeRequestHook':
return context.request?.text;
case 'afterRequestHook':
return context.response?.text;
default:
throw new Error('Invalid hook type');
}
};
/**
* Sends a POST request to the specified URL with the given data and timeout.
* @param url - The URL to send the POST request to.
* @param data - The data to be sent in the request body.
* @param options - Additional options for the fetch call.
* @param timeout - Timeout in milliseconds (default: 5 seconds).
* @returns A promise that resolves to the JSON response.
* @throws {HttpError} Throws an HttpError with detailed information if the request fails.
* @throws {Error} Throws a generic Error for network issues or timeouts.
*/
export async function post<T = any>(
url: string,
data: any,
options: PostOptions = {},
timeout: number = 5000
): Promise<T> {
const defaultOptions: PostOptions = {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(data),
};
const mergedOptions: PostOptions = { ...defaultOptions, ...options };
if (mergedOptions.headers) {
mergedOptions.headers = {
...defaultOptions.headers,
...mergedOptions.headers,
};
}
try {
const controller = new AbortController();
const id = setTimeout(() => controller.abort(), timeout);
const response: Response = await fetch(url, {
...mergedOptions,
signal: controller.signal,
});
clearTimeout(id);
if (!response.ok) {
let errorBody: string;
try {
errorBody = await response.text();
} catch (e) {
errorBody = 'Unable to retrieve response body';
}
const errorResponse: ErrorResponse = {
status: response.status,
statusText: response.statusText,
body: errorBody,
};
throw new HttpError(
`HTTP error! status: ${response.status}`,
errorResponse
);
}
return (await response.json()) as T;
} catch (error: any) {
if (error instanceof HttpError) {
throw error;
}
if (error.name === 'AbortError') {
throw new TimeoutError(
`Request timed out after ${timeout}ms`,
url,
timeout,
mergedOptions.method || 'POST'
);
}
// console.error('Error in post request:', error);
throw error;
}
}
/**
* Sends a POST request to the specified URL with the given data and timeout.
* @param url - The URL to send the POST request to.
* @param data - The data to be sent in the request body.
* @param options - Additional options for the fetch call.
* @param timeout - Timeout in milliseconds (default: 5 seconds).
* @returns A promise that resolves to the JSON response.
* @throws {HttpError} Throws an HttpError with detailed information if the request fails.
* @throws {Error} Throws a generic Error for network issues or timeouts.
*/
export async function postWithCloudflareServiceBinding<T = any>(
url: string,
data: any,
serviceBinding: any,
options: PostOptions = {},
timeout: number = 5000
): Promise<T> {
const defaultOptions: PostOptions = {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(data),
};
const mergedOptions: PostOptions = { ...defaultOptions, ...options };
if (mergedOptions.headers) {
mergedOptions.headers = {
...defaultOptions.headers,
...mergedOptions.headers,
};
}
try {
const controller = new AbortController();
const id = setTimeout(() => controller.abort(), timeout);
const response: Response = await serviceBinding.fetch(url, {
...mergedOptions,
signal: controller.signal,
});
clearTimeout(id);
if (!response.ok) {
let errorBody: string;
try {
errorBody = await response.text();
} catch (e) {
errorBody = 'Unable to retrieve response body';
}
const errorResponse: ErrorResponse = {
status: response.status,
statusText: response.statusText,
body: errorBody,
};
throw new HttpError(
`HTTP error! status: ${response.status}`,
errorResponse
);
}
return (await response.json()) as T;
} catch (error: any) {
if (error instanceof HttpError) {
throw error;
}
if (error.name === 'AbortError') {
throw new TimeoutError(
`Request timed out after ${timeout}ms`,
url,
timeout,
mergedOptions.method || 'POST'
);
}
// console.error('Error in post request:', error);
throw error;
}
}