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 EventListener from "../core/EventListener"; |
21 |
import { Events } from "../types/ClientEvents"; |
22 |
import { AuditLogEvent, VoiceChannel, VoiceState } from "discord.js"; |
23 |
import { safeChannelFetch } from "../utils/fetch"; |
24 |
|
25 |
export default class VoiceStateUpdateEventListener extends EventListener<Events.VoiceStateUpdate> { |
26 |
public readonly name = Events.VoiceStateUpdate; |
27 |
|
28 |
async execute(oldState: VoiceState, newState: VoiceState) { |
29 |
if (oldState.channelId === newState.channelId) { |
30 |
return; |
31 |
} |
32 |
|
33 |
const time = Date.now(); |
34 |
let oldChannel = oldState.channel; |
35 |
let newChannel = newState.channel; |
36 |
|
37 |
if (!oldChannel && oldState.channelId) { |
38 |
oldChannel = <VoiceChannel>await safeChannelFetch(oldState.guild, oldState.channelId); |
39 |
} |
40 |
|
41 |
if (!newChannel && newState.channelId) { |
42 |
newChannel = <VoiceChannel>await safeChannelFetch(newState.guild, newState.channelId); |
43 |
} |
44 |
|
45 |
setTimeout(async () => { |
46 |
if (oldChannel && !newChannel) { |
47 |
const auditLogEntries = await newState.guild |
48 |
.fetchAuditLogs({ |
49 |
type: AuditLogEvent.MemberDisconnect, |
50 |
limit: 1 |
51 |
}) |
52 |
.catch(() => null); |
53 |
|
54 |
const auditLogEntry = auditLogEntries?.entries.find(e => e.createdAt.getTime() > time - 2_000); |
55 |
|
56 |
if (auditLogEntry && oldChannel) { |
57 |
await this.client.loggerService.logMemberDisconnect({ |
58 |
user: newState.member?.user ?? oldState.member!.user, |
59 |
moderator: auditLogEntry.executor!, |
60 |
guild: newState.guild, |
61 |
channel: oldChannel as VoiceChannel |
62 |
}); |
63 |
|
64 |
return; |
65 |
} |
66 |
} |
67 |
|
68 |
if (oldChannel && newChannel) { |
69 |
const auditLogEntries = await newState.guild |
70 |
.fetchAuditLogs({ |
71 |
type: AuditLogEvent.MemberMove, |
72 |
limit: 1 |
73 |
}) |
74 |
.catch(() => null); |
75 |
|
76 |
const auditLogEntry = auditLogEntries?.entries.find(e => e.createdAt.getTime() > time - 2_000); |
77 |
|
78 |
if (auditLogEntry) { |
79 |
await this.client.loggerService.logMemberVoiceMove({ |
80 |
user: newState.member?.user ?? oldState.member!.user, |
81 |
moderator: auditLogEntry.executor!, |
82 |
guild: newState.guild, |
83 |
oldChannel: oldChannel as VoiceChannel, |
84 |
newChannel: newChannel as VoiceChannel |
85 |
}); |
86 |
|
87 |
return; |
88 |
} |
89 |
} |
90 |
|
91 |
if (oldChannel && newChannel) { |
92 |
return; |
93 |
} |
94 |
|
95 |
await this.client.loggerService.logVoiceChannelStateUpdate( |
96 |
newState.member?.user ?? oldState.member!.user, |
97 |
oldChannel, |
98 |
newChannel |
99 |
); |
100 |
}, 2000); |
101 |
} |
102 |
} |