/[sudobot]/branches/2.x/src/commands/moderation/LockallCommand.ts
ViewVC logotype

Annotation of /branches/2.x/src/commands/moderation/LockallCommand.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (hide annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 6369 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 rakinar2 577 import { Collection, CommandInteraction, GuildBasedChannel, GuildChannel, Message, Permissions, Role, TextChannel, User } from 'discord.js';
2     import BaseCommand from '../../utils/structures/BaseCommand';
3     import CommandOptions from '../../types/CommandOptions';
4     import InteractionOptions from '../../types/InteractionOptions';
5     import DiscordClient from '../../client/Client';
6     import MessageEmbed from '../../client/MessageEmbed';
7    
8     export async function lockAll(client: DiscordClient, role: Role, channels: Collection <string, TextChannel> | TextChannel[], user: User, send: boolean = true, reason?: string) {
9     if (role) {
10     // const gen = await channels.first()!.guild.roles.fetch(client.config.props[channels.first()!.guild.id].gen_role);
11    
12     try {
13     return await client.channelLock.lockAll(channels instanceof Collection ? [...channels.values()] : channels, user, {
14     role,
15     sendConfirmation: send,
16     reason
17     });
18     }
19     catch (e) {
20     console.log(e);
21     }
22     }
23     }
24    
25     export default class LockallCommand extends BaseCommand {
26     supportsInteractions: boolean = true;
27    
28     constructor() {
29     super('lockall', 'moderation', []);
30     }
31    
32     async run(client: DiscordClient, msg: Message | CommandInteraction, options: CommandOptions | InteractionOptions) {
33     if (!options.isInteraction && typeof options.args[0] === 'undefined') {
34     await msg.reply({
35     embeds: [
36     new MessageEmbed()
37     .setColor('#f14a60')
38     .setDescription(`This command requires at least one argument.`)
39     ]
40     });
41    
42     return;
43     }
44    
45     if (msg instanceof CommandInteraction) {
46     await msg.deferReply({ ephemeral: true });
47     }
48    
49     const raid = options.isInteraction ? options.options.getBoolean('raid') === true : (options.options.indexOf('--raid') !== -1);
50    
51     let role: Role = <Role> msg.guild!.roles.everyone;
52     let lockall: string[] = [], lockallChannels: TextChannel[] = [];
53     let reason: string | undefined;
54     // const force = options.isInteraction ? options.options.getBoolean('force') === true : (options.options.indexOf('--force') !== -1);
55    
56     if (options.isInteraction) {
57     if (options.options.getString('channels'))
58     lockall = options.options.getString('channels')!.split(' ').filter(a => /^\d+$/gi.test(a) || a.startsWith('<#'));
59    
60     if (options.options.getRole('role')) {
61     role = await <Role> options.options.getRole('role');
62     }
63    
64     if (options.options.getString('reason')) {
65     reason = await <string> options.options.getString('reason');
66     }
67     }
68     else {
69     if ((msg as Message).mentions.roles.first()) {
70     role = await <Role> (msg as Message).mentions.roles.first();
71     }
72    
73     if (!role) {
74     await msg.reply({
75     embeds: [
76     new MessageEmbed()
77     .setColor('#f14a60')
78     .setDescription(`Invalid role given.`)
79     ],
80     ephemeral: true
81     });
82    
83     return;
84     }
85    
86     if (!raid) {
87     lockall = options.normalArgs.filter(a => /^\d+$/gi.test(a) || a.startsWith('<#'));
88     }
89     else {
90     if (msg.guild!.channels.cache.size < 2) {
91     await msg.guild?.channels.fetch();
92     }
93    
94     const raidChannels = client.config.get('raid').channels;
95    
96     if (client.config.get('raid').exclude) {
97     lockall = [];
98    
99     for await (const [id, { parent, type }] of msg.guild!.channels.cache) {
100     if (type === 'GUILD_CATEGORY')
101     continue;
102    
103     if ((raidChannels.includes(id) || raidChannels.includes(parent?.id))) {
104     continue;
105     }
106    
107     lockall.push(id);
108     }
109     }
110     else {
111     // for await (const [id, { parent, type }] of msg.guild!.channels.cache) {
112     // if (type === 'GUILD_CATEGORY')
113     // continue;
114    
115     // if ((!raidChannels.includes(id) && !raidChannels.includes(parent?.id))) {
116     // continue;
117     // }
118    
119     // lockall.push(id);
120     // }
121    
122     lockall = raidChannels;
123     }
124    
125     console.log("Raid", lockall);
126     console.log("Raid 1", client.config.get('raid').channels);
127     }
128     }
129    
130     if (lockall.length === 0 && !raid) {
131     await this.deferReply(msg, {
132     content: "No channel specified!"
133     });
134    
135     return;
136     }
137    
138     if (msg.guild!.channels.cache.size < 2) {
139     await msg.guild?.channels.fetch();
140     }
141    
142     for await (const c of lockall) {
143     console.log(c);
144     const id = c.startsWith('<#') ? c.substring(2, c.length - 1) : c;
145    
146     if (lockallChannels.find(c => c.id === id))
147     continue;
148    
149     const channel = msg.guild?.channels.cache.get(id);
150    
151     if (!channel) {
152     continue;
153     }
154    
155     if (!channel.isText()) {
156     lockallChannels = [...lockallChannels, ...(msg.guild?.channels.cache.filter(c => c.parent?.id === id) as Collection<string, TextChannel>).values()!];
157     continue;
158     }
159    
160     lockallChannels.push(channel as TextChannel);
161     }
162    
163     console.log("Array: ", lockallChannels, lockall);
164    
165     const [success, failure] = (await lockAll(client, role, lockallChannels, msg.member!.user as User, true, reason))!;
166    
167     if (options.isInteraction) {
168     await this.deferReply(msg, {
169     content: "Locked " + lockallChannels.length + " channel(s)." + (failure > 0 ? ` ${success} successful locks and ${failure} failed locks.` : '')
170     });
171     }
172     else {
173     await (msg as Message).react('🔒');
174     }
175     }
176     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26