aboutsummaryrefslogtreecommitdiff
path: root/src/commands/leveling/setLevel.ts
blob: 184ee1b60c04a8e57e46735371d00d76316a9236 (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
import { AllowedMentions, BushCommand, Level, type ArgType, type BushMessage, type BushSlashMessage } from '#lib';

export default class SetLevelCommand extends BushCommand {
	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: '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: 'INTEGER'
				}
			],
			slash: true,
			channel: 'guild',
			clientPermissions: (m) => util.clientSendAndPermCheck(m),
			userPermissions: ['ADMINISTRATOR']
		});
	}

	public override async exec(
		message: BushMessage | BushSlashMessage,
		{ user, level }: { user: ArgType<'user'>; level: ArgType<'integer'> }
	) {
		if (!message.guild) return await message.util.reply(`${util.emojis.error} This command can only be run in a guild.`);
		if (!user.id) throw new Error('user.id is null');

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

		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 \`${level.toLocaleString()}\` (\`${levelEntry.xp.toLocaleString()}\` XP)`,
			allowedMentions: AllowedMentions.none()
		});
	}
}