steamutils 1.5.26 → 1.5.29

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.
Files changed (2) hide show
  1. package/index.js +6 -7
  2. package/package.json +11 -11
package/index.js CHANGED
@@ -6441,13 +6441,11 @@ export default class SteamUser {
6441
6441
 
6442
6442
  async beginFileUpload(filePath) {
6443
6443
  const { imageSize } = await import("image-size");
6444
- const dimensions = imageSize(filePath);
6444
+ const buffer = fs.readFileSync(filePath);
6445
+ const dimensions = imageSize(buffer);
6445
6446
  const stats = fs.statSync(filePath);
6446
-
6447
- let sha1 = "";
6448
- for (; sha1.length < 40; ) {
6449
- sha1 += Math.floor(16 * Math.random()).toString(16);
6450
- }
6447
+ const sha1 = [...Array(40)].map(() => ((Math.random() * 16) | 0).toString(16)).join("");
6448
+ const type = dimensions.type === "webp" ? "png" : dimensions.type;
6451
6449
 
6452
6450
  const data = {
6453
6451
  l: "english",
@@ -6456,7 +6454,7 @@ export default class SteamUser {
6456
6454
  file_sha: sha1,
6457
6455
  file_image_width: dimensions.width,
6458
6456
  file_image_height: dimensions.height,
6459
- file_type: dimensions.type, // Returns "jpg", "png", "webp", etc.
6457
+ file_type: `image/${type || "png"}`, // Returns "jpg", "png", "webp", etc.
6460
6458
  sessionid: this.getSessionid(),
6461
6459
  };
6462
6460
 
@@ -6598,6 +6596,7 @@ export default class SteamUser {
6598
6596
  async sendImageMessage({ imagePath, friend_steamid }) {
6599
6597
  const beginFileUploadResult = await this.beginFileUpload(imagePath);
6600
6598
  if (beginFileUploadResult?.success !== 1) {
6599
+ console.error(beginFileUploadResult);
6601
6600
  return beginFileUploadResult;
6602
6601
  }
6603
6602
  const uploadingResult = await this.doFileUpload({
package/package.json CHANGED
@@ -1,38 +1,38 @@
1
1
  {
2
2
  "name": "steamutils",
3
- "version": "1.5.26",
3
+ "version": "1.5.29",
4
4
  "main": "index.js",
5
5
  "dependencies": {
6
6
  "alpha-common-utils": "^1.0.6",
7
- "axios": "^1.7.8",
7
+ "axios": "^1.8.1",
8
8
  "bytebuffer": "^5.0.1",
9
9
  "cheerio": "^1.0.0",
10
10
  "crypto-js": "^4.2.0",
11
11
  "csgo-friendcode": "^3.0.3",
12
- "form-data": "^4.0.1",
12
+ "form-data": "^4.0.2",
13
13
  "image-size": "^2.0.0",
14
14
  "jimp": "^1.6.0",
15
15
  "jsqr": "^1.4.0",
16
16
  "lodash": "^4.17.21",
17
17
  "moment": "^2.30.1",
18
- "moment-timezone": "^0.5.46",
18
+ "moment-timezone": "^0.5.47",
19
19
  "node-bignumber": "^1.2.2",
20
- "p-queue": "^8.0.1",
20
+ "p-queue": "^8.1.0",
21
21
  "protobufjs": "^7.4.0",
22
- "qs": "^6.13.1",
23
- "steam-session": "^1.9.0",
22
+ "qs": "^6.14.0",
23
+ "steam-session": "^1.9.2",
24
24
  "steam-totp": "^2.1.2",
25
25
  "steam-user": "^5.2.0",
26
- "steamcommunity": "^3.48.5",
26
+ "steamcommunity": "^3.48.6",
27
27
  "steamid": "^2.1.0",
28
28
  "url-parse": "^1.5.10",
29
- "uuid": "^11.0.3",
29
+ "uuid": "^11.1.0",
30
30
  "xml-js": "^1.6.11",
31
31
  "xml2js": "^0.6.2"
32
32
  },
33
33
  "type": "module",
34
34
  "devDependencies": {
35
- "eslint-config-prettier": "^9.1.0",
36
- "eslint-plugin-prettier": "^5.2.1"
35
+ "eslint-config-prettier": "^10.0.2",
36
+ "eslint-plugin-prettier": "^5.2.3"
37
37
  }
38
38
  }