summaryrefslogtreecommitdiff
path: root/samples/file/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'samples/file/src/main.cpp')
-rw-r--r--samples/file/src/main.cpp52
1 files changed, 0 insertions, 52 deletions
diff --git a/samples/file/src/main.cpp b/samples/file/src/main.cpp
deleted file mode 100644
index f46b288..0000000
--- a/samples/file/src/main.cpp
+++ /dev/null
@@ -1,52 +0,0 @@
-#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;
-}