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

Annotation of /trunk/src/App.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 22 - (hide annotations)
Mon Jul 29 17:28:15 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: text/javascript
File size: 4417 byte(s)
Added word and invite filters
1 rakin 5 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 rakin 10 const server = require("./server");
11     const AntiRaid = require("./AntiRaid");
12 rakin 22 const MessageFilter = require("./MessageFilter");
13 rakin 5
14     class App {
15     constructor(rootdir) {
16     global.app = App.app = this;
17     this.rootdir = rootdir;
18     this.loadConfig();
19 rakin 10 this.env = process.env;
20 rakin 5
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 rakin 10 Intents.FLAGS.DIRECT_MESSAGE_TYPING,
28     Intents.FLAGS.GUILD_PRESENCES,
29     Intents.FLAGS.GUILD_MEMBERS,
30 rakin 5 ]
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 rakin 10 this.antiRaid = new AntiRaid();
39 rakin 22 this.messageFilter = new MessageFilter();
40 rakin 5 this.boot();
41     }
42    
43     boot() {
44     this.on('ready', () => {
45     console.log("Logged in as " + this.client.user.tag);
46 rakin 10 server();
47 rakin 5 });
48    
49     this.on('messageCreate', async (message) => {
50 rakin 11 if (message.author.bot || !message.guild || message.channel.type == 'dm') {
51 rakin 5 return;
52     }
53    
54     await (this.msg = message);
55    
56 rakin 20 await this.spamFilter.start(message);
57 rakin 22 await this.messageFilter.start(message, this.commandManager);
58 rakin 5
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 rakin 11 const allowed = await this.commandManager.verify();
65 rakin 5
66 rakin 11 if (valid && has && allowed) {
67 rakin 5 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 rakin 11 else if (valid && has && !allowed) {
78     await this.commandManager.notAllowed();
79     }
80 rakin 5 });
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 rakin 10
113     this.on('guildMemberAdd', async (member) => {
114     console.log('Joined');
115     await this.antiRaid.start(member);
116     });
117 rakin 5 }
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 rakin 10
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 rakin 5 }
148    
149     module.exports = App;

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26