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