-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathwebhook.ts
142 lines (138 loc) · 5.04 KB
/
webhook.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
140
141
142
// deno-lint-ignore-file no-explicit-any
import { type Bot } from "../bot.ts";
import { type Context } from "../context.ts";
import { type WebhookReplyEnvelope } from "../core/client.ts";
import { debug as d, defaultAdapter } from "../platform.deno.ts";
import { type Update } from "../types.ts";
import {
adapters as nativeAdapters,
type FrameworkAdapter,
type SupportedFrameworks,
} from "./frameworks.ts";
const debugErr = d("grammy:error");
const callbackAdapter: FrameworkAdapter = (
update: Update,
callback: (json: string) => unknown,
header: string,
unauthorized = () => callback('"unauthorized"'),
) => ({
update: Promise.resolve(update),
respond: callback,
header,
unauthorized,
});
const adapters = { ...nativeAdapters, callback: callbackAdapter };
export interface WebhookOptions {
/** An optional strategy to handle timeouts (default: 'throw') */
onTimeout?: "throw" | "return" | ((...args: any[]) => unknown);
/** An optional number of timeout milliseconds (default: 10_000) */
timeoutMilliseconds?: number;
/** An optional string to compare to X-Telegram-Bot-Api-Secret-Token */
secretToken?: string;
}
/**
* Creates a callback function that you can pass to a web framework (such as
* express) if you want to run your bot via webhooks. Use it like this:
* ```ts
* const app = express() // or whatever you're using
* const bot = new Bot('<token>')
*
* app.use(webhookCallback(bot, 'express'))
* ```
*
* Confer the grammY
* [documentation](https://grammy.dev/guide/deployment-types.html) to read more
* about how to run your bot with webhooks.
*
* @param bot The bot for which to create a callback
* @param adapter An optional string identifying the framework (default: 'express')
* @param onTimeout An optional strategy to handle timeouts (default: 'throw')
* @param timeoutMilliseconds An optional number of timeout milliseconds (default: 10_000)
*/
export function webhookCallback<C extends Context = Context>(
bot: Bot<C>,
adapter?: SupportedFrameworks | FrameworkAdapter,
onTimeout?: WebhookOptions["onTimeout"],
timeoutMilliseconds?: WebhookOptions["timeoutMilliseconds"],
secretToken?: WebhookOptions["secretToken"],
): (...args: any[]) => any;
export function webhookCallback<C extends Context = Context>(
bot: Bot<C>,
adapter?: SupportedFrameworks | FrameworkAdapter,
webhookOptions?: WebhookOptions,
): (...args: any[]) => any;
export function webhookCallback<C extends Context = Context>(
bot: Bot<C>,
adapter: SupportedFrameworks | FrameworkAdapter = defaultAdapter,
onTimeout:
| WebhookOptions
| WebhookOptions["onTimeout"] = "throw",
timeoutMilliseconds: WebhookOptions["timeoutMilliseconds"] = 10_000,
secretToken?: WebhookOptions["secretToken"],
) {
const {
onTimeout: timeout = "throw",
timeoutMilliseconds: ms = 10_000,
secretToken: token,
} = typeof onTimeout === "object"
? onTimeout
: { onTimeout, timeoutMilliseconds, secretToken };
let initialized = false;
const server: FrameworkAdapter = typeof adapter === "string"
? adapters[adapter]
: adapter;
return async (...args: any[]) => {
const { update, respond, unauthorized, end, handlerReturn, header } =
server(...args);
if (!initialized) {
// Will dedupe concurrently incoming calls from several updates
await bot.init();
initialized = true;
}
if (header !== token) {
await unauthorized();
// TODO: investigate deno bug that happens when this console logging is removed
console.log(handlerReturn);
return handlerReturn;
}
let usedWebhookReply = false;
const webhookReplyEnvelope: WebhookReplyEnvelope = {
async send(json) {
usedWebhookReply = true;
await respond(json);
},
};
await timeoutIfNecessary(
bot.handleUpdate(await update, webhookReplyEnvelope),
typeof timeout === "function" ? () => timeout(...args) : timeout,
ms,
);
if (!usedWebhookReply) end?.();
return handlerReturn;
};
}
function timeoutIfNecessary(
task: Promise<void>,
onTimeout: "throw" | "return" | (() => unknown),
timeout: number,
): Promise<void> {
if (timeout === Infinity) return task;
return new Promise((resolve, reject) => {
const handle = setTimeout(() => {
if (onTimeout === "throw") {
reject(new Error(`Request timed out after ${timeout} ms`));
} else {
if (typeof onTimeout === "function") onTimeout();
resolve();
}
const now = Date.now();
task.finally(() => {
const diff = Date.now() - now;
debugErr(`Request completed ${diff} ms after timeout!`);
});
}, timeout);
task.then(resolve)
.catch(reject)
.finally(() => clearTimeout(handle));
});
}