-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.js
207 lines (176 loc) · 5.29 KB
/
utils.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
const fs = require("fs");
const colors = require("colors");
const path = require("path");
require("dotenv").config();
function _isArray(obj) {
if (Array.isArray(obj) && obj.length > 0) {
return true;
}
try {
const parsedObj = JSON.parse(obj);
return Array.isArray(parsedObj) && parsedObj.length > 0;
} catch (e) {
return false;
}
}
function splitIdPet(num) {
const numStr = num.toString();
const firstPart = numStr.slice(0, 3); // Lấy 3 ký tự đầu tiên
const secondPart = numStr.slice(3); // Lấy phần còn lại
return [parseInt(firstPart), parseInt(secondPart)];
}
// Hàm để ghi đè biến môi trường
const envFilePath = path.join(__dirname, ".env");
async function updateEnv(variable, value) {
// Đọc file .env
fs.readFile(envFilePath, "utf8", (err, data) => {
if (err) {
console.log("Không thể đọc file .env:", err);
return;
}
// console.log(value, variable);
// Tạo hoặc cập nhật biến trong file
const regex = new RegExp(`^${variable}=.*`, "m");
const newData = data.replace(regex, `${variable}=${value}`);
// Kiểm tra nếu biến không tồn tại trong file, thêm vào cuối
if (!regex.test(data)) {
newData += `\n${variable}=${value}`;
}
// Ghi lại file .env
fs.writeFile(envFilePath, newData, "utf8", (err) => {
if (err) {
console.error("Không thể ghi file .env:", err);
} else {
// console.log(`Đã cập nhật ${variable} thành ${value}`);
}
});
});
}
function sleep(seconds = null) {
if (seconds && typeof seconds === "number") return new Promise((resolve) => setTimeout(resolve, seconds * 1000));
let DELAY_BETWEEN_REQUESTS = process.env.DELAY_BETWEEN_REQUESTS && _isArray(process.env.DELAY_BETWEEN_REQUESTS) ? JSON.parse(process.env.DELAY_BETWEEN_REQUESTS) : [1, 5];
if (seconds && Array.isArray(seconds)) {
DELAY_BETWEEN_REQUESTS = seconds;
}
min = DELAY_BETWEEN_REQUESTS[0];
max = DELAY_BETWEEN_REQUESTS[1];
return new Promise((resolve) => {
const delay = Math.floor(Math.random() * (max - min + 1)) + min;
setTimeout(resolve, delay * 1000);
});
}
function saveToken(id, token) {
const tokens = JSON.parse(fs.readFileSync("token.json", "utf8"));
tokens[id] = token;
fs.writeFileSync("token.json", JSON.stringify(tokens, null, 4));
}
function getToken(id) {
const tokens = JSON.parse(fs.readFileSync("token.json", "utf8"));
return tokens[id] || null;
}
function isTokenExpired(token) {
if (!token) return true;
try {
const [, payload] = token.split(".");
if (!payload) return true;
const decodedPayload = JSON.parse(Buffer.from(payload, "base64").toString());
const now = Math.floor(Date.now() / 1000);
if (!decodedPayload.exp) {
// console.log("Eternal token".yellow);
return false;
}
const expirationDate = new Date(decodedPayload.exp * 1000);
const isExpired = now > decodedPayload.exp;
console.log(`Token expires after: ${expirationDate.toLocaleString()}`.magenta);
console.log(`Token status: ${isExpired ? "Expired".yellow : "Valid".green}`);
return isExpired;
} catch (error) {
console.log(`Error checking token: ${error.message}`.red);
return true;
}
}
function generateRandomHash() {
const characters = "0123456789abcdef";
let hash = "0x"; // Bắt đầu bằng "0x"
for (let i = 0; i < 64; i++) {
// 64 ký tự cho hash
const randomIndex = Math.floor(Math.random() * characters.length);
hash += characters[randomIndex];
}
return hash;
}
function getRandomElement(arr) {
const randomIndex = Math.floor(Math.random() * arr.length);
return arr[randomIndex];
}
function getRandomNumber(min, max) {
return Math.floor(Math.random() * (max - min) + min);
}
function loadData(file) {
try {
const datas = fs.readFileSync(file, "utf8").replace(/\r/g, "").split("\n").filter(Boolean);
if (datas?.length <= 0) {
console.log(colors.red(`Không tìm thấy dữ liệu ${file}`));
return [];
}
return datas;
} catch (error) {
console.log(`Không tìm thấy file ${file}`.red);
return [];
}
}
async function saveData(data, filename) {
fs.writeFileSync(filename, data.join("\n"));
}
function log(msg, type = "info") {
switch (type) {
case "success":
console.log(`[*] ${msg}`.green);
break;
case "custom":
console.log(`[*] ${msg}`.magenta);
break;
case "error":
console.log(`[!] ${msg}`.red);
break;
case "warning":
console.log(`[*] ${msg}`.yellow);
break;
default:
console.log(`[*] ${msg}`.blue);
}
}
function saveJson(id, value, filename) {
const data = JSON.parse(fs.readFileSync(filename, "utf8"));
data[id] = value;
fs.writeFileSync(filename, JSON.stringify(data, null, 4));
}
function getItem(id, filename) {
const data = JSON.parse(fs.readFileSync(filename, "utf8"));
return data[id] || null;
}
function getOrCreateJSON(id, value, filename) {
let item = getItem(id, filename);
if (item) {
return item;
}
item = saveJson(id, value, filename);
return item;
}
module.exports = {
_isArray,
saveJson,
getRandomNumber,
updateEnv,
saveToken,
splitIdPet,
getToken,
isTokenExpired,
generateRandomHash,
getRandomElement,
loadData,
saveData,
log,
getOrCreateJSON,
sleep,
};