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

Annotation of /trunk/src/App.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 23 - (hide 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 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 23 const { random } = require("../commands/pixabay");
14 rakin 5
15     class App {
16     constructor(rootdir) {
17     global.app = App.app = this;
18     this.rootdir = rootdir;
19     this.loadConfig();
20 rakin 10 this.env = process.env;
21 rakin 5
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 rakin 10 Intents.FLAGS.DIRECT_MESSAGE_TYPING,
29     Intents.FLAGS.GUILD_PRESENCES,
30     Intents.FLAGS.GUILD_MEMBERS,
31 rakin 5 ]
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 rakin 10 this.antiRaid = new AntiRaid();
40 rakin 22 this.messageFilter = new MessageFilter();
41 rakin 5 this.boot();
42     }
43    
44     boot() {
45     this.on('ready', () => {
46     console.log("Logged in as " + this.client.user.tag);
47 rakin 23
48     this.client.user.setStatus(random(['dnd', 'idle']));
49     this.client.user.setActivity("over the server", { type: "WATCHING" });
50    
51 rakin 10 server();
52 rakin 5 });
53    
54     this.on('messageCreate', async (message) => {
55 rakin 11 if (message.author.bot || !message.guild || message.channel.type == 'dm') {
56 rakin 5 return;
57     }
58    
59     await (this.msg = message);
60    
61 rakin 20 await this.spamFilter.start(message);
62 rakin 22 await this.messageFilter.start(message, this.commandManager);
63 rakin 5
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 rakin 11 const allowed = await this.commandManager.verify();
70 rakin 5
71 rakin 11 if (valid && has && allowed) {
72 rakin 5 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 rakin 11 else if (valid && has && !allowed) {
83     await this.commandManager.notAllowed();
84     }
85 rakin 5 });
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 rakin 10
118     this.on('guildMemberAdd', async (member) => {
119     console.log('Joined');
120     await this.antiRaid.start(member);
121     });
122 rakin 5 }
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 rakin 10
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 rakin 5 }
153    
154     module.exports = App;

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26