-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.ts
82 lines (82 loc) · 2.95 KB
/
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
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
/**
* Import Telegraf and standart Session
* Импорт Телеграфа и стандартной сессии
*/
import { Telegraf, session } from "telegraf";
/**
* Import description for extendet Context
* Импорт описания расширеного контекста
*/
import { ExtContext } from "./src/interface";
/**
* Import custom session
* Импорт кастомной сесии
*/
import BotSession from "./middleware/session";
/**
* Import middleware to extend standart Context
* Импорт мидлы для расширения стандартного контекста
*/
import BotContext from "./middleware/ctx";
/**
* Import custom console.log function
* Импорт собственной console.log
*/
import Log from "./src/log";
/**
* Import Bot token and run mode from config
* Импорт токена бота и режима запуска из настроек
*/
import { BOT_TOKEN, MODE } from "./config";
/**
* Import stage with all scenes
* Импорт стейджа со всеми сценами
*/
import stages from "./scenes/stage";
/**
* Create your bot and tell it your context type
* Создаем бот и указываем кастомный контекст для него
*/
const bot = new Telegraf<ExtContext>(BOT_TOKEN[MODE]);
/**
* Reg standard telegraf session and init default values for session. Important This is required for porper scenes to work
* Регистрируем стандартную сессию и передаем параметры по умолчанию. Внимание. Это нужно чтоб сцены работали правильно
*/
bot.use(
session({
defaultSession: () => ({ userID: 0, chatID: 0, name: "", tgName: "" }),
})
);
/**
* Reg custom session to get users from DB
* Регистрируем собсвенную сессию чтоб извлекать данные пользователей из базы
*/
bot.use(BotSession);
/**
* Extend standart telegraf Context with custom functions
* Расширяем стандартный контекст Телеграфа собственными функциями
*/
bot.use(BotContext);
/**
* Include stage with scenes and global actions
* Регистрируем сцены с глобальными и внутренними событиями
*/
bot.use(stages.middleware());
/**
* Start bot in Pooling mode
* Запуск бота в Пулинг режиме
*/
bot.launch({ dropPendingUpdates: true }).catch((e) => {
Log.error("MAIN", e);
});
/**
* Custom console output function for beautiful formatting
* Собственная функция вывода в консоль для красивого форматирования
*/
Log.info("MAIN", "Started in development mode...");
/**
* Enable graceful stop
* Включаем плавную остановку
*/
process.once("SIGINT", () => bot.stop("SIGINT"));
process.once("SIGTERM", () => bot.stop("SIGTERM"));