aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Kusatz <max@trialserver.de>2020-11-12 15:43:54 +0100
committerMax Kusatz <max@trialserver.de>2020-11-12 15:43:54 +0100
commit27f4281ce3772982cf40d57e5ec2691e07cf84fe (patch)
treeaaf9e20421ac19078484d287fa2013c9482ed55d
parent8951f14db72ef04ed04587b80b23c4b246f2b41d (diff)
downloadn_frontend_telegram-27f4281ce3772982cf40d57e5ec2691e07cf84fe.tar.gz
n_frontend_telegram-27f4281ce3772982cf40d57e5ec2691e07cf84fe.zip
fixed attachement bugHEADmaster
-rw-r--r--config.toml2
-rw-r--r--main.cpp29
-rw-r--r--readme.md2
3 files changed, 18 insertions, 15 deletions
diff --git a/config.toml b/config.toml
index 41195a9..b6b7765 100644
--- a/config.toml
+++ b/config.toml
@@ -2,6 +2,6 @@
apikey="742711802:AAGjnwP4o3Tq39fqdx-v-xjEzLR_AczKH48"
[n_core]
-adress="localhost:18080"
+address="localhost:18080"
port="18080"
diff --git a/main.cpp b/main.cpp
index 03cbf0d..9e0d4a4 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1,7 +1,6 @@
#include <string>
#include "include/toml.hpp"
#include "include/json.hpp"
-#include <boost/asio.hpp>
#include <tgbot/tgbot.h>
#include <cpr/cpr.h>
@@ -14,17 +13,15 @@ int main() {
TgBot::Bot bot(config["telegram"]["apikey"].value_or(""));
- bot.getEvents().onAnyMessage([&bot, &config](TgBot::Message::Ptr message){
+ bot.getEvents().onAnyMessage([&bot, &config](TgBot::Message::Ptr const &message){
std::istringstream msg(message->text);
std::string command, commandtmp, arguments;
- std::cout << "incomming Message: " << message->text << " from " << message->chat->username << "\n";
-
std::getline(msg, commandtmp, ' ');
std::getline(msg, arguments);
- //std::cout << "command: " << commandtmp << "\n";
- if(!(commandtmp.at(0) == '/')){
+
+ if(commandtmp.at(0) != '/'){
return 0;
} else{
command = commandtmp.substr(1, commandtmp.length()-1);
@@ -36,10 +33,11 @@ int main() {
request["session"] = std::to_string(message->from->id);
- cpr::Response r = cpr::Post(cpr::Url{config["n_core"]["adress"].value_or("localhost:18080")},
+ cpr::Response r = cpr::Post(cpr::Url{config["n_core"]["address"].value_or("localhost:18080")},
cpr::Body{request.dump()});
if(r.status_code != 200) {
- std::cerr << "Error " << r.status_code << " aborting\n";
+ std::cerr << "Server gave back error " << r.status_code << ".\n";
+ bot.getApi().sendMessage(message->chat->id, "The Server encountered an Error.\nWe are working on a Fix");
return 1;
}
@@ -51,29 +49,34 @@ int main() {
if(jreply["success"] == true) {
- for (auto x : jreply["reply"].items()) {
+ for (auto const &x : jreply["reply"].items()) {
if (x.value().at("annotations").at(0).at("type") == "none") {
outMessage += x.value().at("text");
} else if (x.value().at("annotations").at(0).at("type") == "bold") {
outMessage.append("<b>").append(x.value().at("text")).append("</b>");
- } else if (x.value().at("annotations").at(0).at("type") == "link") {
+ } else if (x.value().at("annotations").at(0).at("type") == "underline") {
outMessage.append("<u>").append(x.value().at("text")).append("</u>");
} else if (x.value().at("annotations").at(0).at("type") == "italic") {
outMessage.append("<i>").append(x.value().at("text")).append("</i>");
} else if (x.value().at("annotations").at(0).at("type") == "strikethrough") {
outMessage.append("<strike>").append(x.value().at("text")).append("</strike>");
} else if (x.value().at("annotations").at(0).at("type") == "link") {
- outMessage.append("<u>").append(x.value().at("text")).append("</u>");
+ outMessage.append("<a href=\"").append(x.value().at("text")).append("\" >").append(x.value().at("annotations").at(0).at("extra").at("annotations").at("text").dump()).append("</a>");
} else if (x.value().at("annotations").at(0).at("type") == "command") {
outMessage.append("/").append(x.value().at("text"));
+ } else if (x.value().at("annotations").at(0).at("type") == "attachment") {
+ outMessage =+ "Attachments are unfortunately not supported";
}
}
- bot.getApi().sendMessage(message->chat->id, outMessage, false, 0, nullptr, "HTML");
+ if(!outMessage.empty()) {
+ bot.getApi().sendMessage(message->chat->id, outMessage, false, 0, nullptr, "HTML");
+ }
} else {
- bot.getApi().sendMessage(message->chat->id, "Command was not successfully executed.");
+ outMessage.append("Command was not successfully executed.\n").append(jreply["reply"].at(0).at("text"));
+ bot.getApi().sendMessage(message->chat->id, outMessage);
}
return 0;
});
diff --git a/readme.md b/readme.md
index 7d90011..cf73af6 100644
--- a/readme.md
+++ b/readme.md
@@ -10,7 +10,7 @@ You need [CPR](https://github.com/whoshuu/cpr) and [tgbot-cpp](https://github.co
make -j6
##Config
-Your config.toml file should look somthing like this:
+Your config.toml file should look something like this:
[telegram]
apikey="insert Key here"