From ba46cf2f3c9f253b84139f3b7229fe39fe5714ef Mon Sep 17 00:00:00 2001 From: hannibal <770876997@qq.com> Date: Wed, 14 Nov 2018 10:48:57 +0800 Subject: add example --- samples/echobot-submodule/CMakeLists.txt | 20 ++++++++++++++ samples/echobot-submodule/Dockerfile | 8 ++++++ samples/echobot-submodule/src/main.cpp | 46 ++++++++++++++++++++++++++++++++ 3 files changed, 74 insertions(+) create mode 100644 samples/echobot-submodule/CMakeLists.txt create mode 100644 samples/echobot-submodule/Dockerfile create mode 100644 samples/echobot-submodule/src/main.cpp (limited to 'samples') diff --git a/samples/echobot-submodule/CMakeLists.txt b/samples/echobot-submodule/CMakeLists.txt new file mode 100644 index 0000000..fbb9087 --- /dev/null +++ b/samples/echobot-submodule/CMakeLists.txt @@ -0,0 +1,20 @@ +cmake_minimum_required(VERSION 2.8.4) +project(echobot-submodule) + +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall") +set(Boost_USE_MULTITHREADED ON) + +find_package(Threads REQUIRED) +find_package(OpenSSL REQUIRED) +find_package(Boost COMPONENTS system REQUIRED) +find_package(CURL) +include_directories(/usr/local/include ${OPENSSL_INCLUDE_DIR} ${Boost_INCLUDE_DIR}) +if (CURL_FOUND) + include_directories(${CURL_INCLUDE_DIRS}) + add_definitions(-DHAVE_CURL) +endif() + +add_subdirectory(tgbot-cpp) +add_executable(echobot-submodule src/main.cpp) + +target_link_libraries(echobot-submodule TgBot ${CMAKE_THREAD_LIBS_INIT} ${OPENSSL_LIBRARIES} ${Boost_LIBRARIES} ${CURL_LIBRARIES}) diff --git a/samples/echobot-submodule/Dockerfile b/samples/echobot-submodule/Dockerfile new file mode 100644 index 0000000..a7aa61a --- /dev/null +++ b/samples/echobot-submodule/Dockerfile @@ -0,0 +1,8 @@ +FROM reo7sp/tgbot-cpp +MAINTAINER Oleg Morozenkov + +WORKDIR /usr/src/echobot +COPY . . +RUN cmake . +RUN make -j4 +CMD ./echobot 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 +#include +#include +#include + +#include + +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; +} -- cgit v1.2.3