-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRequester.cs
484 lines (396 loc) · 16.6 KB
/
Requester.cs
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
478
479
480
481
482
483
484
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Threading.Tasks;
using Spectre.Console;
using SteamKit2;
using static SteamKit2.SteamApps;
#pragma warning disable CA1031 // Do not catch general exception types
namespace SteamTokenDumper;
internal sealed class Requester(Payload payload, SteamApps steamApps, KnownDepotIds knownDepotIds, Configuration config)
{
private const int ItemsPerRequest = 200;
private static readonly TimeSpan Timeout = TimeSpan.FromMinutes(1);
private bool SomeRequestFailed;
private readonly HashSet<uint> skippedPackages = [];
private readonly HashSet<uint> skippedApps = [];
public List<PICSRequest> ProcessLicenseList(LicenseListCallback licenseList)
{
var packages = new List<PICSRequest>();
foreach (var license in licenseList.LicenseList)
{
packages.Add(new PICSRequest(license.PackageID, license.AccessToken));
// Request autogrant packages so we can automatically skip all apps inside of it
if (config.SkipAutoGrant && license.PaymentMethod == EPaymentMethod.AutoGrant)
{
skippedPackages.Add(license.PackageID);
continue;
}
if (license.AccessToken == 0)
{
continue;
}
payload.Subs[license.PackageID.ToString(CultureInfo.InvariantCulture)] = license.AccessToken.ToString(CultureInfo.InvariantCulture);
}
if (skippedPackages.Count > 0)
{
AnsiConsole.MarkupLine($"Skipped auto granted packages: [yellow]{string.Join(", ", skippedPackages.Order())}[/]");
}
return packages;
}
public async Task ProcessPackages(List<PICSRequest> packages)
{
AnsiConsole.WriteLine();
AnsiConsole.MarkupLine($"Licenses: [green]{packages.Count}[/] - Package tokens: [green]{packages.Count(x => x.AccessToken != 0)}[/]");
try
{
await AnsiConsole.Progress()
.Columns([
new TaskDescriptionColumn(),
new ProgressBarColumn(),
new IntValueProgressColumn(),
new ElapsedTimeColumn(),
new RemainingTimeColumn(),
new SpinnerColumn(),
])
.StartAsync(async ctx =>
{
var progressPackages = ctx.AddTask("Package info", maxValue: packages.Count);
var progressTokens = ctx.AddTask("App tokens", autoStart: false, maxValue: 0);
var progressApps = ctx.AddTask("App info", autoStart: false, maxValue: 0);
var progressDepots = ctx.AddTask("Depot keys", autoStart: false, maxValue: 0);
var (apps, depots) = await RequestPackageInfo(progressPackages, progressApps, progressTokens, packages);
await Request(progressApps, progressTokens, progressDepots, apps, depots);
});
Ansi.Progress(Ansi.ProgressState.Hidden);
AnsiConsole.MarkupLine($"Sub tokens: [green]{payload.Subs.Count}[/]");
AnsiConsole.MarkupLine($"App tokens: [green]{payload.Apps.Count}[/]");
AnsiConsole.MarkupLine($"Depot keys: [green]{payload.Depots.Count}[/]");
}
catch (Exception e)
{
SomeRequestFailed = true;
AnsiConsole.Write(
new Panel(new Text(e.ToString(), new Style(Color.Red)))
.BorderColor(Color.Red)
.RoundedBorder()
);
}
if (SomeRequestFailed)
{
AnsiConsole.Write(
new Panel(new Text("Some of the requests to Steam failed, which may have resulted in some of the tokens or depot keys not being fetched.\nYou can try running the dumper again later.", new Style(Color.Red)))
.BorderColor(Color.Red)
.RoundedBorder()
);
}
}
private async Task<(HashSet<uint> Apps, HashSet<uint> Depots)> RequestPackageInfo(ProgressTask progress, ProgressTask progressApps, ProgressTask progressTokens, List<PICSRequest> subInfoRequests)
{
var apps = new HashSet<uint>();
var depots = new HashSet<uint>();
foreach (var chunk in subInfoRequests.Chunk(ItemsPerRequest))
{
AsyncJobMultiple<PICSProductInfoCallback>.ResultSet info = null;
for (var retry = 3; retry > 0; retry--)
{
try
{
var infoTask = steamApps.PICSGetProductInfo([], chunk);
infoTask.Timeout = Timeout;
info = await infoTask;
break;
}
catch (Exception e)
{
AnsiConsole.WriteLine($"Package info task failed: {e.GetType()} {e.Message}");
await AwaitReconnectIfDisconnected();
}
}
if (info == null)
{
SomeRequestFailed = true;
continue;
}
if (info.Results == null)
{
continue;
}
foreach (var result in info.Results)
{
foreach (var package in result.Packages.Values)
{
var skipAutoGrant = skippedPackages.Contains(package.ID);
foreach (var id in package.KeyValues["appids"].Children)
{
var appid = id.AsUnsignedInteger();
if (skipAutoGrant)
{
skippedApps.Add(appid);
continue;
}
if (config.SkipApps.Contains(appid))
{
skippedApps.Add(appid);
continue;
}
apps.Add(appid);
}
foreach (var id in package.KeyValues["depotids"].Children)
{
var depotid = id.AsUnsignedInteger();
depots.Add(depotid);
}
}
}
progress.Value += chunk.Length;
progressApps.MaxValue = apps.Count;
progressTokens.MaxValue = apps.Count;
Ansi.Progress(progress);
}
progress.StopTask();
foreach (var appid in config.SkipApps)
{
if (payload.Apps.Remove(appid.ToString(CultureInfo.InvariantCulture)))
{
skippedApps.Add(appid);
}
}
// Remove all apps that may have been received from other packages
foreach (var appid in skippedApps)
{
payload.Apps.Remove(appid.ToString(CultureInfo.InvariantCulture));
}
if (skippedApps.Count > 0)
{
AnsiConsole.MarkupLine($"Skipped app ids: [yellow]{string.Join(", ", skippedApps.Order())}[/]");
}
return (apps, depots);
}
private async Task Request(ProgressTask progress, ProgressTask progressTokens, ProgressTask progressDepots, HashSet<uint> ownedApps, HashSet<uint> ownedDepots)
{
var appInfoRequests = new List<PICSRequest>();
var tokensCount = 0;
var tokensDeniedCount = 0;
var tokensNonZeroCount = 0;
progressTokens.MaxValue = ownedApps.Count;
progressTokens.StartTask();
foreach (var chunk in ownedApps.Chunk(ItemsPerRequest))
{
PICSTokensCallback tokens = null;
for (var retry = 3; retry > 0; retry--)
{
try
{
var tokensTask = steamApps.PICSGetAccessTokens(chunk, []);
tokensTask.Timeout = Timeout;
tokens = await tokensTask;
break;
}
catch (Exception e)
{
AnsiConsole.WriteLine($"App token task failed: {e.GetType()} {e.Message}");
await AwaitReconnectIfDisconnected();
}
}
if (tokens == null)
{
SomeRequestFailed = true;
continue;
}
tokensCount += tokens.AppTokens.Count;
tokensDeniedCount += tokens.AppTokensDenied.Count;
tokensNonZeroCount += tokens.AppTokens.Count(x => x.Value > 0);
progress.MaxValue -= tokens.AppTokensDenied.Count;
progressTokens.Value += chunk.Length;
Ansi.Progress(progressTokens);
foreach (var (key, value) in tokens.AppTokens)
{
if (value > 0)
{
payload.Apps[key.ToString(CultureInfo.InvariantCulture)] = value.ToString(CultureInfo.InvariantCulture);
}
appInfoRequests.Add(new PICSRequest(key, value));
}
}
progressTokens.StopTask();
AnsiConsole.MarkupLine($"App tokens granted: [green]{tokensCount}[/] - Denied: [red]{tokensDeniedCount}[/] - Non-zero: [green]{tokensNonZeroCount}[/]");
if (appInfoRequests.Count > 0)
{
progress.MaxValue = appInfoRequests.Count;
progress.StartTask();
var total = (-1L + appInfoRequests.Count + ItemsPerRequest) / ItemsPerRequest;
var parallelOptions = new ParallelOptions { MaxDegreeOfParallelism = ItemsPerRequest };
var alreadySeen = new HashSet<uint>();
var depotKeysRequested = 0;
var depotKeysFailed = 0;
var allKeyRequests = new List<AsyncJob<DepotKeyCallback>>();
async Task CheckFinishedDepotKeyRequests()
{
var completedKeyRequests = allKeyRequests.Where(x => x.ToTask().IsCompleted).ToList();
foreach (var keyTask in completedKeyRequests)
{
allKeyRequests.Remove(keyTask);
try
{
var result = await keyTask;
progressDepots.Value += 1;
if (result.Result != EResult.OK)
{
depotKeysFailed++;
alreadySeen.Add(result.DepotID);
continue;
}
payload.Depots[result.DepotID.ToString(CultureInfo.InvariantCulture)] = Convert.ToHexString(result.DepotKey);
knownDepotIds.PreviouslySent.Add(result.DepotID);
}
catch
{
depotKeysFailed++;
SomeRequestFailed = true;
}
}
};
foreach (var chunk in appInfoRequests.AsEnumerable().Reverse().Chunk(ItemsPerRequest))
{
AsyncJobMultiple<PICSProductInfoCallback>.ResultSet appInfo = null;
for (var retry = 3; retry > 0; retry--)
{
try
{
var appJob = steamApps.PICSGetProductInfo(chunk, []);
appJob.Timeout = Timeout;
appInfo = await appJob;
break;
}
catch (Exception e)
{
AnsiConsole.WriteLine($"App info task failed: {e.GetType()} {e.Message}");
await AwaitReconnectIfDisconnected();
}
}
if (appInfo == null)
{
SomeRequestFailed = true;
continue;
}
if (appInfo.Results == null)
{
continue;
}
progress.Value += chunk.Length;
Ansi.Progress(progress);
var depotsToRequest = new HashSet<(uint DepotID, uint AppID)>();
/*
foreach (var app in chunk)
{
if (!knownDepotIds.Contains(app.ID) && !alreadySeen.Contains(app.ID))
{
depotsToRequest.Add((app.ID, app.ID));
}
}
*/
foreach (var result in appInfo.Results)
{
foreach (var app in result.Apps.Values)
{
foreach (var depot in app.KeyValues["depots"].Children)
{
var depotfromapp = depot["depotfromapp"].AsUnsignedInteger();
// common redistributables and steam sdk
if (depotfromapp is 1007 or 228980)
{
continue;
}
if (!uint.TryParse(depot.Name, CultureInfo.InvariantCulture, out var depotid))
{
continue;
}
var dlcappid = depot["dlcappid"].AsUnsignedInteger();
if (skippedApps.Contains(dlcappid))
{
continue;
}
if (!ownedDepots.Contains(depotid) && !ownedApps.Contains(depotid))
{
continue;
}
if (knownDepotIds.PreviouslySent.Contains(depotid) || knownDepotIds.Server.Contains(depotid))
{
continue;
}
if (alreadySeen.Contains(depotid))
{
continue;
}
// Depot key requests timeout, so do not request keys for depots that have no manifests
if (depotfromapp == 0 && depot["manifests"].Children.Count == 0 && depot["encryptedmanifests"].Children.Count == 0)
{
continue;
}
depotsToRequest.Add((depotid, app.ID));
}
}
}
if (depotsToRequest.Count > 0)
{
progressDepots.MaxValue += depotsToRequest.Count;
foreach (var (depotid, appid) in depotsToRequest)
{
var job = steamApps.GetDepotDecryptionKey(depotid, appid);
job.Timeout = Timeout;
allKeyRequests.Add(job);
await Task.Delay(500);
if (depotKeysRequested++ % 15 == 0)
{
await CheckFinishedDepotKeyRequests();
}
}
}
if (!Program.IsConnected)
{
await Program.ReconnectEvent.Task;
}
if (allKeyRequests.Count > 0)
{
await CheckFinishedDepotKeyRequests();
}
}
if (allKeyRequests.Count > 0)
{
try
{
await Task.WhenAll(allKeyRequests.Select(x => x.ToTask()));
}
catch
{
SomeRequestFailed = true;
}
await CheckFinishedDepotKeyRequests();
}
if (depotKeysRequested > 0)
{
if (depotKeysFailed > 0)
{
AnsiConsole.MarkupLine($"Depot keys requested: [green]{depotKeysRequested}[/] - Failed: [red]{depotKeysFailed}[/] [gray](failures are expected)[/]");
}
else
{
AnsiConsole.MarkupLine($"Depot keys requested: [green]{depotKeysRequested}[/]");
}
}
}
progress.StopTask();
}
private static async Task AwaitReconnectIfDisconnected()
{
if (Program.IsConnected)
{
await Task.Delay(200 + Random.Shared.Next(1001));
return;
}
AnsiConsole.MarkupLine("[red]Disconnected from Steam while requesting, will continue after logging in again.[/]");
await Program.ReconnectEvent.Task;
}
}