forked from tugita/Pixi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.js
103 lines (92 loc) · 3.58 KB
/
bot.js
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
//bot.js
const fs = require("fs");
const path = require("path");
const app = require("./server");
const crypto = require("crypto");
const initializeBot = require("./botSingleton");
const bot = initializeBot(); // Получаем единственный экземпляр бота
const axios = require("axios");
const { uploadOriginalFile } = require("./doSpaceService");
const BOT_TOKEN = process.env.BOT_TOKEN;
// Botik - обработка команды /start
bot.onText(/\/start/, async (msg) => {
const chatId = msg.chat.id;
try {
console.log(`Обработка команды /start для пользователя ${chatId}`);
// Получаем фото профиля пользователя
const userProfilePhotos = await bot.getUserProfilePhotos(chatId, {
limit: 1,
});
if (userProfilePhotos.photos.length > 0) {
// Получаем файл последнего фото профиля (берем самый крупный вариант фото)
const fileId = userProfilePhotos.photos[0][2].file_id; // [0][2] - изображение с большим разрешением
try {
// Запрашиваем путь к файлу через Telegram API
const filePathResponse = await axios.get(
`https://api.telegram.org/bot${BOT_TOKEN}/getFile`,
{
params: { file_id: fileId },
}
);
const filePath = filePathResponse.data.result.file_path;
// Получаем изображение по file_path
const fileResponse = await axios.get(
`https://api.telegram.org/file/bot${BOT_TOKEN}/${filePath}`,
{
responseType: "arraybuffer",
}
);
const fileBuffer = Buffer.from(fileResponse.data, "binary");
// Сохраняем оригинальное фото профиля на CDN
console.log("Сохранение фото профиля пользователя на CDN...");
const fileUrl = await uploadOriginalFile(chatId, {
buffer: fileBuffer,
mimetype: "image/jpeg",
originalname: `${chatId}.jpg`, // Устанавливаем имя файла
});
console.log(
`Фото профиля пользователя ${chatId} успешно сохранено. URL: ${fileUrl}`
);
} catch (error) {
console.error(
`Ошибка при получении или сохранении фото профиля для пользователя ${chatId}:`,
error.message
);
}
} else {
console.log(`Пользователь ${chatId} не имеет фото профиля.`);
}
try {
await bot.sendMessage(
chatId,
"Hello, friend! Head over to the miniapp and create your pixel avatar.",
{
reply_markup: {
inline_keyboard: [
[
{
text: "Start App",
web_app: { url: "https://pixel.notco.in" },
},
],
],
},
}
);
} catch (error) {
console.error(error);
}
// Отправляем сообщение с кнопкой "Start App"
} catch (error) {
console.error("Ошибка при обработке команды /start:", error);
try {
await bot.sendMessage(
chatId,
"Произошла ошибка при обработке вашего запроса."
);
} catch (error) {
console.error(error);
}
}
});
module.exports = bot;