This repository was archived by the owner on Sep 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.ts
50 lines (49 loc) · 1.6 KB
/
api.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
import * as d from "../data";
import { ApiCodecType, GetCodecType, apiCodec } from "../common/apiCodec";
/**
* quest の API. api[api名](リクエストのデータ) で呼べる.
*/
export const api = Object.fromEntries(
Object.entries(apiCodec).map(([apiName, codec]) => [
apiName,
async (
requestData: GetCodecType<ApiCodecType[keyof ApiCodecType]["request"]>
): Promise<
d.Result<
GetCodecType<ApiCodecType[keyof ApiCodecType]["response"]>,
string
>
> => {
console.log(apiName, "request", requestData);
try {
const response = await fetch(`/api/${apiName}`, {
method: "POST",
body: new Uint8Array(codec.request.encode(requestData as never)),
headers: [["content-type", "application/octet-stream"]],
});
if (!response.ok) {
return d.Result.Error(await response.text());
}
const binaryResponse = await response.arrayBuffer();
const decodedResponse = codec.response.decode(
0,
new Uint8Array(binaryResponse)
).result;
console.log(apiName, "response", decodedResponse);
return d.Result.Ok(decodedResponse);
} catch (reason) {
console.error(
`quest api の ${apiName} を呼ぶときにエラーが発生した`,
reason
);
return d.Result.Error(JSON.stringify(reason));
}
},
])
) as {
[apiName in keyof ApiCodecType]: (
requestData: GetCodecType<ApiCodecType[apiName]["request"]>
) => Promise<
d.Result<GetCodecType<ApiCodecType[apiName]["response"]>, string>
>;
};