diff options
author | Oleg Morozenkov <m@oleg.rocks> | 2023-01-26 10:43:23 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-26 10:43:23 +0300 |
commit | ab7ce1f7ae842c74f67f3576542aa68f5eff8ebb (patch) | |
tree | a3eedee7d73d703d56f81e182abd8c5e4f2626fc /samples/receive-file/src | |
parent | 8f49832c1ed01f44b08718ffc9cd4ed816d2a0cd (diff) | |
parent | 1aa81588384359f1f96b0dff453374570439af72 (diff) |
Merge pull request #255 from reo7sp/Ctulh-master
Add file sample #254 with fixes
Diffstat (limited to 'samples/receive-file/src')
-rw-r--r-- | samples/receive-file/src/main.cpp | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/samples/receive-file/src/main.cpp b/samples/receive-file/src/main.cpp new file mode 100644 index 0000000..bbfaadf --- /dev/null +++ b/samples/receive-file/src/main.cpp @@ -0,0 +1,51 @@ +#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); + 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()); + + File::Ptr file = bot.getApi().getFile(message->document->fileId); + std::string fileContent = bot.getApi().downloadFile(file->filePath); + + if (StringTools::startsWith(message->text, "/start")) { + return; + } + bot.getApi().sendMessage(message->chat->id, "Your file content: " + fileContent); + }); + + 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; +} |