1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
import { AllowedMentions, BushCommand, BushMessage } from '@lib';
import { Channel } from 'discord.js';
export default class AutoPublishChannelCommand extends BushCommand {
public constructor() {
super('autopublishchannel', {
aliases: ['autopublishchannel', 'apc', 'publishchannel', 'autopublishchannels', 'publishchannels', 'autopublish'],
category: 'config',
description: {
content: 'A command to add/remove channels from being automatically published.',
usage: 'autopublishchannel <channel>',
examples: ['autopublishchannel #github']
},
args: [
{
id: 'channel',
type: 'channel',
match: 'content',
prompt: {
start: 'What channel would you like to toggle auto publishing in?',
retry: '{error} Choose a valid channel.',
optional: false
}
}
],
slash: true,
slashOptions: [
{
name: 'channel',
description: 'What channel would you like me to send welcome messages in?',
type: 'CHANNEL',
required: false
}
],
channel: 'guild',
clientPermissions: ['SEND_MESSAGES'],
userPermissions: ['MANAGE_GUILD', 'SEND_MESSAGES']
});
}
public override async exec(message: BushMessage, { channel }: { channel: Channel }): Promise<unknown> {
const autoPublishChannels = await message.guild.getSetting('autoPublishChannels');
const newValue = util.addOrRemoveFromArray(
autoPublishChannels.includes(channel.id) ? 'remove' : 'add',
autoPublishChannels,
channel.id
);
await message.guild.setSetting('autoPublishChannels', newValue);
return await message.util.reply({
content: `${util.emojis.success} Successfully ${
autoPublishChannels.includes(channel.id) ? 'disabled' : 'enabled'
} auto publishing in <#${channel.id}>.`,
allowedMentions: AllowedMentions.none()
});
}
}
|