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

Annotation of /trunk/src/App.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 49 - (hide annotations)
Mon Jul 29 17:28:21 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: text/javascript
File size: 7691 byte(s)
Release version 1.10.0

* Added -queues command to list all queued jobs
* Added -joke command to fetch random jokes
* Added support of user tags in some user-based commands
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 26 const AFKEngine = require("./AFKEngine");
15 rakin 33 const Starboard = require("./Starboard");
16 rakin 45 const { runTimeouts, setTimeoutv2 } = require("./setTimeout");
17 rakin 49 const autoRole = require("./AutoRole");
18 rakin 5
19     class App {
20     constructor(rootdir) {
21     global.app = App.app = this;
22     this.rootdir = rootdir;
23     this.loadConfig();
24 rakin 10 this.env = process.env;
25 rakin 5
26     this.client = new Client({
27     partials: ["CHANNEL"],
28     intents: [
29     Intents.FLAGS.GUILDS,
30     Intents.FLAGS.GUILD_MESSAGES,
31     Intents.FLAGS.DIRECT_MESSAGES,
32 rakin 10 Intents.FLAGS.DIRECT_MESSAGE_TYPING,
33     Intents.FLAGS.GUILD_PRESENCES,
34     Intents.FLAGS.GUILD_MEMBERS,
35 rakin 33 Intents.FLAGS.GUILD_BANS,
36     Intents.FLAGS.GUILD_MESSAGE_REACTIONS,
37     Intents.FLAGS.GUILD_EMOJIS_AND_STICKERS,
38 rakin 5 ]
39     });
40    
41     this.config = new Config();
42     this.db = new Database(path.resolve(__dirname, '..', 'database.db'));
43     this.commandManager = new CommandManager(path.resolve(__dirname, rootdir, "commands"));
44     this.logger = new Logger();
45     this.spamFilter = new SpamFilter();
46 rakin 10 this.antiRaid = new AntiRaid();
47 rakin 22 this.messageFilter = new MessageFilter();
48 rakin 26 this.afkEngine = new AFKEngine();
49 rakin 33 this.starboard = new Starboard();
50 rakin 5 this.boot();
51     }
52    
53     boot() {
54 rakin 33 const events = {
55     MESSAGE_REACTION_ADD: 'messageReactionAdd',
56     };
57    
58 rakin 5 this.on('ready', () => {
59     console.log("Logged in as " + this.client.user.tag);
60 rakin 23
61     this.client.user.setStatus(random(['dnd', 'idle']));
62     this.client.user.setActivity("over the server", { type: "WATCHING" });
63    
64 rakin 10 server();
65 rakin 45
66     runTimeouts();
67    
68     // setTimeoutv2(path.resolve(__dirname, '../queues/send.js'), 10000, "Hello world");
69 rakin 5 });
70    
71 rakin 33 this.on('raw', async event => {
72     if (!events.hasOwnProperty(event.t))
73     return;
74    
75     const { d: data } = event;
76     const user = this.client.users.cache.find(i => i.id === data.user_id);
77     const channel = this.client.channels.cache.find(i => i.id === data.channel_id) || await user.createDM();
78    
79     if (channel.messages.cache.has(data.message_id))
80     return;
81    
82     const message = await channel.messages.fetch(data.message_id);
83    
84     const emojiKey = (data.emoji.id) ? `${data.emoji.name}:${data.emoji.id}` : data.emoji.name;
85     const reaction = message.reactions.cache.get(emojiKey);
86    
87     this.client.emit(events[event.t], reaction, user);
88     });
89    
90 rakin 5 this.on('messageCreate', async (message) => {
91 rakin 11 if (message.author.bot || !message.guild || message.channel.type == 'dm') {
92 rakin 5 return;
93     }
94    
95     await (this.msg = message);
96    
97 rakin 20 await this.spamFilter.start(message);
98 rakin 22 await this.messageFilter.start(message, this.commandManager);
99 rakin 5
100     await this.commandManager.setMessage(message);
101    
102     const valid = await this.commandManager.valid();
103     const has = await this.commandManager.has();
104     const snippet = await this.commandManager.snippet();
105 rakin 11 const allowed = await this.commandManager.verify();
106 rakin 5
107 rakin 11 if (valid && has && allowed) {
108 rakin 5 await this.exec();
109     }
110     else if (valid && snippet !== undefined) {
111     await message.channel.send({
112 rakin 27 content: snippet.content,
113     files: snippet.files.map(f => {
114     return {
115     attachment: path.resolve(__dirname, '..', 'storage', f)
116     }
117     })
118 rakin 5 });
119     }
120     else if (valid && !has) {
121     await this.commandManager.notFound();
122     }
123 rakin 11 else if (valid && has && !allowed) {
124     await this.commandManager.notAllowed();
125     }
126 rakin 26 else if(!valid) {
127     await this.afkEngine.start(message);
128     }
129 rakin 5 });
130    
131     this.on("messageUpdate", async (oldMessage, newMessage) => {
132 rakin 41 if (oldMessage.author.bot || !oldMessage.guild || oldMessage.channel.type == 'dm' || oldMessage.content === newMessage.content)
133 rakin 5 return;
134    
135 rakin 41 let msg = await this.msg;
136     await (this.msg = newMessage);
137    
138     await this.spamFilter.basic(newMessage);
139     await this.messageFilter.start(newMessage, this.commandManager);
140    
141 rakin 5 await this.logger.logEdit(oldMessage, newMessage);
142 rakin 41 await (this.msg = msg);
143 rakin 5 });
144    
145 rakin 33 this.on("messageReactionAdd", async (reaction, message) => {
146     console.log('inside');
147 rakin 25
148 rakin 42 if (!reaction || !reaction.message || !message.guild || message.channel.type == 'dm') {
149 rakin 33 return;
150     }
151    
152     await (this.msg = reaction.message);
153     await this.starboard.handle(reaction, message);
154     });
155    
156 rakin 25 this.on('guildBanAdd', async (ban) => {
157     console.log('test');
158     await this.logger.logBanned(ban);
159     });
160    
161     this.on('guildBanRemove', async (ban) => {
162     console.log('test');
163     await this.logger.logUnbanned(ban);
164     });
165    
166 rakin 5 this.on("messageDelete", async (message) => {
167 rakin 41 if (message.author.bot || !message.guild || message.channel.type == 'dm')
168 rakin 5 return;
169    
170     await this.logger.logDelete(message);
171     });
172    
173     this.on("guildCreate", guild => {
174     console.log("Joined a new guild: " + guild.name);
175    
176     this.config.props[guild.id] = {
177     prefix: "-",
178     debug: false,
179     };
180    
181     this.config.write();
182     })
183    
184     this.on("guildDelete", guild => {
185     console.log("Left a guild: " + guild.name);
186     delete this.config.props[guild.id];
187     this.config.write();
188     })
189 rakin 10
190     this.on('guildMemberAdd', async (member) => {
191     console.log('Joined');
192 rakin 49 await autoRole(member, member.guild);
193 rakin 10 await this.antiRaid.start(member);
194 rakin 25 await this.logger.logJoined(member);
195 rakin 10 });
196 rakin 25
197     this.on('guildMemberRemove', async (member) => {
198     await this.logger.logLeft(member);
199     });
200 rakin 5 }
201    
202     loadConfig() {
203     if (fs.existsSync(path.join(__dirname, this.rootdir, '.env'))) {
204     console.log("Loading .env file");
205     config();
206     }
207     }
208    
209     on(event, handler) {
210     this.client.on(event, handler);
211     }
212    
213     exec() {
214     this.commandManager.exec();
215     }
216    
217     run() {
218     this.client.login(process.env.TOKEN);
219     }
220 rakin 10
221     tempFileCreate(name) {
222     const fullname = path.join(__dirname, '..', 'tmp', name);
223     const file = fs.createWriteStream(fullname);
224    
225     return {
226     name: fullname,
227     file
228     };
229     }
230 rakin 5 }
231    
232     module.exports = App;

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26