-
Notifications
You must be signed in to change notification settings - Fork 26
/
UniversalTelegramBot.cpp
963 lines (818 loc) · 33.3 KB
/
UniversalTelegramBot.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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
/*
Copyright (c) 2018 Brian Lough. All right reserved.
UniversalTelegramBot - Library to create your own Telegram Bot using
ESP8266 or ESP32 on Arduino IDE.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
**** Note Regarding Client Connection Keeping ****
Client connection is established in functions that directly involve use of
client, i.e sendGetToTelegram, sendPostToTelegram, and
sendMultipartFormDataToTelegram. It is closed at the end of
sendMultipartFormDataToTelegram, but not at the end of sendGetToTelegram and
sendPostToTelegram as these may need to keep the connection alive for respose
/ response checking. Re-establishing a connection then wastes time which is
noticeable in user experience. Due to this, it is important that connection
be closed manually after calling sendGetToTelegram or sendPostToTelegram by
calling closeClient(); Failure to close connection causes memory leakage and
SSL errors
*/
#include "UniversalTelegramBot.h"
#define ZERO_COPY(STR) ((char*)STR.c_str())
#define BOT_CMD(STR) buildCommand(F(STR))
UniversalTelegramBot::UniversalTelegramBot(const String& token, Client &client) {
updateToken(token);
this->client = &client;
}
void UniversalTelegramBot::updateToken(const String& token) {
_token = token;
}
String UniversalTelegramBot::getToken() {
return _token;
}
String UniversalTelegramBot::buildCommand(const String& cmd) {
String command;
command += F("bot");
command += _token;
command += F("/");
command += cmd;
return command;
}
String UniversalTelegramBot::sendGetToTelegram(const String& command) {
String body, headers;
bool avail;
// Connect with api.telegram.org if not already connected
if (!client->connected()) {
#ifdef TELEGRAM_DEBUG
Serial.println(F("[BOT]Connecting to server"));
#endif
if (!client->connect(TELEGRAM_HOST, TELEGRAM_SSL_PORT)) {
#ifdef TELEGRAM_DEBUG
Serial.println(F("[BOT]Conection error"));
#endif
}
}
if (client->connected()) {
#ifdef TELEGRAM_DEBUG
Serial.println("sending: " + command);
#endif
client->print(F("GET /"));
client->print(command);
client->println(F(" HTTP/1.1"));
client->println(F("Host:" TELEGRAM_HOST));
client->println(F("Accept: application/json"));
client->println(F("Cache-Control: no-cache"));
client->println();
readHTTPAnswer(body, headers);
}
return body;
}
bool UniversalTelegramBot::readHTTPAnswer(String &body, String &headers) {
int ch_count = 0;
long now = millis();
bool finishedHeaders = false;
bool currentLineIsBlank = true;
bool responseReceived = false;
while (millis() - now < longPoll * 1000 + waitForResponse) {
while (client->available()) {
char c = client->read();
responseReceived = true;
if (!finishedHeaders) {
if (currentLineIsBlank && c == '\n') {
finishedHeaders = true;
} else {
headers += c;
}
} else {
if (ch_count < maxMessageLength) {
body += c;
ch_count++;
}
}
if (c == '\n') currentLineIsBlank = true;
else if (c != '\r') currentLineIsBlank = false;
}
if (responseReceived && ch_count > 5) { //jz
#ifdef TELEGRAM_DEBUG
Serial.print(">");
Serial.print(body);
Serial.println("<");
#endif
break;
}
}
return responseReceived;
}
String UniversalTelegramBot::sendPostToTelegram(const String& command, JsonObject payload) {
String body;
String headers;
// Connect with api.telegram.org if not already connected
if (!client->connected()) {
#ifdef TELEGRAM_DEBUG
Serial.println(F("[BOT Client]Connecting to server"));
#endif
if (!client->connect(TELEGRAM_HOST, TELEGRAM_SSL_PORT)) {
#ifdef TELEGRAM_DEBUG
Serial.println(F("[BOT Client]Conection error"));
#endif
}
}
if (client->connected()) {
// POST URI
client->print(F("POST /"));
client->print(command);
client->println(F(" HTTP/1.1"));
// Host header
client->println(F("Host:" TELEGRAM_HOST));
// JSON content type
client->println(F("Content-Type: application/json"));
// Content length
int length = measureJson(payload);
client->print(F("Content-Length:"));
client->println(length);
// End of headers
client->println();
// POST message body
String out;
serializeJson(payload, out);
client->println(out);
#ifdef TELEGRAM_DEBUG
Serial.println(String("Posting:") + out);
#endif
readHTTPAnswer(body, headers);
}
return body;
}
String UniversalTelegramBot::sendMultipartFormDataToTelegram(
const String& command, const String& binaryPropertyName, const String& fileName,
const String& contentType, const String& chat_id, int fileSize,
MoreDataAvailable moreDataAvailableCallback,
GetNextByte getNextByteCallback,
GetNextBuffer getNextBufferCallback,
GetNextBufferLen getNextBufferLenCallback) {
String body;
String headers;
const String boundary = F("------------------------b8f610217e83e29b");
// Connect with api.telegram.org if not already connected
if (!client->connected()) {
#ifdef TELEGRAM_DEBUG
Serial.println(F("[BOT Client]Connecting to server"));
#endif
if (!client->connect(TELEGRAM_HOST, TELEGRAM_SSL_PORT)) {
#ifdef TELEGRAM_DEBUG
Serial.println(F("[BOT Client]Conection error"));
#endif
}
}
if (client->connected()) {
String start_request = "";
String end_request = "";
start_request += F("--");
start_request += boundary;
start_request += F("\r\ncontent-disposition: form-data; name=\"chat_id\"\r\n\r\n");
start_request += chat_id;
start_request += F("\r\n" "--");
start_request += boundary;
start_request += F("\r\ncontent-disposition: form-data; name=\"");
start_request += binaryPropertyName;
start_request += F("\"; filename=\"");
start_request += fileName;
start_request += F("\"\r\n" "Content-Type: ");
start_request += contentType;
start_request += F("\r\n" "\r\n");
end_request += F("\r\n" "--");
end_request += boundary;
end_request += F("--" "\r\n");
client->print(F("POST /"));
client->print(buildCommand(command));
client->println(F(" HTTP/1.1"));
Serial.print("*") ; delay(jzdelay);
// Host header
client->println(F("Host: " TELEGRAM_HOST)); //jz <<<<<<<<<<<<<<<<<<<<< println !!!!!!!! >>>>>>>>>>>>>>>>>>>>
client->println(F("User-Agent: arduino/1.0"));
Serial.print("*") ; delay(jzdelay);
client->println(F("Accept: */*"));
Serial.print("*") ; delay(jzdelay);
int contentLength = fileSize + start_request.length() + end_request.length();
#ifdef TELEGRAM_DEBUG
Serial.println("Content-Length: " + String(contentLength));
#endif
client->print(F("Content-Length: "));
client->println(String(contentLength));
Serial.print("*") ; delay(jzdelay);
client->print(F("Content-Type: multipart/form-data; boundary="));
client->println(boundary);
//Serial.print(" --- bef ---") ; delay(jzdelay);
client->println(); // client->println(F"");
//Serial.print(" --- aft ---") ; delay(jzdelay);
client->print(start_request);
Serial.print("*") ; delay(jzdelay);
#ifdef TELEGRAM_DEBUG
Serial.print("Start request: " + start_request);
#endif
if (getNextByteCallback == nullptr) {
while (moreDataAvailableCallback()) {
client->write((const uint8_t *)getNextBufferCallback(), getNextBufferLenCallback());
#ifdef TELEGRAM_DEBUG
Serial.println(F("Sending photo from buffer"));
#endif
}
} else {
#ifdef TELEGRAM_DEBUG
Serial.println(F("Sending photo by binary"));
#endif
//byte buffer[jzblocksize];
int count = 0;
char ch;
while (moreDataAvailableCallback()) {
buffer[count] = getNextByteCallback();
count++;
if (count == jzblocksize) {
// yield();
#ifdef TELEGRAM_DEBUG
//jz Serial.println(F("Sending binary photo full buffer"));
#endif
client->write((const uint8_t *)buffer, jzblocksize);
Serial.print("*") ; delay(jzdelay);
count = 0;
}
}
if (count > 0) {
#ifdef TELEGRAM_DEBUG
Serial.println(F("Sending binary photo remaining buffer"));
#endif
client->write((const uint8_t *)buffer, count);
Serial.print("*") ; delay(jzdelay);
}
}
client->print(end_request);
Serial.print("*") ; delay(jzdelay);
#ifdef TELEGRAM_DEBUG
Serial.print("End request: " + end_request);
#endif
//Serial.print("... Done Sending. Client.Available = "); Serial.println(client->available());
//delay(2000);
//Serial.print("... 2 secs later. Client.Available = "); Serial.println(client->available());
readHTTPAnswer(body, headers);
}
closeClient();
return body;
}
String UniversalTelegramBot::sendMultipartFormDataToTelegramWithCaption(
const String& command, const String& binaryPropertyName, const String& fileName,
const String& contentType, const String& caption, const String& chat_id, int fileSize,
MoreDataAvailable moreDataAvailableCallback,
GetNextByte getNextByteCallback,
GetNextBuffer getNextBufferCallback,
GetNextBufferLen getNextBufferLenCallback) {
String body;
String headers;
const String boundary = F("------------------------b8f610217e83e29b");
// Connect with api.telegram.org if not already connected
if (!client->connected()) {
#ifdef TELEGRAM_DEBUG
Serial.println(F("[BOT Client]Connecting to server"));
#endif
if (!client->connect(TELEGRAM_HOST, TELEGRAM_SSL_PORT)) {
#ifdef TELEGRAM_DEBUG
Serial.println(F("[BOT Client]Conection error"));
#endif
}
}
if (client->connected()) {
String start_request = "";
String end_request = "";
start_request += F("--");
start_request += boundary;
start_request += F("\r\ncontent-disposition: form-data; name=\"chat_id\"\r\n\r\n");
start_request += chat_id;
start_request += F("\r\n" "--");
// jz caption start
start_request += boundary;
start_request += F("\r\ncontent-disposition: form-data; name=\"caption\"\r\n\r\n");
start_request += caption;
start_request += F("\r\n" "--");
// jz caption end
start_request += boundary;
start_request += F("\r\ncontent-disposition: form-data; name=\"");
start_request += binaryPropertyName;
start_request += F("\"; filename=\"");
start_request += fileName;
start_request += F("\"\r\n" "Content-Type: ");
start_request += contentType;
start_request += F("\r\n" "\r\n");
end_request += F("\r\n" "--");
end_request += boundary;
end_request += F("--" "\r\n");
client->print(F("POST /"));
client->print(buildCommand(command));
client->println(F(" HTTP/1.1"));
Serial.print("*") ; delay(jzdelay);
// Host header
client->println(F("Host: " TELEGRAM_HOST)); //jz <<<<<<<<<<<<<<<<<<<<< println !!!!!!!! >>>>>>>>>>>>>>>>>>>>
client->println(F("User-Agent: arduino/1.0"));
Serial.print("*") ; delay(jzdelay);
client->println(F("Accept: */*"));
Serial.print("*") ; delay(jzdelay);
int contentLength = fileSize + start_request.length() + end_request.length();
#ifdef TELEGRAM_DEBUG
Serial.println("Content-Length: " + String(contentLength));
#endif
client->print(F("Content-Length: "));
client->println(String(contentLength));
Serial.print("*") ; delay(jzdelay);
client->print(F("Content-Type: multipart/form-data; boundary="));
client->println(boundary);
Serial.print("*") ; delay(jzdelay);
client->println(); // client->println(F("")); <--- jz 1.05 bug
Serial.print("*") ; delay(jzdelay);
client->print(start_request);
Serial.print("*") ; delay(jzdelay);
#ifdef TELEGRAM_DEBUG
Serial.print("Start request: " + start_request);
#endif
if (getNextByteCallback == nullptr) {
while (moreDataAvailableCallback()) {
client->write((const uint8_t *)getNextBufferCallback(), getNextBufferLenCallback());
#ifdef TELEGRAM_DEBUG
Serial.println(F("Sending photo from buffer"));
#endif
}
} else {
#ifdef TELEGRAM_DEBUG
Serial.println(F("Sending photo by binary"));
#endif
//byte buffer[jzblocksize];
int count = 0;
char ch;
while (moreDataAvailableCallback()) {
buffer[count] = getNextByteCallback();
count++;
if (count == jzblocksize) {
// yield();
#ifdef TELEGRAM_DEBUG
//jz Serial.println(F("Sending binary photo full buffer"));
#endif
client->write((const uint8_t *)buffer, jzblocksize);
Serial.print("*") ; delay(jzdelay);
count = 0;
}
}
if (count > 0) {
#ifdef TELEGRAM_DEBUG
Serial.println(F("Sending binary photo remaining buffer"));
#endif
client->write((const uint8_t *)buffer, count);
Serial.print("*") ; delay(jzdelay);
}
}
client->print(end_request);
Serial.print("*") ; delay(jzdelay);
#ifdef TELEGRAM_DEBUG
Serial.print("End request: " + end_request);
#endif
//Serial.print("... Done Sending. Client.Available = "); Serial.println(client->available());
//delay(2000);
//Serial.print("... 2 secs later. Client.Available = "); Serial.println(client->available());
readHTTPAnswer(body, headers);
}
closeClient();
return body;
}
bool UniversalTelegramBot::getMe() {
String response = sendGetToTelegram(BOT_CMD("getMe")); // receive reply from telegram.org
DynamicJsonDocument doc(maxMessageLength);
DeserializationError error = deserializeJson(doc, ZERO_COPY(response));
closeClient();
if (!error) {
if (doc.containsKey("result")) {
name = doc["result"]["first_name"].as<String>();
userName = doc["result"]["username"].as<String>();
return true;
}
}
return false;
}
/*********************************************************************************
* SetMyCommands - Update the command list of the bot on the telegram server *
* (Argument to pass: Serialied array of BotCommand) *
* CAUTION: All commands must be lower-case *
* Returns true, if the command list was updated successfully *
********************************************************************************/
bool UniversalTelegramBot::setMyCommands(const String& commandArray) {
DynamicJsonDocument payload(maxMessageLength);
payload["commands"] = serialized(commandArray);
bool sent = false;
String response = "";
#if defined(_debug)
Serial.println(F("sendSetMyCommands: SEND Post /setMyCommands"));
#endif // defined(_debug)
unsigned long sttime = millis();
while (millis() < sttime + 8000ul) { // loop for a while to send the message
response = sendPostToTelegram(BOT_CMD("setMyCommands"), payload.as<JsonObject>());
#ifdef _debug
Serial.println("setMyCommands response" + response);
#endif
sent = checkForOkResponse(response);
if (sent) break;
}
closeClient();
return sent;
}
/***************************************************************
* GetUpdates - function to receive messages from telegram *
* (Argument to pass: the last+1 message to read) *
* Returns the number of new messages *
***************************************************************/
int UniversalTelegramBot::getUpdates(long offset) {
#ifdef TELEGRAM_DEBUG
Serial.println(F("GET Update Messages"));
#endif
String command = BOT_CMD("getUpdates?offset=");
command += offset;
command += F("&limit=");
command += HANDLE_MESSAGES;
if (longPoll > 0) {
command += F("&timeout=");
command += String(longPoll);
}
String response = sendGetToTelegram(command); // receive reply from telegram.org
if (response == "") {
#ifdef TELEGRAM_DEBUG
Serial.println(F("Received empty string in response!"));
#endif
// close the client as there's nothing to do with an empty string
closeClient();
return 0;
} else {
#ifdef TELEGRAM_DEBUG
Serial.print(F("incoming message length "));
Serial.println(response.length());
Serial.println(F("Creating DynamicJsonBuffer"));
#endif
// Parse response into Json object
DynamicJsonDocument doc(maxMessageLength);
DeserializationError error = deserializeJson(doc, ZERO_COPY(response));
if (!error) {
#ifdef TELEGRAM_DEBUG
Serial.print(F("GetUpdates parsed jsonObj: "));
serializeJson(doc, Serial);
Serial.println();
#endif
if (doc.containsKey("result")) {
int resultArrayLength = doc["result"].size();
if (resultArrayLength > 0) {
int newMessageIndex = 0;
// Step through all results
for (int i = 0; i < resultArrayLength; i++) {
JsonObject result = doc["result"][i];
if (processResult(result, newMessageIndex)) newMessageIndex++;
}
// We will keep the client open because there may be a response to be
// given
return newMessageIndex;
} else {
#ifdef TELEGRAM_DEBUG
Serial.println(F("no new messages"));
#endif
}
} else {
#ifdef TELEGRAM_DEBUG
Serial.println(F("Response contained no 'result'"));
#endif
}
} else { // Parsing failed
if (response.length() < 2) { // Too short a message. Maybe a connection issue
#ifdef TELEGRAM_DEBUG
Serial.println(F("Parsing error: Message too short"));
#endif
} else {
// Buffer may not be big enough, increase buffer or reduce max number of
// messages
#ifdef TELEGRAM_DEBUG
Serial.print(F("Failed to parse update, the message could be too "
"big for the buffer. Error code: "));
Serial.println(error.c_str()); // debug print of parsing error
#endif
}
}
// Close the client as no response is to be given
closeClient();
return 0;
}
}
bool UniversalTelegramBot::processResult(JsonObject result, int messageIndex) {
int update_id = result["update_id"];
// Check have we already dealt with this message (this shouldn't happen!)
if (last_message_received != update_id) {
last_message_received = update_id;
messages[messageIndex].update_id = update_id;
messages[messageIndex].text = F("");
messages[messageIndex].from_id = F("");
messages[messageIndex].from_name = F("");
messages[messageIndex].longitude = 0;
messages[messageIndex].latitude = 0;
messages[messageIndex].reply_to_message_id = 0;
messages[messageIndex].reply_to_text = F("");
messages[messageIndex].query_id = F("");
if (result.containsKey("message")) {
JsonObject message = result["message"];
messages[messageIndex].type = F("message");
messages[messageIndex].from_id = message["from"]["id"].as<String>();
messages[messageIndex].from_name = message["from"]["first_name"].as<String>();
messages[messageIndex].date = message["date"].as<String>();
messages[messageIndex].chat_id = message["chat"]["id"].as<String>();
messages[messageIndex].chat_title = message["chat"]["title"].as<String>();
messages[messageIndex].hasDocument = false;
if (message.containsKey("text")) {
messages[messageIndex].text = message["text"].as<String>();
} else if (message.containsKey("location")) {
messages[messageIndex].longitude = message["location"]["longitude"].as<float>();
messages[messageIndex].latitude = message["location"]["latitude"].as<float>();
} else if (message.containsKey("document")) {
String file_id = message["document"]["file_id"].as<String>();
messages[messageIndex].file_caption = message["caption"].as<String>();
messages[messageIndex].file_name = message["document"]["file_name"].as<String>();
if (getFile(messages[messageIndex].file_path, messages[messageIndex].file_size, file_id) == true)
messages[messageIndex].hasDocument = true;
else
messages[messageIndex].hasDocument = false;
}
if (message.containsKey("reply_to_message")) {
messages[messageIndex].reply_to_message_id = message["reply_to_message"]["message_id"];
// no need to check if containsKey["text"]. If it doesn't, it default to null
messages[messageIndex].reply_to_text = message["reply_to_message"]["text"].as<String>();
}
} else if (result.containsKey("channel_post")) {
JsonObject message = result["channel_post"];
messages[messageIndex].type = F("channel_post");
messages[messageIndex].text = message["text"].as<String>();
messages[messageIndex].date = message["date"].as<String>();
messages[messageIndex].chat_id = message["chat"]["id"].as<String>();
messages[messageIndex].chat_title = message["chat"]["title"].as<String>();
} else if (result.containsKey("callback_query")) {
JsonObject message = result["callback_query"];
messages[messageIndex].type = F("callback_query");
messages[messageIndex].from_id = message["from"]["id"].as<String>();
messages[messageIndex].from_name = message["from"]["first_name"].as<String>();
messages[messageIndex].text = message["data"].as<String>();
messages[messageIndex].date = message["date"].as<String>();
messages[messageIndex].chat_id = message["message"]["chat"]["id"].as<String>();
messages[messageIndex].reply_to_text = message["message"]["text"].as<String>();
messages[messageIndex].chat_title = F("");
messages[messageIndex].query_id = message["id"].as<String>();
} else if (result.containsKey("edited_message")) {
JsonObject message = result["edited_message"];
messages[messageIndex].type = F("edited_message");
messages[messageIndex].from_id = message["from"]["id"].as<String>();
messages[messageIndex].from_name = message["from"]["first_name"].as<String>();
messages[messageIndex].date = message["date"].as<String>();
messages[messageIndex].chat_id = message["chat"]["id"].as<String>();
messages[messageIndex].chat_title = message["chat"]["title"].as<String>();
if (message.containsKey("text")) {
messages[messageIndex].text = message["text"].as<String>();
} else if (message.containsKey("location")) {
messages[messageIndex].longitude = message["location"]["longitude"].as<float>();
messages[messageIndex].latitude = message["location"]["latitude"].as<float>();
}
}
return true;
}
return false;
}
/***********************************************************************
* SendMessage - function to send message to telegram *
* (Arguments to pass: chat_id, text to transmit and markup(optional)) *
***********************************************************************/
bool UniversalTelegramBot::sendSimpleMessage(const String& chat_id, const String& text,
const String& parse_mode) {
bool sent = false;
#ifdef TELEGRAM_DEBUG
Serial.println(F("sendSimpleMessage: SEND Simple Message"));
#endif
long sttime = millis();
if (text != "") {
while (millis() < sttime + 8000) { // loop for a while to send the message
String command = BOT_CMD("sendMessage?chat_id=");
command += chat_id;
command += F("&text=");
command += text;
command += F("&parse_mode=");
command += parse_mode;
String response = sendGetToTelegram(command);
#ifdef TELEGRAM_DEBUG
Serial.println(response);
#endif
sent = checkForOkResponse(response);
if (sent) break;
}
}
closeClient();
return sent;
}
bool UniversalTelegramBot::sendMessage(const String& chat_id, const String& text,
const String& parse_mode) {
DynamicJsonDocument payload(maxMessageLength);
payload["chat_id"] = chat_id;
payload["text"] = text;
if (parse_mode != "")
payload["parse_mode"] = parse_mode;
return sendPostMessage(payload.as<JsonObject>());
}
bool UniversalTelegramBot::sendMessageWithReplyKeyboard(
const String& chat_id, const String& text, const String& parse_mode, const String& keyboard,
bool resize, bool oneTime, bool selective) {
DynamicJsonDocument payload(maxMessageLength);
payload["chat_id"] = chat_id;
payload["text"] = text;
if (parse_mode != "")
payload["parse_mode"] = parse_mode;
JsonObject replyMarkup = payload.createNestedObject("reply_markup");
replyMarkup["keyboard"] = serialized(keyboard);
// Telegram defaults these values to false, so to decrease the size of the
// payload we will only send them if needed
if (resize)
replyMarkup["resize_keyboard"] = resize;
if (oneTime)
replyMarkup["one_time_keyboard"] = oneTime;
if (selective)
replyMarkup["selective"] = selective;
return sendPostMessage(payload.as<JsonObject>());
}
bool UniversalTelegramBot::sendMessageWithInlineKeyboard(const String& chat_id,
const String& text,
const String& parse_mode,
const String& keyboard) {
DynamicJsonDocument payload(maxMessageLength);
payload["chat_id"] = chat_id;
payload["text"] = text;
if (parse_mode != "")
payload["parse_mode"] = parse_mode;
JsonObject replyMarkup = payload.createNestedObject("reply_markup");
replyMarkup["inline_keyboard"] = serialized(keyboard);
return sendPostMessage(payload.as<JsonObject>());
}
/***********************************************************************
* SendPostMessage - function to send message to telegram *
* (Arguments to pass: chat_id, text to transmit and markup(optional)) *
***********************************************************************/
bool UniversalTelegramBot::sendPostMessage(JsonObject payload) {
bool sent = false;
#ifdef TELEGRAM_DEBUG
Serial.print(F("sendPostMessage: SEND Post Message: "));
serializeJson(payload, Serial);
Serial.println();
#endif
long sttime = millis();
if (payload.containsKey("text")) {
while (millis() < sttime + 8000) { // loop for a while to send the message
String response = sendPostToTelegram(BOT_CMD("sendMessage"), payload);
#ifdef TELEGRAM_DEBUG
Serial.println(response);
#endif
sent = checkForOkResponse(response);
if (sent) break;
}
}
closeClient();
return sent;
}
String UniversalTelegramBot::sendPostPhoto(JsonObject payload) {
bool sent = false;
String response = "";
#ifdef TELEGRAM_DEBUG
Serial.println(F("sendPostPhoto: SEND Post Photo"));
#endif
long sttime = millis();
if (payload.containsKey("photo")) {
while (millis() < sttime + 8000) { // loop for a while to send the message
response = sendPostToTelegram(BOT_CMD("sendPhoto"), payload);
#ifdef TELEGRAM_DEBUG
Serial.println(response);
#endif
sent = checkForOkResponse(response);
if (sent) break;
}
}
closeClient();
return response;
}
String UniversalTelegramBot::sendPhotoByBinary(
const String& chat_id, const String& contentType, int fileSize,
MoreDataAvailable moreDataAvailableCallback,
GetNextByte getNextByteCallback, GetNextBuffer getNextBufferCallback, GetNextBufferLen getNextBufferLenCallback) {
#ifdef TELEGRAM_DEBUG
Serial.println(F("sendPhotoByBinary: SEND Photo"));
#endif
String response = sendMultipartFormDataToTelegram("sendPhoto", "photo", "img.jpg",
contentType, chat_id, fileSize,
moreDataAvailableCallback, getNextByteCallback, getNextBufferCallback, getNextBufferLenCallback);
#ifdef TELEGRAM_DEBUG
Serial.println(response);
#endif
return response;
}
String UniversalTelegramBot::sendPhoto(const String& chat_id, const String& photo,
const String& caption,
bool disable_notification,
int reply_to_message_id,
const String& keyboard) {
DynamicJsonDocument payload(maxMessageLength);
payload["chat_id"] = chat_id;
payload["photo"] = photo;
if (caption.length() > 0)
payload["caption"] = caption;
if (disable_notification)
payload["disable_notification"] = disable_notification;
if (reply_to_message_id && reply_to_message_id != 0)
payload["reply_to_message_id"] = reply_to_message_id;
if (keyboard.length() > 0) {
JsonObject replyMarkup = payload.createNestedObject("reply_markup");
replyMarkup["keyboard"] = serialized(keyboard);
}
return sendPostPhoto(payload.as<JsonObject>());
}
bool UniversalTelegramBot::checkForOkResponse(const String& response) {
int last_id;
DynamicJsonDocument doc(response.length());
deserializeJson(doc, response);
// Save last sent message_id
last_id = doc["result"]["message_id"];
if (last_id > 0) last_sent_message_id = last_id;
return doc["ok"] | false; // default is false, but this is more explicit and clear
}
bool UniversalTelegramBot::sendChatAction(const String& chat_id, const String& text) {
bool sent = false;
#ifdef TELEGRAM_DEBUG
Serial.println(F("SEND Chat Action Message"));
#endif
long sttime = millis();
if (text != "") {
while (millis() < sttime + 8000) { // loop for a while to send the message
String command = BOT_CMD("sendChatAction?chat_id=");
command += chat_id;
command += F("&action=");
command += text;
String response = sendGetToTelegram(command);
#ifdef TELEGRAM_DEBUG
Serial.println(response);
#endif
sent = checkForOkResponse(response);
if (sent) break;
}
}
closeClient();
return sent;
}
void UniversalTelegramBot::closeClient() {
if (client->connected()) {
#ifdef TELEGRAM_DEBUG
Serial.println(F("Closing client"));
#endif
client->stop();
}
}
bool UniversalTelegramBot::getFile(String& file_path, long& file_size, const String& file_id)
{
String command = BOT_CMD("getFile?file_id=");
command += file_id;
String response = sendGetToTelegram(command); // receive reply from telegram.org
DynamicJsonDocument doc(maxMessageLength);
DeserializationError error = deserializeJson(doc, ZERO_COPY(response));
closeClient();
if (!error) {
if (doc.containsKey("result")) {
file_path = F("https://api.telegram.org/file/");
file_path += buildCommand(doc["result"]["file_path"]);
file_size = doc["result"]["file_size"].as<long>();
return true;
}
}
return false;
}
bool UniversalTelegramBot::answerCallbackQuery(const String &query_id, const String &text, bool show_alert, const String &url, int cache_time) {
DynamicJsonDocument payload(maxMessageLength);
payload["callback_query_id"] = query_id;
payload["show_alert"] = show_alert;
payload["cache_time"] = cache_time;
if (text.length() > 0) payload["text"] = text;
if (url.length() > 0) payload["url"] = url;
String response = sendPostToTelegram(BOT_CMD("answerCallbackQuery"), payload.as<JsonObject>());
#ifdef _debug
Serial.print(F("answerCallbackQuery response:"));
Serial.println(response);
#endif
bool answer = checkForOkResponse(response);
closeClient();
return answer;
}