steamutils 1.5.25 → 1.5.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +12 -11
- package/utils.js +1264 -1248
package/utils.js
CHANGED
@@ -1,1248 +1,1264 @@
|
|
1
|
-
import moment from "moment";
|
2
|
-
import SteamTotp from "steam-totp";
|
3
|
-
import { EAuthTokenPlatformType } from "./const.js";
|
4
|
-
import fs from "fs";
|
5
|
-
import axios from "axios";
|
6
|
-
import readline from "readline";
|
7
|
-
import https from "https";
|
8
|
-
import { promisify } from "util";
|
9
|
-
import { pipeline } from "stream";
|
10
|
-
import _ from "lodash";
|
11
|
-
|
12
|
-
const isBrowser = typeof window !== "undefined";
|
13
|
-
const g_rgCurrencyData = {
|
14
|
-
USD: {
|
15
|
-
strCode: "USD",
|
16
|
-
eCurrencyCode: 1,
|
17
|
-
strSymbol: "$",
|
18
|
-
bSymbolIsPrefix: true,
|
19
|
-
bWholeUnitsOnly: false,
|
20
|
-
strDecimalSymbol: ".",
|
21
|
-
strThousandsSeparator: ",",
|
22
|
-
strSymbolAndNumberSeparator: "",
|
23
|
-
},
|
24
|
-
GBP: {
|
25
|
-
strCode: "GBP",
|
26
|
-
eCurrencyCode: 2,
|
27
|
-
strSymbol: "\u00a3",
|
28
|
-
bSymbolIsPrefix: true,
|
29
|
-
bWholeUnitsOnly: false,
|
30
|
-
strDecimalSymbol: ".",
|
31
|
-
strThousandsSeparator: ",",
|
32
|
-
strSymbolAndNumberSeparator: "",
|
33
|
-
},
|
34
|
-
EUR: {
|
35
|
-
strCode: "EUR",
|
36
|
-
eCurrencyCode: 3,
|
37
|
-
strSymbol: "\u20ac",
|
38
|
-
bSymbolIsPrefix: false,
|
39
|
-
bWholeUnitsOnly: false,
|
40
|
-
strDecimalSymbol: ",",
|
41
|
-
strThousandsSeparator: " ",
|
42
|
-
strSymbolAndNumberSeparator: "",
|
43
|
-
},
|
44
|
-
CHF: {
|
45
|
-
strCode: "CHF",
|
46
|
-
eCurrencyCode: 4,
|
47
|
-
strSymbol: "CHF",
|
48
|
-
bSymbolIsPrefix: true,
|
49
|
-
bWholeUnitsOnly: false,
|
50
|
-
strDecimalSymbol: ".",
|
51
|
-
strThousandsSeparator: " ",
|
52
|
-
strSymbolAndNumberSeparator: " ",
|
53
|
-
},
|
54
|
-
RUB: {
|
55
|
-
strCode: "RUB",
|
56
|
-
eCurrencyCode: 5,
|
57
|
-
strSymbol: "p\u0443\u0431.",
|
58
|
-
bSymbolIsPrefix: false,
|
59
|
-
bWholeUnitsOnly: true,
|
60
|
-
strDecimalSymbol: ",",
|
61
|
-
strThousandsSeparator: "",
|
62
|
-
strSymbolAndNumberSeparator: " ",
|
63
|
-
},
|
64
|
-
BRL: {
|
65
|
-
strCode: "BRL",
|
66
|
-
eCurrencyCode: 7,
|
67
|
-
strSymbol: "R$",
|
68
|
-
bSymbolIsPrefix: true,
|
69
|
-
bWholeUnitsOnly: false,
|
70
|
-
strDecimalSymbol: ",",
|
71
|
-
strThousandsSeparator: ".",
|
72
|
-
strSymbolAndNumberSeparator: " ",
|
73
|
-
},
|
74
|
-
JPY: {
|
75
|
-
strCode: "JPY",
|
76
|
-
eCurrencyCode: 8,
|
77
|
-
strSymbol: "\u00a5",
|
78
|
-
bSymbolIsPrefix: true,
|
79
|
-
bWholeUnitsOnly: true,
|
80
|
-
strDecimalSymbol: ".",
|
81
|
-
strThousandsSeparator: ",",
|
82
|
-
strSymbolAndNumberSeparator: " ",
|
83
|
-
},
|
84
|
-
NOK: {
|
85
|
-
strCode: "NOK",
|
86
|
-
eCurrencyCode: 9,
|
87
|
-
strSymbol: "kr",
|
88
|
-
bSymbolIsPrefix: false,
|
89
|
-
bWholeUnitsOnly: false,
|
90
|
-
strDecimalSymbol: ",",
|
91
|
-
strThousandsSeparator: ".",
|
92
|
-
strSymbolAndNumberSeparator: " ",
|
93
|
-
},
|
94
|
-
IDR: {
|
95
|
-
strCode: "IDR",
|
96
|
-
eCurrencyCode: 10,
|
97
|
-
strSymbol: "Rp",
|
98
|
-
bSymbolIsPrefix: true,
|
99
|
-
bWholeUnitsOnly: true,
|
100
|
-
strDecimalSymbol: ".",
|
101
|
-
strThousandsSeparator: " ",
|
102
|
-
strSymbolAndNumberSeparator: " ",
|
103
|
-
},
|
104
|
-
MYR: {
|
105
|
-
strCode: "MYR",
|
106
|
-
eCurrencyCode: 11,
|
107
|
-
strSymbol: "RM",
|
108
|
-
bSymbolIsPrefix: true,
|
109
|
-
bWholeUnitsOnly: false,
|
110
|
-
strDecimalSymbol: ".",
|
111
|
-
strThousandsSeparator: ",",
|
112
|
-
strSymbolAndNumberSeparator: "",
|
113
|
-
},
|
114
|
-
PHP: {
|
115
|
-
strCode: "PHP",
|
116
|
-
eCurrencyCode: 12,
|
117
|
-
strSymbol: "P",
|
118
|
-
bSymbolIsPrefix: true,
|
119
|
-
bWholeUnitsOnly: false,
|
120
|
-
strDecimalSymbol: ".",
|
121
|
-
strThousandsSeparator: ",",
|
122
|
-
strSymbolAndNumberSeparator: "",
|
123
|
-
},
|
124
|
-
SGD: {
|
125
|
-
strCode: "SGD",
|
126
|
-
eCurrencyCode: 13,
|
127
|
-
strSymbol: "S$",
|
128
|
-
bSymbolIsPrefix: true,
|
129
|
-
bWholeUnitsOnly: false,
|
130
|
-
strDecimalSymbol: ".",
|
131
|
-
strThousandsSeparator: ",",
|
132
|
-
strSymbolAndNumberSeparator: "",
|
133
|
-
},
|
134
|
-
THB: {
|
135
|
-
strCode: "THB",
|
136
|
-
eCurrencyCode: 14,
|
137
|
-
strSymbol: "\u0e3f",
|
138
|
-
bSymbolIsPrefix: true,
|
139
|
-
bWholeUnitsOnly: false,
|
140
|
-
strDecimalSymbol: ".",
|
141
|
-
strThousandsSeparator: ",",
|
142
|
-
strSymbolAndNumberSeparator: "",
|
143
|
-
},
|
144
|
-
VND: {
|
145
|
-
strCode: "VND",
|
146
|
-
eCurrencyCode: 15,
|
147
|
-
strSymbol: "\u20ab",
|
148
|
-
bSymbolIsPrefix: false,
|
149
|
-
bWholeUnitsOnly: true,
|
150
|
-
strDecimalSymbol: ",",
|
151
|
-
strThousandsSeparator: ".",
|
152
|
-
strSymbolAndNumberSeparator: "",
|
153
|
-
},
|
154
|
-
KRW: {
|
155
|
-
strCode: "KRW",
|
156
|
-
eCurrencyCode: 16,
|
157
|
-
strSymbol: "\u20a9",
|
158
|
-
bSymbolIsPrefix: true,
|
159
|
-
bWholeUnitsOnly: true,
|
160
|
-
strDecimalSymbol: ".",
|
161
|
-
strThousandsSeparator: ",",
|
162
|
-
strSymbolAndNumberSeparator: " ",
|
163
|
-
},
|
164
|
-
TRY: {
|
165
|
-
strCode: "TRY",
|
166
|
-
eCurrencyCode: 17,
|
167
|
-
strSymbol: "TL",
|
168
|
-
bSymbolIsPrefix: false,
|
169
|
-
bWholeUnitsOnly: false,
|
170
|
-
strDecimalSymbol: ",",
|
171
|
-
strThousandsSeparator: ".",
|
172
|
-
strSymbolAndNumberSeparator: " ",
|
173
|
-
},
|
174
|
-
UAH: {
|
175
|
-
strCode: "UAH",
|
176
|
-
eCurrencyCode: 18,
|
177
|
-
strSymbol: "\u20b4",
|
178
|
-
bSymbolIsPrefix: false,
|
179
|
-
bWholeUnitsOnly: true,
|
180
|
-
strDecimalSymbol: ",",
|
181
|
-
strThousandsSeparator: " ",
|
182
|
-
strSymbolAndNumberSeparator: "",
|
183
|
-
},
|
184
|
-
MXN: {
|
185
|
-
strCode: "MXN",
|
186
|
-
eCurrencyCode: 19,
|
187
|
-
strSymbol: "Mex$",
|
188
|
-
bSymbolIsPrefix: true,
|
189
|
-
bWholeUnitsOnly: false,
|
190
|
-
strDecimalSymbol: ".",
|
191
|
-
strThousandsSeparator: ",",
|
192
|
-
strSymbolAndNumberSeparator: " ",
|
193
|
-
},
|
194
|
-
CAD: {
|
195
|
-
strCode: "CAD",
|
196
|
-
eCurrencyCode: 20,
|
197
|
-
strSymbol: "CDN$",
|
198
|
-
bSymbolIsPrefix: true,
|
199
|
-
bWholeUnitsOnly: false,
|
200
|
-
strDecimalSymbol: ".",
|
201
|
-
strThousandsSeparator: ",",
|
202
|
-
strSymbolAndNumberSeparator: " ",
|
203
|
-
},
|
204
|
-
AUD: {
|
205
|
-
strCode: "AUD",
|
206
|
-
eCurrencyCode: 21,
|
207
|
-
strSymbol: "A$",
|
208
|
-
bSymbolIsPrefix: true,
|
209
|
-
bWholeUnitsOnly: false,
|
210
|
-
strDecimalSymbol: ".",
|
211
|
-
strThousandsSeparator: ",",
|
212
|
-
strSymbolAndNumberSeparator: " ",
|
213
|
-
},
|
214
|
-
NZD: {
|
215
|
-
strCode: "NZD",
|
216
|
-
eCurrencyCode: 22,
|
217
|
-
strSymbol: "NZ$",
|
218
|
-
bSymbolIsPrefix: true,
|
219
|
-
bWholeUnitsOnly: false,
|
220
|
-
strDecimalSymbol: ".",
|
221
|
-
strThousandsSeparator: ",",
|
222
|
-
strSymbolAndNumberSeparator: " ",
|
223
|
-
},
|
224
|
-
PLN: {
|
225
|
-
strCode: "PLN",
|
226
|
-
eCurrencyCode: 6,
|
227
|
-
strSymbol: "z\u0142",
|
228
|
-
bSymbolIsPrefix: false,
|
229
|
-
bWholeUnitsOnly: false,
|
230
|
-
strDecimalSymbol: ",",
|
231
|
-
strThousandsSeparator: " ",
|
232
|
-
strSymbolAndNumberSeparator: "",
|
233
|
-
},
|
234
|
-
CNY: {
|
235
|
-
strCode: "CNY",
|
236
|
-
eCurrencyCode: 23,
|
237
|
-
strSymbol: "\u00a5",
|
238
|
-
bSymbolIsPrefix: true,
|
239
|
-
bWholeUnitsOnly: false,
|
240
|
-
strDecimalSymbol: ".",
|
241
|
-
strThousandsSeparator: ",",
|
242
|
-
strSymbolAndNumberSeparator: " ",
|
243
|
-
},
|
244
|
-
INR: {
|
245
|
-
strCode: "INR",
|
246
|
-
eCurrencyCode: 24,
|
247
|
-
strSymbol: "\u20b9",
|
248
|
-
bSymbolIsPrefix: true,
|
249
|
-
bWholeUnitsOnly: true,
|
250
|
-
strDecimalSymbol: ".",
|
251
|
-
strThousandsSeparator: ",",
|
252
|
-
strSymbolAndNumberSeparator: " ",
|
253
|
-
},
|
254
|
-
CLP: {
|
255
|
-
strCode: "CLP",
|
256
|
-
eCurrencyCode: 25,
|
257
|
-
strSymbol: "CLP$",
|
258
|
-
bSymbolIsPrefix: true,
|
259
|
-
bWholeUnitsOnly: true,
|
260
|
-
strDecimalSymbol: ",",
|
261
|
-
strThousandsSeparator: ".",
|
262
|
-
strSymbolAndNumberSeparator: " ",
|
263
|
-
},
|
264
|
-
PEN: {
|
265
|
-
strCode: "PEN",
|
266
|
-
eCurrencyCode: 26,
|
267
|
-
strSymbol: "S/.",
|
268
|
-
bSymbolIsPrefix: true,
|
269
|
-
bWholeUnitsOnly: false,
|
270
|
-
strDecimalSymbol: ".",
|
271
|
-
strThousandsSeparator: ",",
|
272
|
-
strSymbolAndNumberSeparator: "",
|
273
|
-
},
|
274
|
-
COP: {
|
275
|
-
strCode: "COP",
|
276
|
-
eCurrencyCode: 27,
|
277
|
-
strSymbol: "COL$",
|
278
|
-
bSymbolIsPrefix: true,
|
279
|
-
bWholeUnitsOnly: true,
|
280
|
-
strDecimalSymbol: ",",
|
281
|
-
strThousandsSeparator: ".",
|
282
|
-
strSymbolAndNumberSeparator: " ",
|
283
|
-
},
|
284
|
-
ZAR: {
|
285
|
-
strCode: "ZAR",
|
286
|
-
eCurrencyCode: 28,
|
287
|
-
strSymbol: "R",
|
288
|
-
bSymbolIsPrefix: true,
|
289
|
-
bWholeUnitsOnly: false,
|
290
|
-
strDecimalSymbol: ".",
|
291
|
-
strThousandsSeparator: " ",
|
292
|
-
strSymbolAndNumberSeparator: " ",
|
293
|
-
},
|
294
|
-
HKD: {
|
295
|
-
strCode: "HKD",
|
296
|
-
eCurrencyCode: 29,
|
297
|
-
strSymbol: "HK$",
|
298
|
-
bSymbolIsPrefix: true,
|
299
|
-
bWholeUnitsOnly: false,
|
300
|
-
strDecimalSymbol: ".",
|
301
|
-
strThousandsSeparator: ",",
|
302
|
-
strSymbolAndNumberSeparator: " ",
|
303
|
-
},
|
304
|
-
TWD: {
|
305
|
-
strCode: "TWD",
|
306
|
-
eCurrencyCode: 30,
|
307
|
-
strSymbol: "NT$",
|
308
|
-
bSymbolIsPrefix: true,
|
309
|
-
bWholeUnitsOnly: true,
|
310
|
-
strDecimalSymbol: ".",
|
311
|
-
strThousandsSeparator: ",",
|
312
|
-
strSymbolAndNumberSeparator: " ",
|
313
|
-
},
|
314
|
-
SAR: {
|
315
|
-
strCode: "SAR",
|
316
|
-
eCurrencyCode: 31,
|
317
|
-
strSymbol: "SR",
|
318
|
-
bSymbolIsPrefix: false,
|
319
|
-
bWholeUnitsOnly: false,
|
320
|
-
strDecimalSymbol: ".",
|
321
|
-
strThousandsSeparator: ",",
|
322
|
-
strSymbolAndNumberSeparator: " ",
|
323
|
-
},
|
324
|
-
AED: {
|
325
|
-
strCode: "AED",
|
326
|
-
eCurrencyCode: 32,
|
327
|
-
strSymbol: "AED",
|
328
|
-
bSymbolIsPrefix: false,
|
329
|
-
bWholeUnitsOnly: false,
|
330
|
-
strDecimalSymbol: ".",
|
331
|
-
strThousandsSeparator: ",",
|
332
|
-
strSymbolAndNumberSeparator: " ",
|
333
|
-
},
|
334
|
-
SEK: {
|
335
|
-
strCode: "SEK",
|
336
|
-
eCurrencyCode: 33,
|
337
|
-
strSymbol: "kr",
|
338
|
-
bSymbolIsPrefix: false,
|
339
|
-
bWholeUnitsOnly: false,
|
340
|
-
strDecimalSymbol: ".",
|
341
|
-
strThousandsSeparator: ",",
|
342
|
-
strSymbolAndNumberSeparator: " ",
|
343
|
-
},
|
344
|
-
ARS: {
|
345
|
-
strCode: "ARS",
|
346
|
-
eCurrencyCode: 34,
|
347
|
-
strSymbol: "ARS$",
|
348
|
-
bSymbolIsPrefix: true,
|
349
|
-
bWholeUnitsOnly: false,
|
350
|
-
strDecimalSymbol: ",",
|
351
|
-
strThousandsSeparator: ".",
|
352
|
-
strSymbolAndNumberSeparator: " ",
|
353
|
-
},
|
354
|
-
ILS: {
|
355
|
-
strCode: "ILS",
|
356
|
-
eCurrencyCode: 35,
|
357
|
-
strSymbol: "\u20aa",
|
358
|
-
bSymbolIsPrefix: true,
|
359
|
-
bWholeUnitsOnly: false,
|
360
|
-
strDecimalSymbol: ".",
|
361
|
-
strThousandsSeparator: ",",
|
362
|
-
strSymbolAndNumberSeparator: "",
|
363
|
-
},
|
364
|
-
BYN: {
|
365
|
-
strCode: "BYN",
|
366
|
-
eCurrencyCode: 36,
|
367
|
-
strSymbol: "Br",
|
368
|
-
bSymbolIsPrefix: true,
|
369
|
-
bWholeUnitsOnly: false,
|
370
|
-
strDecimalSymbol: ".",
|
371
|
-
strThousandsSeparator: ",",
|
372
|
-
strSymbolAndNumberSeparator: "",
|
373
|
-
},
|
374
|
-
KZT: {
|
375
|
-
strCode: "KZT",
|
376
|
-
eCurrencyCode: 37,
|
377
|
-
strSymbol: "\u20b8",
|
378
|
-
bSymbolIsPrefix: false,
|
379
|
-
bWholeUnitsOnly: true,
|
380
|
-
strDecimalSymbol: ",",
|
381
|
-
strThousandsSeparator: " ",
|
382
|
-
strSymbolAndNumberSeparator: "",
|
383
|
-
},
|
384
|
-
KWD: {
|
385
|
-
strCode: "KWD",
|
386
|
-
eCurrencyCode: 38,
|
387
|
-
strSymbol: "KD",
|
388
|
-
bSymbolIsPrefix: false,
|
389
|
-
bWholeUnitsOnly: false,
|
390
|
-
strDecimalSymbol: ".",
|
391
|
-
strThousandsSeparator: ",",
|
392
|
-
strSymbolAndNumberSeparator: " ",
|
393
|
-
},
|
394
|
-
QAR: {
|
395
|
-
strCode: "QAR",
|
396
|
-
eCurrencyCode: 39,
|
397
|
-
strSymbol: "QR",
|
398
|
-
bSymbolIsPrefix: false,
|
399
|
-
bWholeUnitsOnly: false,
|
400
|
-
strDecimalSymbol: ".",
|
401
|
-
strThousandsSeparator: ",",
|
402
|
-
strSymbolAndNumberSeparator: " ",
|
403
|
-
},
|
404
|
-
CRC: {
|
405
|
-
strCode: "CRC",
|
406
|
-
eCurrencyCode: 40,
|
407
|
-
strSymbol: "\u20a1",
|
408
|
-
bSymbolIsPrefix: true,
|
409
|
-
bWholeUnitsOnly: true,
|
410
|
-
strDecimalSymbol: ",",
|
411
|
-
strThousandsSeparator: ".",
|
412
|
-
strSymbolAndNumberSeparator: "",
|
413
|
-
},
|
414
|
-
UYU: {
|
415
|
-
strCode: "UYU",
|
416
|
-
eCurrencyCode: 41,
|
417
|
-
strSymbol: "$U",
|
418
|
-
bSymbolIsPrefix: true,
|
419
|
-
bWholeUnitsOnly: true,
|
420
|
-
strDecimalSymbol: ",",
|
421
|
-
strThousandsSeparator: ".",
|
422
|
-
strSymbolAndNumberSeparator: "",
|
423
|
-
},
|
424
|
-
BGN: {
|
425
|
-
strCode: "BGN",
|
426
|
-
eCurrencyCode: 42,
|
427
|
-
strSymbol: "\u043b\u0432",
|
428
|
-
bSymbolIsPrefix: false,
|
429
|
-
bWholeUnitsOnly: false,
|
430
|
-
strDecimalSymbol: ".",
|
431
|
-
strThousandsSeparator: ",",
|
432
|
-
strSymbolAndNumberSeparator: " ",
|
433
|
-
},
|
434
|
-
HRK: {
|
435
|
-
strCode: "HRK",
|
436
|
-
eCurrencyCode: 43,
|
437
|
-
strSymbol: "kn",
|
438
|
-
bSymbolIsPrefix: false,
|
439
|
-
bWholeUnitsOnly: false,
|
440
|
-
strDecimalSymbol: ".",
|
441
|
-
strThousandsSeparator: ",",
|
442
|
-
strSymbolAndNumberSeparator: " ",
|
443
|
-
},
|
444
|
-
CZK: {
|
445
|
-
strCode: "CZK",
|
446
|
-
eCurrencyCode: 44,
|
447
|
-
strSymbol: "K\u010d",
|
448
|
-
bSymbolIsPrefix: false,
|
449
|
-
bWholeUnitsOnly: false,
|
450
|
-
strDecimalSymbol: ".",
|
451
|
-
strThousandsSeparator: ",",
|
452
|
-
strSymbolAndNumberSeparator: " ",
|
453
|
-
},
|
454
|
-
DKK: {
|
455
|
-
strCode: "DKK",
|
456
|
-
eCurrencyCode: 45,
|
457
|
-
strSymbol: "kr.",
|
458
|
-
bSymbolIsPrefix: false,
|
459
|
-
bWholeUnitsOnly: false,
|
460
|
-
strDecimalSymbol: ".",
|
461
|
-
strThousandsSeparator: ",",
|
462
|
-
strSymbolAndNumberSeparator: " ",
|
463
|
-
},
|
464
|
-
HUF: {
|
465
|
-
strCode: "HUF",
|
466
|
-
eCurrencyCode: 46,
|
467
|
-
strSymbol: "Ft",
|
468
|
-
bSymbolIsPrefix: false,
|
469
|
-
bWholeUnitsOnly: false,
|
470
|
-
strDecimalSymbol: ".",
|
471
|
-
strThousandsSeparator: ",",
|
472
|
-
strSymbolAndNumberSeparator: " ",
|
473
|
-
},
|
474
|
-
RON: {
|
475
|
-
strCode: "RON",
|
476
|
-
eCurrencyCode: 47,
|
477
|
-
strSymbol: "lei",
|
478
|
-
bSymbolIsPrefix: false,
|
479
|
-
bWholeUnitsOnly: false,
|
480
|
-
strDecimalSymbol: ".",
|
481
|
-
strThousandsSeparator: ",",
|
482
|
-
strSymbolAndNumberSeparator: " ",
|
483
|
-
},
|
484
|
-
RMB: {
|
485
|
-
strCode: "RMB",
|
486
|
-
eCurrencyCode: 9000,
|
487
|
-
strSymbol: "\u5200\u5e01",
|
488
|
-
bSymbolIsPrefix: false,
|
489
|
-
bWholeUnitsOnly: true,
|
490
|
-
strDecimalSymbol: ".",
|
491
|
-
strThousandsSeparator: "",
|
492
|
-
strSymbolAndNumberSeparator: " ",
|
493
|
-
},
|
494
|
-
NXP: {
|
495
|
-
strCode: "NXP",
|
496
|
-
eCurrencyCode: 9001,
|
497
|
-
strSymbol: "\uc6d0",
|
498
|
-
bSymbolIsPrefix: false,
|
499
|
-
bWholeUnitsOnly: true,
|
500
|
-
strDecimalSymbol: ".",
|
501
|
-
strThousandsSeparator: ",",
|
502
|
-
strSymbolAndNumberSeparator: "",
|
503
|
-
},
|
504
|
-
};
|
505
|
-
const g_rgWalletInfo = {
|
506
|
-
wallet_currency: 15,
|
507
|
-
wallet_country: "VN",
|
508
|
-
wallet_state: "",
|
509
|
-
wallet_fee: "1",
|
510
|
-
wallet_fee_minimum: "1",
|
511
|
-
wallet_fee_percent: "0.05",
|
512
|
-
wallet_publisher_fee_percent_default: "0.10",
|
513
|
-
wallet_fee_base: "0",
|
514
|
-
wallet_balance: "6540490",
|
515
|
-
wallet_delayed_balance: "0",
|
516
|
-
wallet_max_balance: "4500000000",
|
517
|
-
wallet_trade_max_balance: "4049999616",
|
518
|
-
success: 1,
|
519
|
-
rwgrsn: -2,
|
520
|
-
};
|
521
|
-
|
522
|
-
export const sleep = (ms) => {
|
523
|
-
return new Promise((resolve) => {
|
524
|
-
setTimeout(resolve, ms);
|
525
|
-
});
|
526
|
-
};
|
527
|
-
|
528
|
-
export const sleepRandom = async (startMs, endMs) => {
|
529
|
-
return await sleep(Math.random() * (endMs - startMs) + startMs);
|
530
|
-
};
|
531
|
-
|
532
|
-
/**
|
533
|
-
* const audioTrack = stream.getAudioTracks()[0]
|
534
|
-
* const videoStream = UserMedia.createBlankVideoTrack()
|
535
|
-
* videoStream.addTrack(audioTrack)
|
536
|
-
* stream = videoStream
|
537
|
-
* **/
|
538
|
-
export const createBlankVideoTrack = (opts = {}) => {
|
539
|
-
const { width = 1920, height = 1080 } = opts;
|
540
|
-
|
541
|
-
const canvas = Object.assign(document.createElement("canvas"), {
|
542
|
-
width,
|
543
|
-
height,
|
544
|
-
});
|
545
|
-
|
546
|
-
canvas.getContext("2d").fillRect(0, 0, width, height);
|
547
|
-
|
548
|
-
return canvas.captureStream();
|
549
|
-
};
|
550
|
-
|
551
|
-
const minDate = new Date(0),
|
552
|
-
maxDate = new Date(parseInt("ffffffff", 16) * 1000);
|
553
|
-
|
554
|
-
export function objectIdFromDate(date) {
|
555
|
-
if (date < minDate || date > maxDate) {
|
556
|
-
return `Error: date must be between ${minDate.getFullYear()} and ${maxDate.getFullYear()}`;
|
557
|
-
}
|
558
|
-
var pad = "00000000";
|
559
|
-
var hexSeconds = Math.floor(date.getTime() / 1000).toString(16);
|
560
|
-
return `${pad.substring(0, pad.length - hexSeconds.length) + hexSeconds}0000000000000000`;
|
561
|
-
}
|
562
|
-
|
563
|
-
export function dateFromObjectId(objectId) {
|
564
|
-
return new Date(parseInt(objectId.substring(0, 8), 16) * 1000);
|
565
|
-
}
|
566
|
-
|
567
|
-
export function console_log(...args) {
|
568
|
-
const params = [];
|
569
|
-
params.push(new Date().toUTCString());
|
570
|
-
const errorStack = new Error().stack;
|
571
|
-
const fnName = errorStack
|
572
|
-
.split("\n")
|
573
|
-
.map((e) => e?.trim())
|
574
|
-
.filter((e) => e.startsWith("at") && !e.startsWith("at console_log") && !e.startsWith("at processTicksAndRejections"))[0]
|
575
|
-
.substr(3);
|
576
|
-
params.push(fnName);
|
577
|
-
console.log(
|
578
|
-
params
|
579
|
-
.filter(Boolean)
|
580
|
-
.map((p) => `[${p.trim()}]`)
|
581
|
-
.join(" "),
|
582
|
-
...args,
|
583
|
-
);
|
584
|
-
}
|
585
|
-
|
586
|
-
export function removeSpaceKeys(object) {
|
587
|
-
//mutate object
|
588
|
-
if (!object || Array.isArray(object)) {
|
589
|
-
return object;
|
590
|
-
}
|
591
|
-
|
592
|
-
Object.entries(object).forEach(([key, value]) => {
|
593
|
-
const newKey = key.replaceAll(/[^a-zA-Z0-9]/gi, "_");
|
594
|
-
if (newKey !== key) {
|
595
|
-
delete object[key];
|
596
|
-
object[newKey] = value;
|
597
|
-
}
|
598
|
-
});
|
599
|
-
return object;
|
600
|
-
}
|
601
|
-
|
602
|
-
export function getCleanObject(object) {
|
603
|
-
//like removeSpaceKeys but not mutate object
|
604
|
-
if (!object || Array.isArray(object)) {
|
605
|
-
return object;
|
606
|
-
}
|
607
|
-
|
608
|
-
const newObject = {};
|
609
|
-
Object.entries(object).forEach(([key, value]) => {
|
610
|
-
const newKey = key.replaceAll(/[^a-zA-Z0-9]/gi, "_");
|
611
|
-
newObject[newKey] = value;
|
612
|
-
});
|
613
|
-
return newObject;
|
614
|
-
}
|
615
|
-
|
616
|
-
export function JSON_parse(data) {
|
617
|
-
try {
|
618
|
-
return JSON.parse(data);
|
619
|
-
} catch (e) {
|
620
|
-
return null;
|
621
|
-
}
|
622
|
-
}
|
623
|
-
|
624
|
-
export function JSON_stringify(data) {
|
625
|
-
try {
|
626
|
-
return JSON.stringify(data);
|
627
|
-
} catch (e) {
|
628
|
-
return null;
|
629
|
-
}
|
630
|
-
}
|
631
|
-
|
632
|
-
export async function throttle(fn, delay) {
|
633
|
-
let canFire = true;
|
634
|
-
let queue = [];
|
635
|
-
|
636
|
-
async function pop() {
|
637
|
-
if (queue.length < 1) return;
|
638
|
-
|
639
|
-
const [that, args] = queue.pop();
|
640
|
-
await fn.apply(that, args);
|
641
|
-
canFire = false;
|
642
|
-
setTimeout(async () => {
|
643
|
-
canFire = true;
|
644
|
-
await pop();
|
645
|
-
}, delay);
|
646
|
-
}
|
647
|
-
|
648
|
-
async function push() {
|
649
|
-
queue.push([this, arguments]);
|
650
|
-
if (canFire) {
|
651
|
-
await pop();
|
652
|
-
}
|
653
|
-
}
|
654
|
-
|
655
|
-
push.cancel = () => {
|
656
|
-
queue = [];
|
657
|
-
};
|
658
|
-
|
659
|
-
return push;
|
660
|
-
}
|
661
|
-
|
662
|
-
export const secretAsBuffer = (sharedSecret) => {
|
663
|
-
if (Buffer.isBuffer(sharedSecret)) {
|
664
|
-
return sharedSecret;
|
665
|
-
}
|
666
|
-
|
667
|
-
if (sharedSecret.match(/^[0-9a-f]{40}$/i)) {
|
668
|
-
// Looks like it's hex
|
669
|
-
return Buffer.from(sharedSecret, "hex");
|
670
|
-
}
|
671
|
-
|
672
|
-
// It must be base64
|
673
|
-
return Buffer.from(sharedSecret, "base64");
|
674
|
-
};
|
675
|
-
|
676
|
-
export function decodeLoginQrUrl(qrUrl) {
|
677
|
-
if (!qrUrl || typeof qrUrl !== "string") {
|
678
|
-
return null;
|
679
|
-
}
|
680
|
-
const match = qrUrl.match(/^https?:\/\/s\.team\/q\/(\d+)\/(\d+)(\?|$)/);
|
681
|
-
if (!match) {
|
682
|
-
console.log("Invalid QR code URL");
|
683
|
-
return null;
|
684
|
-
}
|
685
|
-
|
686
|
-
return { clientId: match[2], version: parseInt(match[1], 10) };
|
687
|
-
}
|
688
|
-
|
689
|
-
export function decodeJwt(jwt) {
|
690
|
-
try {
|
691
|
-
const parts = jwt.split(".");
|
692
|
-
if (parts.length !== 3) {
|
693
|
-
console.err("decodeJwt Error", new Error("Invalid JWT"));
|
694
|
-
return;
|
695
|
-
}
|
696
|
-
|
697
|
-
const standardBase64 = parts[1].replace(/-/g, "+").replace(/_/g, "/");
|
698
|
-
return JSON.parse(Buffer.from(standardBase64, "base64").toString("utf8"));
|
699
|
-
} catch (e) {
|
700
|
-
console.error("decodeJwt Error", e);
|
701
|
-
}
|
702
|
-
}
|
703
|
-
|
704
|
-
export async function renewRefreshToken({ refreshToken, accessToken }) {
|
705
|
-
const steamId = arguments[0]?.steamId;
|
706
|
-
try {
|
707
|
-
const { aud } = decodeJwt(accessToken);
|
708
|
-
let platformType = EAuthTokenPlatformType.SteamClient;
|
709
|
-
if (aud.includes("mobile")) {
|
710
|
-
platformType = EAuthTokenPlatformType.MobileApp;
|
711
|
-
} else if (aud.includes("client")) {
|
712
|
-
platformType = EAuthTokenPlatformType.SteamClient;
|
713
|
-
} else if (aud.includes("web")) {
|
714
|
-
platformType = EAuthTokenPlatformType.WebBrowser;
|
715
|
-
}
|
716
|
-
|
717
|
-
const { LoginSession } = await import("steam-session");
|
718
|
-
const session = new LoginSession(platformType);
|
719
|
-
session.refreshToken = refreshToken;
|
720
|
-
await session.refreshAccessToken();
|
721
|
-
const cookie = (await session.getWebCookies())?.join?.(";");
|
722
|
-
return {
|
723
|
-
cookie,
|
724
|
-
accessToken: session.accessToken,
|
725
|
-
accessTokenDecoded: decodeJwt(session.accessToken),
|
726
|
-
};
|
727
|
-
} catch (e) {
|
728
|
-
console.error(`${steamId ? `[${steamId}] ` : ""}renewRefreshToken Error`, e);
|
729
|
-
}
|
730
|
-
}
|
731
|
-
|
732
|
-
export async function approveLogin({ steamId, url, sharedSecret, accessToken, shouldApprove }) {
|
733
|
-
try {
|
734
|
-
const { LoginApprover } = await import("steam-session");
|
735
|
-
const approver = new LoginApprover(accessToken, sharedSecret, {});
|
736
|
-
const sessionInfo = await approver.getAuthSessionInfo(url);
|
737
|
-
sessionInfo.steamId = steamId;
|
738
|
-
|
739
|
-
if (typeof shouldApprove === "function" && !shouldApprove(sessionInfo)) {
|
740
|
-
return;
|
741
|
-
}
|
742
|
-
|
743
|
-
await approver.approveAuthSession({
|
744
|
-
qrChallengeUrl: url,
|
745
|
-
approve: true,
|
746
|
-
});
|
747
|
-
|
748
|
-
return {
|
749
|
-
steamId,
|
750
|
-
sessionInfo,
|
751
|
-
};
|
752
|
-
} catch (error) {
|
753
|
-
console.error(`[${steamId}] approveLogin Error`, error);
|
754
|
-
return {
|
755
|
-
steamId,
|
756
|
-
error,
|
757
|
-
};
|
758
|
-
}
|
759
|
-
}
|
760
|
-
|
761
|
-
export function getBonusXpTimeRefresh() {
|
762
|
-
let resetDay = moment.utc().startOf("isoWeek").add(2, "days").add(1, "hours");
|
763
|
-
while (moment().isAfter(resetDay)) {
|
764
|
-
resetDay = resetDay.add(7, "days");
|
765
|
-
}
|
766
|
-
if (moment().isBefore(resetDay)) {
|
767
|
-
resetDay = resetDay.subtract(7, "days");
|
768
|
-
}
|
769
|
-
return resetDay;
|
770
|
-
}
|
771
|
-
|
772
|
-
export function estimateNextXp(currentXp, xpEarned) {
|
773
|
-
//estimate next xp
|
774
|
-
let bonusTime = 1;
|
775
|
-
if (xpEarned < 4500) {
|
776
|
-
bonusTime = 4;
|
777
|
-
} else if (xpEarned < 7500) {
|
778
|
-
bonusTime = 2;
|
779
|
-
} else if (xpEarned < 11200) {
|
780
|
-
bonusTime = 1;
|
781
|
-
} else {
|
782
|
-
bonusTime = 0.175;
|
783
|
-
}
|
784
|
-
|
785
|
-
const nextXp = 30 * 13 * bonusTime;
|
786
|
-
return nextXp + currentXp;
|
787
|
-
}
|
788
|
-
|
789
|
-
export function formatMarketCurrency(valueInCents, currencyCode = getMarketCurrencyCode(g_rgWalletInfo.wallet_currency), countryCode) {
|
790
|
-
if (!valueInCents && valueInCents !== 0) {
|
791
|
-
return "";
|
792
|
-
}
|
793
|
-
|
794
|
-
let currencyFormat = (valueInCents / 100).toFixed(2);
|
795
|
-
|
796
|
-
if (g_rgCurrencyData[currencyCode]) {
|
797
|
-
const currencyData = g_rgCurrencyData[currencyCode];
|
798
|
-
if (isCurrencyWholeUnits(currencyCode)) {
|
799
|
-
currencyFormat = currencyFormat.replace(".00", "");
|
800
|
-
}
|
801
|
-
|
802
|
-
if (currencyData.strDecimalSymbol !== ".") {
|
803
|
-
currencyFormat = currencyFormat.replace(".", currencyData.strDecimalSymbol);
|
804
|
-
}
|
805
|
-
|
806
|
-
const currencySymbol = getMarketCurrencySymbol(currencyCode);
|
807
|
-
const currencyReturn = isCurrencySymbolBeforeValue(currencyCode) ? currencySymbol + currencyData.strSymbolAndNumberSeparator + currencyFormat : currencyFormat + currencyData.strSymbolAndNumberSeparator + currencySymbol;
|
808
|
-
|
809
|
-
if (currencyCode === "USD" && typeof countryCode != "undefined" && countryCode != "US") {
|
810
|
-
return `${currencyReturn} USD`;
|
811
|
-
} else if (currencyCode === "EUR") {
|
812
|
-
return currencyReturn.replace(",00", ",--");
|
813
|
-
} else {
|
814
|
-
return currencyReturn;
|
815
|
-
}
|
816
|
-
} else {
|
817
|
-
return `${currencyFormat} ${currencyCode}`;
|
818
|
-
}
|
819
|
-
}
|
820
|
-
|
821
|
-
export function getMarketPriceValueAsInt(strAmount) {
|
822
|
-
let nAmount;
|
823
|
-
if (!strAmount) {
|
824
|
-
return 0;
|
825
|
-
}
|
826
|
-
|
827
|
-
// Users may enter either comma or period for the decimal mark and digit group separators.
|
828
|
-
strAmount = strAmount.replace(/,/g, ".");
|
829
|
-
|
830
|
-
// strip the currency symbol, set .-- to .00
|
831
|
-
strAmount = strAmount.replace(getMarketCurrencySymbol(getMarketCurrencyCode(g_rgWalletInfo.wallet_currency)), "").replace(".--", ".00");
|
832
|
-
|
833
|
-
// strip spaces
|
834
|
-
strAmount = strAmount.replace(/ /g, "");
|
835
|
-
|
836
|
-
// Remove all but the last period so that entries like "1,147.6" work
|
837
|
-
if (strAmount.includes(".")) {
|
838
|
-
var splitAmount = strAmount.split(".");
|
839
|
-
var strLastSegment = splitAmount[splitAmount.length - 1];
|
840
|
-
|
841
|
-
if (!isNaN(strLastSegment) && strLastSegment.length == 3 && splitAmount[splitAmount.length - 2] != "0") {
|
842
|
-
// Looks like the user only entered thousands separators. Remove all commas and periods.
|
843
|
-
// Ensures an entry like "1,147" is not treated as "1.147"
|
844
|
-
//
|
845
|
-
// Users may be surprised to find that "1.147" is treated as "1,147". "1.147" is either an error or the user
|
846
|
-
// really did mean one thousand one hundred and forty seven since no currencies can be split into more than
|
847
|
-
// hundredths. If it was an error, the user should notice in the next step of the dialog and can go back and
|
848
|
-
// correct it. If they happen to not notice, it is better that we list the item at a higher price than
|
849
|
-
// intended instead of lower than intended (which we would have done if we accepted the 1.147 value as is).
|
850
|
-
strAmount = splitAmount.join("");
|
851
|
-
} else {
|
852
|
-
strAmount = `${splitAmount.slice(0, -1).join("")}.${strLastSegment}`;
|
853
|
-
}
|
854
|
-
}
|
855
|
-
|
856
|
-
let flAmount = parseFloat(strAmount) * 100;
|
857
|
-
nAmount = Math.floor(isNaN(flAmount) ? 0 : flAmount + 0.000001); // round down
|
858
|
-
|
859
|
-
nAmount = Math.max(nAmount, 0);
|
860
|
-
return nAmount;
|
861
|
-
}
|
862
|
-
|
863
|
-
export function isCurrencyWholeUnits(currencyCode) {
|
864
|
-
return g_rgCurrencyData[currencyCode] && g_rgCurrencyData[currencyCode].bWholeUnitsOnly && currencyCode !== "RUB";
|
865
|
-
}
|
866
|
-
|
867
|
-
export function isCurrencySymbolBeforeValue(currencyCode) {
|
868
|
-
return g_rgCurrencyData[currencyCode] && g_rgCurrencyData[currencyCode].bSymbolIsPrefix;
|
869
|
-
}
|
870
|
-
|
871
|
-
// Return the symbol to use for a currency
|
872
|
-
export function getMarketCurrencySymbol(currencyCode) {
|
873
|
-
return g_rgCurrencyData[currencyCode]?.strSymbol ?? currencyCode;
|
874
|
-
}
|
875
|
-
|
876
|
-
export function getMarketCurrencyCode(currencyId) {
|
877
|
-
currencyId = parseInt(currencyId);
|
878
|
-
for (const code in g_rgCurrencyData) {
|
879
|
-
if (g_rgCurrencyData[code].eCurrencyCode === currencyId) {
|
880
|
-
return code;
|
881
|
-
}
|
882
|
-
}
|
883
|
-
return "Unknown";
|
884
|
-
}
|
885
|
-
|
886
|
-
export async function loginWithCredentials({ username, password, timeoutMs = 120000, sharedSecret, getMailSteamGuardCodes }) {
|
887
|
-
if (!username) {
|
888
|
-
return {
|
889
|
-
error: "No username",
|
890
|
-
};
|
891
|
-
}
|
892
|
-
|
893
|
-
if (!password) {
|
894
|
-
return {
|
895
|
-
error: "No password",
|
896
|
-
};
|
897
|
-
}
|
898
|
-
|
899
|
-
const { LoginSession } = await import("steam-session");
|
900
|
-
let authenticated = false;
|
901
|
-
return new Promise((resolve) => {
|
902
|
-
const timeout = setTimeout(function () {
|
903
|
-
resolve({
|
904
|
-
error: "Timed out",
|
905
|
-
});
|
906
|
-
}, timeoutMs);
|
907
|
-
|
908
|
-
const session = new LoginSession(EAuthTokenPlatformType.MobileApp);
|
909
|
-
session.on("authenticated", async () => {
|
910
|
-
authenticated = true;
|
911
|
-
const cookie = (await session.getWebCookies())?.join?.(";");
|
912
|
-
return onResolve({
|
913
|
-
cookie,
|
914
|
-
accessToken: session.accessToken,
|
915
|
-
refreshToken: session.refreshToken,
|
916
|
-
accessTokenDecoded: decodeJwt(session.accessToken),
|
917
|
-
});
|
918
|
-
});
|
919
|
-
|
920
|
-
session
|
921
|
-
.startWithCredentials({
|
922
|
-
accountName: username,
|
923
|
-
password: password,
|
924
|
-
steamGuardMachineToken: "",
|
925
|
-
})
|
926
|
-
.then(async function (startResult) {
|
927
|
-
if (!startResult.actionRequired) {
|
928
|
-
return;
|
929
|
-
}
|
930
|
-
|
931
|
-
if (sharedSecret) {
|
932
|
-
let error = null;
|
933
|
-
const maxRetry = 3;
|
934
|
-
for (let i = 0; i < maxRetry; i++) {
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
error =
|
971
|
-
}
|
972
|
-
|
973
|
-
|
974
|
-
|
975
|
-
|
976
|
-
|
977
|
-
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
|
994
|
-
}
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
(() => {
|
999
|
-
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1015
|
-
if (
|
1016
|
-
|
1017
|
-
}
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
1025
|
-
|
1026
|
-
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
1032
|
-
|
1033
|
-
|
1034
|
-
|
1035
|
-
|
1036
|
-
|
1037
|
-
|
1038
|
-
|
1039
|
-
|
1040
|
-
|
1041
|
-
|
1042
|
-
|
1043
|
-
|
1044
|
-
|
1045
|
-
|
1046
|
-
|
1047
|
-
|
1048
|
-
|
1049
|
-
|
1050
|
-
|
1051
|
-
|
1052
|
-
|
1053
|
-
|
1054
|
-
|
1055
|
-
}
|
1056
|
-
|
1057
|
-
|
1058
|
-
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
|
1063
|
-
|
1064
|
-
|
1065
|
-
|
1066
|
-
|
1067
|
-
|
1068
|
-
|
1069
|
-
});
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
|
1092
|
-
|
1093
|
-
|
1094
|
-
|
1095
|
-
|
1096
|
-
|
1097
|
-
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
1102
|
-
|
1103
|
-
|
1104
|
-
|
1105
|
-
|
1106
|
-
|
1107
|
-
|
1108
|
-
|
1109
|
-
|
1110
|
-
|
1111
|
-
|
1112
|
-
|
1113
|
-
|
1114
|
-
|
1115
|
-
|
1116
|
-
|
1117
|
-
|
1118
|
-
|
1119
|
-
|
1120
|
-
|
1121
|
-
|
1122
|
-
|
1123
|
-
|
1124
|
-
|
1125
|
-
|
1126
|
-
|
1127
|
-
|
1128
|
-
|
1129
|
-
|
1130
|
-
|
1131
|
-
|
1132
|
-
|
1133
|
-
|
1134
|
-
|
1135
|
-
|
1136
|
-
|
1137
|
-
}
|
1138
|
-
|
1139
|
-
|
1140
|
-
|
1141
|
-
}
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1147
|
-
const
|
1148
|
-
|
1149
|
-
|
1150
|
-
|
1151
|
-
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1156
|
-
|
1157
|
-
|
1158
|
-
|
1159
|
-
|
1160
|
-
|
1161
|
-
|
1162
|
-
|
1163
|
-
|
1164
|
-
const
|
1165
|
-
|
1166
|
-
|
1167
|
-
|
1168
|
-
|
1169
|
-
|
1170
|
-
|
1171
|
-
|
1172
|
-
|
1173
|
-
|
1174
|
-
|
1175
|
-
|
1176
|
-
|
1177
|
-
|
1178
|
-
|
1179
|
-
|
1180
|
-
|
1181
|
-
|
1182
|
-
|
1183
|
-
|
1184
|
-
|
1185
|
-
|
1186
|
-
|
1187
|
-
|
1188
|
-
|
1189
|
-
|
1190
|
-
|
1191
|
-
|
1192
|
-
|
1193
|
-
|
1194
|
-
|
1195
|
-
|
1196
|
-
|
1197
|
-
|
1198
|
-
|
1199
|
-
|
1200
|
-
|
1201
|
-
|
1202
|
-
|
1203
|
-
|
1204
|
-
|
1205
|
-
|
1206
|
-
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1210
|
-
|
1211
|
-
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1215
|
-
|
1216
|
-
|
1217
|
-
|
1218
|
-
|
1219
|
-
}
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1224
|
-
|
1225
|
-
|
1226
|
-
|
1227
|
-
|
1228
|
-
|
1229
|
-
|
1230
|
-
|
1231
|
-
|
1232
|
-
|
1233
|
-
|
1234
|
-
}
|
1235
|
-
|
1236
|
-
|
1237
|
-
|
1238
|
-
if (
|
1239
|
-
return
|
1240
|
-
}
|
1241
|
-
|
1242
|
-
const
|
1243
|
-
|
1244
|
-
|
1245
|
-
|
1246
|
-
|
1247
|
-
|
1248
|
-
}
|
1
|
+
import moment from "moment";
|
2
|
+
import SteamTotp from "steam-totp";
|
3
|
+
import { EAuthTokenPlatformType } from "./const.js";
|
4
|
+
import fs from "fs";
|
5
|
+
import axios from "axios";
|
6
|
+
import readline from "readline";
|
7
|
+
import https from "https";
|
8
|
+
import { promisify } from "util";
|
9
|
+
import { pipeline } from "stream";
|
10
|
+
import _ from "lodash";
|
11
|
+
|
12
|
+
const isBrowser = typeof window !== "undefined";
|
13
|
+
const g_rgCurrencyData = {
|
14
|
+
USD: {
|
15
|
+
strCode: "USD",
|
16
|
+
eCurrencyCode: 1,
|
17
|
+
strSymbol: "$",
|
18
|
+
bSymbolIsPrefix: true,
|
19
|
+
bWholeUnitsOnly: false,
|
20
|
+
strDecimalSymbol: ".",
|
21
|
+
strThousandsSeparator: ",",
|
22
|
+
strSymbolAndNumberSeparator: "",
|
23
|
+
},
|
24
|
+
GBP: {
|
25
|
+
strCode: "GBP",
|
26
|
+
eCurrencyCode: 2,
|
27
|
+
strSymbol: "\u00a3",
|
28
|
+
bSymbolIsPrefix: true,
|
29
|
+
bWholeUnitsOnly: false,
|
30
|
+
strDecimalSymbol: ".",
|
31
|
+
strThousandsSeparator: ",",
|
32
|
+
strSymbolAndNumberSeparator: "",
|
33
|
+
},
|
34
|
+
EUR: {
|
35
|
+
strCode: "EUR",
|
36
|
+
eCurrencyCode: 3,
|
37
|
+
strSymbol: "\u20ac",
|
38
|
+
bSymbolIsPrefix: false,
|
39
|
+
bWholeUnitsOnly: false,
|
40
|
+
strDecimalSymbol: ",",
|
41
|
+
strThousandsSeparator: " ",
|
42
|
+
strSymbolAndNumberSeparator: "",
|
43
|
+
},
|
44
|
+
CHF: {
|
45
|
+
strCode: "CHF",
|
46
|
+
eCurrencyCode: 4,
|
47
|
+
strSymbol: "CHF",
|
48
|
+
bSymbolIsPrefix: true,
|
49
|
+
bWholeUnitsOnly: false,
|
50
|
+
strDecimalSymbol: ".",
|
51
|
+
strThousandsSeparator: " ",
|
52
|
+
strSymbolAndNumberSeparator: " ",
|
53
|
+
},
|
54
|
+
RUB: {
|
55
|
+
strCode: "RUB",
|
56
|
+
eCurrencyCode: 5,
|
57
|
+
strSymbol: "p\u0443\u0431.",
|
58
|
+
bSymbolIsPrefix: false,
|
59
|
+
bWholeUnitsOnly: true,
|
60
|
+
strDecimalSymbol: ",",
|
61
|
+
strThousandsSeparator: "",
|
62
|
+
strSymbolAndNumberSeparator: " ",
|
63
|
+
},
|
64
|
+
BRL: {
|
65
|
+
strCode: "BRL",
|
66
|
+
eCurrencyCode: 7,
|
67
|
+
strSymbol: "R$",
|
68
|
+
bSymbolIsPrefix: true,
|
69
|
+
bWholeUnitsOnly: false,
|
70
|
+
strDecimalSymbol: ",",
|
71
|
+
strThousandsSeparator: ".",
|
72
|
+
strSymbolAndNumberSeparator: " ",
|
73
|
+
},
|
74
|
+
JPY: {
|
75
|
+
strCode: "JPY",
|
76
|
+
eCurrencyCode: 8,
|
77
|
+
strSymbol: "\u00a5",
|
78
|
+
bSymbolIsPrefix: true,
|
79
|
+
bWholeUnitsOnly: true,
|
80
|
+
strDecimalSymbol: ".",
|
81
|
+
strThousandsSeparator: ",",
|
82
|
+
strSymbolAndNumberSeparator: " ",
|
83
|
+
},
|
84
|
+
NOK: {
|
85
|
+
strCode: "NOK",
|
86
|
+
eCurrencyCode: 9,
|
87
|
+
strSymbol: "kr",
|
88
|
+
bSymbolIsPrefix: false,
|
89
|
+
bWholeUnitsOnly: false,
|
90
|
+
strDecimalSymbol: ",",
|
91
|
+
strThousandsSeparator: ".",
|
92
|
+
strSymbolAndNumberSeparator: " ",
|
93
|
+
},
|
94
|
+
IDR: {
|
95
|
+
strCode: "IDR",
|
96
|
+
eCurrencyCode: 10,
|
97
|
+
strSymbol: "Rp",
|
98
|
+
bSymbolIsPrefix: true,
|
99
|
+
bWholeUnitsOnly: true,
|
100
|
+
strDecimalSymbol: ".",
|
101
|
+
strThousandsSeparator: " ",
|
102
|
+
strSymbolAndNumberSeparator: " ",
|
103
|
+
},
|
104
|
+
MYR: {
|
105
|
+
strCode: "MYR",
|
106
|
+
eCurrencyCode: 11,
|
107
|
+
strSymbol: "RM",
|
108
|
+
bSymbolIsPrefix: true,
|
109
|
+
bWholeUnitsOnly: false,
|
110
|
+
strDecimalSymbol: ".",
|
111
|
+
strThousandsSeparator: ",",
|
112
|
+
strSymbolAndNumberSeparator: "",
|
113
|
+
},
|
114
|
+
PHP: {
|
115
|
+
strCode: "PHP",
|
116
|
+
eCurrencyCode: 12,
|
117
|
+
strSymbol: "P",
|
118
|
+
bSymbolIsPrefix: true,
|
119
|
+
bWholeUnitsOnly: false,
|
120
|
+
strDecimalSymbol: ".",
|
121
|
+
strThousandsSeparator: ",",
|
122
|
+
strSymbolAndNumberSeparator: "",
|
123
|
+
},
|
124
|
+
SGD: {
|
125
|
+
strCode: "SGD",
|
126
|
+
eCurrencyCode: 13,
|
127
|
+
strSymbol: "S$",
|
128
|
+
bSymbolIsPrefix: true,
|
129
|
+
bWholeUnitsOnly: false,
|
130
|
+
strDecimalSymbol: ".",
|
131
|
+
strThousandsSeparator: ",",
|
132
|
+
strSymbolAndNumberSeparator: "",
|
133
|
+
},
|
134
|
+
THB: {
|
135
|
+
strCode: "THB",
|
136
|
+
eCurrencyCode: 14,
|
137
|
+
strSymbol: "\u0e3f",
|
138
|
+
bSymbolIsPrefix: true,
|
139
|
+
bWholeUnitsOnly: false,
|
140
|
+
strDecimalSymbol: ".",
|
141
|
+
strThousandsSeparator: ",",
|
142
|
+
strSymbolAndNumberSeparator: "",
|
143
|
+
},
|
144
|
+
VND: {
|
145
|
+
strCode: "VND",
|
146
|
+
eCurrencyCode: 15,
|
147
|
+
strSymbol: "\u20ab",
|
148
|
+
bSymbolIsPrefix: false,
|
149
|
+
bWholeUnitsOnly: true,
|
150
|
+
strDecimalSymbol: ",",
|
151
|
+
strThousandsSeparator: ".",
|
152
|
+
strSymbolAndNumberSeparator: "",
|
153
|
+
},
|
154
|
+
KRW: {
|
155
|
+
strCode: "KRW",
|
156
|
+
eCurrencyCode: 16,
|
157
|
+
strSymbol: "\u20a9",
|
158
|
+
bSymbolIsPrefix: true,
|
159
|
+
bWholeUnitsOnly: true,
|
160
|
+
strDecimalSymbol: ".",
|
161
|
+
strThousandsSeparator: ",",
|
162
|
+
strSymbolAndNumberSeparator: " ",
|
163
|
+
},
|
164
|
+
TRY: {
|
165
|
+
strCode: "TRY",
|
166
|
+
eCurrencyCode: 17,
|
167
|
+
strSymbol: "TL",
|
168
|
+
bSymbolIsPrefix: false,
|
169
|
+
bWholeUnitsOnly: false,
|
170
|
+
strDecimalSymbol: ",",
|
171
|
+
strThousandsSeparator: ".",
|
172
|
+
strSymbolAndNumberSeparator: " ",
|
173
|
+
},
|
174
|
+
UAH: {
|
175
|
+
strCode: "UAH",
|
176
|
+
eCurrencyCode: 18,
|
177
|
+
strSymbol: "\u20b4",
|
178
|
+
bSymbolIsPrefix: false,
|
179
|
+
bWholeUnitsOnly: true,
|
180
|
+
strDecimalSymbol: ",",
|
181
|
+
strThousandsSeparator: " ",
|
182
|
+
strSymbolAndNumberSeparator: "",
|
183
|
+
},
|
184
|
+
MXN: {
|
185
|
+
strCode: "MXN",
|
186
|
+
eCurrencyCode: 19,
|
187
|
+
strSymbol: "Mex$",
|
188
|
+
bSymbolIsPrefix: true,
|
189
|
+
bWholeUnitsOnly: false,
|
190
|
+
strDecimalSymbol: ".",
|
191
|
+
strThousandsSeparator: ",",
|
192
|
+
strSymbolAndNumberSeparator: " ",
|
193
|
+
},
|
194
|
+
CAD: {
|
195
|
+
strCode: "CAD",
|
196
|
+
eCurrencyCode: 20,
|
197
|
+
strSymbol: "CDN$",
|
198
|
+
bSymbolIsPrefix: true,
|
199
|
+
bWholeUnitsOnly: false,
|
200
|
+
strDecimalSymbol: ".",
|
201
|
+
strThousandsSeparator: ",",
|
202
|
+
strSymbolAndNumberSeparator: " ",
|
203
|
+
},
|
204
|
+
AUD: {
|
205
|
+
strCode: "AUD",
|
206
|
+
eCurrencyCode: 21,
|
207
|
+
strSymbol: "A$",
|
208
|
+
bSymbolIsPrefix: true,
|
209
|
+
bWholeUnitsOnly: false,
|
210
|
+
strDecimalSymbol: ".",
|
211
|
+
strThousandsSeparator: ",",
|
212
|
+
strSymbolAndNumberSeparator: " ",
|
213
|
+
},
|
214
|
+
NZD: {
|
215
|
+
strCode: "NZD",
|
216
|
+
eCurrencyCode: 22,
|
217
|
+
strSymbol: "NZ$",
|
218
|
+
bSymbolIsPrefix: true,
|
219
|
+
bWholeUnitsOnly: false,
|
220
|
+
strDecimalSymbol: ".",
|
221
|
+
strThousandsSeparator: ",",
|
222
|
+
strSymbolAndNumberSeparator: " ",
|
223
|
+
},
|
224
|
+
PLN: {
|
225
|
+
strCode: "PLN",
|
226
|
+
eCurrencyCode: 6,
|
227
|
+
strSymbol: "z\u0142",
|
228
|
+
bSymbolIsPrefix: false,
|
229
|
+
bWholeUnitsOnly: false,
|
230
|
+
strDecimalSymbol: ",",
|
231
|
+
strThousandsSeparator: " ",
|
232
|
+
strSymbolAndNumberSeparator: "",
|
233
|
+
},
|
234
|
+
CNY: {
|
235
|
+
strCode: "CNY",
|
236
|
+
eCurrencyCode: 23,
|
237
|
+
strSymbol: "\u00a5",
|
238
|
+
bSymbolIsPrefix: true,
|
239
|
+
bWholeUnitsOnly: false,
|
240
|
+
strDecimalSymbol: ".",
|
241
|
+
strThousandsSeparator: ",",
|
242
|
+
strSymbolAndNumberSeparator: " ",
|
243
|
+
},
|
244
|
+
INR: {
|
245
|
+
strCode: "INR",
|
246
|
+
eCurrencyCode: 24,
|
247
|
+
strSymbol: "\u20b9",
|
248
|
+
bSymbolIsPrefix: true,
|
249
|
+
bWholeUnitsOnly: true,
|
250
|
+
strDecimalSymbol: ".",
|
251
|
+
strThousandsSeparator: ",",
|
252
|
+
strSymbolAndNumberSeparator: " ",
|
253
|
+
},
|
254
|
+
CLP: {
|
255
|
+
strCode: "CLP",
|
256
|
+
eCurrencyCode: 25,
|
257
|
+
strSymbol: "CLP$",
|
258
|
+
bSymbolIsPrefix: true,
|
259
|
+
bWholeUnitsOnly: true,
|
260
|
+
strDecimalSymbol: ",",
|
261
|
+
strThousandsSeparator: ".",
|
262
|
+
strSymbolAndNumberSeparator: " ",
|
263
|
+
},
|
264
|
+
PEN: {
|
265
|
+
strCode: "PEN",
|
266
|
+
eCurrencyCode: 26,
|
267
|
+
strSymbol: "S/.",
|
268
|
+
bSymbolIsPrefix: true,
|
269
|
+
bWholeUnitsOnly: false,
|
270
|
+
strDecimalSymbol: ".",
|
271
|
+
strThousandsSeparator: ",",
|
272
|
+
strSymbolAndNumberSeparator: "",
|
273
|
+
},
|
274
|
+
COP: {
|
275
|
+
strCode: "COP",
|
276
|
+
eCurrencyCode: 27,
|
277
|
+
strSymbol: "COL$",
|
278
|
+
bSymbolIsPrefix: true,
|
279
|
+
bWholeUnitsOnly: true,
|
280
|
+
strDecimalSymbol: ",",
|
281
|
+
strThousandsSeparator: ".",
|
282
|
+
strSymbolAndNumberSeparator: " ",
|
283
|
+
},
|
284
|
+
ZAR: {
|
285
|
+
strCode: "ZAR",
|
286
|
+
eCurrencyCode: 28,
|
287
|
+
strSymbol: "R",
|
288
|
+
bSymbolIsPrefix: true,
|
289
|
+
bWholeUnitsOnly: false,
|
290
|
+
strDecimalSymbol: ".",
|
291
|
+
strThousandsSeparator: " ",
|
292
|
+
strSymbolAndNumberSeparator: " ",
|
293
|
+
},
|
294
|
+
HKD: {
|
295
|
+
strCode: "HKD",
|
296
|
+
eCurrencyCode: 29,
|
297
|
+
strSymbol: "HK$",
|
298
|
+
bSymbolIsPrefix: true,
|
299
|
+
bWholeUnitsOnly: false,
|
300
|
+
strDecimalSymbol: ".",
|
301
|
+
strThousandsSeparator: ",",
|
302
|
+
strSymbolAndNumberSeparator: " ",
|
303
|
+
},
|
304
|
+
TWD: {
|
305
|
+
strCode: "TWD",
|
306
|
+
eCurrencyCode: 30,
|
307
|
+
strSymbol: "NT$",
|
308
|
+
bSymbolIsPrefix: true,
|
309
|
+
bWholeUnitsOnly: true,
|
310
|
+
strDecimalSymbol: ".",
|
311
|
+
strThousandsSeparator: ",",
|
312
|
+
strSymbolAndNumberSeparator: " ",
|
313
|
+
},
|
314
|
+
SAR: {
|
315
|
+
strCode: "SAR",
|
316
|
+
eCurrencyCode: 31,
|
317
|
+
strSymbol: "SR",
|
318
|
+
bSymbolIsPrefix: false,
|
319
|
+
bWholeUnitsOnly: false,
|
320
|
+
strDecimalSymbol: ".",
|
321
|
+
strThousandsSeparator: ",",
|
322
|
+
strSymbolAndNumberSeparator: " ",
|
323
|
+
},
|
324
|
+
AED: {
|
325
|
+
strCode: "AED",
|
326
|
+
eCurrencyCode: 32,
|
327
|
+
strSymbol: "AED",
|
328
|
+
bSymbolIsPrefix: false,
|
329
|
+
bWholeUnitsOnly: false,
|
330
|
+
strDecimalSymbol: ".",
|
331
|
+
strThousandsSeparator: ",",
|
332
|
+
strSymbolAndNumberSeparator: " ",
|
333
|
+
},
|
334
|
+
SEK: {
|
335
|
+
strCode: "SEK",
|
336
|
+
eCurrencyCode: 33,
|
337
|
+
strSymbol: "kr",
|
338
|
+
bSymbolIsPrefix: false,
|
339
|
+
bWholeUnitsOnly: false,
|
340
|
+
strDecimalSymbol: ".",
|
341
|
+
strThousandsSeparator: ",",
|
342
|
+
strSymbolAndNumberSeparator: " ",
|
343
|
+
},
|
344
|
+
ARS: {
|
345
|
+
strCode: "ARS",
|
346
|
+
eCurrencyCode: 34,
|
347
|
+
strSymbol: "ARS$",
|
348
|
+
bSymbolIsPrefix: true,
|
349
|
+
bWholeUnitsOnly: false,
|
350
|
+
strDecimalSymbol: ",",
|
351
|
+
strThousandsSeparator: ".",
|
352
|
+
strSymbolAndNumberSeparator: " ",
|
353
|
+
},
|
354
|
+
ILS: {
|
355
|
+
strCode: "ILS",
|
356
|
+
eCurrencyCode: 35,
|
357
|
+
strSymbol: "\u20aa",
|
358
|
+
bSymbolIsPrefix: true,
|
359
|
+
bWholeUnitsOnly: false,
|
360
|
+
strDecimalSymbol: ".",
|
361
|
+
strThousandsSeparator: ",",
|
362
|
+
strSymbolAndNumberSeparator: "",
|
363
|
+
},
|
364
|
+
BYN: {
|
365
|
+
strCode: "BYN",
|
366
|
+
eCurrencyCode: 36,
|
367
|
+
strSymbol: "Br",
|
368
|
+
bSymbolIsPrefix: true,
|
369
|
+
bWholeUnitsOnly: false,
|
370
|
+
strDecimalSymbol: ".",
|
371
|
+
strThousandsSeparator: ",",
|
372
|
+
strSymbolAndNumberSeparator: "",
|
373
|
+
},
|
374
|
+
KZT: {
|
375
|
+
strCode: "KZT",
|
376
|
+
eCurrencyCode: 37,
|
377
|
+
strSymbol: "\u20b8",
|
378
|
+
bSymbolIsPrefix: false,
|
379
|
+
bWholeUnitsOnly: true,
|
380
|
+
strDecimalSymbol: ",",
|
381
|
+
strThousandsSeparator: " ",
|
382
|
+
strSymbolAndNumberSeparator: "",
|
383
|
+
},
|
384
|
+
KWD: {
|
385
|
+
strCode: "KWD",
|
386
|
+
eCurrencyCode: 38,
|
387
|
+
strSymbol: "KD",
|
388
|
+
bSymbolIsPrefix: false,
|
389
|
+
bWholeUnitsOnly: false,
|
390
|
+
strDecimalSymbol: ".",
|
391
|
+
strThousandsSeparator: ",",
|
392
|
+
strSymbolAndNumberSeparator: " ",
|
393
|
+
},
|
394
|
+
QAR: {
|
395
|
+
strCode: "QAR",
|
396
|
+
eCurrencyCode: 39,
|
397
|
+
strSymbol: "QR",
|
398
|
+
bSymbolIsPrefix: false,
|
399
|
+
bWholeUnitsOnly: false,
|
400
|
+
strDecimalSymbol: ".",
|
401
|
+
strThousandsSeparator: ",",
|
402
|
+
strSymbolAndNumberSeparator: " ",
|
403
|
+
},
|
404
|
+
CRC: {
|
405
|
+
strCode: "CRC",
|
406
|
+
eCurrencyCode: 40,
|
407
|
+
strSymbol: "\u20a1",
|
408
|
+
bSymbolIsPrefix: true,
|
409
|
+
bWholeUnitsOnly: true,
|
410
|
+
strDecimalSymbol: ",",
|
411
|
+
strThousandsSeparator: ".",
|
412
|
+
strSymbolAndNumberSeparator: "",
|
413
|
+
},
|
414
|
+
UYU: {
|
415
|
+
strCode: "UYU",
|
416
|
+
eCurrencyCode: 41,
|
417
|
+
strSymbol: "$U",
|
418
|
+
bSymbolIsPrefix: true,
|
419
|
+
bWholeUnitsOnly: true,
|
420
|
+
strDecimalSymbol: ",",
|
421
|
+
strThousandsSeparator: ".",
|
422
|
+
strSymbolAndNumberSeparator: "",
|
423
|
+
},
|
424
|
+
BGN: {
|
425
|
+
strCode: "BGN",
|
426
|
+
eCurrencyCode: 42,
|
427
|
+
strSymbol: "\u043b\u0432",
|
428
|
+
bSymbolIsPrefix: false,
|
429
|
+
bWholeUnitsOnly: false,
|
430
|
+
strDecimalSymbol: ".",
|
431
|
+
strThousandsSeparator: ",",
|
432
|
+
strSymbolAndNumberSeparator: " ",
|
433
|
+
},
|
434
|
+
HRK: {
|
435
|
+
strCode: "HRK",
|
436
|
+
eCurrencyCode: 43,
|
437
|
+
strSymbol: "kn",
|
438
|
+
bSymbolIsPrefix: false,
|
439
|
+
bWholeUnitsOnly: false,
|
440
|
+
strDecimalSymbol: ".",
|
441
|
+
strThousandsSeparator: ",",
|
442
|
+
strSymbolAndNumberSeparator: " ",
|
443
|
+
},
|
444
|
+
CZK: {
|
445
|
+
strCode: "CZK",
|
446
|
+
eCurrencyCode: 44,
|
447
|
+
strSymbol: "K\u010d",
|
448
|
+
bSymbolIsPrefix: false,
|
449
|
+
bWholeUnitsOnly: false,
|
450
|
+
strDecimalSymbol: ".",
|
451
|
+
strThousandsSeparator: ",",
|
452
|
+
strSymbolAndNumberSeparator: " ",
|
453
|
+
},
|
454
|
+
DKK: {
|
455
|
+
strCode: "DKK",
|
456
|
+
eCurrencyCode: 45,
|
457
|
+
strSymbol: "kr.",
|
458
|
+
bSymbolIsPrefix: false,
|
459
|
+
bWholeUnitsOnly: false,
|
460
|
+
strDecimalSymbol: ".",
|
461
|
+
strThousandsSeparator: ",",
|
462
|
+
strSymbolAndNumberSeparator: " ",
|
463
|
+
},
|
464
|
+
HUF: {
|
465
|
+
strCode: "HUF",
|
466
|
+
eCurrencyCode: 46,
|
467
|
+
strSymbol: "Ft",
|
468
|
+
bSymbolIsPrefix: false,
|
469
|
+
bWholeUnitsOnly: false,
|
470
|
+
strDecimalSymbol: ".",
|
471
|
+
strThousandsSeparator: ",",
|
472
|
+
strSymbolAndNumberSeparator: " ",
|
473
|
+
},
|
474
|
+
RON: {
|
475
|
+
strCode: "RON",
|
476
|
+
eCurrencyCode: 47,
|
477
|
+
strSymbol: "lei",
|
478
|
+
bSymbolIsPrefix: false,
|
479
|
+
bWholeUnitsOnly: false,
|
480
|
+
strDecimalSymbol: ".",
|
481
|
+
strThousandsSeparator: ",",
|
482
|
+
strSymbolAndNumberSeparator: " ",
|
483
|
+
},
|
484
|
+
RMB: {
|
485
|
+
strCode: "RMB",
|
486
|
+
eCurrencyCode: 9000,
|
487
|
+
strSymbol: "\u5200\u5e01",
|
488
|
+
bSymbolIsPrefix: false,
|
489
|
+
bWholeUnitsOnly: true,
|
490
|
+
strDecimalSymbol: ".",
|
491
|
+
strThousandsSeparator: "",
|
492
|
+
strSymbolAndNumberSeparator: " ",
|
493
|
+
},
|
494
|
+
NXP: {
|
495
|
+
strCode: "NXP",
|
496
|
+
eCurrencyCode: 9001,
|
497
|
+
strSymbol: "\uc6d0",
|
498
|
+
bSymbolIsPrefix: false,
|
499
|
+
bWholeUnitsOnly: true,
|
500
|
+
strDecimalSymbol: ".",
|
501
|
+
strThousandsSeparator: ",",
|
502
|
+
strSymbolAndNumberSeparator: "",
|
503
|
+
},
|
504
|
+
};
|
505
|
+
const g_rgWalletInfo = {
|
506
|
+
wallet_currency: 15,
|
507
|
+
wallet_country: "VN",
|
508
|
+
wallet_state: "",
|
509
|
+
wallet_fee: "1",
|
510
|
+
wallet_fee_minimum: "1",
|
511
|
+
wallet_fee_percent: "0.05",
|
512
|
+
wallet_publisher_fee_percent_default: "0.10",
|
513
|
+
wallet_fee_base: "0",
|
514
|
+
wallet_balance: "6540490",
|
515
|
+
wallet_delayed_balance: "0",
|
516
|
+
wallet_max_balance: "4500000000",
|
517
|
+
wallet_trade_max_balance: "4049999616",
|
518
|
+
success: 1,
|
519
|
+
rwgrsn: -2,
|
520
|
+
};
|
521
|
+
|
522
|
+
export const sleep = (ms) => {
|
523
|
+
return new Promise((resolve) => {
|
524
|
+
setTimeout(resolve, ms);
|
525
|
+
});
|
526
|
+
};
|
527
|
+
|
528
|
+
export const sleepRandom = async (startMs, endMs) => {
|
529
|
+
return await sleep(Math.random() * (endMs - startMs) + startMs);
|
530
|
+
};
|
531
|
+
|
532
|
+
/**
|
533
|
+
* const audioTrack = stream.getAudioTracks()[0]
|
534
|
+
* const videoStream = UserMedia.createBlankVideoTrack()
|
535
|
+
* videoStream.addTrack(audioTrack)
|
536
|
+
* stream = videoStream
|
537
|
+
* **/
|
538
|
+
export const createBlankVideoTrack = (opts = {}) => {
|
539
|
+
const { width = 1920, height = 1080 } = opts;
|
540
|
+
|
541
|
+
const canvas = Object.assign(document.createElement("canvas"), {
|
542
|
+
width,
|
543
|
+
height,
|
544
|
+
});
|
545
|
+
|
546
|
+
canvas.getContext("2d").fillRect(0, 0, width, height);
|
547
|
+
|
548
|
+
return canvas.captureStream();
|
549
|
+
};
|
550
|
+
|
551
|
+
const minDate = new Date(0),
|
552
|
+
maxDate = new Date(parseInt("ffffffff", 16) * 1000);
|
553
|
+
|
554
|
+
export function objectIdFromDate(date) {
|
555
|
+
if (date < minDate || date > maxDate) {
|
556
|
+
return `Error: date must be between ${minDate.getFullYear()} and ${maxDate.getFullYear()}`;
|
557
|
+
}
|
558
|
+
var pad = "00000000";
|
559
|
+
var hexSeconds = Math.floor(date.getTime() / 1000).toString(16);
|
560
|
+
return `${pad.substring(0, pad.length - hexSeconds.length) + hexSeconds}0000000000000000`;
|
561
|
+
}
|
562
|
+
|
563
|
+
export function dateFromObjectId(objectId) {
|
564
|
+
return new Date(parseInt(objectId.substring(0, 8), 16) * 1000);
|
565
|
+
}
|
566
|
+
|
567
|
+
export function console_log(...args) {
|
568
|
+
const params = [];
|
569
|
+
params.push(new Date().toUTCString());
|
570
|
+
const errorStack = new Error().stack;
|
571
|
+
const fnName = errorStack
|
572
|
+
.split("\n")
|
573
|
+
.map((e) => e?.trim())
|
574
|
+
.filter((e) => e.startsWith("at") && !e.startsWith("at console_log") && !e.startsWith("at processTicksAndRejections"))[0]
|
575
|
+
.substr(3);
|
576
|
+
params.push(fnName);
|
577
|
+
console.log(
|
578
|
+
params
|
579
|
+
.filter(Boolean)
|
580
|
+
.map((p) => `[${p.trim()}]`)
|
581
|
+
.join(" "),
|
582
|
+
...args,
|
583
|
+
);
|
584
|
+
}
|
585
|
+
|
586
|
+
export function removeSpaceKeys(object) {
|
587
|
+
//mutate object
|
588
|
+
if (!object || Array.isArray(object)) {
|
589
|
+
return object;
|
590
|
+
}
|
591
|
+
|
592
|
+
Object.entries(object).forEach(([key, value]) => {
|
593
|
+
const newKey = key.replaceAll(/[^a-zA-Z0-9]/gi, "_");
|
594
|
+
if (newKey !== key) {
|
595
|
+
delete object[key];
|
596
|
+
object[newKey] = value;
|
597
|
+
}
|
598
|
+
});
|
599
|
+
return object;
|
600
|
+
}
|
601
|
+
|
602
|
+
export function getCleanObject(object) {
|
603
|
+
//like removeSpaceKeys but not mutate object
|
604
|
+
if (!object || Array.isArray(object)) {
|
605
|
+
return object;
|
606
|
+
}
|
607
|
+
|
608
|
+
const newObject = {};
|
609
|
+
Object.entries(object).forEach(([key, value]) => {
|
610
|
+
const newKey = key.replaceAll(/[^a-zA-Z0-9]/gi, "_");
|
611
|
+
newObject[newKey] = value;
|
612
|
+
});
|
613
|
+
return newObject;
|
614
|
+
}
|
615
|
+
|
616
|
+
export function JSON_parse(data) {
|
617
|
+
try {
|
618
|
+
return JSON.parse(data);
|
619
|
+
} catch (e) {
|
620
|
+
return null;
|
621
|
+
}
|
622
|
+
}
|
623
|
+
|
624
|
+
export function JSON_stringify(data) {
|
625
|
+
try {
|
626
|
+
return JSON.stringify(data);
|
627
|
+
} catch (e) {
|
628
|
+
return null;
|
629
|
+
}
|
630
|
+
}
|
631
|
+
|
632
|
+
export async function throttle(fn, delay) {
|
633
|
+
let canFire = true;
|
634
|
+
let queue = [];
|
635
|
+
|
636
|
+
async function pop() {
|
637
|
+
if (queue.length < 1) return;
|
638
|
+
|
639
|
+
const [that, args] = queue.pop();
|
640
|
+
await fn.apply(that, args);
|
641
|
+
canFire = false;
|
642
|
+
setTimeout(async () => {
|
643
|
+
canFire = true;
|
644
|
+
await pop();
|
645
|
+
}, delay);
|
646
|
+
}
|
647
|
+
|
648
|
+
async function push() {
|
649
|
+
queue.push([this, arguments]);
|
650
|
+
if (canFire) {
|
651
|
+
await pop();
|
652
|
+
}
|
653
|
+
}
|
654
|
+
|
655
|
+
push.cancel = () => {
|
656
|
+
queue = [];
|
657
|
+
};
|
658
|
+
|
659
|
+
return push;
|
660
|
+
}
|
661
|
+
|
662
|
+
export const secretAsBuffer = (sharedSecret) => {
|
663
|
+
if (Buffer.isBuffer(sharedSecret)) {
|
664
|
+
return sharedSecret;
|
665
|
+
}
|
666
|
+
|
667
|
+
if (sharedSecret.match(/^[0-9a-f]{40}$/i)) {
|
668
|
+
// Looks like it's hex
|
669
|
+
return Buffer.from(sharedSecret, "hex");
|
670
|
+
}
|
671
|
+
|
672
|
+
// It must be base64
|
673
|
+
return Buffer.from(sharedSecret, "base64");
|
674
|
+
};
|
675
|
+
|
676
|
+
export function decodeLoginQrUrl(qrUrl) {
|
677
|
+
if (!qrUrl || typeof qrUrl !== "string") {
|
678
|
+
return null;
|
679
|
+
}
|
680
|
+
const match = qrUrl.match(/^https?:\/\/s\.team\/q\/(\d+)\/(\d+)(\?|$)/);
|
681
|
+
if (!match) {
|
682
|
+
console.log("Invalid QR code URL");
|
683
|
+
return null;
|
684
|
+
}
|
685
|
+
|
686
|
+
return { clientId: match[2], version: parseInt(match[1], 10) };
|
687
|
+
}
|
688
|
+
|
689
|
+
export function decodeJwt(jwt) {
|
690
|
+
try {
|
691
|
+
const parts = jwt.split(".");
|
692
|
+
if (parts.length !== 3) {
|
693
|
+
console.err("decodeJwt Error", new Error("Invalid JWT"));
|
694
|
+
return;
|
695
|
+
}
|
696
|
+
|
697
|
+
const standardBase64 = parts[1].replace(/-/g, "+").replace(/_/g, "/");
|
698
|
+
return JSON.parse(Buffer.from(standardBase64, "base64").toString("utf8"));
|
699
|
+
} catch (e) {
|
700
|
+
console.error("decodeJwt Error", e);
|
701
|
+
}
|
702
|
+
}
|
703
|
+
|
704
|
+
export async function renewRefreshToken({ refreshToken, accessToken }) {
|
705
|
+
const steamId = arguments[0]?.steamId;
|
706
|
+
try {
|
707
|
+
const { aud } = decodeJwt(accessToken);
|
708
|
+
let platformType = EAuthTokenPlatformType.SteamClient;
|
709
|
+
if (aud.includes("mobile")) {
|
710
|
+
platformType = EAuthTokenPlatformType.MobileApp;
|
711
|
+
} else if (aud.includes("client")) {
|
712
|
+
platformType = EAuthTokenPlatformType.SteamClient;
|
713
|
+
} else if (aud.includes("web")) {
|
714
|
+
platformType = EAuthTokenPlatformType.WebBrowser;
|
715
|
+
}
|
716
|
+
|
717
|
+
const { LoginSession } = await import("steam-session");
|
718
|
+
const session = new LoginSession(platformType);
|
719
|
+
session.refreshToken = refreshToken;
|
720
|
+
await session.refreshAccessToken();
|
721
|
+
const cookie = (await session.getWebCookies())?.join?.(";");
|
722
|
+
return {
|
723
|
+
cookie,
|
724
|
+
accessToken: session.accessToken,
|
725
|
+
accessTokenDecoded: decodeJwt(session.accessToken),
|
726
|
+
};
|
727
|
+
} catch (e) {
|
728
|
+
console.error(`${steamId ? `[${steamId}] ` : ""}renewRefreshToken Error`, e);
|
729
|
+
}
|
730
|
+
}
|
731
|
+
|
732
|
+
export async function approveLogin({ steamId, url, sharedSecret, accessToken, shouldApprove }) {
|
733
|
+
try {
|
734
|
+
const { LoginApprover } = await import("steam-session");
|
735
|
+
const approver = new LoginApprover(accessToken, sharedSecret, {});
|
736
|
+
const sessionInfo = await approver.getAuthSessionInfo(url);
|
737
|
+
sessionInfo.steamId = steamId;
|
738
|
+
|
739
|
+
if (typeof shouldApprove === "function" && !shouldApprove(sessionInfo)) {
|
740
|
+
return;
|
741
|
+
}
|
742
|
+
|
743
|
+
await approver.approveAuthSession({
|
744
|
+
qrChallengeUrl: url,
|
745
|
+
approve: true,
|
746
|
+
});
|
747
|
+
|
748
|
+
return {
|
749
|
+
steamId,
|
750
|
+
sessionInfo,
|
751
|
+
};
|
752
|
+
} catch (error) {
|
753
|
+
console.error(`[${steamId}] approveLogin Error`, error);
|
754
|
+
return {
|
755
|
+
steamId,
|
756
|
+
error,
|
757
|
+
};
|
758
|
+
}
|
759
|
+
}
|
760
|
+
|
761
|
+
export function getBonusXpTimeRefresh() {
|
762
|
+
let resetDay = moment.utc().startOf("isoWeek").add(2, "days").add(1, "hours");
|
763
|
+
while (moment().isAfter(resetDay)) {
|
764
|
+
resetDay = resetDay.add(7, "days");
|
765
|
+
}
|
766
|
+
if (moment().isBefore(resetDay)) {
|
767
|
+
resetDay = resetDay.subtract(7, "days");
|
768
|
+
}
|
769
|
+
return resetDay;
|
770
|
+
}
|
771
|
+
|
772
|
+
export function estimateNextXp(currentXp, xpEarned) {
|
773
|
+
//estimate next xp
|
774
|
+
let bonusTime = 1;
|
775
|
+
if (xpEarned < 4500) {
|
776
|
+
bonusTime = 4;
|
777
|
+
} else if (xpEarned < 7500) {
|
778
|
+
bonusTime = 2;
|
779
|
+
} else if (xpEarned < 11200) {
|
780
|
+
bonusTime = 1;
|
781
|
+
} else {
|
782
|
+
bonusTime = 0.175;
|
783
|
+
}
|
784
|
+
|
785
|
+
const nextXp = 30 * 13 * bonusTime;
|
786
|
+
return nextXp + currentXp;
|
787
|
+
}
|
788
|
+
|
789
|
+
export function formatMarketCurrency(valueInCents, currencyCode = getMarketCurrencyCode(g_rgWalletInfo.wallet_currency), countryCode) {
|
790
|
+
if (!valueInCents && valueInCents !== 0) {
|
791
|
+
return "";
|
792
|
+
}
|
793
|
+
|
794
|
+
let currencyFormat = (valueInCents / 100).toFixed(2);
|
795
|
+
|
796
|
+
if (g_rgCurrencyData[currencyCode]) {
|
797
|
+
const currencyData = g_rgCurrencyData[currencyCode];
|
798
|
+
if (isCurrencyWholeUnits(currencyCode)) {
|
799
|
+
currencyFormat = currencyFormat.replace(".00", "");
|
800
|
+
}
|
801
|
+
|
802
|
+
if (currencyData.strDecimalSymbol !== ".") {
|
803
|
+
currencyFormat = currencyFormat.replace(".", currencyData.strDecimalSymbol);
|
804
|
+
}
|
805
|
+
|
806
|
+
const currencySymbol = getMarketCurrencySymbol(currencyCode);
|
807
|
+
const currencyReturn = isCurrencySymbolBeforeValue(currencyCode) ? currencySymbol + currencyData.strSymbolAndNumberSeparator + currencyFormat : currencyFormat + currencyData.strSymbolAndNumberSeparator + currencySymbol;
|
808
|
+
|
809
|
+
if (currencyCode === "USD" && typeof countryCode != "undefined" && countryCode != "US") {
|
810
|
+
return `${currencyReturn} USD`;
|
811
|
+
} else if (currencyCode === "EUR") {
|
812
|
+
return currencyReturn.replace(",00", ",--");
|
813
|
+
} else {
|
814
|
+
return currencyReturn;
|
815
|
+
}
|
816
|
+
} else {
|
817
|
+
return `${currencyFormat} ${currencyCode}`;
|
818
|
+
}
|
819
|
+
}
|
820
|
+
|
821
|
+
export function getMarketPriceValueAsInt(strAmount) {
|
822
|
+
let nAmount;
|
823
|
+
if (!strAmount) {
|
824
|
+
return 0;
|
825
|
+
}
|
826
|
+
|
827
|
+
// Users may enter either comma or period for the decimal mark and digit group separators.
|
828
|
+
strAmount = strAmount.replace(/,/g, ".");
|
829
|
+
|
830
|
+
// strip the currency symbol, set .-- to .00
|
831
|
+
strAmount = strAmount.replace(getMarketCurrencySymbol(getMarketCurrencyCode(g_rgWalletInfo.wallet_currency)), "").replace(".--", ".00");
|
832
|
+
|
833
|
+
// strip spaces
|
834
|
+
strAmount = strAmount.replace(/ /g, "");
|
835
|
+
|
836
|
+
// Remove all but the last period so that entries like "1,147.6" work
|
837
|
+
if (strAmount.includes(".")) {
|
838
|
+
var splitAmount = strAmount.split(".");
|
839
|
+
var strLastSegment = splitAmount[splitAmount.length - 1];
|
840
|
+
|
841
|
+
if (!isNaN(strLastSegment) && strLastSegment.length == 3 && splitAmount[splitAmount.length - 2] != "0") {
|
842
|
+
// Looks like the user only entered thousands separators. Remove all commas and periods.
|
843
|
+
// Ensures an entry like "1,147" is not treated as "1.147"
|
844
|
+
//
|
845
|
+
// Users may be surprised to find that "1.147" is treated as "1,147". "1.147" is either an error or the user
|
846
|
+
// really did mean one thousand one hundred and forty seven since no currencies can be split into more than
|
847
|
+
// hundredths. If it was an error, the user should notice in the next step of the dialog and can go back and
|
848
|
+
// correct it. If they happen to not notice, it is better that we list the item at a higher price than
|
849
|
+
// intended instead of lower than intended (which we would have done if we accepted the 1.147 value as is).
|
850
|
+
strAmount = splitAmount.join("");
|
851
|
+
} else {
|
852
|
+
strAmount = `${splitAmount.slice(0, -1).join("")}.${strLastSegment}`;
|
853
|
+
}
|
854
|
+
}
|
855
|
+
|
856
|
+
let flAmount = parseFloat(strAmount) * 100;
|
857
|
+
nAmount = Math.floor(isNaN(flAmount) ? 0 : flAmount + 0.000001); // round down
|
858
|
+
|
859
|
+
nAmount = Math.max(nAmount, 0);
|
860
|
+
return nAmount;
|
861
|
+
}
|
862
|
+
|
863
|
+
export function isCurrencyWholeUnits(currencyCode) {
|
864
|
+
return g_rgCurrencyData[currencyCode] && g_rgCurrencyData[currencyCode].bWholeUnitsOnly && currencyCode !== "RUB";
|
865
|
+
}
|
866
|
+
|
867
|
+
export function isCurrencySymbolBeforeValue(currencyCode) {
|
868
|
+
return g_rgCurrencyData[currencyCode] && g_rgCurrencyData[currencyCode].bSymbolIsPrefix;
|
869
|
+
}
|
870
|
+
|
871
|
+
// Return the symbol to use for a currency
|
872
|
+
export function getMarketCurrencySymbol(currencyCode) {
|
873
|
+
return g_rgCurrencyData[currencyCode]?.strSymbol ?? currencyCode;
|
874
|
+
}
|
875
|
+
|
876
|
+
export function getMarketCurrencyCode(currencyId) {
|
877
|
+
currencyId = parseInt(currencyId);
|
878
|
+
for (const code in g_rgCurrencyData) {
|
879
|
+
if (g_rgCurrencyData[code].eCurrencyCode === currencyId) {
|
880
|
+
return code;
|
881
|
+
}
|
882
|
+
}
|
883
|
+
return "Unknown";
|
884
|
+
}
|
885
|
+
|
886
|
+
export async function loginWithCredentials({ username, password, timeoutMs = 120000, sharedSecret, getMailSteamGuardCodes }) {
|
887
|
+
if (!username) {
|
888
|
+
return {
|
889
|
+
error: "No username",
|
890
|
+
};
|
891
|
+
}
|
892
|
+
|
893
|
+
if (!password) {
|
894
|
+
return {
|
895
|
+
error: "No password",
|
896
|
+
};
|
897
|
+
}
|
898
|
+
|
899
|
+
const { LoginSession } = await import("steam-session");
|
900
|
+
let authenticated = false;
|
901
|
+
return new Promise((resolve) => {
|
902
|
+
const timeout = setTimeout(function () {
|
903
|
+
resolve({
|
904
|
+
error: "Timed out",
|
905
|
+
});
|
906
|
+
}, timeoutMs);
|
907
|
+
|
908
|
+
const session = new LoginSession(EAuthTokenPlatformType.MobileApp);
|
909
|
+
session.on("authenticated", async () => {
|
910
|
+
authenticated = true;
|
911
|
+
const cookie = (await session.getWebCookies())?.join?.(";");
|
912
|
+
return onResolve({
|
913
|
+
cookie,
|
914
|
+
accessToken: session.accessToken,
|
915
|
+
refreshToken: session.refreshToken,
|
916
|
+
accessTokenDecoded: decodeJwt(session.accessToken),
|
917
|
+
});
|
918
|
+
});
|
919
|
+
|
920
|
+
session
|
921
|
+
.startWithCredentials({
|
922
|
+
accountName: username,
|
923
|
+
password: password,
|
924
|
+
steamGuardMachineToken: "",
|
925
|
+
})
|
926
|
+
.then(async function (startResult) {
|
927
|
+
if (!startResult.actionRequired) {
|
928
|
+
return;
|
929
|
+
}
|
930
|
+
|
931
|
+
if (sharedSecret) {
|
932
|
+
let error = null;
|
933
|
+
const maxRetry = 3;
|
934
|
+
for (let i = 0; i < maxRetry; i++) {
|
935
|
+
if (!authenticated) {
|
936
|
+
try {
|
937
|
+
await session.submitSteamGuardCode(SteamTotp.generateAuthCode(sharedSecret));
|
938
|
+
error = null;
|
939
|
+
} catch (e) {
|
940
|
+
error = e;
|
941
|
+
}
|
942
|
+
await sleep(1000);
|
943
|
+
}
|
944
|
+
}
|
945
|
+
if (error) {
|
946
|
+
console.error(error);
|
947
|
+
onResolve({ error });
|
948
|
+
}
|
949
|
+
} else {
|
950
|
+
if (startResult.validActions.every((validAction) => validAction.type !== 2)) {
|
951
|
+
console.error(startResult.validActions);
|
952
|
+
return onResolve({
|
953
|
+
error: "validActions",
|
954
|
+
});
|
955
|
+
}
|
956
|
+
|
957
|
+
if (typeof getMailSteamGuardCodes === "function") {
|
958
|
+
const codes = await getMailSteamGuardCodes();
|
959
|
+
if (!Array.isArray(codes) || !codes.length) {
|
960
|
+
return onResolve({
|
961
|
+
error: "Can't find steam guard code",
|
962
|
+
});
|
963
|
+
}
|
964
|
+
|
965
|
+
let error = null;
|
966
|
+
for (const code of codes) {
|
967
|
+
if (!authenticated) {
|
968
|
+
try {
|
969
|
+
await session.submitSteamGuardCode(code);
|
970
|
+
error = null;
|
971
|
+
} catch (e) {
|
972
|
+
error = e;
|
973
|
+
}
|
974
|
+
await sleep(1000);
|
975
|
+
}
|
976
|
+
}
|
977
|
+
if (!authenticated && error) {
|
978
|
+
onResolve(error);
|
979
|
+
}
|
980
|
+
} else {
|
981
|
+
return onResolve({
|
982
|
+
error: "MailCodeError",
|
983
|
+
});
|
984
|
+
}
|
985
|
+
}
|
986
|
+
})
|
987
|
+
.catch(function (e) {
|
988
|
+
return onResolve(e);
|
989
|
+
});
|
990
|
+
|
991
|
+
session.on("error", (err) => {
|
992
|
+
console.error(`An error occurred: ${err.message}`);
|
993
|
+
return onResolve({
|
994
|
+
error: `An error occurred: ${err.message}`,
|
995
|
+
});
|
996
|
+
});
|
997
|
+
|
998
|
+
session.on("timeout", () => {
|
999
|
+
console.log("This login attempt has timed out.");
|
1000
|
+
return onResolve({
|
1001
|
+
error: "This login attempt has timed out.",
|
1002
|
+
});
|
1003
|
+
});
|
1004
|
+
|
1005
|
+
function onResolve(data) {
|
1006
|
+
clearTimeout(timeout);
|
1007
|
+
return resolve(data);
|
1008
|
+
}
|
1009
|
+
});
|
1010
|
+
}
|
1011
|
+
|
1012
|
+
export function calculateAccountXP(currentXp, xpEarnedThisWeek, xpEarned, nextXp) {
|
1013
|
+
return (
|
1014
|
+
(() => {
|
1015
|
+
if (typeof nextXp !== "number" || !Number.isFinite(nextXp)) {
|
1016
|
+
return;
|
1017
|
+
}
|
1018
|
+
|
1019
|
+
currentXp = currentXp || 0;
|
1020
|
+
if (currentXp === nextXp) {
|
1021
|
+
return;
|
1022
|
+
}
|
1023
|
+
|
1024
|
+
const update = { currentXp: nextXp };
|
1025
|
+
if (nextXp < currentXp) {
|
1026
|
+
update.xpExceed = Date.now();
|
1027
|
+
}
|
1028
|
+
const resetDay = getBonusXpTimeRefresh().format("YYYY-MM-DD");
|
1029
|
+
const isWeekReset = xpEarnedThisWeek !== resetDay;
|
1030
|
+
let xpEarnedThisRank = nextXp - currentXp;
|
1031
|
+
if (xpEarnedThisRank < 0) {
|
1032
|
+
xpEarnedThisRank += 5000;
|
1033
|
+
}
|
1034
|
+
if (isWeekReset) {
|
1035
|
+
update.xpEarnedThisWeek = resetDay;
|
1036
|
+
update.xpEarned = xpEarnedThisRank;
|
1037
|
+
} else {
|
1038
|
+
update.xpEarned = (xpEarned || 0) + xpEarnedThisRank;
|
1039
|
+
if (xpEarnedThisRank === 0) {
|
1040
|
+
return;
|
1041
|
+
}
|
1042
|
+
}
|
1043
|
+
|
1044
|
+
return update;
|
1045
|
+
})() || {}
|
1046
|
+
);
|
1047
|
+
}
|
1048
|
+
|
1049
|
+
export async function downloadImage(url, filePath) {
|
1050
|
+
let response = null;
|
1051
|
+
try {
|
1052
|
+
response = await axios.get(url, {
|
1053
|
+
responseType: "arraybuffer",
|
1054
|
+
});
|
1055
|
+
} catch (e) {
|
1056
|
+
/* empty */
|
1057
|
+
}
|
1058
|
+
|
1059
|
+
if (!response || !response.data) {
|
1060
|
+
return;
|
1061
|
+
}
|
1062
|
+
|
1063
|
+
return new Promise((resolve) => {
|
1064
|
+
fs.writeFile(filePath, response.data, (err) => {
|
1065
|
+
if (err) {
|
1066
|
+
resolve();
|
1067
|
+
}
|
1068
|
+
resolve(filePath);
|
1069
|
+
});
|
1070
|
+
});
|
1071
|
+
}
|
1072
|
+
|
1073
|
+
export async function downloadLargeImage(url, filePath) {
|
1074
|
+
try {
|
1075
|
+
const response = await new Promise((resolve, reject) => {
|
1076
|
+
https
|
1077
|
+
.get(url, (res) => {
|
1078
|
+
if (res.statusCode === 200) {
|
1079
|
+
resolve(res);
|
1080
|
+
} else {
|
1081
|
+
reject(new Error(`Failed to get image, status code: ${res.statusCode}`));
|
1082
|
+
}
|
1083
|
+
})
|
1084
|
+
.on("error", reject);
|
1085
|
+
});
|
1086
|
+
|
1087
|
+
const streamPipeline = promisify(pipeline);
|
1088
|
+
await streamPipeline(response, fs.createWriteStream(filePath));
|
1089
|
+
console.log("Download large image completed.");
|
1090
|
+
return true;
|
1091
|
+
} catch (error) {
|
1092
|
+
console.error(`Error downloading large image: ${error.message}`);
|
1093
|
+
return false;
|
1094
|
+
}
|
1095
|
+
}
|
1096
|
+
|
1097
|
+
//from large text file
|
1098
|
+
export function readRandomLine(filePath, isValidLine) {
|
1099
|
+
return new Promise((resolve, reject) => {
|
1100
|
+
const rl = readline.createInterface({
|
1101
|
+
input: fs.createReadStream(filePath),
|
1102
|
+
crlfDelay: Infinity,
|
1103
|
+
});
|
1104
|
+
|
1105
|
+
let resultLine = null;
|
1106
|
+
let lineNumber = 0;
|
1107
|
+
|
1108
|
+
rl.on("line", (line) => {
|
1109
|
+
if (typeof isValidLine === "function" && !isValidLine(line)) {
|
1110
|
+
return;
|
1111
|
+
}
|
1112
|
+
|
1113
|
+
lineNumber += 1;
|
1114
|
+
// Choose this line with probability 1 / lineNumber
|
1115
|
+
if (Math.random() < 1 / lineNumber) {
|
1116
|
+
resultLine = line;
|
1117
|
+
}
|
1118
|
+
});
|
1119
|
+
|
1120
|
+
rl.on("close", () => {
|
1121
|
+
if (resultLine !== null) {
|
1122
|
+
resolve(resultLine);
|
1123
|
+
} else {
|
1124
|
+
reject(new Error("File is empty"));
|
1125
|
+
}
|
1126
|
+
});
|
1127
|
+
|
1128
|
+
rl.on("error", (err) => {
|
1129
|
+
reject(err);
|
1130
|
+
});
|
1131
|
+
});
|
1132
|
+
}
|
1133
|
+
|
1134
|
+
export async function getImageSize(url) {
|
1135
|
+
if (!url || typeof url !== "string") {
|
1136
|
+
return;
|
1137
|
+
}
|
1138
|
+
let response = null;
|
1139
|
+
try {
|
1140
|
+
response = await axios.head(url);
|
1141
|
+
} catch (e) {
|
1142
|
+
/* empty */
|
1143
|
+
}
|
1144
|
+
if (!response) {
|
1145
|
+
return;
|
1146
|
+
}
|
1147
|
+
const contentLength = response.headers?.["content-length"];
|
1148
|
+
if (contentLength) {
|
1149
|
+
const sizeInBytes = parseInt(contentLength, 10);
|
1150
|
+
const sizeInMB = sizeInBytes / (1024 * 1024); // Convert to MB
|
1151
|
+
return sizeInMB.toFixed(2); // Return size in MB with 2 decimal places
|
1152
|
+
}
|
1153
|
+
}
|
1154
|
+
|
1155
|
+
export function getGreetMessage() {
|
1156
|
+
return _.sample(["nha", "nhá", "nhé"]);
|
1157
|
+
}
|
1158
|
+
|
1159
|
+
export function logNow(...msg) {
|
1160
|
+
const date = new Date();
|
1161
|
+
const fmt = (n) => n.toString().padStart(2, "0");
|
1162
|
+
const offset = 7 * 60;
|
1163
|
+
const localDate = new Date(date.getTime() + offset * 60 * 1000);
|
1164
|
+
const formattedDate = `${fmt(localDate.getUTCDate())}/${fmt(localDate.getUTCMonth() + 1)}/${localDate.getUTCFullYear()} ${fmt(localDate.getUTCHours())}:${fmt(localDate.getUTCMinutes())}:${fmt(localDate.getUTCSeconds())}`;
|
1165
|
+
console.log(`[${formattedDate}]`, ...msg);
|
1166
|
+
}
|
1167
|
+
|
1168
|
+
export function formatFriendState(data) {
|
1169
|
+
if (!data) {
|
1170
|
+
return;
|
1171
|
+
}
|
1172
|
+
|
1173
|
+
function formatUndefined(value) {
|
1174
|
+
if (value === "" || value === null || value === undefined || (typeof value === "number" && isNaN(value))) {
|
1175
|
+
return null;
|
1176
|
+
}
|
1177
|
+
return value;
|
1178
|
+
}
|
1179
|
+
|
1180
|
+
const { player_name, gameid, persona_state, rich_presence = [] } = data;
|
1181
|
+
const avatar_hash = data.avatar_hash ? (typeof data.avatar_hash === "string" ? data.avatar_hash : Buffer.from(data.avatar_hash).toString("hex")) : "fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb";
|
1182
|
+
|
1183
|
+
let onlineStatus = "offline";
|
1184
|
+
let score = "";
|
1185
|
+
const scoreDetails = rich_presence.find((r) => r.key === "game:score")?.value;
|
1186
|
+
const mode = rich_presence.find((r) => r.key === "game:mode")?.value;
|
1187
|
+
const map = rich_presence.find((r) => r.key === "game:map")?.value;
|
1188
|
+
const numPlayers = formatUndefined(parseInt(rich_presence.find((r) => r.key === "members:numPlayers")?.value)); //include this friend, 2,3,4,5
|
1189
|
+
const steam_player_group = formatUndefined(parseInt(rich_presence.find?.((r) => r.key === "steam_player_group")?.value));
|
1190
|
+
const steam_player_group_size = formatUndefined(parseInt(rich_presence.find?.((r) => r.key === "steam_player_group_size")?.value));
|
1191
|
+
|
1192
|
+
if (gameid !== null && gameid !== undefined && gameid !== "") {
|
1193
|
+
if (gameid === 0 || gameid === "0") {
|
1194
|
+
if ([1, 2, 3, 4].includes(persona_state)) {
|
1195
|
+
onlineStatus = "online";
|
1196
|
+
} else if (persona_state === 0) {
|
1197
|
+
onlineStatus = "offline";
|
1198
|
+
} else {
|
1199
|
+
// console.log(data)
|
1200
|
+
onlineStatus = "online";
|
1201
|
+
}
|
1202
|
+
} else {
|
1203
|
+
onlineStatus = "ingame";
|
1204
|
+
}
|
1205
|
+
|
1206
|
+
if (rich_presence.some((r) => r.key === "game:state" && r.value === "lobby")) {
|
1207
|
+
score = data.rich_presence_string || "In Lobby";
|
1208
|
+
} else {
|
1209
|
+
score = rich_presence.find?.((r) => r.key === "status")?.value || data.rich_presence_string || "";
|
1210
|
+
}
|
1211
|
+
if (score === "not found") {
|
1212
|
+
score = "";
|
1213
|
+
}
|
1214
|
+
if (score.startsWith("Premier") && !score.startsWith("Premier Competitive") && data.rich_presence_string?.startsWith("Premier Competitive")) {
|
1215
|
+
score = data.rich_presence_string;
|
1216
|
+
}
|
1217
|
+
} else if (persona_state === null && rich_presence.length === 0) {
|
1218
|
+
onlineStatus = "offline";
|
1219
|
+
}
|
1220
|
+
|
1221
|
+
return {
|
1222
|
+
onlineStatus,
|
1223
|
+
score: formatUndefined(score),
|
1224
|
+
scoreDetails: formatUndefined(scoreDetails),
|
1225
|
+
mode: formatUndefined(mode),
|
1226
|
+
map: formatUndefined(map),
|
1227
|
+
player_name,
|
1228
|
+
gameid: formatUndefined(parseInt(gameid)),
|
1229
|
+
numPlayers,
|
1230
|
+
steam_player_group,
|
1231
|
+
steam_player_group_size,
|
1232
|
+
avatar_hash,
|
1233
|
+
rich_presence,
|
1234
|
+
};
|
1235
|
+
}
|
1236
|
+
|
1237
|
+
export function getGameDetailScore(scoreString) {
|
1238
|
+
if (typeof scoreString !== "string") {
|
1239
|
+
return null;
|
1240
|
+
}
|
1241
|
+
const regex = /\[\s*(\d+)\s*:\s*(\d+)\s*\]/;
|
1242
|
+
const matches = scoreString.match(regex);
|
1243
|
+
if (matches) {
|
1244
|
+
// The first capturing group (matches[1]) is the first score, the second (matches[2]) is the second score
|
1245
|
+
const score1 = matches[1];
|
1246
|
+
const score2 = matches[2];
|
1247
|
+
return [score1, score2].map(Number);
|
1248
|
+
}
|
1249
|
+
// console.log("No match found", scoreString);
|
1250
|
+
}
|
1251
|
+
|
1252
|
+
export function formatMarketHistoryDate(dateStr) {
|
1253
|
+
const momentObj = moment(dateStr, "DD MMM", true);
|
1254
|
+
if (!momentObj.isValid()) {
|
1255
|
+
return dateStr;
|
1256
|
+
}
|
1257
|
+
|
1258
|
+
const now = moment();
|
1259
|
+
while (momentObj.isAfter(now)) {
|
1260
|
+
momentObj.subtract(1, "years");
|
1261
|
+
}
|
1262
|
+
|
1263
|
+
return momentObj.format("DD MMM YYYY");
|
1264
|
+
}
|