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
|
#include "common.h"
#include "tox_dns.h"
void CToxProto::SearchFailedAsync(void*)
{
ProtoBroadcastAck(NULL, ACKTYPE_SEARCH, ACKRESULT_FAILED, (HWND)1, 0);
}
void CToxProto::SearchByNameAsync(void *arg)
{
char *query = (char*)arg;
char *name = strtok(query, "@");
char *domain = strtok(NULL, "");
int i = 0;
static int j = 0;
while (i < 2)
{
struct dns_server *server = &dns_servers[j % SIZEOF(dns_servers)];
if (domain == NULL || strcmp(domain, server->domain) == 0)
{
void *dns = tox_dns3_new(server->key);
uint8_t dnsString[256];
uint32_t requestId = 0;
int length = tox_generate_dns3_string(dns, dnsString, sizeof(dnsString), &requestId, (uint8_t*)name, mir_strlen(name));
if (length != TOX_ERROR)
{
dnsString[length] = 0;
char dnsQuery[512];
mir_snprintf(dnsQuery, 512, "_%s._tox.%s", dnsString, server->domain);
DNS_RECORDA *record = NULL;
DnsQuery_A(dnsQuery, DNS_TYPE_TEXT, 0, NULL, (PDNS_RECORD*)&record, NULL);
while (record)
{
DNS_TXT_DATAA *txt = &record->Data.Txt;
if (record->wType == DNS_TYPE_TEXT && txt->dwStringCount)
{
char *recordId = &txt->pStringArray[0][10];
uint8_t data[TOX_FRIEND_ADDRESS_SIZE];
if (tox_decrypt_dns3_TXT(dns, data, (uint8_t*)recordId, mir_strlen(recordId), requestId) != TOX_ERROR)
{
ToxHexAddress address(data, TOX_FRIEND_ADDRESS_SIZE);
PROTOSEARCHRESULT psr = { sizeof(PROTOSEARCHRESULT) };
psr.flags = PSR_TCHAR;
psr.id = mir_a2t(address);
psr.nick = mir_utf8decodeT(name);
TCHAR email[MAX_PATH];
mir_sntprintf(email, SIZEOF(email), _T("%s@%s"), psr.nick, _A2T(server->domain));
psr.email = mir_tstrdup(email);
ProtoBroadcastAck(NULL, ACKTYPE_SEARCH, ACKRESULT_DATA, (HANDLE)1, (LPARAM)&psr);
}
}
record = record->pNext;
}
}
tox_dns3_kill(dns);
}
i++; j++;
}
ProtoBroadcastAck(NULL, ACKTYPE_SEARCH, ACKRESULT_SUCCESS, (HANDLE)1, 0);
mir_free(arg);
}
INT_PTR CToxProto::SearchDlgProc(HWND hwnd, UINT uMsg, WPARAM, LPARAM lParam)
{
CToxProto *proto = (CToxProto*)GetWindowLongPtr(hwnd, GWLP_USERDATA);
switch (uMsg)
{
case WM_INITDIALOG:
TranslateDialogDefault(hwnd);
{
proto = (CToxProto*)lParam;
SetWindowLongPtr(hwnd, GWLP_USERDATA, lParam);
//ShowWindow(GetDlgItem(GetParent(hwnd), 1408/*IDC_BYCUSTOM*/), SW_HIDE);
//ShowWindow(GetDlgItem(GetParent(hwnd), 1402/*IDC_ADVANCEDGROUP*/), SW_HIDE);
SetDlgItemText(GetParent(hwnd), 1408/*IDC_BYCUSTOM*/, TranslateT("Query"));
}
return TRUE;
}
return FALSE;
}
HANDLE __cdecl CToxProto::SearchBasic(const PROTOCHAR*) { return 0; }
HANDLE __cdecl CToxProto::SearchByEmail(const PROTOCHAR*) { return 0; }
HANDLE __cdecl CToxProto::SearchByName(const PROTOCHAR*, const PROTOCHAR*, const PROTOCHAR*) { return 0; }
HWND __cdecl CToxProto::SearchAdvanced(HWND owner)
{
if (!IsOnline())
{
// we cannot add someone to friend list while tox is offline
return NULL;
}
std::smatch match;
std::regex regex("^\\s*([A-Fa-f0-9]{76})\\s*$");
TCHAR text[MAX_PATH];
GetDlgItemText(owner, IDC_SEARCH, text, SIZEOF(text));
const std::string query = ptrA(mir_utf8encodeT(text));
if (std::regex_search(query, match, regex))
{
std::string address = match[1];
PROTOSEARCHRESULT psr = { sizeof(psr) };
psr.flags = PSR_TCHAR;
psr.id = mir_a2t(query.c_str());
ADDCONTACTSTRUCT acs = { HANDLE_SEARCHRESULT };
acs.szProto = m_szModuleName;
acs.psr = &psr;
CallService(MS_ADDCONTACT_SHOW, (WPARAM)owner, (LPARAM)&acs);
ForkThread(&CToxProto::SearchFailedAsync, NULL);
}
else
{
regex = "^\\s*(([^ @/:;()\"']+)(@[A-Za-z]+.[A-Za-z]{2,6})?)\\s*$";
if (std::regex_search(query, match, regex))
{
ForkThread(&CToxProto::SearchByNameAsync, mir_strdup(match[1].str().c_str()));
}
else
{
ForkThread(&CToxProto::SearchFailedAsync, NULL);
}
}
return (HWND)1;
}
HWND __cdecl CToxProto::CreateExtendedSearchUI(HWND owner)
{
return CreateDialogParam(
g_hInstance,
MAKEINTRESOURCE(IDD_SEARCH),
owner,
SearchDlgProc,
(LPARAM)this);
}
|