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 { Message, Permissions } from 'discord.js'; |
21 |
import DiscordClient from '../../client/Client'; |
22 |
import CommandOptions from '../../types/CommandOptions'; |
23 |
import { emoji } from '../../utils/Emoji'; |
24 |
import BaseCommand from '../../utils/structures/BaseCommand'; |
25 |
|
26 |
export default class WelcomeMsgCommand extends BaseCommand { |
27 |
permissions = [Permissions.FLAGS.MANAGE_GUILD]; |
28 |
|
29 |
constructor() { |
30 |
super('welcomemsg', 'settings', ['welcomer']); |
31 |
} |
32 |
|
33 |
async run(client: DiscordClient, message: Message, options: CommandOptions) { |
34 |
if (options.args[0] === undefined) { |
35 |
await message.reply(`${emoji('error')} This command requires at least one argument or option.`); |
36 |
return; |
37 |
} |
38 |
|
39 |
if (options.options.includes('--enable')) { |
40 |
client.config.props[message.guild!.id].welcomer.enabled = true; |
41 |
await message.reply(`${emoji('check')} Welcomer has been enabled.`); |
42 |
} |
43 |
else if (options.options.includes('--disable')) { |
44 |
client.config.props[message.guild!.id].welcomer.enabled = false; |
45 |
await message.reply(`${emoji('check')} Welcomer has been disabled.`); |
46 |
} |
47 |
else if (options.options.includes('--toggle')) { |
48 |
client.config.props[message.guild!.id].welcomer.enabled = !client.config.props[message.guild!.id].welcomer.enabled; |
49 |
await message.reply(`${emoji('check')} Welcomer has been ${client.config.props[message.guild!.id].welcomer.enabled ? 'enabled' : 'disabled'}.`); |
50 |
} |
51 |
else if (options.options.includes('--msg') || options.options.includes('--message') || options.options.includes('--custom')) { |
52 |
let msg = options.args.filter(a => a !== '--msg' && a !== '--message' && a !== '--custom').join(' '); |
53 |
|
54 |
if (msg.trim() === '') { |
55 |
client.config.props[message.guild!.id].welcomer.message = null; |
56 |
await message.reply(`${emoji('check')} Welcome message was successfully removed.`); |
57 |
} |
58 |
else { |
59 |
client.config.props[message.guild!.id].welcomer.message = msg; |
60 |
await message.reply(`${emoji('check')} Welcome message was successfully set.`); |
61 |
} |
62 |
} |
63 |
else if (options.options.includes('--rm-msg') || options.options.includes('--remove-message')) { |
64 |
client.config.props[message.guild!.id].welcomer.message = null; |
65 |
await message.reply(`${emoji('check')} Welcome message was successfully removed.`); |
66 |
} |
67 |
else if (options.options.includes('--randomize') || options.options.includes('--rand')) { |
68 |
client.config.props[message.guild!.id].welcomer.randomize = !client.config.props[message.guild!.id].welcomer.randomize; |
69 |
await message.reply(`${emoji('check')} Welcomer random messages are ${client.config.props[message.guild!.id].welcomer.randomize ? 'enabled' : 'disabled'}.${client.config.props[message.guild!.id].welcomer.message && client.config.props[message.guild!.id].welcomer.randomize ? '\nNote: A custom welcome message is already set. Both random and custom messages will be shown.' : ''}`); |
70 |
} |
71 |
else if (options.options.includes('--preview')) { |
72 |
const options = client.welcomer.generateMessageOptions(message.member!); |
73 |
|
74 |
if (!options) { |
75 |
await message.reply(`${emoji('error')} No welcome message set and randomization is disabled. Please configure one of those first!`); |
76 |
return; |
77 |
} |
78 |
|
79 |
await message.channel.send(options); |
80 |
} |
81 |
else { |
82 |
await message.reply(`${emoji('error')} Invalid argument(s) or option(s) supplied.`); |
83 |
return; |
84 |
} |
85 |
|
86 |
client.config.write(); |
87 |
} |
88 |
} |