mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
82 lines
2.4 KiB
C++
82 lines
2.4 KiB
C++
|
|
#include "Global.h"
|
||
|
|
#include "classes/IoTItem.h"
|
||
|
|
|
||
|
|
String _prevMsg = "";
|
||
|
|
String _token;
|
||
|
|
unsigned long _chatID;
|
||
|
|
|
||
|
|
class TelegramLT : public IoTItem
|
||
|
|
{
|
||
|
|
|
||
|
|
public:
|
||
|
|
TelegramLT(String parameters) : IoTItem(parameters) {
|
||
|
|
jsonRead(parameters, "token", _token);
|
||
|
|
jsonRead(parameters, "chatID", _chatID);
|
||
|
|
}
|
||
|
|
|
||
|
|
void sendTelegramMsg(bool often, String msg)
|
||
|
|
{
|
||
|
|
if (WiFi.status() == WL_CONNECTED && (often || !often && _prevMsg != msg)) {
|
||
|
|
WiFiClient client;
|
||
|
|
HTTPClient http;
|
||
|
|
http.begin(client, "http://live-control.com/iotm/telegram.php");
|
||
|
|
http.addHeader("Content-Type", "application/x-www-form-urlencoded");
|
||
|
|
String httpRequestData = "url=https://api.telegram.org/bot" + _token + "/sendmessage?chat_id=" + uint64ToString(_chatID) + "&text=" + msg;
|
||
|
|
int httpResponseCode = http.POST(httpRequestData);
|
||
|
|
String payload = http.getString();
|
||
|
|
SerialPrint("<-", F("Telegram"), "chat ID: " + uint64ToString(_chatID) + ", msg: " + msg);
|
||
|
|
SerialPrint("->", F("Telegram"), "chat ID: " + uint64ToString(_chatID) + ", server: " + httpResponseCode);
|
||
|
|
|
||
|
|
if (!strstr(payload.c_str(), "{\"ok\":true")) {
|
||
|
|
value.valD = 1;
|
||
|
|
Serial.printf("Telegram error, msg from server: %s\n", payload.c_str());
|
||
|
|
regEvent(value.valD, payload);
|
||
|
|
} else {
|
||
|
|
value.valD = 0;
|
||
|
|
}
|
||
|
|
http.end();
|
||
|
|
_prevMsg = msg;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
IoTValue execute(String command, std::vector<IoTValue> ¶m)
|
||
|
|
{
|
||
|
|
if (param.size() == 1) {
|
||
|
|
String strTmp;
|
||
|
|
if (param[0].isDecimal && param[0].valS == "")
|
||
|
|
strTmp = param[0].valD;
|
||
|
|
else
|
||
|
|
strTmp = param[0].valS;
|
||
|
|
|
||
|
|
if (command == "sendMsg")
|
||
|
|
{
|
||
|
|
if (param.size())
|
||
|
|
{
|
||
|
|
sendTelegramMsg(false, strTmp);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
else if (command == "sendOftenMsg")
|
||
|
|
{
|
||
|
|
if (param.size())
|
||
|
|
{
|
||
|
|
sendTelegramMsg(true, strTmp);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return {};
|
||
|
|
}
|
||
|
|
|
||
|
|
~TelegramLT(){};
|
||
|
|
};
|
||
|
|
|
||
|
|
void *getAPI_TelegramLT(String subtype, String param)
|
||
|
|
{
|
||
|
|
if (subtype == F("TelegramLT"))
|
||
|
|
{
|
||
|
|
return new TelegramLT(param);
|
||
|
|
}
|
||
|
|
else
|
||
|
|
{
|
||
|
|
return nullptr;
|
||
|
|
}
|
||
|
|
}
|