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
|
#include "stdafx.h"
bool CSteamProto::IsOnline()
{
return m_iStatus > ID_STATUS_OFFLINE && m_hPollingThread;
}
bool CSteamProto::IsMe(const char *steamId)
{
ptrA mySteamId(getStringA("SteamID"));
if (!lstrcmpA(steamId, mySteamId))
return true;
return false;
}
bool CSteamProto::Relogin()
{
ptrA token(getStringA("TokenSecret"));
if (mir_strlen(token) <= 0)
return false;
HttpRequest *request = new LogonRequest(token);
HttpResponse *response = request->Send(m_hNetlibUser);
bool success = false;
if (CheckResponse(response))
{
JSONROOT root(response->pData);
if (root != NULL) {
JSONNode *node = json_get(root, "error");
ptrT error(json_as_string(node));
if (!mir_tstrcmpi(error, L"OK"))
{
node = json_get(root, "umqid");
setString("UMQID", ptrA(mir_u2a(ptrT(json_as_string(node)))));
node = json_get(root, "message");
setDword("MessageID", json_as_int(node));
success = true;
}
}
}
delete request;
delete response;
return success;
}
void CSteamProto::OnGotRsaKey(const HttpResponse *response)
{
if (!CheckResponse(response))
return;
// load rsa key parts
JSONNode root = JSONNode::parse(response->pData);
if (!root)
return;
if (!root["success"].as_bool())
return;
std::string modulus = root["publickey_mod"].as_string();
// exponent "010001" is used as constant in CSteamProto::RsaEncrypt
//std::string exponent = root["publickey_exp"].as_string();
std::string timestamp = root["timestamp"].as_string();
// encrcrypt password
ptrA base64RsaEncryptedPassword;
ptrA szPassword(getStringA("Password"));
DWORD error = 0;
DWORD encryptedSize = 0;
if ((error = RsaEncrypt(modulus.c_str(), szPassword, NULL, encryptedSize)) != 0)
{
debugLogA("CSteamProto::OnGotRsaKey: encryption error (%lu)", error);
return;
}
BYTE *encryptedPassword = (BYTE*)mir_calloc(encryptedSize);
if ((error = RsaEncrypt(modulus.c_str(), szPassword, encryptedPassword, encryptedSize)) != 0)
{
debugLogA("CSteamProto::OnGotRsaKey: encryption error (%lu)", error);
return;
}
base64RsaEncryptedPassword = mir_base64_encode(encryptedPassword, encryptedSize);
mir_free(encryptedPassword);
// run authorization request
T2Utf username(getTStringA("Username"));
ptrA twoFactorCode(getStringA("TwoFactorCode"));
if (!twoFactorCode) twoFactorCode = mir_strdup("");
ptrA guardId(getStringA("GuardId"));
if (!guardId) guardId = mir_strdup("");
ptrA guardCode(getStringA("GuardCode"));
if (!guardCode) guardCode = mir_strdup("");
ptrA captchaId(getStringA("CaptchaId"));
if (!captchaId) captchaId = mir_strdup("-1");
ptrA captchaText(getStringA("CaptchaText"));
if (!captchaText) captchaText = mir_strdup("");
PushRequest(
new AuthorizationRequest(username, base64RsaEncryptedPassword, timestamp.c_str(), twoFactorCode, guardCode, guardId, captchaId, captchaText),
&CSteamProto::OnAuthorization);
}
void CSteamProto::OnAuthorization(const HttpResponse *response)
{
if (!CheckResponse(response))
{
SetStatus(ID_STATUS_OFFLINE);
return;
}
JSONNode root = JSONNode::parse(response->pData);
if (!root)
{
SetStatus(ID_STATUS_OFFLINE);
return;
}
if (!root["success"].as_bool())
{
OnAuthorizationError(root);
return;
}
OnAuthorizationSuccess(root);
}
void CSteamProto::DeleteAuthSettings()
{
delSetting("TwoFactorCode");
delSetting("GuardId");
delSetting("GuardCode");
delSetting("CaptchaId");
delSetting("CaptchaText");
}
void CSteamProto::OnAuthorizationError(const JSONNode &node)
{
std::string message = node["message"].as_string();
ptrT messageT(mir_utf8decodeT(message.c_str()));
debugLogA("CSteamProto::OnAuthorizationError: %s", message.c_str());
if (!mir_tstrcmpi(messageT, L"Incorrect login."))
{
// We can't continue with incorrect login/password
DeleteAuthSettings();
SetStatus(ID_STATUS_OFFLINE);
return;
}
T2Utf username(getTStringA("Username"));
if (node["requires_twofactor"].as_bool())
{
debugLogA("CSteamProto::OnAuthorizationError: requires twofactor");
CSteamTwoFactorDialog twoFactorDialog(this);
if (twoFactorDialog.DoModal() != DIALOG_RESULT_OK)
{
DeleteAuthSettings();
SetStatus(ID_STATUS_OFFLINE);
return;
}
setString("TwoFactorCode", twoFactorDialog.GetTwoFactorCode());
PushRequest(
new GetRsaKeyRequest(username),
&CSteamProto::OnGotRsaKey);
return;
}
if (node["clear_password_field"].as_bool())
{
debugLogA("CSteamProto::OnAuthorizationError: clear password field");
return;
}
if (node["emailauth_needed"].as_bool())
{
debugLogA("CSteamProto::OnAuthorizationError: emailauth needed");
std::string guardId = node["emailsteamid"].as_string();
ptrA oldGuardId(getStringA("GuardId"));
if (mir_strcmp(guardId.c_str(), oldGuardId) == 0)
{
delSetting("GuardId");
delSetting("GuardCode");
PushRequest(
new GetRsaKeyRequest(username),
&CSteamProto::OnGotRsaKey);
return;
}
std::string domain = node["emaildomain"].as_string();
// Make absolute link
if (domain.find("://") == std::string::npos)
domain = "http://" + domain;
CSteamGuardDialog guardDialog(this, domain.c_str());
if (guardDialog.DoModal() != DIALOG_RESULT_OK)
{
DeleteAuthSettings();
SetStatus(ID_STATUS_OFFLINE);
return;
}
setString("GuardId", guardId.c_str());
setString("GuardCode", guardDialog.GetGuardCode());
PushRequest(
new GetRsaKeyRequest(username),
&CSteamProto::OnGotRsaKey);
return;
}
if (node["captcha_needed"].as_bool())
{
debugLogA("CSteamProto::OnAuthorizationError: captcha needed");
std::string captchaId = node["captcha_gid"].as_string();
GetCaptchaRequest *request = new GetCaptchaRequest(captchaId.c_str());
HttpResponse *response = request->Send(m_hNetlibUser);
delete request;
CSteamCaptchaDialog captchaDialog(this, (BYTE*)response->pData, response->dataLength);
delete response;
if (captchaDialog.DoModal() != DIALOG_RESULT_OK)
{
DeleteAuthSettings();
SetStatus(ID_STATUS_OFFLINE);
return;
}
setString("CaptchaId", captchaId.c_str());
setString("CaptchaText", captchaDialog.GetCaptchaText());
PushRequest(
new GetRsaKeyRequest(username),
&CSteamProto::OnGotRsaKey);
return;
}
DeleteAuthSettings();
SetStatus(ID_STATUS_OFFLINE);
}
void CSteamProto::OnAuthorizationSuccess(const JSONNode &node)
{
DeleteAuthSettings();
if (!node["login_complete"].as_bool())
{
SetStatus(ID_STATUS_OFFLINE);
return;
}
std::string oauth = node["oauth"].as_string();
JSONNode root = JSONNode::parse(oauth.c_str());
if (!root)
{
SetStatus(ID_STATUS_OFFLINE);
return;
}
std::string steamId = root["steamid"].as_string();
setString("SteamID", steamId.c_str());
std::string token = root["oauth_token"].as_string();
setString("TokenSecret", token.c_str());
std::string cookie = root["webcookie"].as_string();
PushRequest(
new GetSessionRequest(token.c_str(), steamId.c_str(), cookie.c_str()),
&CSteamProto::OnGotSession);
// We need to load homepage to get sessionid cookie
PushRequest(
new GetSessionRequest2(),
&CSteamProto::OnGotSession);
PushRequest(
new LogonRequest(token.c_str()),
&CSteamProto::OnLoggedOn);
}
void CSteamProto::OnGotSession(const HttpResponse *response)
{
if (!response)
return;
for (int i = 0; i < response->headersCount; i++)
{
if (lstrcmpiA(response->headers[i].szName, "Set-Cookie"))
continue;
std::string cookies = response->headers[i].szValue;
size_t start = cookies.find("sessionid=") + 10;
size_t end = cookies.substr(start).find(';');
std::string sessionId = cookies.substr(start, end - start + 10);
setString("SessionID", sessionId.c_str());
break;
}
}
void CSteamProto::HandleTokenExpired()
{
// Delete expired token
delSetting("TokenSecret");
// Try to relogin automatically (but only once)
if (isLoginAgain) {
// Notify error to user
ShowNotification(L"Steam", TranslateT("Cannot obtain connection token."));
// Just go offline; it also resets the isLoginAgain to false
SetStatus(ID_STATUS_OFFLINE);
}
else
{
// Remember we are trying to relogin
isLoginAgain = true;
// Remember status user wanted
int desiredStatus = m_iDesiredStatus;
// Set status to offline
SetStatus(ID_STATUS_OFFLINE);
// Try to login again automatically
SetStatus(desiredStatus);
}
}
void CSteamProto::OnLoggedOn(const HttpResponse *response)
{
if (!CheckResponse(response))
{
if (response && response->resultCode == HTTP_CODE_UNAUTHORIZED)
{
// Probably expired TokenSecret
HandleTokenExpired();
return;
}
// Probably timeout or no connection, we can do nothing here
ShowNotification(L"Steam", TranslateT("Unknown login error."));
SetStatus(ID_STATUS_OFFLINE);
return;
}
JSONROOT root(response->pData);
JSONNode *node = json_get(root, "error");
ptrT error(json_as_string(node));
if (mir_tstrcmpi(error, L"OK"))
{
// Probably expired TokenSecret
HandleTokenExpired();
return;
}
node = json_get(root, "umqid");
setString("UMQID", ptrA(mir_u2a(ptrT(json_as_string(node)))));
node = json_get(root, "message");
setDword("MessageID", json_as_int(node));
if (m_lastMessageTS <= 0) {
node = json_get(root, "utc_timestamp");
time_t timestamp = _ttoi64(ptrT(json_as_string(node)));
setDword("LastMessageTS", timestamp);
}
// load contact list
ptrA token(getStringA("TokenSecret"));
ptrA steamId(getStringA("SteamID"));
PushRequest(
new GetFriendListRequest(token, steamId),
&CSteamProto::OnGotFriendList);
// start polling thread
m_hPollingThread = ForkThreadEx(&CSteamProto::PollingThread, 0, NULL);
// go to online now
ProtoBroadcastAck(NULL, ACKTYPE_STATUS, ACKRESULT_SUCCESS, (HANDLE)ID_STATUS_CONNECTING, m_iStatus = m_iDesiredStatus);
}
|