-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver.ts
More file actions
471 lines (395 loc) · 11.5 KB
/
server.ts
File metadata and controls
471 lines (395 loc) · 11.5 KB
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
const { env } = Deno;
import { Response, ServerRequest, listenAndServe } from "https://deno.land/std/http/server.ts";
import { hmac } from "https://deno.land/x/hmac/mod.ts";
const encoder = new TextEncoder();
const decoder = new TextDecoder();
const TELEGRAM_API_BASE_URL = "https://api.telegram.org/bot";
type Options = {
telegramToken: string,
telegramSecret: string,
secret: string,
baseURL: string,
listen: string,
};
type Params = {
silent: boolean,
};
type GitHubUser = {
login: string,
avatar_url: string,
html_url: string,
};
type GitHubRepository = {
name: string,
full_name: string,
private: boolean,
owner: GitHubUser,
html_url: string,
branches_url: string,
url: string,
};
type GitHubCommit = {
id: string,
message: string,
timestamp: string,
url: string,
author: GitHubCommitAuthor,
added: string[],
removed: string[],
modified: string[],
};
type GitHubCommitAuthor = {
name: string,
email: string,
username: string,
};
type GitHubEventPing = {
zen: string,
hook_id: number,
hook: object,
};
type GitHubEventPush = {
ref: string,
sender: GitHubUser,
repository: GitHubRepository,
commits: GitHubCommit[],
compare: string,
forced: boolean,
};
const githubEventFormatters = {
'ping': (ping: GitHubEventPing): string => {
return `You successfully set up GitHub notifications.
GitHub Zen: ${ping.zen}`;
},
'push': (push: GitHubEventPush): string => {
const branch = push.ref.replace('refs/heads/', '');
return `👤 [${push.sender.login}](${push.sender.html_url}):
[${push.commits.length} new commit${push.commits.length == 1 ? "" : "s"}](${push.compare}) ${push.forced ? "force-" : ""}pushed to \`${branch}\` [🔗](${push.repository.branches_url.replace('{/branch}', '/' + branch)})
${push.commits.map(commit => `\`${commit.id.slice(0, 7)}\` ${commit.message} [🔗](${commit.url}) - ${commit.author.username}`).join('\n')}
_${push.repository.full_name.replace('_', '_____')}_ [🏠](${push.repository.html_url})`;
},
};
type TelegramUpdate = {
update_id: number,
message?: TelegramMessage,
callback_query?: TelegramCallbackQuery,
};
type TelegramMessage = {
message_id: number,
from?: TelegramUser,
date: number,
chat: TelegramChat,
text?: string,
entities?: TelegramMessageEntity[],
};
type TelegramUser = {
id: number,
is_bot: boolean,
first_name: string,
last_name?: string,
username?: string,
language_code?: string,
};
type TelegramChat = {
id: number,
type: string,
title?: string,
username?: string,
first_name?: string,
last_name?: string,
};
type TelegramMessageEntity = {
type: string,
offset: number,
length: number,
};
type TelegramCallbackQuery = {
id: number,
message?: TelegramMessage,
data?: string,
};
type TelegramActionSendMessage = {
chat_id?: string | number,
text: string,
parse_mode?: string,
disable_web_page_preview?: boolean,
disable_notification?: boolean,
reply_markup?: TelegramInlineKeyboardMarkup,
};
type TelegramInlineKeyboardMarkup = {
inline_keyboard: TelegramInlineKeyboardButton[][],
};
type TelegramInlineKeyboardButton = {
text: string,
callback_data?: string,
};
class GitHubBot {
private options: Options;
constructor(options: Options) {
this.options = options;
}
public async setup(): Promise<void> {
await this.setupTelegramWebhook();
}
safeHMAC(data: string): string {
const hash = hmac("sha1", this.options.secret, data, "utf8", "base64");
return hash.toString().replace("+", "-").replace("/", "_").replace("=", "");
}
public generateWebhookURL(chatID: number): string {
const chatToken = this.safeHMAC(`${chatID}`);
return `${this.options.baseURL}/github/${chatID}/${chatToken}`;
}
public verifyWebhookURL(chatID: number, chatToken: string): boolean {
return this.safeHMAC(`${chatID}`) === chatToken;
}
public async githubEvent(chatID: number, chatToken: string, params: Params, event: string, data: object): Promise<object> {
//console.debug("githubEvent", chatID, chatToken, JSON.stringify(data));
if (!this.verifyWebhookURL(chatID, chatToken)) {
throw new Error("invalid: chatToken");
}
const message: TelegramActionSendMessage = this.formatEventMessage(event, data);
await this.telegramApi("sendMessage", {
chat_id: chatID,
disable_notification: params.silent,
...message,
});
return {};
}
public async telegramUpdate(telegramSecret: string, data: TelegramUpdate): Promise<object> {
//console.debug("telegramUpdate", telegramSecret, JSON.stringify(data.message));
if (telegramSecret !== this.options.telegramSecret) {
throw new Error("invalid: telegramSecret");
}
if (data.message) {
// Probably a command
const message: TelegramMessage = data.message;
const entities: TelegramMessageEntity[] = message.entities;
if (!entities || entities.length < 1) {
console.warn(`ignored: No entities found in Telegram message: ${message}`);
return;
}
// Assume encoding is UTF-8, not UTF-16 as stated in https://core.telegram.org/bots/api#messageentity
const firstEntity = message.text.slice(entities[0].offset, entities[0].offset + entities[0].length);
const command = firstEntity.split("@")[0];
if (command == "/setup") {
return {
method: "sendMessage",
chat_id: message.chat.id,
...this.formatSetupMessage(message.chat.id),
reply_markup: {
inline_keyboard: [[{
text: "Advanced Setup",
callback_data: "updateMessageSetupAdvanced",
}]],
},
};
}
return {
method: "sendMessage",
chat_id: message.chat.id,
...this.formatUnknownCommandMessage(command),
};
}
if (data.callback_query) {
// Callback query
const callback_query: TelegramCallbackQuery = data.callback_query;
if (!callback_query.message || !callback_query.data) {
console.warn(`ignored: Callback query mode is not known`);
return;
}
const message: TelegramMessage = callback_query.message;
const action = callback_query.data;
if (action == "updateMessageSetupAdvanced") {
await this.updateMessageSetupAdvanced(message);
}
return {
method: "answerCallbackQuery",
};
}
console.warn(`ignored: Unknown Telegram update received: ${data}`);
return;
}
async updateMessageSetupAdvanced(message: TelegramMessage) {
await this.telegramApi("editMessageText", {
chat_id: message.chat.id,
message_id: message.message_id,
...this.formatSetupAdvancedMessage(message.chat.id),
});
}
formatEventMessage(event: string, data: object): TelegramActionSendMessage {
if (!(event in githubEventFormatters)) {
throw new Error(`invalid: Event type "${event}" is not known`);
}
const text = githubEventFormatters[event](data);
return {
parse_mode: "Markdown",
text,
disable_web_page_preview: true,
};
}
formatSetupMessage(chatID: number): TelegramActionSendMessage {
const url = this.generateWebhookURL(chatID);
return {
parse_mode: "Markdown",
text: `*Steps*
1. Open "Settings" → "Webhooks" → "Add Webhook" in your GitHub repository.
2. Paste the following URL as "Payload URL":
${url}
3. Under "Content-Type", choose "application/json"
Press "Add webhook" and you're done. You can optionally choose specific events to send a message for.`,
disable_web_page_preview: true,
};
}
formatSetupAdvancedMessage(chatID: number): TelegramActionSendMessage {
const { text }: TelegramActionSendMessage = this.formatSetupMessage(chatID);
return {
parse_mode: "Markdown",
text: text + `
*Advanced Flags*
Pass these flags as query parameters. For example: <url>?silent
• \`silent\` - Makes events silent
`,
disable_web_page_preview: true,
};
}
formatUnknownCommandMessage(command: string): TelegramActionSendMessage {
return {
text: `Oops, I don't understand your command ${command}`,
};
}
async setupTelegramWebhook(): Promise<void> {
console.info("Setting up webhook...");
await this.telegramApi("setWebhook", {
url: `${this.options.baseURL}/telegramUpdate/${this.options.telegramSecret}`,
});
console.log("Webhook ready");
}
async telegramApi(action: string, data: object): Promise<object> {
const method = "POST";
const url = `${TELEGRAM_API_BASE_URL}${this.options.telegramToken}/${action}`;
const body = JSON.stringify(data);
const res = await fetch(url, {
method,
headers: [
["Content-Type", "application/json"],
],
body,
});
if (!res.ok) {
let err = await res.text();
throw new Error(`Failure to perform API request: ${err}`);
}
const obj = await res.json();
return obj;
}
}
async function serveGitHubWebhook(req: ServerRequest, bot: GitHubBot, parts: [string, string], urlParams: URLSearchParams): Promise<Response> {
const chatID = parseInt(parts[0], 10);
const chatToken = parts[1];
const params: Params = {
silent: urlParams.has("silent"),
};
const body = await req.body();
const data = JSON.parse(decoder.decode(body));
const event = req.headers.get("X-GitHub-Event");
const reply = await bot.githubEvent(chatID, chatToken, params, event, data);
return respondIfReply(reply);
}
async function serveTelegramWebhook(req: ServerRequest, bot: GitHubBot, parts: [string], params: URLSearchParams): Promise<Response> {
const telegramSecret = parts[0];
const body = await req.body();
const data = JSON.parse(decoder.decode(body));
const reply = await bot.telegramUpdate(telegramSecret, data);
return respondIfReply(reply);
}
async function respondIfReply(reply?: object): Promise<Response> {
if (reply) {
const headers = new Headers();
headers.set("Content-Type", "application/json");
return {
status: 200,
headers,
body: encoder.encode(JSON.stringify(reply)),
};
}
return {
status: 200,
body: encoder.encode("Success"),
};
}
async function serveBadRequest(): Promise<Response> {
return {
status: 400,
body: encoder.encode("Bad Request"),
};
}
async function serveNotFound(): Promise<Response> {
return {
status: 404,
body: encoder.encode("Not Found"),
};
}
async function serveMethodNotAllowed(): Promise<Response> {
return {
status: 405,
body: encoder.encode("Method Not Allowed"),
};
}
async function serveInternalServerError(): Promise<Response> {
return {
status: 500,
body: encoder.encode("Unknown Internal Server Error"),
};
}
async function route(req: ServerRequest, bot: GitHubBot): Promise<Response> {
const url = new URL(req.url, "https://localhost"); // Need a better URL parser
const params = url.searchParams;
const parts = url.pathname.split("/").filter(part => part);
if (parts.length === 2) {
if (req.method !== "POST") {
return await serveMethodNotAllowed();
}
if (parts[0] === "telegramUpdate") {
return await serveTelegramWebhook(req, bot, [parts[1]], params);
}
}
if (parts.length === 3) {
if (req.method !== "POST") {
return await serveMethodNotAllowed();
}
if (parts[0] === "github") {
return await serveGitHubWebhook(req, bot, [parts[1], parts[2]], params);
}
}
return await serveNotFound();
}
async function main(): Promise<void> {
const telegramToken = env()["TELEGRAM_TOKEN"];
const telegramSecret = env()["TELEGRAM_SECRET"] || "insecure";
const secret = env()["GITHUBBOT_SECRET"];
const baseURL = env()["GITHUBBOT_BASE_URL"];
const listen = env()["LISTEN"] || "127.0.0.1:8080";
const bot = new GitHubBot({
telegramToken,
telegramSecret,
secret,
baseURL,
listen,
});
listenAndServe(listen, async (req): Promise<void> => {
let response: Response;
try {
response = await route(req, bot);
} catch (e) {
if (e.message.startsWith('invalid')) {
response = await serveBadRequest();
} else {
response = await serveInternalServerError();
console.error(e);
}
}
req.respond(response);
});
await bot.setup();
}
main();