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
|
import createClient from "openapi-fetch";
import type { paths, operations } from "./schema";
const apiClient = createClient<paths>({
baseUrl:
process.env.NODE_ENV === "development"
? "http://localhost:8002/api/"
: "http://api-server/api/",
});
export async function apiPostLogin(username: string, password: string) {
const { data, error } = await apiClient.POST("/login", {
body: { username, password },
});
if (error) throw new Error(error.message);
return data;
}
export async function apiGetGames(token: string) {
const { data, error } = await apiClient.GET("/games", {
params: {
header: { Authorization: `Bearer ${token}` },
},
});
if (error) throw new Error(error.message);
return data;
}
export async function apiGetGame(token: string, gameId: number) {
const { data, error } = await apiClient.GET("/games/{game_id}", {
params: {
header: { Authorization: `Bearer ${token}` },
path: { game_id: gameId },
},
});
if (error) throw new Error(error.message);
return data;
}
export async function apiGetToken(token: string) {
const { data, error } = await apiClient.GET("/token", {
params: {
header: { Authorization: `Bearer ${token}` },
},
});
if (error) throw new Error(error.message);
return data;
}
export async function adminApiGetUsers(token: string) {
const { data, error } = await apiClient.GET("/admin/users", {
params: {
header: { Authorization: `Bearer ${token}` },
},
});
if (error) throw new Error(error.message);
return data;
}
export async function adminApiGetGames(token: string) {
const { data, error } = await apiClient.GET("/admin/games", {
params: {
header: { Authorization: `Bearer ${token}` },
},
});
if (error) throw new Error(error.message);
return data;
}
export async function adminApiGetGame(token: string, gameId: number) {
const { data, error } = await apiClient.GET("/admin/games/{game_id}", {
params: {
header: { Authorization: `Bearer ${token}` },
path: { game_id: gameId },
},
});
if (error) throw new Error(error.message);
return data;
}
export async function adminApiPutGame(
token: string,
gameId: number,
body: operations["adminPutGame"]["requestBody"]["content"]["application/json"],
) {
const { data, error } = await apiClient.PUT("/admin/games/{game_id}", {
params: {
header: { Authorization: `Bearer ${token}` },
path: { game_id: gameId },
},
body,
});
if (error) throw new Error(error.message);
return data;
}
|