forked from andronedev/disdata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
332 lines (326 loc) · 9.58 KB
/
index.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
const NodeCache = require("node-cache");
const myCache = new NodeCache( { stdTTL: 600, checkperiod: 60 } );
const Discord = require("discord.js-light");
const CHANNELS = ["index", "data", "files", "settings", "chat"];
function atob(str) {
const buff = Buffer.from(str);
return buff.toString("base64");
}
function btoa(str) {
const buff = Buffer.from(str, "base64");
return buff.toString("utf8");
}
/**
* Disdata
* @example
* const Disdata = require('disdata');
* async function main(){
* const db = new Disdata("NzE3NzI2Njgz.x.x.x.ClUADtk")
* await db.login()
* await db.useDB("test")
* // console.log(await db.inviteDB())
* await db.set("hello","World")
* console.log("Hello =>"+await db.get("hello"))
* }
*
*/
class Disdata {
/*
* @param {string} {token} - Bot Token
* @param {string=} {dbname} - DB name
*/
constructor(token, dbname = null) {
(this.token = token), (this.dbname = dbname);
Disdata.channels = {};
}
/**
* @summary Login with the Discord bot Token
* @param {string=} BotToken - Bot token
* @return {Promise}
*/
login(BotToken = this.token) {
return new Promise((resolve, reject) => {
Disdata.DisClient = new Discord.Client({
cacheGuilds: true,
cacheChannels: true,
cacheOverwrites: false,
cacheRoles: false,
cacheEmojis: false,
cachePresences: false,
});
Disdata.DisClient.login(BotToken).then(resolve(true)).catch(reject);
});
}
/**
* @summary Create a new DB
* @param {string} [name] - name of db
* @return {Promise}
*/
newDB(name = this.dbname) {
return new Promise((resolve, reject) => {
Disdata.DisClient.guilds
.create(name, {
channels: [
{ name: "index" },
{ name: "data" },
{ name: "files" },
{ name: "settings" },
{ name: "chat" },
],
})
.then(resolve)
.catch(reject);
});
}
/**
* @summary Use a DB
* @param {string} [name] - Name of the DB
* @param {boolean} [createIfNotExist=true] - create database if note exist
* @return {Promise}
*/
useDB(name = this.dbname, createIfNotExist = true) {
var found = false;
return new Promise(async (resolve, reject) => {
await Disdata.DisClient.guilds.fetch().then(async (guilds) => {
await Promise.all(
guilds.map(async (guild) => {
if (guild.name == name && !found) {
found = true;
Disdata.currentDB = guild.name;
Disdata.currentDBGuild = guild;
const channels = await guild.channels.fetch();
// console.log(channels)
await Promise.all(
channels.map(async (c) => {
if (CHANNELS.includes(c.name)) {
Disdata.channels[c.name] = c;
//console.log(c.name)
}
// console.log(c.name)
})
);
return resolve();
}
})
);
});
if (createIfNotExist && !found) {
// create and use this DB if not exist
console.log("new db");
this.newDB(name)
.then(() => {
this.useDB(name).then(resolve).catch(reject);
})
.catch(reject);
}
});
}
/**
* @summary Put the data to a key
* @param {string} key
* @param {string} data - (use JSON.stringify for object)
* @param {boolean} editIfAlredyExist - edit key if already used
* @return {Promise}
*/
set(key, data, editIfAlredyExist = true) {
return new Promise(async (resolve, reject) => {
if (!data) {
console.log("Data invalid");
reject(false);
}
if (typeof key != "string" || !key || !key.search(/[^a-zA-Z]+/g)) {
console.log("Key invalid");
reject(false);
}
let exists = await this.has(key);
if (exists) {
if (editIfAlredyExist) {
myCache.del(key);
return this.edit(key, data).then(resolve).catch(reject);
}
return reject("Use edit for alredy stored data, or delete it");
}
myCache.set(key, data);
// console.log(Disdata.channels["data"])
const content = atob(data) + ":" + Date.now().toString();
//console.log(content);
Disdata.channels["data"]
.send(content)
.then((msg) => {
const index =
key + ":" + msg.id.toString() + ":" + Date.now().toString();
Disdata.channels["index"]
.send(index)
.then(() => {
resolve();
})
.catch(reject);
})
.catch(reject);
});
}
/**
* @summary Modify the data of a key
* @param {string} key
* @param {string} data - new data (use JSON.stringify for object)
* @return {Promise}
*/
edit(key, data) {
return new Promise(async (resolve, reject) => {
if (!data) {
console.log("Data invalid");
reject(false);
}
if (typeof key != "string" || !key || !key.search(/[^a-zA-Z]+/g)) {
console.log("Key invalid");
reject(false);
}
let exists = await this.has(key);
if (!exists) {
console.log("data not exist");
reject(false);
}
// console.log(Disdata.channels["data"])
myCache.set(key, data);
const content = atob(data) + ":" + Date.now().toString();
Disdata.channels["index"].messages
.fetch({ limit: 100 })
.then((messages) => {
//Iterate through the messages here with the variable "messages".
messages.forEach((message) => {
if (message.content.split(":")[0] === key) {
Disdata.channels["data"].messages
.fetch(message.content.split(":")[1])
.then((msg) => {
msg.edit(content);
resolve();
})
.catch(reject);
}
});
})
.catch(reject);
});
}
/**
* @summary Get data of a key
* @param {string} key
* @return {Promise<String>} - Data of this key
*/
get(key) {
return new Promise((resolve, reject) => {
if (typeof key != "string" || !key || !key.search(/[^a-zA-Z]+/g)) {
console.log("Key invalid");
reject(false);
}
if (myCache.get(key) != undefined) {
resolve(myCache.get(key));
}
// console.log(Disdata.channels["data"])
Disdata.channels["index"].messages
.fetch({ limit: 100 })
.then((messages) => {
//Iterate through the messages here with the variable "messages".
messages.forEach((message) => {
if (message.content.split(":")[0] === key) {
Disdata.channels["data"].messages
.fetch(message.content.split(":")[1])
.then((msg) => {
resolve(btoa(msg.content));
myCache.set(key, btoa(msg.content));
});
}
});
});
});
}
/**
* @summary Check if a key exist
* @param {string} key
* @return {Promise<Boolean>} - Boolean if key exist
*/
has(key) {
return new Promise((resolve, reject) => {
if (typeof key != "string" || !key || !key.search(/[^a-zA-Z]+/g)) {
console.log("Key invalid");
reject(false);
}
if (myCache.has(key)) {
resolve(true);
}
// console.log(Disdata.channels["data"])
Disdata.channels["index"].messages
.fetch({ limit: 100 })
.then((messages) => {
// console.log(`Received ${messages.size} messages`);
//Iterate through the messages here with the variable "messages".
var found = false;
messages.map((message) => {
if (message.content.split(":")[0] === key) {
// console.log(message.content.split(":")[0]);
found = true;
}
});
//console.log(found);
resolve(found);
});
});
}
/**
* @summary Delete a key
* @param {string} key
* @return {Promise}
*/
delete(key) {
return new Promise((resolve, reject) => {
if (typeof key != "string" || !key || !key.search(/[^a-zA-Z]+/g)) {
console.log("Key invalid");
reject();
}
myCache.del(key);
// console.log(Disdata.channels["data"])
Disdata.channels["index"].messages
.fetch({ limit: 100 })
.then((messages) => {
//Iterate through the messages here with the variable "messages".
messages.map((message) => {
if (message.content.split(":")[0] === key) {
message.delete();
setImmediate(() => {
Disdata.channels["data"].messages
.fetch(message.content.split(":")[1])
.then((msg) => {
msg.delete();
});
resolve();
});
}
});
});
});
}
/**
* @summary Get a invite link of a guild Discord (guild currently used for this DB)
* @return {Promise<String>} - URL invitation Discord
*/
inviteDB() {
return new Promise((resolve, reject) => {
Disdata.channels["chat"]
.createInvite({ maxAge: 0, unique: true, reason: "" })
.then((Invite) => {
resolve(Invite.url);
})
.catch(reject);
});
}
/**
* @summary Get cache stats
* @return {Promise<String>} - Cache stats
*/
stats() {
return new Promise((resolve, reject) => {
resolve(JSON.stringify(myCache.getStats()));
});
}
}
module.exports = Disdata;