-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathapi.ts
More file actions
300 lines (266 loc) · 7.95 KB
/
api.ts
File metadata and controls
300 lines (266 loc) · 7.95 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
import type {
Binary,
Commit,
DiffTableRow,
EnrichedBenchmarkResult,
Environment,
PythonVersionFilterOption,
BenchmarkResultJson,
AuthToken,
TokenCreate,
TokenUpdate,
TokenAnalytics,
} from './types';
const API_BASE = process.env.NEXT_PUBLIC_API_BASE || 'http://localhost:8000/api';
class ApiError extends Error {
constructor(
public status: number,
message: string,
public response?: Response
) {
super(message);
this.name = 'ApiError';
}
}
// Network error handler
class NetworkError extends Error {
constructor(message: string) {
super(message);
this.name = 'NetworkError';
}
}
async function fetchApi<T>(
endpoint: string,
options?: RequestInit
): Promise<T> {
try {
const controller = new AbortController();
const timeoutId = setTimeout(() => controller.abort(), 30000); // 30 second timeout
const response = await fetch(`${API_BASE}${endpoint}`, {
...options,
signal: controller.signal,
headers: {
'Content-Type': 'application/json',
...options?.headers,
},
credentials: 'include', // Include cookies for authentication
});
clearTimeout(timeoutId);
if (!response.ok) {
let errorMessage = `API error: ${response.statusText}`;
// Try to get more detailed error message from response
try {
const errorData = await response.json();
if (errorData.detail) {
errorMessage =
typeof errorData.detail === 'string'
? errorData.detail
: errorData.detail.message || errorMessage;
}
} catch {
// If response isn't JSON, fall back to status text
}
throw new ApiError(response.status, errorMessage, response);
}
return response.json();
} catch (error) {
if (error instanceof ApiError) {
throw error;
}
// Handle network errors
if (error instanceof TypeError && error.message === 'Failed to fetch') {
throw new NetworkError(
'Network connection failed. Please check your internet connection.'
);
}
// Handle timeout
if (error.name === 'AbortError') {
throw new NetworkError('Request timed out. Please try again.');
}
// Re-throw other errors
throw error;
}
}
export const api = {
// Commit endpoints
getCommits: (skip: number = 0, limit: number = 100) =>
fetchApi<Commit[]>(`/commits?skip=${skip}&limit=${limit}`),
getCommit: (sha: string) => fetchApi<Commit>(`/commits/${sha}`),
// Binary endpoints
getBinaries: () => fetchApi<Binary[]>(`/binaries?_t=${Date.now()}`),
getBinary: (id: string) => fetchApi<Binary>(`/binaries/${id}`),
getEnvironmentsForBinary: (binaryId: string) =>
fetchApi<
Array<{
id: string;
name: string;
description?: string;
run_count: number;
commit_count: number;
}>
>(`/binaries/${binaryId}/environments`),
getCommitsForBinaryAndEnvironment: (
binaryId: string,
environmentId: string
) =>
fetchApi<
Array<{
sha: string;
timestamp: string;
message: string;
author: string;
python_version: { major: number; minor: number; patch: number };
run_timestamp: string;
}>
>(`/binaries/${binaryId}/environments/${environmentId}/commits`),
// Environment endpoints
getEnvironments: () => fetchApi<Environment[]>('/environments'),
getEnvironment: (id: string) =>
fetchApi<Environment>(`/environments/${id}`),
// Python version endpoints
getPythonVersions: () =>
fetchApi<PythonVersionFilterOption[]>('/python-versions'),
// Benchmark endpoints
getAllBenchmarks: () => fetchApi<string[]>('/benchmarks'),
getBenchmarkNames: (params: {
environment_id: string;
binary_id: string;
python_major: number;
python_minor: number;
}) => {
const queryParams = new URLSearchParams();
queryParams.append('environment_id', params.environment_id);
queryParams.append('binary_id', params.binary_id);
queryParams.append('python_major', params.python_major.toString());
queryParams.append('python_minor', params.python_minor.toString());
return fetchApi<string[]>(`/benchmark-names?${queryParams.toString()}`);
},
// Diff endpoint
getDiffTable: (params: {
commit_sha: string;
binary_id: string;
environment_id: string;
metric_key: string;
}) => {
const queryParams = new URLSearchParams();
queryParams.append('commit_sha', params.commit_sha);
queryParams.append('binary_id', params.binary_id);
queryParams.append('environment_id', params.environment_id);
queryParams.append('metric_key', params.metric_key);
return fetchApi<DiffTableRow[]>(`/diff?${queryParams.toString()}`);
},
// Upload endpoint
uploadBenchmarkResults: (data: {
commit_sha: string;
binary_id: string;
environment_id: string;
python_version: {
major: number;
minor: number;
patch: number;
};
benchmark_results: BenchmarkResultJson[];
}) =>
fetchApi<{ success: boolean }>('/upload', {
method: 'POST',
body: JSON.stringify(data),
}),
// Optimized trends endpoint
getBenchmarkTrends: (params: {
benchmark_name: string;
binary_id: string;
environment_id: string;
limit?: number;
}) => {
const queryParams = new URLSearchParams();
queryParams.append('benchmark_name', params.benchmark_name);
queryParams.append('binary_id', params.binary_id);
queryParams.append('environment_id', params.environment_id);
if (params.limit) queryParams.append('limit', params.limit.toString());
return fetchApi<
Array<{
sha: string;
timestamp: string;
python_version: string;
high_watermark_bytes: number;
total_allocated_bytes: number;
}>
>(`/trends?${queryParams.toString()}`);
},
// Batch trends endpoint
getBatchBenchmarkTrends: (
trendQueries: Array<{
benchmark_name: string;
binary_id: string;
environment_id: string;
limit?: number;
}>
) => {
return fetchApi<{
results: Record<
string,
Array<{
sha: string;
timestamp: string;
python_version: string;
high_watermark_bytes: number;
total_allocated_bytes: number;
}>
>;
}>('/trends-batch', {
method: 'POST',
body: JSON.stringify({
trend_queries: trendQueries.map((query) => ({
benchmark_name: query.benchmark_name,
binary_id: query.binary_id,
environment_id: query.environment_id,
limit: query.limit || 50,
})),
}),
});
},
// Flamegraph endpoint
getFlamegraph: (id: string) =>
fetchApi<{ flamegraph_html: string }>(`/flamegraph/${id}`),
// Token management endpoints
getTokens: () =>
fetchApi<AuthToken[]>('/admin/tokens', {
credentials: 'include',
}),
createToken: (tokenData: TokenCreate) =>
fetchApi<{ success: boolean; token: string; token_info: AuthToken }>(
'/admin/tokens',
{
method: 'POST',
credentials: 'include',
body: JSON.stringify(tokenData),
}
),
updateToken: (tokenId: number, tokenUpdate: TokenUpdate) =>
fetchApi<AuthToken>(`/admin/tokens/${tokenId}`, {
method: 'PUT',
credentials: 'include',
body: JSON.stringify(tokenUpdate),
}),
deactivateToken: (tokenId: number) =>
fetchApi<{ success: boolean }>(`/admin/tokens/${tokenId}/deactivate`, {
method: 'POST',
credentials: 'include',
}),
activateToken: (tokenId: number) =>
fetchApi<{ success: boolean }>(`/admin/tokens/${tokenId}/activate`, {
method: 'POST',
credentials: 'include',
}),
deleteToken: (tokenId: number) =>
fetchApi<{ success: boolean }>(`/admin/tokens/${tokenId}`, {
method: 'DELETE',
credentials: 'include',
}),
getTokenAnalytics: () =>
fetchApi<TokenAnalytics>('/admin/tokens/analytics', {
credentials: 'include',
}),
};
export default api;
export { ApiError };