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 { channelMention } from "@discordjs/builders"; |
21 |
|
|
import { Collection, Emoji, Guild, GuildMember, TextChannel } from "discord.js"; |
22 |
|
|
import DiscordClient from "../client/Client"; |
23 |
|
|
import MessageEmbed from "../client/MessageEmbed"; |
24 |
|
|
import { fetchEmoji } from "../utils/Emoji"; |
25 |
|
|
|
26 |
|
|
export default class AutoClear { |
27 |
|
|
constructor(protected client: DiscordClient) { |
28 |
|
|
|
29 |
|
|
} |
30 |
|
|
|
31 |
|
|
async start(member: GuildMember, guild: Guild) { |
32 |
|
|
const config = await this.client.config.props[guild.id].autoclear; |
33 |
|
|
|
34 |
|
|
if (config.enabled) { |
35 |
|
|
for await (const channelID of config.channels) { |
36 |
|
|
try { |
37 |
|
|
const channels = (<Collection<string, TextChannel>> await guild.channels.cache.filter(c => c.id === channelID || c.parent?.id === channelID)).toJSON(); |
38 |
|
|
|
39 |
|
|
if (channels) { |
40 |
|
|
for await (const channel of channels) { |
41 |
|
|
if (channel && channel.type === 'GUILD_TEXT') { |
42 |
|
|
let fetched, count = 0; |
43 |
|
|
|
44 |
|
|
do { |
45 |
|
|
fetched = await channel!.messages.fetch({ limit: 100 }); |
46 |
|
|
fetched = await fetched.filter(m => m.author.id === member!.id); |
47 |
|
|
await channel.bulkDelete(fetched); |
48 |
|
|
count += await fetched.size; |
49 |
|
|
} |
50 |
|
|
while (fetched.size >= 2); |
51 |
|
|
|
52 |
|
|
const messageOptions = { |
53 |
|
|
embeds: [ |
54 |
|
|
new MessageEmbed() |
55 |
|
|
.setColor('RED') |
56 |
|
|
.setAuthor({ |
57 |
|
|
name: member.user.tag, |
58 |
|
|
iconURL: member.displayAvatarURL() |
59 |
|
|
}) |
60 |
|
|
.setDescription((await fetchEmoji('check') as Emoji).toString() + " Deleted " + count + " message(s) from user " + member.user.tag + ' in channel ' + channelMention(channel.id)) |
61 |
|
|
.addField('Reason', 'They left the server') |
62 |
|
|
] |
63 |
|
|
}; |
64 |
|
|
|
65 |
|
|
await this.client.logger.channelJoinLeft(async (ch) => { |
66 |
|
|
await ch.send(messageOptions); |
67 |
|
|
}, member); |
68 |
|
|
} |
69 |
|
|
} |
70 |
|
|
} |
71 |
|
|
} |
72 |
|
|
catch (e) { |
73 |
|
|
console.log(e); |
74 |
|
|
} |
75 |
|
|
} |
76 |
|
|
} |
77 |
|
|
} |
78 |
|
|
} |