-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCTBot.cpp
382 lines (322 loc) · 9.05 KB
/
CTBot.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
#include <ArduinoJson.h>
#include "CTBot.h"
#define TELEGRAM_URL "api.telegram.org"
#define TELEGRAM_IP "149.154.167.198"
#define TELEGRAM_PORT 443
inline void CTBot::serialLog(String message) {
#if CTBOT_DEBUG_MODE > 0
Serial.print(message);
#endif
}
bool unicodeToUTF8(String unicode, String &utf8) {
uint32_t value = 0;
unicode.toUpperCase();
if (unicode.length() < 3)
return(false);
if ((unicode[0] != '\\') || (unicode[1] != 'U'))
return(false);
for (int i = 2; i < unicode.length(); i++) {
uint8_t digit = unicode[i];
if ((digit >= '0') && (digit <= '9'))
digit -= '0';
else if ((digit >= 'A') && (digit <= 'F'))
digit = (digit - 'A') + 10;
else
return(false);
value += digit << (4 * (unicode.length() - (i + 1)));
}
char buffer[2];
buffer[1] = 0x00;
utf8 = "";
if (value < 0x80) {
buffer[0] = value & 0x7F;
utf8 = (String)buffer;
return(true);
}
byte maxValue = 0x20;
byte mask = 0xC0;
while (maxValue > 0x01) {
buffer[0] = value & 0x3F | 0x80;
utf8 = (String)buffer + utf8;
value = value >> 6;
if (value <maxValue) {
buffer[0] = (value & (maxValue - 1)) | mask;
utf8 = (String)buffer + utf8;
return(true);
}
mask = mask + maxValue;
maxValue = maxValue >> 1;
}
return(false);
}
CTBot::CTBot() {
m_wifiConnectionTries = 0; // wait until connection to the AP is established (locking!)
m_statusPin = CTBOT_DISABLE_STATUS_PIN; // status pin disabled
m_token = ""; // no token
m_lastUpdate = 0; // not updated yet
m_useDNS = false; // use static IP for Telegram Server
m_UTF8Encoding = false; // no UTF8 encoded string conversion
}
CTBot::~CTBot() {
}
bool CTBot::sendCommand(String command, String parameters)
{
// check for an already established connection
if (!m_telegramServer.connected()) {
if (m_useDNS) {
// try to connect with URL
if (!m_telegramServer.connect(TELEGRAM_URL, TELEGRAM_PORT)) {
// no way, try to connect with fixed IP
IPAddress telegramServerIP;
telegramServerIP.fromString(TELEGRAM_IP);
if (!m_telegramServer.connect(telegramServerIP, TELEGRAM_PORT)) {
serialLog("\nUnable to connect to Telegram server");
return(false);
} else {
serialLog("\nConnected using fixed IP\n");
useDNS(false);
}
}
else
serialLog("\nConnected using DNS\n");
}
else {
// try to connect with fixed IP
IPAddress telegramServerIP; // (149, 154, 167, 198);
telegramServerIP.fromString(TELEGRAM_IP);
if (!m_telegramServer.connect(telegramServerIP, TELEGRAM_PORT)) {
serialLog("\nUnable to connect to Telegram server");
return(false);
}
else
serialLog("\nConnected using fixed IP\n");
}
}
else
serialLog("\nAlready connected\n");
if (m_statusPin != CTBOT_DISABLE_STATUS_PIN)
digitalWrite(m_statusPin, !digitalRead(m_statusPin)); // set pin to the opposite state
// send the HTTP request
m_telegramServer.println("GET /bot" + m_token + (String)"/" + command + parameters);
if (m_statusPin != CTBOT_DISABLE_STATUS_PIN)
digitalWrite(m_statusPin, !digitalRead(m_statusPin)); // set pin to the opposite state
return(true);
}
String CTBot::toUTF8(String message)
{
String converted = "";
uint16_t i = 0;
String subMessage;
while (i < message.length()) {
subMessage = (String)message[i];
if (message[i] != '\\') {
converted += subMessage;
i++;
} else {
// found "\"
i++;
if (i == message.length()) {
// no more characters
converted += subMessage;
} else {
subMessage += (String)message[i];
if (message[i] != 'u') {
converted += subMessage;
i++;
} else {
//found \u escape code
i++;
if (i == message.length()) {
// no more characters
converted += subMessage;
} else {
uint8_t j = 0;
while ((j < 4) && ((j + i) < message.length())) {
subMessage += (String)message[i + j];
j++;
}
i += j;
String utf8;
if (unicodeToUTF8(subMessage, utf8))
converted += utf8;
else
converted += subMessage;
}
}
}
}
}
return(converted);
}
void CTBot::useDNS(bool value)
{ m_useDNS = value; }
void CTBot::enableUTF8Encoding(bool value)
{ m_UTF8Encoding = value;}
void CTBot::setMaxConnectionRetries(uint8_t retries)
{ m_wifiConnectionTries = retries;}
void CTBot::setStatusPin(int8_t pin)
{ m_statusPin = pin;}
void CTBot::setTelegramToken(String token)
{ m_token = token;}
bool CTBot::testConnection(void){
TBUser user;
return(getMe(user));
}
bool CTBot::getMe(TBUser &user) {
if (!sendCommand("getMe"))
return(false);
#if CTBOT_BUFFER_SIZE > 0
StaticJsonBuffer<CTBOT_BUFFER_SIZE> jsonBuffer;
#else
DynamicJsonBuffer jsonBuffer;
#endif
JsonObject& root = jsonBuffer.parse(m_telegramServer);
#if CTBOT_DEBUG_MODE > 0
root.printTo(Serial);
serialLog("\n");
#endif
bool ok = root["ok"];
if (ok) {
user.id = root["result"]["id"];
user.isBot = root["result"]["is_bot"];
user.firstName = (const String&)root["result"]["first_name"];
user.lastName = (const String&)root["result"]["last_name"];
user.username = (const String&)root["result"]["username"];
user.languageCode = (const String&)root["result"]["language_code"];
}
else {
return(false);
}
return(true);
}
bool CTBot::getNewMessage(TBMessage &message) {
String parameters;
char buf[10];
ultoa(m_lastUpdate, buf, 10);
if (m_lastUpdate != 0)
parameters = (String)"?offset=" + (String)buf + (String)"limit=1&allowed_updates=message";
else
parameters = "?limit=1&allowed_updates=message";
if (!sendCommand("getUpdates", parameters))
return(false);
#if CTBOT_BUFFER_SIZE > 0
StaticJsonBuffer<CTBOT_BUFFER_SIZE> jsonBuffer;
#else
DynamicJsonBuffer jsonBuffer;
#endif
String msg = "";
msg = m_telegramServer.readString();
if (m_UTF8Encoding)
msg = toUTF8(msg);
JsonObject& root = jsonBuffer.parse(msg);
#if CTBOT_DEBUG_MODE > 0
root.printTo(Serial);
serialLog("\n");
#endif
bool ok = root["ok"];
if (!ok)
return(false);
uint32_t updateID;
updateID = root["result"][0]["update_id"];
if (updateID == 0)
return(false);
m_lastUpdate = updateID+1;
message.messageID = root["result"][0]["message"]["message_id"];
message.sender.id = root["result"][0]["message"]["from"]["id"];
message.sender.username = (const String&)root["result"][0]["message"]["from"]["username"];
message.text = (const String&)root["result"][0]["message"]["text"];
message.date = root["result"][0]["message"]["date"];
return(true);
}
bool CTBot::sendMessage(uint32_t id, String message)
{
String parameters;
char strID[10];
ultoa(id, strID, 10);
parameters = (String)"?chat_id=" + (String)strID + (String)"&text=" + message;
if (!sendCommand("sendMessage", parameters))
return(false);
#if CTBOT_BUFFER_SIZE > 0
StaticJsonBuffer<CTBOT_BUFFER_SIZE> jsonBuffer;
#else
DynamicJsonBuffer jsonBuffer;
#endif
JsonObject& root = jsonBuffer.parse(m_telegramServer);
#if CTBOT_DEBUG_MODE > 0
root.printTo(Serial);
serialLog("\n");
#endif
bool ok = root["ok"];
if (!ok)
return(false);
return(true);
}
bool CTBot::setIP(String ip, String gateway, String subnetMask, String dns1, String dns2){
IPAddress IP, SN, GW, DNS1, DNS2;
if (!IP.fromString(ip)) {
serialLog("--- setIP: error on IP address\n");
return(false);
}
if (!SN.fromString(subnetMask)) {
serialLog("--- setIP: error on subnet mask\n");
return(false);
}
if (!GW.fromString(gateway)) {
serialLog("--- setIP: error on gateway address\n");
return(false);
}
if (dns1.length() != 0) {
if (!DNS1.fromString(dns1)) {
serialLog("--- setIP: error on DNS1 address\n");
return(false);
}
}
if (dns2.length() != 0) {
if (!DNS2.fromString(dns2)) {
serialLog("--- setIP: error on DNS1 address\n");
return(false);
}
}
if (WiFi.config(IP, GW, SN, DNS1, DNS2))
return(true);
else {
serialLog("--- setIP: error on setting the static ip address (WiFi.config)\n");
return(false);
}
}
bool CTBot::wifiConnect(String ssid, String password)
{
// attempt to connect to Wifi network:
int tries = 0;
String message;
message = (String)"\n\nConnecting Wifi: " + ssid + (String)"\n";
serialLog(message);
WiFi.begin(ssid.c_str(), password.c_str());
delay(500);
if (m_statusPin != CTBOT_DISABLE_STATUS_PIN)
pinMode(m_statusPin, OUTPUT);
if (0 == m_wifiConnectionTries)
tries = -1;
while ((WiFi.status() != WL_CONNECTED) && (tries < m_wifiConnectionTries)) {
serialLog(".");
if (m_statusPin != CTBOT_DISABLE_STATUS_PIN)
digitalWrite(m_statusPin, !digitalRead(m_statusPin)); // set pin to the opposite state
delay(500);
if (m_wifiConnectionTries != 0) tries++;
}
if (WiFi.status() == WL_CONNECTED) {
IPAddress ip = WiFi.localIP();
message = (String)"\nWiFi connected\nIP address: " + ip.toString() + (String)"\n";
serialLog(message);
if (m_statusPin != CTBOT_DISABLE_STATUS_PIN)
digitalWrite(m_statusPin, LOW);
return(true);
}
else {
message = (String)"\nUnable to connect to " + ssid + (String)" network.\n";
serialLog(message);
if (m_statusPin != CTBOT_DISABLE_STATUS_PIN)
digitalWrite(m_statusPin, HIGH);
return(false);
}
}