diff options
author | sebest <sebest@seba.seba> | 2020-05-25 15:49:44 -0300 |
---|---|---|
committer | sebest <sebest@seba.seba> | 2020-05-25 15:49:44 -0300 |
commit | ffc3c38882d669ea6b2abeea5c0f7c7b322fa6e7 (patch) | |
tree | 0394904a1d5c09662825e77ee9ad6ec137b8ee64 /samples/echobot-setmycommands | |
parent | 6436825328cd3bf4a1c964bc84638bc93cfaff1e (diff) |
* add SetMyCommand to the api
Diffstat (limited to 'samples/echobot-setmycommands')
-rw-r--r-- | samples/echobot-setmycommands/CMakeLists.txt | 19 | ||||
-rw-r--r-- | samples/echobot-setmycommands/Dockerfile | 8 | ||||
-rw-r--r-- | samples/echobot-setmycommands/src/main.cpp | 75 |
3 files changed, 102 insertions, 0 deletions
diff --git a/samples/echobot-setmycommands/CMakeLists.txt b/samples/echobot-setmycommands/CMakeLists.txt new file mode 100644 index 0000000..7019e8f --- /dev/null +++ b/samples/echobot-setmycommands/CMakeLists.txt @@ -0,0 +1,19 @@ +cmake_minimum_required(VERSION 2.8.4) +project(echobot) + +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_executable(echobot src/main.cpp) + +target_link_libraries(echobot /usr/local/lib/libTgBot.a ${CMAKE_THREAD_LIBS_INIT} ${OPENSSL_LIBRARIES} ${Boost_LIBRARIES} ${CURL_LIBRARIES}) diff --git a/samples/echobot-setmycommands/Dockerfile b/samples/echobot-setmycommands/Dockerfile new file mode 100644 index 0000000..a7aa61a --- /dev/null +++ b/samples/echobot-setmycommands/Dockerfile @@ -0,0 +1,8 @@ +FROM reo7sp/tgbot-cpp +MAINTAINER Oleg Morozenkov <a@reo7sp.ru> + +WORKDIR /usr/src/echobot +COPY . . +RUN cmake . +RUN make -j4 +CMD ./echobot diff --git a/samples/echobot-setmycommands/src/main.cpp b/samples/echobot-setmycommands/src/main.cpp new file mode 100644 index 0000000..afb9e35 --- /dev/null +++ b/samples/echobot-setmycommands/src/main.cpp @@ -0,0 +1,75 @@ +#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); + + + vector<BotCommand::Ptr> commands; + BotCommand::Ptr cmdArray(new BotCommand); + cmdArray->command = "ccuno"; + cmdArray->description = "es el comando uno"; + + commands.push_back(cmdArray); + + cmdArray = BotCommand::Ptr(new BotCommand); + cmdArray->command = "dossendo"; + cmdArray->description = "es el comando dos"; + commands.push_back(cmdArray); + + cmdArray = BotCommand::Ptr(new BotCommand); + cmdArray->command = "tressss"; + cmdArray->description = "es el comando tres"; + commands.push_back(cmdArray); + + bot.getApi().setMyCommands(commands); + + vector<BotCommand::Ptr> vectCmd; + vectCmd = bot.getApi().getMyCommands(); + + for(std::vector<BotCommand::Ptr>::iterator it = vectCmd.begin(); it != vectCmd.end(); ++it) { + printf("cmd: %s -> %s\r",(*it)->command.c_str(),(*it)->description.c_str()); + } + + 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; +} |