aboutsummaryrefslogtreecommitdiff
path: root/src/commands/leveling/setLevel.ts
blob: 6f6f69ece07be8b691b78f0d4fac95780dda21f5 (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
import { AllowedMentions, BotCommand, emojis, format, Level, type ArgType, type CommandMessage, type SlashMessage } from '#lib';
import assert from 'assert/strict';
import { ApplicationCommandOptionType } from 'discord.js';

export default class SetLevelCommand extends BotCommand {
	public constructor() {
		super('setLevel', {
			aliases: ['set-level'],
			category: 'leveling',
			description: 'Sets the level of a user',
			usage: ['set-level <user> <level>'],
			examples: ['set-level @Moulberry 69'], //nice
			args: [
				{
					id: 'user',
					description: 'The user to set the level of.',
					type: 'user',
					prompt: 'What user would you like to change the level of?',
					retry: '{error} Choose a valid user to change the level of.',
					slashType: ApplicationCommandOptionType.User
				},
				{
					id: 'level',
					description: 'The level to set the user to.',
					type: 'integer',
					prompt: 'What level would you like to set the user to?',
					retry: '{error} Choose a valid level to set the user to.',
					slashType: ApplicationCommandOptionType.Integer
				}
			],
			slash: true,
			channel: 'guild',
			clientPermissions: [],
			userPermissions: ['Administrator']
		});
	}

	public override async exec(
		message: CommandMessage | SlashMessage,
		{ user, level }: { user: ArgType<'user'>; level: ArgType<'integer'> }
	) {
		assert(message.inGuild());
		assert(user.id);

		if (isNaN(level) || !Number.isInteger(level))
			return await message.util.reply(`${emojis.error} Provide a valid number to set the user's level to.`);
		if (level > 6553 || level < 0)
			return await message.util.reply(`${emojis.error} You cannot set a level higher than **6,553**.`);

		const [levelEntry] = await Level.findOrBuild({
			where: { user: user.id, guild: message.guild.id },
			defaults: { user: user.id, guild: message.guild.id, xp: 0 }
		});
		await levelEntry.update({ xp: Level.convertLevelToXp(level), user: user.id, guild: message.guild.id });
		return await message.util.send({
			content: `Successfully set level of <@${user.id}> to ${format.input(level.toLocaleString())} (${format.input(
				levelEntry.xp.toLocaleString()
			)} XP)`,
			allowedMentions: AllowedMentions.none()
		});
	}
}