forked from Sketchware-Pro/SWBot-Node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.js
More file actions
143 lines (122 loc) · 4 KB
/
main.js
File metadata and controls
143 lines (122 loc) · 4 KB
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
require('dotenv').config()
const { Client, Collection, Intents } = require("discord.js");
const botChannelId = process.env['botChannelId'];
const { readdirSync } = require("fs");
const { join } = require("path");
const { escapeRegex, snipeDB } = require("./utils");
const guildID = process.env['guildID']
const client = new Client({
restTimeOffset: 0,
intents: new Intents(32767) //Intents.ALL , yea im lazy 😔
});
const TOKEN = "joe mama"
client.login(TOKEN);
client.commands = new Collection();
client.functions = new Collection();
client.autoresponder = require(join(__dirname, "autoresponse", "autoresponse.js"));
/**
* Client Events
*/
client.on("ready", () => {
console.log(`${client.user.username} ready!`);
client.user.setActivity("with your life | +help");
updateMembers(client.guilds.cache.get(guildID))
});
/**
* Import all commands
*/
const commandFiles = readdirSync(join(__dirname, "commands")).filter((file) => file.endsWith(".js"));
for (const file of commandFiles) {
const command = require(join(__dirname, "commands", `${file}`));
client.commands.set(command.name, command);
}
/**
* Import all functions
*/
const funcFiles = readdirSync(join(__dirname, "functions")).filter((file) => file.endsWith(".js"));
for (const file of funcFiles) {
const funct = require(join(__dirname, "functions", `${file}`));
client.functions.set(funct.name.toLowerCase(), funct);
}
/**
* Members Counter
*/
const counterChannelId = process.env['memberCounterChannelId']
const updateMembers = (guild) => {
client.channels.fetch(counterChannelId).then(channel => {
channel.setName(`${guild.memberCount.toLocaleString()}-members`) //Allowed only 2 times every 10 min 😔
})
}
client.on('guildMemberAdd', (member) => updateMembers(member.guild))
client.on('guildMemberRemove', (member) => updateMembers(member.guild))
/**
* Store Deleted Messages for Expo.. Umm, Sniping Purposes
*/
client.on('messageDelete', (message) => {
// content is null or deleted embed
if (message.partial ||
(message.embeds.length && !message.content)) return;
if (message.author.bot) return; // Ignore bots deletion
let snipeData = new Map();
snipeData.set("snipe" + [message.channel.id],
{
author: message.author,
content: message.content,
createdAt: message.createdTimestamp,
image: message.attachments.first()
? message.attachments.first().proxyURL
: null
}
);
snipeDB.push(snipeData);
});
/**
* Handle & Execute Messages
*/
client.on("messageCreate", async (message) => {
if (message.author.id == client.user.id) return;
if (!message.guild) return;
if (message.webhookId) return;
/**
* Call autoresponse to maatch the message
*/
client.autoresponder.execute(message)
/**
* Looping through all the functions
*/
client.functions.forEach(func => {
func.execute(message);
});
/**
* Begin parsing if message is command
*/
//This basically means prefix is +
const prefixRegex = new RegExp(`^(<@!?${client.user.id}>|${escapeRegex("+")})\\s*`);
if (!prefixRegex.test(message.content)) return;
//TODO: Understand what this part does
const [, matchedPrefix] = message.content.match(prefixRegex);
const args = message.content.slice(matchedPrefix.length).trim().split(/ +/);
const commandName = args.shift().toLowerCase();
const command =
client.commands.get(commandName) ||
client.commands.find((cmd) => cmd.aliases && cmd.aliases.includes(commandName));
if (command) {
if (!command.anychannel && message.channel.id != botChannelId) {
if (!false) return message.reply(`Use <#${botChannelId}> else Nub`);
return message.reply(`Use <#${botChannelId}> else Nub`).then(msg => {
msg.delete({
timeout: 12000
});
});
}
return command.execute(message, args);
}
});
/*
* Prevents bot from crashing if exception occurs
*/
process.on('uncaughtException', function(error) {
console.log(error.stack);
});
//KeepAlive (Removing since vps)
//require("http").createServer((_, res) => res.end("Alive")).listen(8080)