steamutils 1.5.27 → 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.
- package/index.js +9 -10
- package/package.json +1 -1
package/index.js
CHANGED
@@ -6440,23 +6440,21 @@ export default class SteamUser {
|
|
6440
6440
|
}
|
6441
6441
|
|
6442
6442
|
async beginFileUpload(filePath) {
|
6443
|
-
const {
|
6444
|
-
const
|
6443
|
+
const { imageSize } = await import("image-size");
|
6444
|
+
const buffer = fs.readFileSync(filePath);
|
6445
|
+
const dimensions = imageSize(buffer);
|
6445
6446
|
const stats = fs.statSync(filePath);
|
6446
|
-
|
6447
|
-
|
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",
|
6454
6452
|
file_size: stats.size,
|
6455
6453
|
file_name: path.basename(filePath),
|
6456
6454
|
file_sha: sha1,
|
6457
|
-
file_image_width:
|
6458
|
-
file_image_height:
|
6459
|
-
file_type: image.
|
6455
|
+
file_image_width: dimensions.width,
|
6456
|
+
file_image_height: dimensions.height,
|
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({
|