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