aboutsummaryrefslogtreecommitdiff
path: root/src/commands/dev/setLevel.ts
blob: ca555dbb24c04a35814a626ab960f9e718e98345 (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
import { Message, User } from 'discord.js';
import { SlashCommandOption } from '../../lib/extensions/BushClientUtil';
import { BushCommand } from '../../lib/extensions/BushCommand';
import { BushSlashMessage } from '../../lib/extensions/BushInteractionMessage';
import { Level } from '../../lib/models';
import AllowedMentions from '../../lib/utils/AllowedMentions';

export default class SetLevelCommand extends BushCommand {
	constructor() {
		super('setlevel', {
			aliases: ['setlevel'],
			category: 'dev',
			description: {
				content: 'Sets the level of a user',
				usage: 'setlevel <user> <level>',
				examples: ['setlevel @Moulberry 69'] //nice
			},
			args: [
				{
					id: 'user',
					type: 'user',
					prompt: {
						start: 'What user would you like to change the level of?',
						retry: '{error} Choose a valid user to change the level of.'
					}
				},
				{
					id: 'level',
					type: 'number',
					prompt: {
						start: 'What level would you like to set the user to?',
						retry: '{error} Choose a valid level to set the user to.'
					}
				}
			],
			ownerOnly: true,
			slashOptions: [
				{
					type: 'USER',
					name: 'user',
					description: 'The user to change the level of',
					required: true
				},
				{
					type: 'INTEGER',
					name: 'level',
					description: 'The level to set the user to',
					required: true
				}
			],
			slash: true
		});
	}

	private async setLevel(user: User, level: number): Promise<string> {
		const [levelEntry] = await Level.findOrBuild({
			where: {
				id: user.id
			},
			defaults: {
				id: user.id
			}
		});
		await levelEntry.update({ xp: Level.convertLevelToXp(level) });
		return `Successfully set level of <@${user.id}> to \`${level}\` (\`${levelEntry.xp}\` XP)`;
	}

	async exec(message: Message, { user, level }: { user: User; level: number }): Promise<void> {
		await message.util.send({
			content: await this.setLevel(user, level),
			allowedMentions: AllowedMentions.none()
		});
	}

	async execSlash(
		message: BushSlashMessage,
		{ user, level }: { user: SlashCommandOption<void>; level: SlashCommandOption<number> }
	): Promise<void> {
		await message.interaction.reply({
			content: await this.setLevel(user.user, level.value),
			allowedMentions: AllowedMentions.none()
		});
	}
}