summaryrefslogtreecommitdiff
path: root/samples/echobot-submodule/src/main.cpp
diff options
context:
space:
mode:
authorOleg Morozenkov <omorozenkov@gmail.com>2018-11-24 09:40:30 +0300
committerGitHub <noreply@github.com>2018-11-24 09:40:30 +0300
commit158c179beb3d06f110d665075d5e283e24592de6 (patch)
tree465d04c0ebbf573ddb0fa57ce2015bd44efd4ddf /samples/echobot-submodule/src/main.cpp
parentb35438dd77e4c2391391d7777c0a0b4cfd6e46f5 (diff)
parentba46cf2f3c9f253b84139f3b7229fe39fe5714ef (diff)
Merge pull request #85 from ingjieye/master
Update CMakeLists.txt so tgbot-cpp can be used as a submodule
Diffstat (limited to 'samples/echobot-submodule/src/main.cpp')
-rw-r--r--samples/echobot-submodule/src/main.cpp46
1 files changed, 46 insertions, 0 deletions
diff --git a/samples/echobot-submodule/src/main.cpp b/samples/echobot-submodule/src/main.cpp
new file mode 100644
index 0000000..966ae6f
--- /dev/null
+++ b/samples/echobot-submodule/src/main.cpp
@@ -0,0 +1,46 @@
+#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());
+
+ 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);
+ });
+
+ 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;
+}