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 { InfractionType } from "@prisma/client"; |
21 |
import { AuditLogEvent, ClientEvents, GuildMember } from "discord.js"; |
22 |
import Event from "../../core/Event"; |
23 |
import { logError } from "../../utils/logger"; |
24 |
|
25 |
export default class GuildMemberRemoveEvent extends Event { |
26 |
public name: keyof ClientEvents = "guildMemberRemove"; |
27 |
|
28 |
async execute(member: GuildMember) { |
29 |
await this.client.logger.logGuildMemberRemove(member); |
30 |
|
31 |
setTimeout(async () => { |
32 |
try { |
33 |
const auditLog = ( |
34 |
await member.guild.fetchAuditLogs({ |
35 |
limit: 1, |
36 |
type: AuditLogEvent.MemberKick |
37 |
}) |
38 |
).entries.first(); |
39 |
|
40 |
if ( |
41 |
auditLog?.executor?.id && |
42 |
auditLog.executor.id !== this.client.user?.id && |
43 |
auditLog.targetId === member.user.id |
44 |
) { |
45 |
const infraction = await this.client.prisma.infraction.create({ |
46 |
data: { |
47 |
guildId: member.guild.id, |
48 |
moderatorId: auditLog.executor.id, |
49 |
type: InfractionType.KICK, |
50 |
userId: member.user.id, |
51 |
reason: auditLog.reason ?? undefined |
52 |
} |
53 |
}); |
54 |
|
55 |
await this.client.logger.logMemberKick({ |
56 |
moderator: auditLog.executor, |
57 |
id: infraction.id.toString(), |
58 |
reason: auditLog.reason ?? undefined, |
59 |
guild: member.guild, |
60 |
member |
61 |
}); |
62 |
} |
63 |
} catch (e) { |
64 |
logError(e); |
65 |
} |
66 |
}, 2000); |
67 |
} |
68 |
} |