steamutils 1.1.62 → 1.1.64
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/SteamClient.js +1 -1
- package/example.js +0 -90
- package/index.js +4 -4
- package/package.json +1 -1
package/SteamClient.js
CHANGED
@@ -885,7 +885,7 @@ function SteamClient({
|
|
885
885
|
});
|
886
886
|
|
887
887
|
steamClient.on('friendRelationship', async function (sid, relationship, previousRelationship) {
|
888
|
-
callEvent(events.friendRelationship, {steamId: sid, relationship, previousRelationship})
|
888
|
+
callEvent(events.friendRelationship, {steamId: sid.getSteamID64(), relationship, previousRelationship})
|
889
889
|
switch (relationship) {
|
890
890
|
case EFriendRelationship.None: {
|
891
891
|
//we got unfriended.
|
package/example.js
CHANGED
@@ -11,94 +11,4 @@ import * as cherrio from "cheerio";
|
|
11
11
|
// const user = new SteamUser(loginResult.cookie)
|
12
12
|
|
13
13
|
|
14
|
-
// let cookies = `timezoneOffset=25200,0; _ga=GA1.2.187887660.1678676715; browserid=2823232875076552481; strInventoryLastContext=730_2; recentlyVisitedAppHubs=730%2C1859270; sessionid=83e614b63d78d0d2b4d93680; steamCountry=VN%7C3c7bd5df99a265a3e5102a225d1ab62d; steamLoginSecure=76561199040402348%7C%7CeyAidHlwIjogIkpXVCIsICJhbGciOiAiRWREU0EiIH0.eyAiaXNzIjogInI6MEQwM18yMjM1ODQ2MF8xM0YyNCIsICJzdWIiOiAiNzY1NjExOTkwNDA0MDIzNDgiLCAiYXVkIjogWyAid2ViIiBdLCAiZXhwIjogMTY4NTA2NTUzMiwgIm5iZiI6IDE2NzYzMzc4MDcsICJpYXQiOiAxNjg0OTc3ODA3LCAianRpIjogIjBEMkRfMjI5NkUxQkNfQzNERjUiLCAib2F0IjogMTY3ODY3NjgzMywgInJ0X2V4cCI6IDE2OTY4NjYxMDEsICJwZXIiOiAwLCAiaXBfc3ViamVjdCI6ICIxNC4yMzIuMjE0LjE4NiIsICJpcF9jb25maXJtZXIiOiAiMTQuMjMyLjIxNC4xODYiIH0.AhLuV9mQzv2j2CEgBe5ZpGyUqpHXogHFClfdsd3Ve7-Dt4aHagrJhOsgLewh1gmkO5ZewAN4FO4Y5S3D7u4FCw; webTradeEligibility=%7B%22allowed%22%3A1%2C%22allowed_at_time%22%3A0%2C%22steamguard_required_days%22%3A15%2C%22new_device_cooldown_days%22%3A0%2C%22time_checked%22%3A1684981543%7D; tsTradeOffersLastRead=1684321053`;
|
15
|
-
// const user = new SteamUser("timezoneOffset=25200,0; _ga=GA1.2.187887660.1678676715; browserid=2823232875076552481; strInventoryLastContext=730_2; recentlyVisitedAppHubs=730%2C1859270; sessionid=83e614b63d78d0d2b4d93680; steamCountry=VN%7C3c7bd5df99a265a3e5102a225d1ab62d; steamLoginSecure=76561199040402348%7C%7CeyAidHlwIjogIkpXVCIsICJhbGciOiAiRWREU0EiIH0.eyAiaXNzIjogInI6MEQwM18yMjM1ODQ2MF8xM0YyNCIsICJzdWIiOiAiNzY1NjExOTkwNDA0MDIzNDgiLCAiYXVkIjogWyAid2ViIiBdLCAiZXhwIjogMTY4NTA2NTUzMiwgIm5iZiI6IDE2NzYzMzc4MDcsICJpYXQiOiAxNjg0OTc3ODA3LCAianRpIjogIjBEMkRfMjI5NkUxQkNfQzNERjUiLCAib2F0IjogMTY3ODY3NjgzMywgInJ0X2V4cCI6IDE2OTY4NjYxMDEsICJwZXIiOiAwLCAiaXBfc3ViamVjdCI6ICIxNC4yMzIuMjE0LjE4NiIsICJpcF9jb25maXJtZXIiOiAiMTQuMjMyLjIxNC4xODYiIH0.AhLuV9mQzv2j2CEgBe5ZpGyUqpHXogHFClfdsd3Ve7-Dt4aHagrJhOsgLewh1gmkO5ZewAN4FO4Y5S3D7u4FCw; webTradeEligibility=%7B%22allowed%22%3A1%2C%22allowed_at_time%22%3A0%2C%22steamguard_required_days%22%3A15%2C%22new_device_cooldown_days%22%3A0%2C%22time_checked%22%3A1684981543%7D; tsTradeOffersLastRead=1684321053")
|
16
|
-
// const friendList = await user.getTradeURL()
|
17
|
-
|
18
|
-
function CookieManager(cookie) {
|
19
|
-
const _CookieObj = {}
|
20
|
-
if (typeof cookie === "string") {
|
21
|
-
cookie.split(";").forEach(function (_cookie) {
|
22
|
-
setCookie(_cookie.split("=")[0].trim(), _cookie.split("=")[1].trim())
|
23
|
-
})
|
24
|
-
} else if (Array.isArray(cookie)) {
|
25
|
-
cookie.forEach(function (_cookie) {
|
26
|
-
if (typeof _cookie === "string") {
|
27
|
-
setCookie(_cookie.split("=")[0].trim(), _cookie.split("=")[1].trim())
|
28
|
-
} else {
|
29
|
-
//to do
|
30
|
-
}
|
31
|
-
})
|
32
|
-
} else if (typeof cookie === "object" && Object.keys(cookie).length) {
|
33
|
-
for (const key in cookie) {
|
34
|
-
setCookie(key, cookie[key])
|
35
|
-
}
|
36
|
-
} else {
|
37
|
-
//to do
|
38
|
-
}
|
39
|
-
|
40
|
-
function setCookie(name, value) {
|
41
|
-
const existedKey = Object.keys(_CookieObj).find(k => k.toLowerCase() === name.toLowerCase())
|
42
|
-
if (existedKey) {
|
43
|
-
delete _CookieObj[existedKey]
|
44
|
-
}
|
45
|
-
_CookieObj[name] = value
|
46
|
-
}
|
47
|
-
|
48
|
-
function setCookies(cookies) {
|
49
|
-
if (Array.isArray(cookies)) {
|
50
|
-
for (let cookie of cookies) {
|
51
|
-
if (typeof cookie === "string") {
|
52
|
-
cookie = cookie.split(";")[0].trim()
|
53
|
-
setCookie(cookie.split("=")[0].trim(), cookie.split("=")[1].trim())
|
54
|
-
}
|
55
|
-
}
|
56
|
-
}
|
57
|
-
}
|
58
|
-
|
59
|
-
function getCookie(name) {
|
60
|
-
const existedKey = Object.keys(_CookieObj).find(k => k.toLowerCase() === name.toLowerCase())
|
61
|
-
return _CookieObj[existedKey]
|
62
|
-
}
|
63
|
-
|
64
|
-
|
65
|
-
function toString() {
|
66
|
-
return Object.keys(_CookieObj).map(k => `${k}=${_CookieObj[k]}`).join(';')
|
67
|
-
}
|
68
|
-
|
69
|
-
return {
|
70
|
-
setCookie,
|
71
|
-
setCookies,
|
72
|
-
getCookie,
|
73
|
-
toString,
|
74
|
-
}
|
75
|
-
}
|
76
|
-
|
77
|
-
const cookiesObj = new CookieManager("steamLoginSecure=76561199490333788%7C%7CeyAidHlwIjogIkpXVCIsICJhbGciOiAiRWREU0EiIH0.eyAiaXNzIjogInI6MEQyRF8yMjhEQTcxQV9DOEZGRCIsICJzdWIiOiAiNzY1NjExOTk0OTAzMzM3ODgiLCAiYXVkIjogWyAid2ViIiwgIm1vYmlsZSIgXSwgImV4cCI6IDE2ODUwNjY0MzgsICJuYmYiOiAxNjc2MzQwMDAwLCAiaWF0IjogMTY4NDk4MDAwMCwgImp0aSI6ICIwRDJCXzIyOTZFMUJGXzUyNEU2IiwgIm9hdCI6IDE2ODQzODUwODksICJydF9leHAiOiAxNzAyNzQzMDU3LCAicGVyIjogMCwgImlwX3N1YmplY3QiOiAiMTQuMjMyLjIxNC4xODYiLCAiaXBfY29uZmlybWVyIjogIjE0LjIzMi4yMTQuMTg2IiB9.t884pdEgtcWk8Apy1HrzhQixy0u-RQFM-qb3JuaYMZjCwTRXdCnOZFbCxFe2JesC5xfFttHe4ufqtyizcEmVDA")
|
78
|
-
|
79
|
-
let url = `my/tradeoffers/privacy`
|
80
|
-
while (true) {
|
81
|
-
const response = await axios({
|
82
|
-
baseURL: "https://steamcommunity.com",
|
83
|
-
url,
|
84
|
-
validateStatus: () => true,
|
85
|
-
headers: {
|
86
|
-
cookie: cookiesObj.toString()
|
87
|
-
},
|
88
|
-
maxRedirects: 0,
|
89
|
-
})
|
90
|
-
cookiesObj.setCookies(response.headers["set-cookie"])
|
91
|
-
if (response.status === 302) {
|
92
|
-
url = response.headers.location
|
93
|
-
console.log(`Redirect to ${url}`)
|
94
|
-
} else if (response.status === 200) {
|
95
|
-
const $ = cherrio.load(response.data)
|
96
|
-
const trade_offer_access_url = $('#trade_offer_access_url').attr('value')
|
97
|
-
console.log(trade_offer_access_url);
|
98
|
-
return response
|
99
|
-
} else {
|
100
|
-
console.log(response.status);
|
101
|
-
}
|
102
|
-
}
|
103
|
-
|
104
14
|
})()
|
package/index.js
CHANGED
@@ -1505,7 +1505,7 @@ class SteamUser {
|
|
1505
1505
|
const config = {
|
1506
1506
|
baseURL: SteamcommunityURL,
|
1507
1507
|
...params,
|
1508
|
-
data: typeof params.data === 'object' && !Object.keys(params.data).length ? undefined : params.data,
|
1508
|
+
data:( typeof params.data === 'object' && !Object.keys(params.data).length && !(params.data instanceof URLSearchParams)) ? undefined : params.data,
|
1509
1509
|
validateStatus: () => true,
|
1510
1510
|
headers: {
|
1511
1511
|
...(params.headers.get()),
|
@@ -5470,7 +5470,7 @@ class SteamUser {
|
|
5470
5470
|
serverid: 1,
|
5471
5471
|
partner: SteamID.fromIndividualAccountID(tradeURLParams.partner).getSteamID64(),
|
5472
5472
|
tradeoffermessage,
|
5473
|
-
json_tradeoffer:
|
5473
|
+
json_tradeoffer: JSON.stringify({
|
5474
5474
|
newversion: true,
|
5475
5475
|
version: 3,
|
5476
5476
|
me: {
|
@@ -5483,9 +5483,9 @@ class SteamUser {
|
|
5483
5483
|
currency: [],
|
5484
5484
|
ready: false
|
5485
5485
|
},
|
5486
|
-
})
|
5486
|
+
}),
|
5487
5487
|
captcha: '',
|
5488
|
-
trade_offer_create_params:
|
5488
|
+
trade_offer_create_params: JSON.stringify({trade_offer_access_token: tradeURLParams.token}),
|
5489
5489
|
},
|
5490
5490
|
method: 'POST',
|
5491
5491
|
})
|