/[sudobot]/trunk/src/App.js
ViewVC logotype

Contents of /trunk/src/App.js

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26