1 |
/** |
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 { AuditLogEvent, Message, User } from "discord.js"; |
21 |
import EventListener from "../../core/EventListener"; |
22 |
import { Events } from "../../types/ClientEvents"; |
23 |
|
24 |
export default class MessageDeleteEvent extends EventListener<Events.MessageDelete> { |
25 |
public readonly name = Events.MessageDelete; |
26 |
|
27 |
async execute(message: Message) { |
28 |
const deletedTimestamp = Date.now(); |
29 |
|
30 |
if (message.author.bot || !message.guild || !message.inGuild()) return; |
31 |
|
32 |
this.client.emit(Events.NormalMessageDelete, message); |
33 |
this.client.statsService.onMessageDelete(message); |
34 |
|
35 |
setTimeout(async () => { |
36 |
const auditLogEntries = await message.guild |
37 |
.fetchAuditLogs({ |
38 |
type: AuditLogEvent.MessageDelete, |
39 |
limit: 10 |
40 |
}) |
41 |
.catch(() => null); |
42 |
|
43 |
const auditLogEntry = auditLogEntries?.entries.find( |
44 |
e => |
45 |
e.createdAt.getTime() - deletedTimestamp <= 2_000 && |
46 |
Date.now() - e.createdAt.getTime() <= 2_000 && |
47 |
e.targetId === message.author.id && |
48 |
e.executorId !== message.author.id |
49 |
); |
50 |
|
51 |
let moderator: User | null = null; |
52 |
|
53 |
if (auditLogEntry) { |
54 |
moderator = auditLogEntry.executor; |
55 |
} |
56 |
|
57 |
await this.client.loggerService.logMessageDelete(message, moderator); |
58 |
}, 2000); |
59 |
} |
60 |
} |