-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbabydoge.js
484 lines (441 loc) · 15.1 KB
/
babydoge.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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
const fs = require("fs");
const path = require("path");
const axios = require("axios");
const colors = require("colors");
const readline = require("readline");
const { performance } = require("perf_hooks");
class Babydoge {
constructor() {
this.headers = {
Accept: "application/json, text/plain, */*",
"Accept-Encoding": "gzip, deflate, br",
"Accept-Language": "vi-VN,vi;q=0.9,en-US;q=0.8,en;q=0.7",
"Content-Type": "application/x-www-form-urlencoded",
Origin: "https://babydogepawsbot.com",
Referer: "https://babydogepawsbot.com/",
"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"',
"Sec-Fetch-Mode": "cors",
"Sec-Fetch-Site": "same-site",
"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",
};
this.line = "~".repeat(42).white;
}
async http(url, headers, data = null) {
let attempts = 0;
const maxAttempts = 3;
while (attempts < maxAttempts) {
try {
const options = { headers };
let res;
if (data === null) {
res = await axios.get(url, options);
} else {
res = await axios.post(url, data, options);
}
if (typeof res.data !== "object") {
this.log("Không nhận được phản hồi JSON hợp lệ !".red);
attempts++;
await this.sleep(2000);
continue;
}
return res;
} catch (error) {
attempts++;
if (
error.response &&
error.response.data &&
error.response.data.code === 403 &&
error.response.data.message === "requirements not met"
) {
this.log("Requirements not met".yellow);
return { data: error.response.data };
}
this.log(
`Lỗi kết nối (Lần thử ${attempts}/${maxAttempts}): ${error.message}`
.red
);
// console.log(error);
if (attempts < maxAttempts) {
await this.sleep(5000);
} else {
break;
}
}
}
throw new Error("Không thể kết nối sau 3 lần thử");
}
log(msg) {
console.log(`[*] ${msg}`);
}
async dangnhap(tgData) {
const url = "https://backend.babydogepawsbot.com/authorize";
const headers = { ...this.headers };
try {
const res = await this.http(url, headers, tgData);
if (res.data) {
const points_per_tap = res.data.league.points_per_tap;
return { points_per_tap, ...res.data };
} else {
this.log("Đăng nhập thất bại!".red);
return null;
}
} catch (error) {
this.log(`Lỗi rồi: ${error.message}`.red);
return null;
}
}
async daily(access_token) {
const checkUrl = "https://backend.babydogepawsbot.com/getDailyBonuses";
const claimUrl = "https://backend.babydogepawsbot.com/pickDailyBonus";
const headers = { ...this.headers, "X-Api-Key": access_token };
try {
const checkRes = await this.http(checkUrl, headers);
if (checkRes.data && checkRes.data.has_available) {
this.log("Điểm danh hàng ngày có sẵn!".yellow);
const claimRes = await this.http(claimUrl, headers, "");
if (claimRes.data) {
this.log("Điểm danh hàng ngày thành công!".green);
} else {
this.log("Điểm danh hàng ngày thất bại!".red);
}
} else {
this.log("Hôm nay đã điểm danh hàng ngày.".yellow);
}
} catch (error) {
this.log(`Lỗi khi kiểm tra hoặc claim daily bonus: ${error.message}`.red);
}
}
async getTask(access_token) {
const url = "https://backend.babydogepawsbot.com/channels";
const headers = { ...this.headers, "X-Api-Key": access_token };
try {
const res = await this.http(url, headers);
if (res && res.data && res.data.channels) {
const availableChannels = res.data.channels.filter(
(channel) => channel.is_available && channel.type !== "telegram"
);
return availableChannels;
} else {
this.log("Không có nhiệm vụ nào có sẵn.".yellow);
return [];
}
} catch (error) {
this.log(`Lỗi rồi: ${error.message}`.red);
return [];
}
}
async claimTask(access_token, channel) {
const url = "https://backend.babydogepawsbot.com/channels";
const headers = {
...this.headers,
"X-Api-Key": access_token,
"Content-Type": "application/json",
};
const data = JSON.stringify({ channel_id: channel.id });
try {
const res = await this.http(url, headers, data);
if (res && res.data) {
this.log(
`Đang làm nhiệm vụ: ${channel.title.yellow}... Trạng thái: thành công`
);
} else {
this.log(`Lỗi khi nhận phần thưởng cho nhiệm vụ: ${channel.title}`.red);
}
} catch (error) {
this.log(`Lỗi khi nhận phần thưởng: ${error.message}`.red);
}
}
async tapdc(access_token, initialEnergy, points_per_tap) {
const url = "https://backend.babydogepawsbot.com/mine";
const headers = {
...this.headers,
"X-Api-Key": access_token,
"Content-Type": "application/json",
};
let energy = initialEnergy;
try {
while (energy >= 50) {
const randomEnergy = Math.floor(Math.random() * (50 - 10 + 1)) + 10;
let count = Math.floor((energy - randomEnergy) / points_per_tap);
if (count <= 0) {
this.log(
"Năng lượng không đủ để tiếp tục tap...chuyển tài khoản!".yellow
);
break;
}
const data = JSON.stringify({ count });
const res = await this.http(url, headers, data);
if (res.data) {
const {
balance,
mined,
newEnergy,
league,
current_league,
next_league,
} = res.data.mine;
this.log(
`Đã tap ${String(mined).yellow} lần. Balance: ${
String(balance).yellow
} Năng lượng: ${String(newEnergy).yellow}`
);
energy = newEnergy;
if (energy < 50) {
this.log(
"Năng lượng quá thấp để tiếp tục tap...chuyển tài khoản!".yellow
);
break;
}
} else {
this.log("Lỗi rồi, không thể tap!".red);
break;
}
}
} catch (error) {
this.log(`Lỗi rồi: ${error.message}`.red);
}
}
async buyCards(access_token) {
const listCardsUrl = "https://backend.babydogepawsbot.com/cards";
const upgradeUrl = "https://backend.babydogepawsbot.com/cards";
const getMeUrl = "https://backend.babydogepawsbot.com/getMe";
const headers = {
...this.headers,
"X-Api-Key": access_token,
"Content-Type": "application/json",
};
try {
const getMeRes = await this.http(getMeUrl, headers);
let balance = getMeRes.data.balance;
const res = await this.http(listCardsUrl, headers);
if (res.data && res.data.length > 0) {
for (const category of res.data) {
for (const card of category.cards) {
if (balance < card.upgrade_cost) {
this.log(`Số dư không đủ để mua thẻ !`.red);
return;
}
if (card.cur_level === 0 && card.is_available) {
const upgradeData = JSON.stringify({ id: card.id });
const upgradeRes = await this.http(
upgradeUrl,
headers,
upgradeData
);
if (upgradeRes.data) {
balance = upgradeRes.data.balance;
this.log(
`Đang mua thẻ ${card.name.yellow}...Trạng thái: ${
"Thành công".green
} Balance mới: ${String(balance).yellow}`
);
} else {
this.log(
`Đang mua thẻ ${card.name.yellow}...Trạng thái: ${
"Thất bại".red
}`
);
}
}
}
}
} else {
this.log("Không có thẻ mới nào.".yellow);
}
} catch (error) {
this.log(`Lỗi rồi: ${error.message}`.red);
}
}
async upgradeMyCards(access_token, maxUpgradeCost) {
const listCardsUrl = "https://backend.babydogepawsbot.com/cards";
const upgradeUrl = "https://backend.babydogepawsbot.com/cards";
const getMeUrl = "https://backend.babydogepawsbot.com/getMe";
const headers = {
...this.headers,
"X-Api-Key": access_token,
"Content-Type": "application/json",
};
try {
const getMeRes = await this.http(getMeUrl, headers);
let balance = getMeRes.data.balance;
const res = await this.http(listCardsUrl, headers);
if (res.data && res.data.length > 0) {
let allCards = res.data.flatMap((category) => category.cards);
let upgradedThisCycle = new Set();
while (true) {
allCards.sort((a, b) => b.cur_total_farming - a.cur_total_farming);
let upgradedAny = false;
for (const card of allCards) {
if (
!upgradedThisCycle.has(card.id) &&
balance >= card.upgrade_cost &&
card.is_available &&
card.upgrade_cost <= maxUpgradeCost
) {
const upgradeData = JSON.stringify({ id: card.id });
const upgradeRes = await this.http(
upgradeUrl,
headers,
upgradeData
);
if (upgradeRes.data) {
balance = upgradeRes.data.balance;
this.log(
`Đang nâng cấp thẻ ${card.name.yellow}...Trạng thái: ${
"Thành công".green
} Balance mới: ${String(balance).yellow}`
);
upgradedAny = true;
upgradedThisCycle.add(card.id);
card.cur_level += 1;
card.upgrade_cost = upgradeRes.data.next_upgrade_cost;
card.cur_total_farming = upgradeRes.data.cur_total_farming;
} else {
this.log(
`Đang nâng cấp thẻ ${card.name.yellow}...Trạng thái: ${
"Thất bại".red
}`
);
}
break;
} else if (card.upgrade_cost > maxUpgradeCost) {
this.log(
`Không nâng cấp thẻ ${card.name.yellow}: Upgrade cost (${card.upgrade_cost}) vượt quá giới hạn (${maxUpgradeCost})`
.yellow
);
}
}
if (!upgradedAny) {
break;
}
if (upgradedThisCycle.size === allCards.length) {
upgradedThisCycle.clear();
}
}
} else {
this.log("Không có thẻ nào cần nâng cấp.".yellow);
}
} catch (error) {
this.log(`Lỗi khi nâng cấp thẻ: ${error.message}`.red);
}
}
async sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
askQuestion(query) {
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
return new Promise((resolve) =>
rl.question(query, (ans) => {
rl.close();
resolve(ans);
})
);
}
async waitWithCountdown(seconds) {
for (let i = seconds; i >= 0; i--) {
readline.cursorTo(process.stdout, 0);
process.stdout.write(
`===== Đã hoàn thành tất cả tài khoản, chờ ${i} giây để tiếp tục vòng lặp =====`
);
await new Promise((resolve) => setTimeout(resolve, 1000));
}
console.log("");
}
async main() {
const dataFile = path.join(__dirname, "data.txt");
const data = fs
.readFileSync(dataFile, "utf8")
.replace(/\r/g, "")
.split("\n")
.filter(Boolean);
if (data.length <= 0) {
this.log("No accounts added!".red);
process.exit();
}
this.log(
'"Tool được phát triển bởi nhóm tele Airdrop Hunter Siêu Tốc (https://t.me/airdrophuntersieutoc)"'
.yellow
);
this.log("query_id chỉ có hạn 1 ngày, nhớ lấy lại mỗi ngày nhé".magenta);
console.log(this.line);
const buyCards = await this.askQuestion(
"Bạn có muốn mua thẻ mới không? (y/n): "
);
const buyCardsDecision = buyCards.toLowerCase() === "y";
const upgradeMyCards = await this.askQuestion(
"Bạn có muốn nâng cấp thẻ không? (y/n): "
);
const upgradeMyCardsDecision = upgradeMyCards.toLowerCase() === "y";
let maxUpgradeCost = Infinity;
if (upgradeMyCardsDecision) {
const maxCostInput = await this.askQuestion(
"Bạn muốn nâng cấp thẻ có giá trị tối đa bao nhiêu? "
);
maxUpgradeCost = parseInt(maxCostInput, 10);
if (isNaN(maxUpgradeCost) || maxUpgradeCost <= 0) {
this.log(
"Giá trị không hợp lệ. Sẽ sử dụng giá trị mặc định là không giới hạn."
.yellow
);
maxUpgradeCost = Infinity;
}
}
while (true) {
const start = performance.now();
for (const [index, tgData] of data.entries()) {
// const userData = JSON.parse(
// decodeURIComponent(tgData.split("&")[1].split("=")[1])
// );
const loginData = await this.dangnhap(tgData);
if (!loginData) {
this.log("Đăng nhập thất bại, chuyển sang tài khoản tiếp theo.".red);
continue;
}
const name = loginData.first_name + " " + (loginData.last_name || "");
console.log(
`========== Tài khoản ${index + 1}/${data.length} | ${
name.green
} ==========`
);
const { access_token, energy, points_per_tap, max_energy, balance } =
loginData;
this.log("Đăng nhập thành công!".green);
this.log("Balance:".green + ` ${balance}`);
this.log("Năng lượng:".green + ` ${energy}/${max_energy}`);
this.log("Points per tap:".green + ` ${points_per_tap}`);
if (access_token) {
await this.daily(access_token);
const availableChannels = await this.getTask(access_token);
for (const channel of availableChannels) {
await this.claimTask(access_token, channel);
}
if (buyCardsDecision) {
await this.buyCards(access_token);
}
if (upgradeMyCardsDecision) {
await this.upgradeMyCards(access_token, maxUpgradeCost);
}
await this.tapdc(access_token, energy, points_per_tap);
}
await this.sleep(5000);
}
await this.waitWithCountdown(60);
}
}
}
if (require.main === module) {
process.on("SIGINT", () => {
process.exit();
});
new Babydoge().main().catch((error) => {
console.error(error);
process.exit(1);
});
}