summaryrefslogtreecommitdiff
path: root/samples/echobot-webhook-server/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'samples/echobot-webhook-server/src/main.cpp')
-rw-r--r--samples/echobot-webhook-server/src/main.cpp42
1 files changed, 42 insertions, 0 deletions
diff --git a/samples/echobot-webhook-server/src/main.cpp b/samples/echobot-webhook-server/src/main.cpp
new file mode 100644
index 0000000..7b5776a
--- /dev/null
+++ b/samples/echobot-webhook-server/src/main.cpp
@@ -0,0 +1,42 @@
+#include <csignal>
+#include <cstdio>
+#include <cstdlib>
+#include <exception>
+
+#include <tgbot/tgbot.h>
+
+using namespace std;
+using namespace TgBot;
+
+int main() {
+ string token(getenv("TOKEN"));
+ printf("Token: %s\n", token.c_str());
+ string webhookUrl(getenv("WEBHOOK_URL"));
+ printf("Webhook url: %s\n", webhookUrl.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());
+ if (StringTools::startsWith(message->text, "/start")) {
+ return;
+ }
+ bot.getApi().sendMessage(message->chat->id, "Your message is: " + message->text);
+ });
+
+ try {
+ printf("Bot username: %s\n", bot.getApi().getMe()->username.c_str());
+
+ TgWebhookTcpServer webhookServer(8080, bot);
+
+ printf("Server starting\n");
+ bot.getApi().setWebhook(webhookUrl);
+ webhookServer.start();
+ } catch (exception& e) {
+ printf("error: %s\n", e.what());
+ }
+
+ return 0;
+}