-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path301-proxy.js
426 lines (393 loc) · 11.9 KB
/
301-proxy.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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
const fs = require("fs");
const axios = require("axios");
const colors = require("colors");
const readline = require("readline");
const { HttpsProxyAgent } = require("https-proxy-agent");
const { DateTime } = require("luxon");
class AgentAPI {
constructor() {
this.baseURL = "https://api.agent301.org";
this.proxies = this.loadProxies();
}
loadProxies() {
try {
return fs
.readFileSync("proxy.txt", "utf8")
.replace(/\r/g, "")
.split("\n")
.filter(Boolean)
.map((proxy) => (proxy.startsWith("http") ? proxy : `http://${proxy}`));
} catch (error) {
this.log(`Lỗi khi đọc file proxy: ${error.message}`, "error");
return [];
}
}
headers(authorization) {
return {
Accept: "application/json, text/plain, */*",
"Accept-Language":
"vi-VN,vi;q=0.9,fr-FR;q=0.8,fr;q=0.7,en-US;q=0.6,en;q=0.5",
Authorization: authorization,
"Content-Type": "application/json",
Origin: "https://telegram.agent301.org",
Referer: "https://telegram.agent301.org/",
"Sec-Ch-Ua":
'"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"',
"Sec-Ch-Ua-Mobile": "?1",
"Sec-Ch-Ua-Platform": '"Android"',
"User-Agent":
"Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36",
};
}
log(msg, type = "info") {
const timestamp = new Date().toLocaleTimeString();
const logTypes = {
success: (msg) => console.log(`[${timestamp}] [*] ${msg}`.green),
custom: (msg) => console.log(`[${timestamp}] [*] ${msg}`),
error: (msg) => console.log(`[${timestamp}] [!] ${msg}`.red),
warning: (msg) => console.log(`[${timestamp}] [*] ${msg}`.yellow),
info: (msg) => console.log(`[${timestamp}] [*] ${msg}`.blue),
};
(logTypes[type] || logTypes.info)(msg);
}
async waitWithCountdown(seconds) {
for (let i = seconds; i >= 0; i--) {
readline.cursorTo(process.stdout, 0);
process.stdout.write(
`[${new Date().toLocaleTimeString()}] [*] Chờ ${i} giây để tiếp tục...`
);
await new Promise((resolve) => setTimeout(resolve, 1000));
}
console.log("");
}
extractFirstName(authorization) {
try {
const params = new URLSearchParams(authorization);
const userString = params.get("user");
if (userString) {
const userObject = JSON.parse(decodeURIComponent(userString));
return userObject.first_name;
}
} catch (error) {
this.log(`Không đọc được dữ liệu: ${error.message}`, "error");
}
return "Unknown";
}
async makeRequest(method, url, payload, authorization, proxy, retries = 3) {
const proxyAgent = new HttpsProxyAgent(proxy);
const config = {
method,
url,
data: payload,
headers: this.headers(authorization),
httpsAgent: proxyAgent,
};
for (let attempt = 1; attempt <= retries; attempt++) {
try {
const response = await axios(config);
return response.data;
} catch (error) {
if (attempt === retries) {
throw error;
}
this.log(
`Lỗi request (lần thử ${attempt}/${retries}): ${error.message}. Đang thử lại...`,
"warning"
);
await new Promise((resolve) => setTimeout(resolve, 1000));
}
}
}
async checkProxyIP(proxy) {
try {
const response = await this.makeRequest(
"GET",
"https://api.ipify.org?format=json",
{},
"",
proxy
);
return response.ip;
} catch (error) {
throw new Error(`Error khi kiểm tra IP của proxy: ${error.message}`);
}
}
async getMe(authorization, proxy) {
try {
return await this.makeRequest(
"POST",
`${this.baseURL}/getMe`,
{ referrer_id: 1092680235 },
authorization,
proxy
);
} catch (error) {
this.log(`Lỗi lấy thông tin người dùng: ${error.message}`, "error");
throw error;
}
}
async completeTask(
authorization,
taskType,
taskTitle,
currentCount = 0,
maxCount = 1,
proxy
) {
try {
const response = await this.makeRequest(
"POST",
`${this.baseURL}/completeTask`,
{ type: taskType },
authorization,
proxy
);
const result = response.result;
this.log(
`Làm nhiệm vụ ${taskTitle.yellow} ${
currentCount + 1
}/${maxCount} thành công | Phần thưởng ${
result.reward.toString().magenta
} | Balance ${result.balance.toString().magenta}`,
"custom"
);
return result;
} catch (error) {
this.log(
`Làm nhiệm vụ ${taskTitle} không thành công: ${error.message}`,
"error"
);
}
}
async getTasks(authorization, proxy) {
try {
const response = await this.makeRequest(
"POST",
`${this.baseURL}/getTasks`,
{},
authorization,
proxy
);
return response.result.data;
} catch (error) {
this.log(`Lỗi lấy danh sách nhiệm vụ: ${error.message}`, "error");
throw error;
}
}
async processTasks(authorization, proxy) {
try {
const tasks = await this.getTasks(authorization, proxy);
const unclaimedTasks = tasks.filter(
(task) =>
!task.is_claimed &&
!["nomis2", "boost", "invite_3_friends"].includes(task.type)
);
if (unclaimedTasks.length === 0) {
this.log("Không còn nhiệm vụ chưa hoàn thành.", "warning");
return;
}
for (const task of unclaimedTasks) {
const remainingCount = task.max_count
? task.max_count - (task.count || 0)
: 1;
for (let i = 0; i < remainingCount; i++) {
await this.completeTask(
authorization,
task.type,
task.title,
i,
remainingCount,
proxy
);
await new Promise((resolve) => setTimeout(resolve, 1000));
}
}
} catch (error) {
this.log(`Lỗi xử lý nhiệm vụ: ${error.message}`, "error");
}
}
async spinWheel(authorization, proxy) {
try {
const response = await this.makeRequest(
"POST",
`${this.baseURL}/wheel/spin`,
{},
authorization,
proxy
);
const result = response.result;
this.log(`Spin thành công: nhận được ${result.reward}`, "success");
this.log(`* Balance : ${result.balance}`);
this.log(`* Toncoin : ${result.toncoin}`);
this.log(`* Notcoin : ${result.notcoin}`);
this.log(`* Tickets : ${result.tickets}`);
return result;
} catch (error) {
this.log(`Lỗi khi spin: ${error.message}`, "error");
throw error;
}
}
async spinAllTickets(authorization, initialTickets, proxy) {
let tickets = initialTickets;
while (tickets > 0) {
try {
const result = await this.spinWheel(authorization, proxy);
tickets = result.tickets;
} catch (error) {
this.log(`Lỗi khi spin: ${error.message}`, "error");
break;
}
await new Promise((resolve) => setTimeout(resolve, 5000));
}
this.log("Đã sử dụng hết tickets.", "warning");
}
async wheelLoad(authorization, proxy) {
try {
const response = await this.makeRequest(
"POST",
`${this.baseURL}/wheel/load`,
{},
authorization,
proxy
);
return response.result;
} catch (error) {
this.log(`Lỗi khi load wheel: ${error.message}`, "error");
throw error;
}
}
async wheelTask(authorization, type, proxy) {
try {
const response = await this.makeRequest(
"POST",
`${this.baseURL}/wheel/task`,
{ type },
authorization,
proxy
);
return response.result;
} catch (error) {
this.log(`Lỗi khi thực hiện nhiệm vụ ${type}: ${error.message}`, "error");
throw error;
}
}
async handleWheelTasks(authorization, proxy) {
try {
let wheelData = await this.wheelLoad(authorization, proxy);
const currentTimestamp = Math.floor(Date.now() / 1000);
if (currentTimestamp > wheelData.tasks.daily) {
const dailyResult = await this.wheelTask(authorization, "daily", proxy);
const nextDaily = DateTime.fromSeconds(
dailyResult.tasks.daily
).toRelative();
this.log(
`Claim daily ticket thành công. Lần claim tiếp theo: ${nextDaily}`,
"success"
);
wheelData = dailyResult;
} else {
const nextDaily = DateTime.fromSeconds(
wheelData.tasks.daily
).toRelative();
this.log(
`Thời gian claim daily ticket tiếp theo: ${nextDaily}`,
"info"
);
}
if (!wheelData.tasks.bird) {
const birdResult = await this.wheelTask(authorization, "bird", proxy);
this.log("Làm nhiệm vụ ticket bird thành công", "success");
wheelData = birdResult;
}
let hourCount = wheelData.tasks.hour.count;
while (
hourCount < 5 &&
currentTimestamp > wheelData.tasks.hour.timestamp
) {
const hourResult = await this.wheelTask(authorization, "hour", proxy);
hourCount = hourResult.tasks.hour.count;
this.log(
`Làm nhiệm vụ hour thành công. Lần thứ ${hourCount}/5`,
"success"
);
wheelData = hourResult;
}
if (
hourCount === 0 &&
currentTimestamp < wheelData.tasks.hour.timestamp
) {
const nextHour = DateTime.fromSeconds(
wheelData.tasks.hour.timestamp
).toRelative();
this.log(
`Thời gian xem video claim ticket tiếp theo: ${nextHour}`,
"info"
);
}
return wheelData;
} catch (error) {
this.log(`Lỗi khi xử lý wheel tasks: ${error.message}`, "error");
}
}
async main() {
const dataFile = "data.txt";
const data = fs
.readFileSync(dataFile, "utf8")
.replace(/\r/g, "")
.split("\n")
.filter(Boolean);
while (true) {
for (let no = 0; no < data.length; no++) {
const authorization = data[no];
const proxy = this.proxies[no] || this.proxies[0];
const firstName = this.extractFirstName(authorization);
try {
let proxyIP = "Unknown";
try {
proxyIP = await this.checkProxyIP(proxy);
} catch (error) {
this.log(
`Không thể kiểm tra IP của proxy: ${error.message}`,
"warning"
);
continue;
}
console.log(
`========== Tài khoản ${
no + 1
} | ${firstName} | ip: ${proxyIP} ==========`.green
);
const userInfo = await this.getMe(authorization, proxy);
this.log(
`Balance: ${userInfo.result.balance.toString().white}`,
"success"
);
this.log(
`Tickets: ${userInfo.result.tickets.toString().white}`,
"success"
);
await this.processTasks(authorization, proxy);
await this.handleWheelTasks(authorization, proxy);
if (userInfo.result.tickets > 0) {
this.log("Bắt đầu spin wheel...", "info");
await this.spinAllTickets(
authorization,
userInfo.result.tickets,
proxy
);
}
} catch (error) {
this.log(`Lỗi xử lý tài khoản ${no + 1}: ${error.message}`, "error");
}
}
await this.waitWithCountdown(60 * 60);
}
}
}
if (require.main === module) {
const agentAPI = new AgentAPI();
agentAPI.main().catch((err) => {
agentAPI.log(err.message, "error");
process.exit(1);
});
}