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 GuildBanRemoveEvent extends EventListener<Events.GuildBanRemove> { |
27 |
|
|
public readonly name = Events.GuildBanRemove; |
28 |
|
|
|
29 |
|
|
async execute(ban: GuildBan) { |
30 |
|
|
setTimeout(async () => { |
31 |
|
|
try { |
32 |
|
|
const auditLog = ( |
33 |
|
|
await ban.guild.fetchAuditLogs({ |
34 |
|
|
limit: 1, |
35 |
|
|
type: AuditLogEvent.MemberBanRemove |
36 |
|
|
}) |
37 |
|
|
).entries.first(); |
38 |
|
|
|
39 |
|
|
if (auditLog?.executor?.id && auditLog.executor.id !== this.client.user?.id) { |
40 |
|
|
const infraction = await this.client.prisma.infraction.create({ |
41 |
|
|
data: { |
42 |
|
|
guildId: ban.guild.id, |
43 |
|
|
moderatorId: auditLog.executor.id, |
44 |
|
|
type: InfractionType.UNBAN, |
45 |
|
|
userId: ban.user.id, |
46 |
|
|
reason: ban.reason ?? undefined |
47 |
|
|
} |
48 |
|
|
}); |
49 |
|
|
|
50 |
|
|
await this.client.loggerService.logUserUnban({ |
51 |
|
|
moderator: auditLog.executor, |
52 |
|
|
user: ban.user, |
53 |
|
|
guild: ban.guild, |
54 |
|
|
id: infraction.id.toString(), |
55 |
|
|
reason: ban.reason ?? undefined |
56 |
|
|
}); |
57 |
|
|
} |
58 |
|
|
} catch (e) { |
59 |
|
|
logError(e); |
60 |
|
|
} |
61 |
|
|
}, 3500); |
62 |
|
|
} |
63 |
|
|
} |