-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathfunction.js
148 lines (127 loc) · 2.91 KB
/
function.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
const config = require("./config.js");
const {
readFile,
writeFile,
readdir,
lstat,
access,
constants,
} = require("fs/promises");
class Help {
constructor() {
this.isOkay = true;
}
async setup() {
this.oldDb = await this.getDB();
this.currentDb = this.getConfig();
console.log(">>> DB Loaded".green);
}
wait(seconds) {
let time = this.getRand(seconds, seconds + 5);
return new Promise((resolve) => setTimeout(resolve, time * 1000));
}
log(msg) {
return console.log(`>>> [${new Date().toLocaleString()}] : ${msg}.`.yellow);
}
warn(msg) {
return console.log(`>>> [${new Date().toLocaleString()}] : ${msg}.`.red);
}
async getZoo(str) {
let zoo = [];
let s1 = str.split("found:")[1];
if (!s1) return zoo;
let s2 = s1.split("\n")[0].split(" ");
if (!s2) return zoo;
zoo.push(...s2);
let s3 = s1.split("\n")[1].split("<");
if (!s3) return zoo;
/* for (const e of s3) {
let i = e.match(/(?<=:)([^:\s]+)(?=:)/g);
console.log(i);
/*if (i[0] && i[0]?.trim()) {
zoo.push(i[0].trim());
}
}*/
return zoo;
}
async save(key, value, add = false) {
if (key === "cash") {
if (!this.oldDb.cash || !this.currentDb.cash) {
this.oldDb.cash = 0;
this.currentDb.cash = 0;
}
}
if (add) {
this.oldDb[key] += value;
this.currentDb[key] += value;
} else {
this.oldDb[key] = value;
this.currentDb[key] = value;
}
await this.write();
return {
old: this.oldDb,
current: this.currentDb,
};
}
async write(db) {
return await writeFile(config.data, JSON.stringify(db ?? this.oldDb)).catch(
(e) => null
);
}
async getDB() {
let db = await readFile(config.data).catch((e) => null);
if (!db) {
db = await writeFile(config.data, JSON.stringify(this.getConfig())).catch(
(e) => null
);
db = this.getConfig();
} else {
db = db.toString();
}
return typeof db === "object" ? db : JSON.parse(db);
}
extractEmoji(str) {
let s = str.split(" ");
let res = [];
for (const e of s) {
res.push({
name: e.split(":")[1],
id: e.split("`")[1],
});
}
return res.filter((c) => c.name && c.id);
}
listByRank(list) {
let res = [];
let ress = [];
let ranks = ["c", "u", "r", "e", "m", "l", "g", "f"].reverse();
for (const rank of ranks) {
let items = list.filter((c) => c.name.split("")[0] === rank);
if (items.length > 0) {
ress.push(...items);
res.push({
rank,
items,
});
}
}
return {
items: res,
list: ress,
};
}
getRand(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
getConfig() {
return {
cmds: 0,
cash: 0,
zoo: {},
gem: [],
daily: 0,
};
}
}
module.exports = Help;