-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
39 lines (34 loc) · 906 Bytes
/
index.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
/**
* Copyright (c) 2022 - Nayaka Project
* FILE INI ADALAH BAGIAN DARI NAYAKA PROJECT.
* Nayaka merupakan Open Source Software dengan Apache License V2.
* Anda dapat mengedit atau mendistribusikan ulang sesuai dengan syarat dan ketentuan dari Apache License.
*/
import { Grammy, serveHttp } from './deps.ts';
import { bot } from './src/bot.ts';
import { getSecretToken, isDenoDeploy } from './src/util.ts';
const secretKey = getSecretToken();
if (isDenoDeploy) {
if (!secretKey) throw new Error('WEBHOOK_SECRET is needed!');
serveHttp(async (request) => {
if (request.method === 'POST') {
return await Grammy.webhookCallback(
bot,
'std/http',
'throw',
10000,
secretKey,
)(request);
}
return new Response('seems good');
});
} else {
await bot.init();
console.log(
'Started as:',
bot.botInfo.username,
);
bot.start({
drop_pending_updates: true,
});
}