forked from LengKundee/MQL5-Google-Onedrive
- Add `Zolo_Encrypt` stub in `mt5/MQL5/Include/ZoloBridge.mqh` - Integrate stub into `SendSignalToBridge` - Update `docs/ZOLO_Plugin_Integration.md` with Replit reference - Note: Encryption logic requires user input from Replit link Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
72 lines
2.6 KiB
MQL5
72 lines
2.6 KiB
MQL5
//+------------------------------------------------------------------+
|
|
//| ZoloBridge.mqh |
|
|
//| Copyright 2024, GenX Solutions |
|
|
//+------------------------------------------------------------------+
|
|
#property copyright "Copyright 2024, GenX Solutions"
|
|
#property strict
|
|
|
|
#ifndef ZOLO_BRIDGE_MQH
|
|
#define ZOLO_BRIDGE_MQH
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| Helper: Sanitize JSON String |
|
|
//+------------------------------------------------------------------+
|
|
string Zolo_SanitizeJSON(string text)
|
|
{
|
|
string res = text;
|
|
// Replace backslash first to avoid double escaping
|
|
StringReplace(res, "\\", "\\\\");
|
|
StringReplace(res, "\"", "\\\"");
|
|
StringReplace(res, "\n", " ");
|
|
StringReplace(res, "\r", " ");
|
|
StringReplace(res, "\t", " ");
|
|
return res;
|
|
}
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| Helper: Encryption Stub |
|
|
//| TODO: Implement encryption from Replit |
|
|
//| URL: https://replit.com/join/rtvyfhtnow-keamouyleng369 |
|
|
//+------------------------------------------------------------------+
|
|
string Zolo_Encrypt(string text)
|
|
{
|
|
// Placeholder: Return text as-is until encryption is implemented
|
|
// When implemented, this should return Base64 encoded ciphertext.
|
|
// See Replit link for implementation details.
|
|
return text;
|
|
}
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| ZOLO Bridge Function |
|
|
//+------------------------------------------------------------------+
|
|
void SendSignalToBridge(string msg, bool enable, string url)
|
|
{
|
|
if (!enable || url == "") return;
|
|
|
|
// Encrypt the message (currently a pass-through)
|
|
string encrypted_msg = Zolo_Encrypt(msg);
|
|
|
|
// Sanitize for JSON inclusion
|
|
string sanitized_msg = Zolo_SanitizeJSON(encrypted_msg);
|
|
|
|
string body = "{\"event\":\"signal\",\"message\":\"" + sanitized_msg + "\"}";
|
|
|
|
char data[];
|
|
int len = StringToCharArray(body, data, 0, WHOLE_ARRAY, CP_UTF8);
|
|
if (len > 0) ArrayResize(data, len - 1); // Remove null terminator
|
|
|
|
char result[];
|
|
string result_headers;
|
|
string headers = "Content-Type: application/json";
|
|
|
|
int res = WebRequest("POST", url, headers, 5000, data, result, result_headers);
|
|
|
|
if (res != 200)
|
|
{
|
|
// Only print on failure to reduce log noise
|
|
PrintFormat("ZOLO WebRequest failed. Code: %d. URL: %s", res, url);
|
|
if(res == -1) Print("Error: ", GetLastError());
|
|
}
|
|
}
|
|
|
|
#endif // ZOLO_BRIDGE_MQH
|