aboutsummaryrefslogtreecommitdiff
path: root/src/commands/dev/superUser.ts
blob: ce23da55cec4403b6c8504bd0d252b861cb3bc5c (plain)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import { BushCommand, type ArgType, type BushMessage } from '#lib';
import { ArgumentGeneratorReturn } from 'discord-akairo';
import { ArgumentTypeCasterReturn } from 'discord-akairo/dist/src/struct/commands/arguments/Argument.js';

export default class SuperUserCommand extends BushCommand {
	public constructor() {
		super('superUser', {
			aliases: ['super-user', 'su'],
			category: 'dev',
			description: 'A command to manage superusers.',
			usage: ['superuser <add/remove> <user>'],
			examples: ['superuser add IRONM00N'],
			clientPermissions: (m) => util.clientSendAndPermCheck(m),
			userPermissions: [],
			ownerOnly: true,
			helpArgs: [
				{
					id: 'action',
					description: 'Whether to add or remove a user from the superuser list.',
					readableType: 'add|remove',
					slashType: false
				},
				{
					id: 'user',
					description: 'The user to add/remove from the superuser list.',
					type: 'user',
					match: 'restContent',
					slashType: false
				}
			]
		});
	}

	public override *args(): ArgumentGeneratorReturn {
		const action: 'add' | 'remove' = yield {
			id: 'action',
			type: ['add', 'remove'],
			prompt: {
				start: 'Would you like to `add` or `remove` a user from the superuser list?',
				retry: '{error} Choose if you would like to `add` or `remove` a user.',
				optional: false
			}
		};

		const user: ArgumentTypeCasterReturn<'user'> = yield {
			id: 'user',
			type: 'user',
			match: 'restContent',
			prompt: {
				start: `Who would you like to ${action ?? 'add/remove'} from the superuser list?`,
				retry: `Choose a valid user to ${action ?? 'add/remove'} from the superuser list.`,
				optional: false
			}
		};

		return { action, user };
	}

	public override async exec(message: BushMessage, { action, user }: { action: 'add' | 'remove'; user: ArgType<'user'> }) {
		if (!message.author.isOwner())
			return await message.util.reply(`${util.emojis.error} Only my developers can run this command.`);

		const superUsers: string[] = util.getShared('superUsers');

		if (action === 'add' ? superUsers.includes(user.id) : !superUsers.includes(user.id))
			return message.util.reply(
				`${util.emojis.warn} ${util.format.input(user.tag)} is ${action === 'add' ? 'already' : 'not'} a superuser.`
			);

		const success = await util.insertOrRemoveFromShared(action, 'superUsers', user.id).catch(() => false);

		if (success) {
			return await message.util.reply(
				`${util.emojis.success} ${action == 'remove' ? '' : 'made'} ${util.format.input(user.tag)} ${
					action == 'remove' ? 'is no longer ' : ''
				}a superuser.`
			);
		} else {
			return await message.util.reply(
				`${util.emojis.error} There was an error ${action == 'remove' ? `removing` : 'making'} ${util.format.input(user.tag)} ${
					action == 'remove' ? `from` : 'to'
				} the superuser list.`
			);
		}
	}
}