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

Annotation of /trunk/src/App.js

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26