-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
378 lines (319 loc) · 15.4 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
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
const Command = require("./Command");
const mojang = require('mojang-api');
const {JSDOM} = require("jsdom");
const { window } = new JSDOM();
const $ = require('jquery')(window);
const Discord = require('discord.js');
const DiscordClient = new Discord.Client();
const token = process.argv[2];
const MongoClient = require('mongodb').MongoClient;
var ip = "66.235.174.205:25580";
var prefix;
var helpText =
"General:\n" +
"- %status - lists all players connected to the server\n" +
"- %ip - returns the server's IP address\n" +
"- %motd - returns the server's message of the day\n" +
"- %whois [name] - returns the discord tag of a Minecraft player provided they have been registered on any server \n" +
"\n" +
"Administrative:\n" +
"- %setip [ip] - changes the server's ip address (You must set this value before using any commands that require a server to be set) \n" +
"- %setprefix [prefix] - changes the bot's prefix for commands (cannot be $)";
//MongoDB
const uri = process.argv[3];
var DirtDB;
const mongoClient = new MongoClient(uri, { useNewUrlParser: true, useUnifiedTopology: true });
mongoClient.close();
mongoClient.connect( function(err, db) {
if (err) throw err;
DirtDB = mongoClient.db("DirtDB");
});
//Commands
const helpCommand = new Command("help", function(msg){
return new Promise(function (resolve) {
msg.author.createDM().then(DM => msg.author.send(helpText).then(m => resolve("HELP command SUCCESS: Sent help message to " + msg.author.tag + '(' + msg.author.id + ")")));
})
});
const statusCommand = new Command("status", function(msg){
return new Promise(function (resolve) {
$.getJSON('https:/api.mcsrvstat.us/2/' + ip, function (status) {
if (status === null || status === undefined){
msg.reply("Could not connect to Minecraft API");
resolve("STATUS command FAILED: could not connect to API");
}else if(status.online === false){
msg.reply("The server is currently offline :x:. Please refer to any announcements regarding the status of the server");
resolve("STATUS command SUCCESS: OFFLINE");
} else {
//Show a list of players
var playerList;
if (status.players.online > 1) {
playerList = status.players.online + " players connected: ";
} else if (status.players.online === 1) {
playerList = status.players.online + " player connected: ";
} else {
playerList = "0 players connected "
}
$.each(status.players.list, function (index, player) {
playerList += player + ", ";
});
//Show a list of plugins
/*var pluginListRaw = status.plugins.names;
var pluginListClean = "";
for (let x in pluginListRaw){
pluginListClean += x + " ";
}
*/
msg.reply("The server is ONLINE :white_check_mark: running version " + status.version + " with " + playerList.substring(0, playerList.length - 2));
resolve("STATUS command SUCCESS: ONLINE, Version: " + status.version + ", Players: " + playerList.substring(0, playerList.length - 2));
}
});
})
});
const setServerIPCommand = new Command("setip", function (msg) {
return new Promise(function (resolve) {
if (msg.content.indexOf(" ") === -1) {
msg.reply("Missing argument");
resolve('SEIP command FAILED: missing argument');
} else if (msg.member.roles.find(r => r.name === 'Owner' || msg.member.roles.find(r => r.name === 'Moderator')) || msg.member.roles.find(r => r.name === 'Admins')) {
var newIP = msg.content.split(" ")[1];
this.ip = newIP;
DirtDB.collection("Settings").findOne({serverid: msg.guild.id}, function (err, result) {
console.log(result);
result.ip = newIP;
DirtDB.collection('Settings').replaceOne({serverid: msg.guild.id}, result);
msg.reply("server IP set to " + newIP);
resolve("SETIP command SUCCESS: IP: " + newIP);
});
} else {
msg.reply("You lack the required permissions to execute this command");
resolve("SETIP command FAILED: insufficient permissions");
}
})
});
const serverIPCommand = new Command("ip", function (msg){
return new Promise(function (resolve) {
msg[0].reply(msg[1]);
resolve("IP command SUCCESS: " + msg[1]);
})
});
const motdCommand = new Command("motd", function(msg){
return new Promise(function (resolve) {
$.getJSON('https:/api.mcsrvstat.us/2/66.235.174.205:25580', function(status) {
if (status === null || status === undefined){
msg.reply("Could not connect to Minecraft API");
resolve("MOTD command FAILED: could not connect to API");
} else if (status.online === false){
msg.reply("The server is currently offline :x:. Please refer to any announcements regarding the status of the server");
resolve("MOTD command FAILED: server offline");
} else if (status.motd.clean[1] === undefined){
msg.reply(status.motd.clean[0]);
resolve("MOTD command SUCCESS: " + status.motd.clean[0]);
} else {
msg.reply(status.motd.clean[0] + " " + status.motd.clean[1]);
resolve("MOTD command SUCCESS: " + status.motd.clean[0] + " " + status.motd.clean[1]);
}
});
});
});
const setPrefixCommand = new Command('setprefix', function (msg) {
return new Promise(function (resolve) {
if (msg.content.indexOf(" ") === -1){
msg.reply("Missing argument");
resolve("SETPREFIX command FAILED: missing argument");
} else if (msg.member.roles.find(r => r.name === 'Owner' || msg.member.roles.find(r => r.name === 'Moderator')) || msg.member.roles.find(r => r.name === 'Admins')){
var newPrefix = msg.content.split(" ")[1];
this.prefix = newPrefix;
DirtDB.collection("Settings").findOne({serverid: msg.guild.id}, function (err, result) {
if (err) console.log("SETPREFIX command FAILED: could not find server");
result.prefix = newPrefix;
DirtDB.collection('Settings').replaceOne({serverid: msg.guild.id}, result, function(err, result){
if (err) console.log("SETPREFIX command FAILED: could not set prefix");
msg.reply("MineBot's prefix has been changed to " + newPrefix);
resolve("SETPREFIX command SUCCESS: changed prefix to " + newPrefix);
});
})
} else {
msg.reply("You lack the required permissions to execute this command");
resolve("SETPREFIX command FAILED: insufficient permissions");
}
})
});
const whoIsCommand = new Command('whois', function (msg) {
return new Promise(function (resolve) {
if (msg.content.indexOf(" ") === -1){
msg.reply("Missing argument");
resolve("WHOIS command FAILED: missing argument");
} else try {
mojang.nameToUuid(msg.content.split(" ")[1], function (err, result) {
if (result === null || result === undefined || result.length < 1){
msg.reply("Player does not exist");
resolve("WHOIS command FAILED: player does not exist")
} else {
var resolveVal = "Player found: Username: " + result[0].name + ", UUID: " + result[0].id;
DirtDB.collection('Players').findOne({uuid: result[0].id}, function (err, result) {
if (err){
resolveVal += '\n' + ("WHOIS command FAILED: could not contact MongoDB");
} else if (result === null || result === undefined){
msg.reply("Specified Player has not been registered)");
resolveVal += '\n' + ("WHOIS command FAILED: player has not been registered");
} else {
var discordID = result.discordid;
DiscordClient.fetchUser(discordID).then(r => msg.reply(r.tag));
resolveVal += '\n' + ("WHOIS command SUCCESS: ID: " + discordID);
//IF MENTIONS
/*
console.log("Discord ID: " + discordID);
msg.reply("<@" + discordID + ">").then(sent => console.log(sent.mentions.users.array()[0].tag));
*/
}
});
resolve(resolveVal);
}
});
} catch (err){
msg.reply("Invalid name (Misspelled or not registered)");
resolve("WHOIS command FAILED: Invalid name");
}
})
});
const registerCommand = new Command("register", function (msg) {
return new Promise(function (resolve) {
DirtDB.collection("Players").findOne({discordid: msg.author.id}, function (err, result) {
if (result === null){
mojang.nameToUuid(msg.content.split(" ")[1], function(err, result){
if (result === null || result === undefined || result.length < 1){
msg.reply("Player does not exist, (Possible Misstype)");
resolve("REGISTER command FAILED: player does not exist")
} else {
console.log(result[0]);
DirtDB.collection("Players").insertOne({
uuid: result[0].id,
discordid: msg.author.id
}).then(function () {
msg.reply("Your name has been successfully registered. If this was a mistake please contact this Bot's author Panda#4724");
resolve("REGISTER command: " + msg.content.split(" ")[1] + " registered to " + msg.author.tag);
})
}
});
} else {
msg.reply('Your name has already been registered');
resolve("REGISTER command FAILED: already registered, deleted message");
}
});
});
});
//End of Commands
var started = false;
function setPresence() {
DiscordClient.user.setActivity(' Made By MaprilApril', {type: 'LISTENING'});
}
async function sweepMessages() {
console.log("PERFORMING ROUTINE MESSAGE CLEANING");
Array.from(DiscordClient.channels.values()).forEach(function (channel, index, ar1) {
if (channel.type === 'text') {
async function f() {
return new Promise(function (resolve) {
var count = 0;
channel.fetchMessages().then(function (messages) {
messages.forEach(function (msg, index, ar2) {
if (msg.author === DiscordClient.user) {
console.log("Deleted message: " + msg.content);
msg.delete();
count++;
}
});
resolve(count);
});
})
}
f().then(function (a) {
console.log(a + " messages deleted")
})
}
});
}
//Startup
DiscordClient.on('ready', () => {
setInterval(sweepMessages, 600000);
started = true;
console.log(`Logged in as ${DiscordClient.user.tag}!`);
setPresence();
//console.log("Removed " + DiscordClient.sweepMessages(1) + " messages");
setInterval(function () {console.log("Removed " + DiscordClient.sweepMessages(lifetime = Number(600)) + " messages");}, 600000);
console.log();
});
DiscordClient.on('guildCreate', guild =>{
DirtDB.collection("Settings").insertOne({serverid: guild.id, prefix: '%', serverip: ''}, function () {
console.log("Added Guild: " + guild.id() + " to DB");
});
console.log();
});
//Message Received
DiscordClient.on('message', msg => {
//Check for commands and prevent response to bots
if(!msg.author.bot){
console.log("Message Recieved: Author: " + msg.author.id + ", Guild: " + msg.guild.id);
//Connect to Mongo and setup ip and prefix
DirtDB.collection("Settings").findOne({serverid: msg.guild.id}, function (err, result) {
if (err){
console.log("could not find server, aborting command");
} else {
prefix = result.prefix;
ip = result.ip;
console.log("Guild Prefix: " + prefix + ', Server IP: ' + ip);
//Register
if (msg.channel.id === "610608225246511131" && registerCommand.getRegex(prefix).test(msg.content)) {
console.log("REGISTER command called");
registerCommand.onCall(msg)
//Help
} else if (helpCommand.getRegex(prefix).test(msg.content)) {
console.log("HELP command called");
helpCommand.onCall(msg);
//Players
} else if (statusCommand.getRegex(prefix).test(msg.content)) {
console.log("STATUS command called");
statusCommand.onCall(msg);
//Set Server IP
} else if (setServerIPCommand.getRegex(prefix).test(msg.content)) {
console.log("SETIP command called");
setServerIPCommand.onCall(msg);
//ServerIP
} else if (serverIPCommand.getRegex(prefix).test(msg.content)) {
console.log("SERVERIP command called");
serverIPCommand.onCall([msg, ip]);
//MOTD
} else if (motdCommand.getRegex(prefix).test(msg.content)) {
console.log("MOTD command called");
motdCommand.onCall(msg);
//Set Prefix
} else if (setPrefixCommand.getRegex(prefix).test(msg.content)) {
console.log("SETPREFIX command called");
setPrefixCommand.onCall(msg);
//Force Quit
} else if (msg.author.id === "183958085763727360" && msg.content === "!@#forcequit") {
console.log("FORCE QUIT by owner");
mongoClient.close(function () {
process.exit();
});
//Who Is
} else if (whoIsCommand.getRegex(prefix).test(msg.content)) {
console.log("WHOIS command called");
whoIsCommand.onCall(msg);
//Invalid command
} else if (msg.content.substring(0, 1) === prefix) {
msg.reply("Invalid command (Check for misspellings or missing argument)");
console.log("COMMAND INVALID\n")
} else {
console.log("NO COMMAND\n");
}
}
})
}
});
DiscordClient.login(token);
process.on('SIGINT', function() {
console.log("Caught interrupt signal");
mongoClient.close(true, function () {
process.exit();
});
});