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 pathmain.ts
139 lines (134 loc) · 5.25 KB
/
main.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
import * as d from "../data";
import * as firebaseInterface from "./firebaseInterface";
import * as functions from "firebase-functions";
import * as lib from "./lib";
import { ApiCodec, apiCodec } from "../common/apiCodec";
import { imagePng } from "./mimeType";
import { nowMode } from "../common/nowMode";
const createSampleAccount = async (): Promise<void> => {
if (
nowMode === "development" &&
!(await firebaseInterface.getDevelopmentFlag())
) {
await firebaseInterface.setDevelopmentFlag(true);
firebaseInterface.createAccount({
id: d.AccountId.fromString("71d21c2b889f7479fc67e1abacb5d16b"),
name: "テスト0",
accountTokenHash:
"a565b235efeaff4b2d81543f6b532f78de4fc04d1fe5b1415c968837a81f4955",
iconHash: d.ImageHashValue.fromString(
"ff65b235efeaff4b2d81543f6b532f78de4fc04d1fe5b1415c968837a81f4955"
),
lineId: "noLineId",
});
firebaseInterface.createAccount({
id: d.AccountId.fromString("443d74e7acc6c2098441e2e4d80cf604"),
name: "テスト1",
accountTokenHash: d.AccountToken.fromString(
"67bb8cdaca8b776f9a30154a3a3add4884d01992b2b4ca79f637d20af0dca4c2"
),
iconHash: d.ImageHashValue.fromString(
"ff65b235efeaff4b2d81543f6b532f78de4fc04d1fe5b1415c968837a81f4955"
),
lineId: "noLineId",
});
firebaseInterface.createAccount({
id: d.AccountId.fromString("5abdaa7f315f7906cf5eb41ac95d3a77"),
name: "テスト2",
accountTokenHash: d.AccountToken.fromString(
"1759bc4af3049e16edd06fc8f71b301d4fe04116b52aa4451d96e49bad139609"
),
iconHash: d.ImageHashValue.fromString(
"ff65b235efeaff4b2d81543f6b532f78de4fc04d1fe5b1415c968837a81f4955"
),
lineId: "noLineId",
});
}
};
/*
* =====================================================================
* api データを取得したり変更したりする
* http://localhost:5000/api/requestLineLoginUrl
* https://north-quest.web.app/api/requestLineLoginUrl
* など
* ↓ Firebase Hosting firebase.json rewrite
* Cloud Functions for Firebase / api
* =====================================================================
*/
export const api = functions.https.onRequest(async (request, response) => {
if (nowMode === "development") {
await createSampleAccount();
}
const apiName = request.path.split("/")[2];
console.log("call api function!", apiName);
const result = await callApiFunction(apiName, request.body as Buffer);
if (result === undefined) {
response.status(400);
response.send("想定外のパスを受けとった request.path=" + request.path);
return;
}
response.send(Buffer.from(result));
});
const callApiFunction = (
apiName: string | undefined,
binary: Uint8Array
): Promise<ReadonlyArray<number> | undefined> => {
if (typeof apiName !== "string") {
return Promise.resolve(undefined);
}
// apiCodec[apiName] でも良い気がするが prototype 汚染が怖いのでループして一致するものを探す
for (const [selectedApiName, selectedApiCodec] of Object.entries(apiCodec)) {
if (apiName === selectedApiName) {
return callApiFromCodecAndFunction(
selectedApiName,
binary,
selectedApiCodec as ApiCodec<unknown, unknown>,
lib.apiFunc[selectedApiName as keyof typeof apiCodec] as (
request: unknown
) => Promise<unknown>
);
}
}
return Promise.resolve(undefined);
};
const callApiFromCodecAndFunction = async <Request, Response>(
apiName: string,
binary: Uint8Array,
codec: ApiCodec<Request, Response>,
func: (request: Request) => Promise<Response>
): Promise<ReadonlyArray<number>> => {
const request: Request = codec.request.decode(0, binary).result;
const response: Response = await func(codec.request.decode(0, binary).result);
console.log(
"call api",
apiName,
JSON.stringify(request),
JSON.stringify(response)
);
return codec.response.encode(response);
};
/*
* =====================================================================
* file Cloud Storage for Firebase のファイルを取得
* (ローカルの開発時には, ファイルシステムに保存されているものを取得)
*
* http://localhost:5000/file/ff4ceb521f1a66ecb44a59e2377c22ee9881b2ed0759137bfd1368a7b5b7cd5e
* https://north-quest.web.app/file/ff4ceb521f1a66ecb44a59e2377c22ee9881b2ed0759137bfd1368a7b5b7cd5e
* など
* ↓ Firebase Hosting firebase.json rewrite
* Cloud Functions for Firebase / file
* =====================================================================
*/
export const file = functions.https.onRequest((request, response) => {
const fileHash = request.path.split("/")[2];
if (typeof fileHash !== "string") {
response.status(400).send(
`ファイルの取得には, ファイルのSHA256のハッシュ値をパスにしていする必要があります.
例: https://north-quest.web.app/file/ff4ceb521f1a66ecb44a59e2377c22ee9881b2ed0759137bfd1368a7b5b7cd5e`
);
return;
}
const mimeTypeAndReadableStream = firebaseInterface.readPngFile(fileHash);
response.contentType(imagePng);
mimeTypeAndReadableStream.pipe(response);
});