forked from LAION-AI/Open-Assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcaptcha.ts
63 lines (54 loc) · 1.58 KB
/
captcha.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
type CaptchaErrorCode =
| "missing-input-secret"
| "invalid-input-secret"
| "missing-input-response"
| "invalid-input-response"
| "bad-request"
| "timeout-or-duplicate"
| "internal-error";
type CheckCaptchaResponse = {
success: boolean;
challenge_ts?: string;
hostname?: string;
"error-codes"?: CaptchaErrorCode[];
action?: string;
cdata?: string;
};
// https://developers.cloudflare.com/turnstile/get-started/server-side-validation/
export const checkCaptcha = async (
token: string,
ipAdress: string,
options?: { cdata?: string; action?: string }
): Promise<CheckCaptchaResponse> => {
if (!token) {
return {
success: false,
};
}
const data = new URLSearchParams();
data.append("secret", process.env.CLOUDFLARE_CAPTCHA_SECRET_KEY);
data.append("response", token);
data.append("remoteip", ipAdress);
const result = await fetch("https://challenges.cloudflare.com/turnstile/v0/siteverify", {
body: data,
method: "POST",
});
const res: CheckCaptchaResponse = await result.json();
return {
...res,
success: getSuccess(res, options?.action, options?.cdata),
};
};
// This function hasn't been tested yet, Cloudflare doesn't send `action` and `cdata` with a demo key.
const getSuccess = (response: CheckCaptchaResponse, action: string | undefined, cdata: string | undefined) => {
if (action === undefined && cdata === undefined) {
return response.success;
}
if (action) {
if (cdata) {
return response.action === action && response.cdata === cdata;
}
return response.action === action;
}
return false;
};