1 |
const { Client, Intents } = require("discord.js"); |
2 |
const { config } = require("dotenv"); |
3 |
const CommandManager = require("./CommandManager"); |
4 |
const path = require("path"); |
5 |
const fs = require("fs"); |
6 |
const Config = require("./Config"); |
7 |
const Database = require("./Database"); |
8 |
const Logger = require("./Logger"); |
9 |
const SpamFilter = require("./SpamFilter"); |
10 |
const server = require("./server"); |
11 |
const AntiRaid = require("./AntiRaid"); |
12 |
const MessageFilter = require("./MessageFilter"); |
13 |
|
14 |
class App { |
15 |
constructor(rootdir) { |
16 |
global.app = App.app = this; |
17 |
this.rootdir = rootdir; |
18 |
this.loadConfig(); |
19 |
this.env = process.env; |
20 |
|
21 |
this.client = new Client({ |
22 |
partials: ["CHANNEL"], |
23 |
intents: [ |
24 |
Intents.FLAGS.GUILDS, |
25 |
Intents.FLAGS.GUILD_MESSAGES, |
26 |
Intents.FLAGS.DIRECT_MESSAGES, |
27 |
Intents.FLAGS.DIRECT_MESSAGE_TYPING, |
28 |
Intents.FLAGS.GUILD_PRESENCES, |
29 |
Intents.FLAGS.GUILD_MEMBERS, |
30 |
] |
31 |
}); |
32 |
|
33 |
this.config = new Config(); |
34 |
this.db = new Database(path.resolve(__dirname, '..', 'database.db')); |
35 |
this.commandManager = new CommandManager(path.resolve(__dirname, rootdir, "commands")); |
36 |
this.logger = new Logger(); |
37 |
this.spamFilter = new SpamFilter(); |
38 |
this.antiRaid = new AntiRaid(); |
39 |
this.messageFilter = new MessageFilter(); |
40 |
this.boot(); |
41 |
} |
42 |
|
43 |
boot() { |
44 |
this.on('ready', () => { |
45 |
console.log("Logged in as " + this.client.user.tag); |
46 |
server(); |
47 |
}); |
48 |
|
49 |
this.on('messageCreate', async (message) => { |
50 |
if (message.author.bot || !message.guild || message.channel.type == 'dm') { |
51 |
return; |
52 |
} |
53 |
|
54 |
await (this.msg = message); |
55 |
|
56 |
await this.spamFilter.start(message); |
57 |
await this.messageFilter.start(message, this.commandManager); |
58 |
|
59 |
await this.commandManager.setMessage(message); |
60 |
|
61 |
const valid = await this.commandManager.valid(); |
62 |
const has = await this.commandManager.has(); |
63 |
const snippet = await this.commandManager.snippet(); |
64 |
const allowed = await this.commandManager.verify(); |
65 |
|
66 |
if (valid && has && allowed) { |
67 |
await this.exec(); |
68 |
} |
69 |
else if (valid && snippet !== undefined) { |
70 |
await message.channel.send({ |
71 |
content: snippet.content |
72 |
}); |
73 |
} |
74 |
else if (valid && !has) { |
75 |
await this.commandManager.notFound(); |
76 |
} |
77 |
else if (valid && has && !allowed) { |
78 |
await this.commandManager.notAllowed(); |
79 |
} |
80 |
}); |
81 |
|
82 |
this.on("messageUpdate", async (oldMessage, newMessage) => { |
83 |
if (oldMessage.author.bot) |
84 |
return; |
85 |
|
86 |
await this.logger.logEdit(oldMessage, newMessage); |
87 |
}); |
88 |
|
89 |
this.on("messageDelete", async (message) => { |
90 |
if (message.author.bot) |
91 |
return; |
92 |
|
93 |
await this.logger.logDelete(message); |
94 |
}); |
95 |
|
96 |
this.on("guildCreate", guild => { |
97 |
console.log("Joined a new guild: " + guild.name); |
98 |
|
99 |
this.config.props[guild.id] = { |
100 |
prefix: "-", |
101 |
debug: false, |
102 |
}; |
103 |
|
104 |
this.config.write(); |
105 |
}) |
106 |
|
107 |
this.on("guildDelete", guild => { |
108 |
console.log("Left a guild: " + guild.name); |
109 |
delete this.config.props[guild.id]; |
110 |
this.config.write(); |
111 |
}) |
112 |
|
113 |
this.on('guildMemberAdd', async (member) => { |
114 |
console.log('Joined'); |
115 |
await this.antiRaid.start(member); |
116 |
}); |
117 |
} |
118 |
|
119 |
loadConfig() { |
120 |
if (fs.existsSync(path.join(__dirname, this.rootdir, '.env'))) { |
121 |
console.log("Loading .env file"); |
122 |
config(); |
123 |
} |
124 |
} |
125 |
|
126 |
on(event, handler) { |
127 |
this.client.on(event, handler); |
128 |
} |
129 |
|
130 |
exec() { |
131 |
this.commandManager.exec(); |
132 |
} |
133 |
|
134 |
run() { |
135 |
this.client.login(process.env.TOKEN); |
136 |
} |
137 |
|
138 |
tempFileCreate(name) { |
139 |
const fullname = path.join(__dirname, '..', 'tmp', name); |
140 |
const file = fs.createWriteStream(fullname); |
141 |
|
142 |
return { |
143 |
name: fullname, |
144 |
file |
145 |
}; |
146 |
} |
147 |
} |
148 |
|
149 |
module.exports = App; |