From 6576afc6712aaf545339787286a4690494c052f2 Mon Sep 17 00:00:00 2001 From: "Aleksanov, Yuriy" Date: Thu, 6 Mar 2025 05:00:49 +0300 Subject: [PATCH 1/3] msg --- .vscode/c_cpp_properties.json | 21 +++++++++++++++++++++ my_msg.cpp | 0 2 files changed, 21 insertions(+) create mode 100644 .vscode/c_cpp_properties.json create mode 100644 my_msg.cpp diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..7d576ba --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,21 @@ +{ + "configurations": [ + { + "name": "Win32", + "includePath": [ + "${workspaceFolder}/**" + ], + "defines": [ + "_DEBUG", + "UNICODE", + "_UNICODE" + ], + "windowsSdkVersion": "10.0.19041.0", + "compilerPath": "cl.exe", + "cStandard": "c17", + "cppStandard": "c++17", + "intelliSenseMode": "windows-msvc-x64" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/my_msg.cpp b/my_msg.cpp new file mode 100644 index 0000000..e69de29 -- 2.40.1 From 54da7e13b97cb27380f459d0801f3b1be51c5970 Mon Sep 17 00:00:00 2001 From: "Aleksanov, Yuriy" Date: Thu, 6 Mar 2025 05:03:47 +0300 Subject: [PATCH 2/3] msg1 --- my_msg.cpp | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/my_msg.cpp b/my_msg.cpp index e69de29..41bd390 100644 --- a/my_msg.cpp +++ b/my_msg.cpp @@ -0,0 +1,63 @@ +#include +#include +#include +#include + +using namespace std; + +string telegram_id; +string bot_token; + +int my_msg(const string& msg) { + cout << msg << endl; + + if (bot_token.empty() || telegram_id.empty()) { + return 0; + } + + CURL* curl = curl_easy_init(); + if (!curl) return 6; + + string escaped_msg = escape_json(msg); + + string chat_id_field; + if (is_numeric(telegram_id)) { + chat_id_field = "\"chat_id\": " + telegram_id; + } else { + chat_id_field = "\"chat_id\": \"" + telegram_id + "\""; + } + + string json_data = "{" + chat_id_field + ", \"text\": \"" + escaped_msg + "\"}"; + + struct curl_slist* headers = nullptr; + headers = curl_slist_append(headers, "Content-Type: application/json"); + + curl_easy_setopt(curl, CURLOPT_URL, ("https://api.telegram.org/bot" + bot_token + "/sendMessage").c_str()); + curl_easy_setopt(curl, CURLOPT_POST, 1L); + curl_easy_setopt(curl, CURLOPT_POSTFIELDS, json_data.c_str()); + curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); + curl_easy_setopt(curl, CURLOPT_USERAGENT, "libcurl/7.68.0"); + + curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, [](void*, size_t size, size_t nmemb, void*) -> size_t { + return size * nmemb; + }); + + CURLcode res = curl_easy_perform(curl); + long http_code = 0; + curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &http_code); + + curl_slist_free_all(headers); + curl_easy_cleanup(curl); + + if (res != CURLE_OK) return 5; + + switch (http_code) { + case 200: return 0; + case 401: return 1; + case 400: return 2; + case 404: return 3; + default: + if (http_code >= 500) return 4; + return 4; + } +} \ No newline at end of file -- 2.40.1 From 070d2d19c368c72d0efc305d4c2ab46a6195e524 Mon Sep 17 00:00:00 2001 From: "Aleksanov, Yuriy" Date: Thu, 6 Mar 2025 12:05:17 +0300 Subject: [PATCH 3/3] msg2 --- my_msg.cpp | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/my_msg.cpp b/my_msg.cpp index 41bd390..28f6dfd 100644 --- a/my_msg.cpp +++ b/my_msg.cpp @@ -11,10 +11,6 @@ string bot_token; int my_msg(const string& msg) { cout << msg << endl; - if (bot_token.empty() || telegram_id.empty()) { - return 0; - } - CURL* curl = curl_easy_init(); if (!curl) return 6; @@ -52,12 +48,11 @@ int my_msg(const string& msg) { if (res != CURLE_OK) return 5; switch (http_code) { - case 200: return 0; - case 401: return 1; - case 400: return 2; - case 404: return 3; - default: - if (http_code >= 500) return 4; - return 4; + case 200: return 0; // Успех + case 401: return 1; // Неверный токен + case 400: return 2; // Неверный chat_id + case 404: return 3; // Неверный URL (бот не найден) + default: + return 4; // Ошибка сервера (500) } } \ No newline at end of file -- 2.40.1