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