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
|
/*
Copyright © 2016-17 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"
/////////////////////////////////////////////////////////////////////////////////////////
// retrieves server history
void CDiscordProto::RetrieveHistory(MCONTACT hContact, CDiscordHitoryOp iOp, SnowFlake msgid, int iLimit)
{
CDiscordUser *pUser = FindUser(getId(hContact, DB_KEY_ID));
if (pUser == NULL)
return;
CMStringA szUrl(FORMAT, "/channels/%lld/messages", pUser->channelId);
AsyncHttpRequest *pReq = new AsyncHttpRequest(this, REQUEST_GET, szUrl, &CDiscordProto::OnReceiveHistory);
pReq << INT_PARAM("limit", iLimit);
switch (iOp) {
case MSG_AFTER:
pReq << CHAR_PARAM("after", CMStringA(FORMAT, "%lld", msgid)); break;
case MSG_BEFORE:
pReq << CHAR_PARAM("before", CMStringA(FORMAT, "%lld", msgid)); break;
}
pReq->pUserInfo = pUser;
Push(pReq);
}
void CDiscordProto::OnReceiveHistory(NETLIBHTTPREQUEST *pReply, AsyncHttpRequest *pReq)
{
CDiscordUser *pUser = (CDiscordUser*)pReq->pUserInfo;
if (pReply->resultCode != 200)
return;
JSONNode root = JSONNode::parse(pReply->pData);
if (!root)
return;
DBEVENTINFO dbei = {};
dbei.cbSize = sizeof(dbei);
dbei.szModule = m_szModuleName;
dbei.flags = DBEF_READ | DBEF_UTF;
dbei.eventType = EVENTTYPE_MESSAGE;
SnowFlake lastId = getId(pUser->hContact, DB_KEY_LASTMSGID); // as stored in a database
for (auto it = root.begin(); it != root.end(); ++it) {
JSONNode &p = *it;
SnowFlake authorid = _wtoi64(p["author"]["id"].as_mstring());
if (authorid == m_ownId)
dbei.flags |= DBEF_SENT;
else
dbei.flags &= ~DBEF_SENT;
SnowFlake msgid = _wtoi64(p["id"].as_mstring());
CMStringA szBody(ptrA(mir_utf8encodeW(p["content"].as_mstring())));
szBody.AppendFormat("%c%lld", 0, msgid);
dbei.timestamp = StringToDate(p["timestamp"].as_mstring());
dbei.pBlob = (PBYTE)szBody.GetBuffer();
dbei.cbBlob = szBody.GetLength();
db_event_add(pUser->hContact, &dbei);
if (lastId < msgid)
lastId = msgid;
}
setId(pUser->hContact, DB_KEY_LASTMSGID, lastId);
}
/////////////////////////////////////////////////////////////////////////////////////////
// retrieves user info
void CDiscordProto::RetrieveUserInfo(MCONTACT hContact)
{
AsyncHttpRequest *pReq = new AsyncHttpRequest(this, REQUEST_GET, "/users/@me", &CDiscordProto::OnReceiveUserInfo);
pReq->pUserInfo = (void*)hContact;
Push(pReq);
}
void CDiscordProto::OnReceiveUserInfo(NETLIBHTTPREQUEST *pReply, AsyncHttpRequest *pReq)
{
MCONTACT hContact = (MCONTACT)pReq->pUserInfo;
if (pReply->resultCode != 200) {
if (hContact == NULL)
ConnectionFailed(LOGINERR_WRONGPASSWORD);
return;
}
JSONNode root = JSONNode::parse(pReply->pData);
if (!root) {
if (hContact == NULL)
ConnectionFailed(LOGINERR_NOSERVER);
return;
}
m_ownId = _wtoi64(root["id"].as_mstring());
setId(hContact, DB_KEY_ID, m_ownId);
setByte(hContact, DB_KEY_MFA, root["mfa_enabled"].as_bool());
setDword(hContact, DB_KEY_DISCR, root["discriminator"].as_int());
setWString(hContact, DB_KEY_NICK, root["username"].as_mstring());
setWString(hContact, DB_KEY_AVHASH, root["avatar"].as_mstring());
setWString(hContact, DB_KEY_EMAIL, root["email"].as_mstring());
if (hContact == NULL)
OnLoggedIn();
}
/////////////////////////////////////////////////////////////////////////////////////////
// finds a gateway address
void CDiscordProto::OnReceiveGateway(NETLIBHTTPREQUEST *pReply, AsyncHttpRequest*)
{
if (pReply->resultCode != 200) {
ShutdownSession();
return;
}
JSONNode root = JSONNode::parse(pReply->pData);
if (!root) {
ShutdownSession();
return;
}
m_szGateway = root["url"].as_mstring();
ForkThread(&CDiscordProto::GatewayThread, NULL);
}
/////////////////////////////////////////////////////////////////////////////////////////
void CDiscordProto::SetServerStatus(int iStatus)
{
if (!m_bOnline)
return;
if (iStatus == ID_STATUS_OFFLINE)
Push(new AsyncHttpRequest(this, REQUEST_POST, "/auth/logout", NULL));
else {
const char *pszStatus;
switch (iStatus) {
case ID_STATUS_NA: pszStatus = "idle"; break;
case ID_STATUS_DND: pszStatus = "dnd"; break;
case ID_STATUS_INVISIBLE: pszStatus = "invisible"; break;
default: pszStatus = "online"; break;
}
JSONNode root; root << CHAR_PARAM("status", pszStatus);
Push(new AsyncHttpRequest(this, REQUEST_PATCH, "/users/@me/settings", NULL, &root));
}
int iOldStatus = m_iStatus; m_iStatus = iStatus;
ProtoBroadcastAck(NULL, ACKTYPE_STATUS, ACKRESULT_SUCCESS, (HANDLE)iOldStatus, m_iStatus);
}
void CDiscordProto::OnReceiveAuth(NETLIBHTTPREQUEST *pReply, AsyncHttpRequest *pReq)
{
MCONTACT hContact = (MCONTACT)pReq->pUserInfo;
if (pReply->resultCode == 204)
RetrieveUserInfo(hContact);
}
/////////////////////////////////////////////////////////////////////////////////////////
void CDiscordProto::OnReceiveChannels(NETLIBHTTPREQUEST *pReply, AsyncHttpRequest*)
{
if (pReply->resultCode != 200)
return;
JSONNode root = JSONNode::parse(pReply->pData);
if (!root)
return;
for (auto it = root.begin(); it != root.end(); ++it) {
JSONNode &p = *it;
JSONNode &user = p["recipient"];
if (!user)
continue;
CDiscordUser *pUser = PrepareUser(user);
pUser->lastMessageId = _wtoi64(p["last_message_id"].as_mstring());
pUser->channelId = _wtoi64(p["id"].as_mstring());
pUser->bIsPrivate = p["is_private"].as_bool();
setId(pUser->hContact, DB_KEY_CHANNELID, pUser->channelId);
}
}
/////////////////////////////////////////////////////////////////////////////////////////
void CDiscordProto::OnReceiveFriends(NETLIBHTTPREQUEST *pReply, AsyncHttpRequest*)
{
if (pReply->resultCode != 200)
return;
JSONNode root = JSONNode::parse(pReply->pData);
if (!root)
return;
for (auto it = root.begin(); it != root.end(); ++it) {
JSONNode &p = *it;
JSONNode &user = p["user"];
if (user)
PrepareUser(user);
}
}
/////////////////////////////////////////////////////////////////////////////////////////
void CDiscordProto::OnReceiveGuilds(NETLIBHTTPREQUEST *pReply, AsyncHttpRequest*)
{
if (pReply->resultCode != 200)
return;
}
/////////////////////////////////////////////////////////////////////////////////////////
void CDiscordProto::OnReceiveMessageAck(NETLIBHTTPREQUEST *pReply, AsyncHttpRequest *pReq)
{
bool bSucceeded = true;
if (pReply->resultCode != 200 && pReply->resultCode != 204)
bSucceeded = false;
ProtoBroadcastAck((MCONTACT)pReq->pUserInfo, ACKTYPE_MESSAGE, bSucceeded ? ACKRESULT_SUCCESS : ACKRESULT_FAILED, (HANDLE)pReq->m_iReqNum, 0);
}
/////////////////////////////////////////////////////////////////////////////////////////
void CDiscordProto::OnReceiveToken(NETLIBHTTPREQUEST *pReply, AsyncHttpRequest*)
{
if (pReply->resultCode != 200) {
ConnectionFailed(LOGINERR_WRONGPASSWORD);
return;
}
JSONNode root = JSONNode::parse(pReply->pData);
if (!root) {
LBL_Error:
ConnectionFailed(LOGINERR_NOSERVER);
return;
}
CMStringA szToken = root["token"].as_mstring();
if (szToken.IsEmpty())
goto LBL_Error;
m_szAccessToken = szToken.Detach();
setString("AccessToken", m_szAccessToken);
RetrieveUserInfo(NULL);
}
|