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
|
/*
Copyright © 2016-22 Miranda NG team
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "stdafx.h"
int StrToStatus(const CMStringW &str)
{
if (str == L"idle")
return ID_STATUS_NA;
if (str == L"dnd")
return ID_STATUS_DND;
if (str == L"online")
return ID_STATUS_ONLINE;
if (str == L"offline")
return ID_STATUS_OFFLINE;
return 0;
}
/////////////////////////////////////////////////////////////////////////////////////////
time_t StringToDate(const CMStringW &str)
{
struct tm T = { 0 };
int boo;
if (swscanf(str, L"%04d-%02d-%02dT%02d:%02d:%02d.%d", &T.tm_year, &T.tm_mon, &T.tm_mday, &T.tm_hour, &T.tm_min, &T.tm_sec, &boo) != 7)
return time(0);
T.tm_year -= 1900;
T.tm_mon--;
time_t t = mktime(&T);
_tzset();
t -= _timezone;
return (t >= 0) ? t : 0;
}
/////////////////////////////////////////////////////////////////////////////////////////
static LONG volatile g_counter = 1;
int SerialNext()
{
return InterlockedIncrement(&g_counter);
}
/////////////////////////////////////////////////////////////////////////////////////////
CMStringW getName(const JSONNode &pNode)
{
CMStringW wszNick = pNode["global_name"].as_mstring();
if (wszNick.IsEmpty())
wszNick = pNode["username"].as_mstring();
return wszNick;
}
CMStringW getNick(const JSONNode &pNode)
{
CMStringW name = pNode["username"].as_mstring(), discriminator = pNode["discriminator"].as_mstring();
if (discriminator == L"0")
return name;
return name + L"#" + discriminator;
}
/////////////////////////////////////////////////////////////////////////////////////////
SnowFlake getId(const JSONNode &pNode)
{
return _wtoi64(pNode.as_mstring());
}
SnowFlake CDiscordProto::getId(const char *szSetting)
{
DBVARIANT dbv;
dbv.type = DBVT_BLOB;
if (db_get(0, m_szModuleName, szSetting, &dbv))
return 0;
SnowFlake result = (dbv.cpbVal == sizeof(SnowFlake)) ? *(SnowFlake*)dbv.pbVal : 0;
db_free(&dbv);
return result;
}
SnowFlake CDiscordProto::getId(MCONTACT hContact, const char *szSetting)
{
DBVARIANT dbv;
dbv.type = DBVT_BLOB;
if (db_get(hContact, m_szModuleName, szSetting, &dbv))
return 0;
SnowFlake result;
switch (dbv.type) {
case DBVT_BLOB:
result = (dbv.cpbVal == sizeof(SnowFlake)) ? *(SnowFlake *)dbv.pbVal : 0;
break;
case DBVT_ASCIIZ:
case DBVT_UTF8:
result = _atoi64(dbv.pszVal);
break;
case DBVT_WCHAR:
result = _wtoi64(dbv.pwszVal);
break;
default:
result = 0;
}
db_free(&dbv);
return result;
}
void CDiscordProto::setId(const char *szSetting, SnowFlake iValue)
{
SnowFlake oldVal = getId(szSetting);
if (oldVal != iValue)
db_set_blob(0, m_szModuleName, szSetting, &iValue, sizeof(iValue));
}
void CDiscordProto::setId(MCONTACT hContact, const char *szSetting, SnowFlake iValue)
{
SnowFlake oldVal = getId(hContact, szSetting);
if (oldVal != iValue)
db_set_blob(hContact, m_szModuleName, szSetting, &iValue, sizeof(iValue));
}
/////////////////////////////////////////////////////////////////////////////////////////
void CopyId(const CMStringW &nick)
{
if (!OpenClipboard(nullptr))
return;
EmptyClipboard();
int length = nick.GetLength() + 1;
if (HGLOBAL hMemory = GlobalAlloc(GMEM_FIXED, length * sizeof(wchar_t))) {
mir_wstrncpy((wchar_t*)GlobalLock(hMemory), nick, length);
GlobalUnlock(hMemory);
SetClipboardData(CF_UNICODETEXT, hMemory);
}
CloseClipboard();
}
/////////////////////////////////////////////////////////////////////////////////////////
static CDiscordUser *g_myUser = new CDiscordUser(0);
CDiscordUser* CDiscordProto::FindUser(SnowFlake id)
{
return arUsers.find((CDiscordUser*)&id);
}
CDiscordUser* CDiscordProto::FindUser(const wchar_t *pwszUsername, int iDiscriminator)
{
for (auto &p : arUsers)
if (p->wszUsername == pwszUsername && p->iDiscriminator == iDiscriminator)
return p;
return nullptr;
}
CDiscordUser* CDiscordProto::FindUserByChannel(SnowFlake channelId)
{
for (auto &p : arUsers)
if (p->channelId == channelId)
return p;
return nullptr;
}
/////////////////////////////////////////////////////////////////////////////////////////
// Common JSON processing routines
void CDiscordProto::PreparePrivateChannel(const JSONNode &root)
{
SESSION_INFO *si;
CDiscordUser *pUser = nullptr;
CMStringW wszChannelId = root["id"].as_mstring();
SnowFlake channelId = _wtoi64(wszChannelId);
int type = root["type"].as_int();
switch (type) {
case 1: // single channel
for (auto &it : root["recipients"])
pUser = PrepareUser(it);
if (pUser == nullptr) {
debugLogA("Invalid recipients list, exiting");
return;
}
break;
case 3: // private groupchat
if ((pUser = FindUserByChannel(channelId)) == nullptr) {
pUser = new CDiscordUser(channelId);
arUsers.insert(pUser);
}
pUser->bIsGroup = true;
pUser->wszUsername = wszChannelId;
pUser->wszChannelName = root["name"].as_mstring();
if (pUser->wszChannelName.IsEmpty()) {
int i = 0;
for (auto &it : root["recipients"]) {
CMStringW wszName = getName(it);
if (wszName.IsEmpty())
continue;
if (!pUser->wszChannelName.IsEmpty())
pUser->wszChannelName += L", ";
pUser->wszChannelName += wszName;
if (i++ > 3)
break;
}
}
si = pUser->si = Chat_NewSession(GCW_CHATROOM, m_szModuleName, pUser->wszUsername, pUser->wszChannelName);
pUser->hContact = si->hContact;
Chat_AddGroup(si, LPGENW("Owners"));
Chat_AddGroup(si, LPGENW("Participants"));
{
SnowFlake ownerId = ::getId(root["owner_id"]);
setId(pUser->hContact, DB_KEY_OWNERID, ownerId);
CheckAvatarChange(si->hContact, root["icon"].as_mstring());
GCEVENT gce = { si, GC_EVENT_JOIN };
for (auto &it : root["recipients"]) {
CMStringW wszId = it["id"].as_mstring();
CMStringW wszNick = it["global_name"].as_mstring();
if (wszNick.IsEmpty())
wszNick = getNick(it);
gce.pszUID.w = wszId;
gce.pszNick.w = wszNick;
gce.pszStatus.w = (_wtoi64(wszId) == ownerId) ? L"Owners" : L"Participants";
Chat_Event(&gce);
}
CMStringW wszId(FORMAT, L"%lld", getId(DB_KEY_ID)), wszNick;
if (auto iDiscr = getDword(DB_KEY_DISCR))
wszNick.Format(L"%s#%d", getMStringW(DB_KEY_NICK).c_str(), iDiscr);
else
wszNick = getMStringW(DB_KEY_NICK);
gce.bIsMe = true;
gce.pszUID.w = wszId;
gce.pszNick.w = wszNick;
gce.pszStatus.w = (_wtoi64(wszId) == ownerId) ? L"Owners" : L"Participants";
Chat_Event(&gce);
}
Chat_Control(si, m_bHideGroupchats ? WINDOW_HIDDEN : SESSION_INITDONE);
Chat_Control(si, SESSION_ONLINE);
break;
default:
debugLogA("Invalid channel type: %d, exiting", type);
return;
}
pUser->channelId = channelId;
pUser->lastMsgId = ::getId(root["last_message_id"]);
pUser->bIsPrivate = true;
setId(pUser->hContact, DB_KEY_CHANNELID, pUser->channelId);
SnowFlake oldMsgId = getId(pUser->hContact, DB_KEY_LASTMSGID);
if (pUser->lastMsgId > oldMsgId)
RetrieveHistory(pUser, MSG_AFTER, oldMsgId, 99);
}
CDiscordUser* CDiscordProto::PrepareUser(const JSONNode &user)
{
SnowFlake id = ::getId(user["id"]);
if (id == m_ownId)
return g_myUser;
int iDiscriminator = _wtoi(user["discriminator"].as_mstring());
CMStringW username = user["username"].as_mstring();
CDiscordUser *pUser = FindUser(id);
if (pUser == nullptr) {
MCONTACT tmp = INVALID_CONTACT_ID;
// no user found by userid, try to find him via username+discriminator
pUser = FindUser(username, iDiscriminator);
if (pUser != nullptr) {
// if found, remove the object from list to resort it (its userid==0)
if (pUser->hContact != 0)
tmp = pUser->hContact;
arUsers.remove(pUser);
}
pUser = new CDiscordUser(id);
pUser->wszUsername = username;
pUser->iDiscriminator = iDiscriminator;
if (tmp != INVALID_CONTACT_ID) {
// if we previously had a recently added contact without userid, write it down
pUser->hContact = tmp;
setId(pUser->hContact, DB_KEY_ID, id);
}
arUsers.insert(pUser);
}
if (pUser->hContact == 0) {
MCONTACT hContact = db_add_contact();
Proto_AddToContact(hContact, m_szModuleName);
Clist_SetGroup(hContact, m_wszDefaultGroup);
setId(hContact, DB_KEY_ID, id);
setWString(hContact, DB_KEY_NICK, username);
setDword(hContact, DB_KEY_DISCR, iDiscriminator);
pUser->hContact = hContact;
}
CMStringW wszName(user["global_name"].as_mstring());
int idx = wszName.ReverseFind(' ');
if (idx != -1) {
setWString(pUser->hContact, "FirstName", wszName.Left(idx));
setWString(pUser->hContact, "LastName", wszName.Mid(idx + 1));
}
else setWString(pUser->hContact, "FirstName", wszName);
CheckAvatarChange(pUser->hContact, user["avatar"].as_mstring());
return pUser;
}
/////////////////////////////////////////////////////////////////////////////////////////
CMStringW CDiscordProto::PrepareMessageText(const JSONNode &pRoot, CDiscordUser *pUser)
{
CMStringW wszText = pRoot["content"].as_mstring();
bool bDelimiterAdded = false;
for (auto &it : pRoot["attachments"]) {
CMStringW wszUrl = it["url"].as_mstring();
if (!wszUrl.IsEmpty()) {
if (!bDelimiterAdded) {
bDelimiterAdded = true;
wszText.Append(L"\n-----------------");
}
wszText.AppendFormat(L"\n%s: %s", TranslateT("Attachment"), wszUrl.c_str());
}
}
for (auto &it : pRoot["embeds"]) {
wszText.Append(L"\n-----------------");
CMStringW str = it["url"].as_mstring();
wszText.AppendFormat(L"\n%s: %s", TranslateT("Embed"), str.c_str());
str = it["provider"]["name"].as_mstring() + L" " + it["type"].as_mstring();
if (str.GetLength() > 1)
wszText.AppendFormat(L"\n\t%s", str.c_str());
str = it["description"].as_mstring();
if (!str.IsEmpty())
wszText.AppendFormat(L"\n\t%s", str.c_str());
str = it["thumbnail"]["url"].as_mstring();
if (!str.IsEmpty())
wszText.AppendFormat(L"\n%s: %s", TranslateT("Preview"), str.c_str());
}
auto &nAuthor = pRoot["author"];
SnowFlake mentionId = 0, userId = ::getId(nAuthor["id"]);
CMStringW wszMentioned, wszAuthor = getName(nAuthor);
for (auto &it : pRoot["mentions"]) {
wszMentioned = getName(it);
mentionId = ::getId(it["id"]);
break;
}
switch (pRoot["type"].as_int()) {
case 1: // user was added to chat
if (mentionId != userId)
wszText.Format(TranslateT("%s added %s to the group"), wszAuthor.c_str(), wszMentioned.c_str());
else
wszText.Format(TranslateT("%s joined the group"), wszMentioned.c_str());
break;
case 2: // user was removed from chat
if (mentionId != userId)
wszText.Format(TranslateT("%s removed %s from the group"), wszAuthor.c_str(), wszMentioned.c_str());
else
wszText.Format(TranslateT("%s left the group"), wszMentioned.c_str());
break;
case 3: // call
break;
case 4: // chat was renamed
if (pUser->si)
setWString(pUser->si->hContact, "Nick", wszText);
break;
case 5: // chat icon is changed
wszText.Format(TranslateT("%s changed the group icon"), wszAuthor.c_str());
break;
}
return wszText;
}
/////////////////////////////////////////////////////////////////////////////////////////
void CDiscordProto::ProcessType(CDiscordUser *pUser, const JSONNode &pRoot)
{
switch (pRoot["type"].as_int()) {
case 1: // confirmed
Contact::PutOnList(pUser->hContact);
delSetting(pUser->hContact, DB_KEY_REQAUTH);
delSetting(pUser->hContact, "ApparentMode");
break;
case 3: // expecting authorization
Contact::RemoveFromList(pUser->hContact);
if (!getByte(pUser->hContact, DB_KEY_REQAUTH, 0)) {
setByte(pUser->hContact, DB_KEY_REQAUTH, 1);
CMStringA szId(FORMAT, "%lld", pUser->id);
DB::AUTH_BLOB blob(pUser->hContact, T2Utf(pUser->wszUsername), nullptr, nullptr, szId, nullptr);
DB::EventInfo dbei;
dbei.timestamp = (uint32_t)time(0);
dbei.cbBlob = blob.size();
dbei.pBlob = blob;
ProtoChainRecv(pUser->hContact, PSR_AUTH, 0, (LPARAM)&dbei);
}
break;
}
}
/////////////////////////////////////////////////////////////////////////////////////////
void CDiscordProto::ParseSpecialChars(SESSION_INFO *si, CMStringW &str)
{
for (int i = 0; (i = str.Find('<', i)) != -1; i++) {
int iEnd = str.Find('>', i + 1);
if (iEnd == -1)
return;
CMStringW wszWord = str.Mid(i + 1, iEnd - i - 1);
if (wszWord[0] == '@') { // member highlight
int iStart = 1;
if (wszWord[1] == '!')
iStart++;
USERINFO *ui = g_chatApi.UM_FindUser(si, wszWord.c_str() + iStart);
if (ui != nullptr)
str.Replace(L"<" + wszWord + L">", CMStringW(ui->pszNick) + L": ");
}
else if (wszWord[0] == '#') {
CDiscordUser *pUser = FindUserByChannel(_wtoi64(wszWord.c_str() + 1));
if (pUser != nullptr) {
ptrW wszNick(getWStringA(pUser->hContact, DB_KEY_NICK));
if (wszNick != nullptr)
str.Replace(L"<" + wszWord + L">", wszNick);
}
}
}
}
|