7 |
const Database = require("./Database"); |
const Database = require("./Database"); |
8 |
const Logger = require("./Logger"); |
const Logger = require("./Logger"); |
9 |
const SpamFilter = require("./SpamFilter"); |
const SpamFilter = require("./SpamFilter"); |
10 |
|
const server = require("./server"); |
11 |
|
const AntiRaid = require("./AntiRaid"); |
12 |
|
|
13 |
class App { |
class App { |
14 |
constructor(rootdir) { |
constructor(rootdir) { |
15 |
global.app = App.app = this; |
global.app = App.app = this; |
16 |
this.rootdir = rootdir; |
this.rootdir = rootdir; |
17 |
this.loadConfig(); |
this.loadConfig(); |
18 |
|
this.env = process.env; |
19 |
|
|
20 |
this.client = new Client({ |
this.client = new Client({ |
21 |
partials: ["CHANNEL"], |
partials: ["CHANNEL"], |
23 |
Intents.FLAGS.GUILDS, |
Intents.FLAGS.GUILDS, |
24 |
Intents.FLAGS.GUILD_MESSAGES, |
Intents.FLAGS.GUILD_MESSAGES, |
25 |
Intents.FLAGS.DIRECT_MESSAGES, |
Intents.FLAGS.DIRECT_MESSAGES, |
26 |
Intents.FLAGS.DIRECT_MESSAGE_TYPING |
Intents.FLAGS.DIRECT_MESSAGE_TYPING, |
27 |
|
Intents.FLAGS.GUILD_PRESENCES, |
28 |
|
Intents.FLAGS.GUILD_MEMBERS, |
29 |
] |
] |
30 |
}); |
}); |
31 |
|
|
34 |
this.commandManager = new CommandManager(path.resolve(__dirname, rootdir, "commands")); |
this.commandManager = new CommandManager(path.resolve(__dirname, rootdir, "commands")); |
35 |
this.logger = new Logger(); |
this.logger = new Logger(); |
36 |
this.spamFilter = new SpamFilter(); |
this.spamFilter = new SpamFilter(); |
37 |
|
this.antiRaid = new AntiRaid(); |
38 |
this.boot(); |
this.boot(); |
39 |
} |
} |
40 |
|
|
41 |
boot() { |
boot() { |
42 |
this.on('ready', () => { |
this.on('ready', () => { |
43 |
console.log("Logged in as " + this.client.user.tag); |
console.log("Logged in as " + this.client.user.tag); |
44 |
|
server(); |
45 |
}); |
}); |
46 |
|
|
47 |
this.on('messageCreate', async (message) => { |
this.on('messageCreate', async (message) => { |
51 |
|
|
52 |
await (this.msg = message); |
await (this.msg = message); |
53 |
|
|
54 |
//await this.spamFilter.start(message); |
// await this.spamFilter.start(message); |
55 |
|
|
56 |
await this.commandManager.setMessage(message); |
await this.commandManager.setMessage(message); |
57 |
|
|
102 |
delete this.config.props[guild.id]; |
delete this.config.props[guild.id]; |
103 |
this.config.write(); |
this.config.write(); |
104 |
}) |
}) |
105 |
|
|
106 |
|
this.on('guildMemberAdd', async (member) => { |
107 |
|
console.log('Joined'); |
108 |
|
await this.antiRaid.start(member); |
109 |
|
}); |
110 |
} |
} |
111 |
|
|
112 |
loadConfig() { |
loadConfig() { |
127 |
run() { |
run() { |
128 |
this.client.login(process.env.TOKEN); |
this.client.login(process.env.TOKEN); |
129 |
} |
} |
130 |
|
|
131 |
|
tempFileCreate(name) { |
132 |
|
const fullname = path.join(__dirname, '..', 'tmp', name); |
133 |
|
const file = fs.createWriteStream(fullname); |
134 |
|
|
135 |
|
return { |
136 |
|
name: fullname, |
137 |
|
file |
138 |
|
}; |
139 |
|
} |
140 |
} |
} |
141 |
|
|
142 |
module.exports = App; |
module.exports = App; |