1 |
rakinar2 |
577 |
/** |
2 |
|
|
* This file is part of SudoBot. |
3 |
|
|
* |
4 |
|
|
* Copyright (C) 2021-2023 OSN Developers. |
5 |
|
|
* |
6 |
|
|
* SudoBot is free software; you can redistribute it and/or modify it |
7 |
|
|
* under the terms of the GNU Affero General Public License as published by |
8 |
|
|
* the Free Software Foundation, either version 3 of the License, or |
9 |
|
|
* (at your option) any later version. |
10 |
|
|
* |
11 |
|
|
* SudoBot is distributed in the hope that it will be useful, but |
12 |
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
|
|
* GNU Affero General Public License for more details. |
15 |
|
|
* |
16 |
|
|
* You should have received a copy of the GNU Affero General Public License |
17 |
|
|
* along with SudoBot. If not, see <https://www.gnu.org/licenses/>. |
18 |
|
|
*/ |
19 |
|
|
|
20 |
|
|
import { ChannelType, ClientEvents, GuildMember, Message, MessageType } from "discord.js"; |
21 |
|
|
import Client from "../../core/Client"; |
22 |
|
|
import Event from "../../core/Event"; |
23 |
|
|
import { log, logError } from "../../utils/logger"; |
24 |
|
|
|
25 |
|
|
export default class MessageCreateEvent extends Event { |
26 |
|
|
public name: keyof ClientEvents = "messageCreate"; |
27 |
|
|
|
28 |
|
|
public types = [MessageType.Default, MessageType.Reply]; |
29 |
|
|
|
30 |
|
|
constructor(protected client: Client) { |
31 |
|
|
super(client); |
32 |
|
|
} |
33 |
|
|
|
34 |
|
|
async execute(message: Message) { |
35 |
|
|
if (message.author.bot) return; |
36 |
|
|
|
37 |
|
|
if (!this.types.includes(message.type)) return; |
38 |
|
|
|
39 |
|
|
if (message.channel.type === ChannelType.DM) return; |
40 |
|
|
|
41 |
|
|
let member: GuildMember = <any>message.member!; |
42 |
|
|
|
43 |
|
|
if (!(member.permissions as any)?.has) { |
44 |
|
|
try { |
45 |
|
|
member = await message.guild!.members.fetch(member.user.id); |
46 |
|
|
|
47 |
|
|
if (!member) { |
48 |
|
|
throw new Error("Invalid member"); |
49 |
|
|
} |
50 |
|
|
|
51 |
|
|
(message.member as any) = member; |
52 |
|
|
} catch (e) { |
53 |
|
|
logError(e); |
54 |
|
|
} |
55 |
|
|
} |
56 |
|
|
|
57 |
|
|
let deleted = await this.client.messageFilter.onMessageCreate(message).catch(logError); |
58 |
|
|
|
59 |
|
|
if (deleted) return; |
60 |
|
|
|
61 |
|
|
deleted = await this.client.messageRuleService.onMessageCreate(message).catch(logError); |
62 |
|
|
|
63 |
|
|
if (deleted) return; |
64 |
|
|
|
65 |
|
|
deleted = await this.client.fileFilter.onMessageCreate(message).catch(logError); |
66 |
|
|
|
67 |
|
|
if (deleted) return; |
68 |
|
|
|
69 |
|
|
await this.client.antispam.onMessageCreate(message).catch(logError); |
70 |
|
|
|
71 |
|
|
const value = await this.client.commandManager.runCommandFromMessage(message).catch(logError); |
72 |
|
|
|
73 |
|
|
if (value === false) { |
74 |
|
|
log("Command or snippet not found: all strategies failed"); |
75 |
|
|
} |
76 |
|
|
} |
77 |
|
|
} |