blob: afb9e353691ae2e1137a4a6f480d62d53223d02b (
plain)
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
|
#include <csignal>
#include <cstdio>
#include <cstdlib>
#include <exception>
#include <string>
#include <tgbot/tgbot.h>
using namespace std;
using namespace TgBot;
int main() {
string token(getenv("TOKEN"));
printf("Token: %s\n", token.c_str());
Bot bot(token);
vector<BotCommand::Ptr> commands;
BotCommand::Ptr cmdArray(new BotCommand);
cmdArray->command = "ccuno";
cmdArray->description = "es el comando uno";
commands.push_back(cmdArray);
cmdArray = BotCommand::Ptr(new BotCommand);
cmdArray->command = "dossendo";
cmdArray->description = "es el comando dos";
commands.push_back(cmdArray);
cmdArray = BotCommand::Ptr(new BotCommand);
cmdArray->command = "tressss";
cmdArray->description = "es el comando tres";
commands.push_back(cmdArray);
bot.getApi().setMyCommands(commands);
vector<BotCommand::Ptr> vectCmd;
vectCmd = bot.getApi().getMyCommands();
for(std::vector<BotCommand::Ptr>::iterator it = vectCmd.begin(); it != vectCmd.end(); ++it) {
printf("cmd: %s -> %s\r",(*it)->command.c_str(),(*it)->description.c_str());
}
bot.getEvents().onCommand("start", [&bot](Message::Ptr message) {
bot.getApi().sendMessage(message->chat->id, "Hi!");
});
bot.getEvents().onAnyMessage([&bot](Message::Ptr message) {
printf("User wrote %s\n", message->text.c_str());
if (StringTools::startsWith(message->text, "/start")) {
return;
}
bot.getApi().sendMessage(message->chat->id, "Your message is: " + message->text);
});
signal(SIGINT, [](int s) {
printf("SIGINT got\n");
exit(0);
});
try {
printf("Bot username: %s\n", bot.getApi().getMe()->username.c_str());
bot.getApi().deleteWebhook();
TgLongPoll longPoll(bot);
while (true) {
printf("Long poll started\n");
longPoll.start();
}
} catch (exception& e) {
printf("error: %s\n", e.what());
}
return 0;
}
|