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, Events, GuildMember } from "discord.js"; |
22 |
|
|
import EventListener from "../../core/EventListener"; |
23 |
|
|
import { logError } from "../../utils/Logger"; |
24 |
|
|
|
25 |
|
|
export default class GuildMemberUpdateEvent extends EventListener<Events.GuildMemberUpdate> { |
26 |
|
|
public readonly name = Events.GuildMemberUpdate; |
27 |
|
|
|
28 |
|
|
async execute(oldMember: GuildMember, newMember: GuildMember) { |
29 |
|
|
if (oldMember.nickname !== newMember.nickname) { |
30 |
|
|
await this.client.loggerService.logNicknameUpdate(oldMember, newMember); |
31 |
|
|
} |
32 |
|
|
|
33 |
|
|
if (!oldMember.roles.cache.equals(newMember.roles.cache)) { |
34 |
|
|
await this.client.loggerService.logMemberRoleUpdate(oldMember, newMember); |
35 |
|
|
} |
36 |
|
|
|
37 |
|
|
if (!oldMember.communicationDisabledUntil && newMember.communicationDisabledUntil) { |
38 |
|
|
setTimeout(async () => { |
39 |
|
|
try { |
40 |
|
|
const auditLog = ( |
41 |
|
|
await newMember.guild.fetchAuditLogs({ |
42 |
|
|
limit: 1, |
43 |
|
|
type: AuditLogEvent.MemberUpdate |
44 |
|
|
}) |
45 |
|
|
).entries.first(); |
46 |
|
|
|
47 |
|
|
if (auditLog?.executor?.id && auditLog.executor.id !== this.client.user?.id) { |
48 |
|
|
const timeout = auditLog.changes.reverse().find(change => change.key === "communication_disabled_until"); |
49 |
|
|
|
50 |
|
|
if (!timeout) return; |
51 |
|
|
|
52 |
|
|
const infraction = await this.client.prisma.infraction.create({ |
53 |
|
|
data: { |
54 |
|
|
guildId: newMember.guild.id, |
55 |
|
|
moderatorId: auditLog.executor.id, |
56 |
|
|
type: InfractionType.TIMEOUT, |
57 |
|
|
userId: newMember.user.id, |
58 |
|
|
reason: auditLog.reason ?? undefined |
59 |
|
|
} |
60 |
|
|
}); |
61 |
|
|
|
62 |
|
|
await this.client.loggerService.logMemberTimeout(newMember, { |
63 |
|
|
moderator: auditLog.executor, |
64 |
|
|
id: infraction.id.toString(), |
65 |
|
|
reason: auditLog.reason ?? undefined |
66 |
|
|
}); |
67 |
|
|
} |
68 |
|
|
} catch (e) { |
69 |
|
|
logError(e); |
70 |
|
|
} |
71 |
|
|
}, 3500); |
72 |
|
|
} else if (oldMember.communicationDisabledUntil && !newMember.communicationDisabledUntil) { |
73 |
|
|
setTimeout(async () => { |
74 |
|
|
try { |
75 |
|
|
const auditLog = ( |
76 |
|
|
await newMember.guild.fetchAuditLogs({ |
77 |
|
|
limit: 1, |
78 |
|
|
type: AuditLogEvent.MemberUpdate |
79 |
|
|
}) |
80 |
|
|
).entries.first(); |
81 |
|
|
|
82 |
|
|
if (auditLog?.executor?.id && auditLog.executor.id !== this.client.user?.id) { |
83 |
|
|
const infraction = await this.client.prisma.infraction.create({ |
84 |
|
|
data: { |
85 |
|
|
guildId: newMember.guild.id, |
86 |
|
|
moderatorId: auditLog.executor.id, |
87 |
|
|
type: InfractionType.TIMEOUT_REMOVE, |
88 |
|
|
userId: newMember.user.id |
89 |
|
|
} |
90 |
|
|
}); |
91 |
|
|
|
92 |
|
|
await this.client.loggerService.logMemberTimeoutRemove(newMember, { |
93 |
|
|
moderator: auditLog.executor, |
94 |
|
|
id: infraction.id.toString() |
95 |
|
|
}); |
96 |
|
|
} |
97 |
|
|
} catch (e) { |
98 |
|
|
logError(e); |
99 |
|
|
} |
100 |
|
|
}, 2000); |
101 |
|
|
} |
102 |
|
|
} |
103 |
|
|
} |