/[sudobot]/branches/4.x/src/automod/AutoClear.ts
ViewVC logotype

Contents of /branches/4.x/src/automod/AutoClear.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (show annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 3548 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 /**
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 import { hasConfig } from "../utils/util";
26
27 export default class AutoClear {
28 constructor(protected client: DiscordClient) {
29
30 }
31
32 async start(member: GuildMember, guild: Guild) {
33 if (!hasConfig(this.client, guild.id, "autoclear"))
34 return;
35
36 const config = this.client.config.props[guild.id].autoclear;
37
38 if (config.enabled) {
39 for await (const channelID of config.channels) {
40 try {
41 const channels = (<Collection<string, TextChannel>> await guild.channels.cache.filter(c => c.id === channelID || c.parent?.id === channelID)).toJSON();
42
43 if (channels) {
44 for await (const channel of channels) {
45 if (channel && channel.type === 'GUILD_TEXT') {
46 let fetched, count = 0;
47
48 do {
49 fetched = await channel!.messages.fetch({ limit: 100 });
50 fetched = await fetched.filter(m => m.author.id === member!.id);
51 await channel.bulkDelete(fetched);
52 count += await fetched.size;
53 }
54 while (fetched.size >= 2);
55
56 const messageOptions = {
57 embeds: [
58 new MessageEmbed()
59 .setColor('RED')
60 .setAuthor({
61 name: member.user.tag,
62 iconURL: member.displayAvatarURL()
63 })
64 .setDescription((await fetchEmoji('check') as Emoji).toString() + " Deleted " + count + " message(s) from user " + member.user.tag + ' in channel ' + channelMention(channel.id))
65 .addField('Reason', 'They left the server')
66 ]
67 };
68
69 await this.client.logger.loggingChannel(member.guild.id)?.send(messageOptions);
70 }
71 }
72 }
73 }
74 catch (e) {
75 console.log(e);
76 }
77 }
78 }
79 }
80 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26