1 |
rakinar2 |
577 |
/** |
2 |
|
|
* This file is part of SudoBot. |
3 |
|
|
* |
4 |
|
|
* Copyright (C) 2021-2022 OSN Inc. |
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 BaseEvent from '../../utils/structures/BaseEvent'; |
21 |
|
|
import DiscordClient from '../../client/Client'; |
22 |
|
|
import { GuildMember } from 'discord.js'; |
23 |
|
|
import UnverifiedMember from '../../models/UnverifiedMember'; |
24 |
|
|
import Punishment from '../../models/Punishment'; |
25 |
|
|
import PunishmentType from '../../types/PunishmentType'; |
26 |
|
|
import { isDisabledServer } from '../../utils/util'; |
27 |
|
|
|
28 |
|
|
export default class GuildMemberRemoveEvent extends BaseEvent { |
29 |
|
|
constructor() { |
30 |
|
|
super('guildMemberRemove'); |
31 |
|
|
} |
32 |
|
|
|
33 |
|
|
async run(client: DiscordClient, member: GuildMember) { |
34 |
|
|
if (member.user.id === client.user!.id) |
35 |
|
|
return; |
36 |
|
|
|
37 |
|
|
if (isDisabledServer(member.guild.id)) |
38 |
|
|
return; |
39 |
|
|
|
40 |
|
|
await client.logger.onGuildMemberRemove(member); |
41 |
|
|
|
42 |
|
|
if (member.user.bot) |
43 |
|
|
return; |
44 |
|
|
|
45 |
|
|
const logs = (await member.guild.fetchAuditLogs({ |
46 |
|
|
limit: 1, |
47 |
|
|
type: 'MEMBER_KICK', |
48 |
|
|
})).entries.first(); |
49 |
|
|
|
50 |
|
|
if (logs && logs.target?.id === member.id && logs.createdAt >= (member.joinedAt ?? 0)) { |
51 |
|
|
console.log(logs?.executor); |
52 |
|
|
|
53 |
|
|
const { id } = await Punishment.create({ |
54 |
|
|
type: PunishmentType.KICK, |
55 |
|
|
user_id: member.user.id, |
56 |
|
|
guild_id: member.guild!.id, |
57 |
|
|
mod_id: logs?.executor?.id ?? client.user!.id, |
58 |
|
|
mod_tag: logs?.executor?.tag ?? 'Unknown', |
59 |
|
|
reason: logs.reason ?? undefined |
60 |
|
|
}); |
61 |
|
|
|
62 |
|
|
client.logger.onMemberKick(member, logs.reason ?? undefined, logs.executor ?? undefined, id); |
63 |
|
|
} |
64 |
|
|
|
65 |
|
|
await client.autoClear.start(member, member.guild); |
66 |
|
|
|
67 |
|
|
const verificationData = await UnverifiedMember.findOne({ |
68 |
|
|
where: { |
69 |
|
|
guild_id: member.guild.id, |
70 |
|
|
user_id: member.id, |
71 |
|
|
status: 'pending' |
72 |
|
|
} |
73 |
|
|
}); |
74 |
|
|
|
75 |
|
|
if (verificationData) { |
76 |
|
|
await verificationData.set('status', 'canceled'); |
77 |
|
|
await verificationData.save(); |
78 |
|
|
} |
79 |
|
|
|
80 |
|
|
await client.automute.onMemberLeave(member); |
81 |
|
|
} |
82 |
|
|
} |