aboutsummaryrefslogtreecommitdiff
path: root/src/commands/leveling/setXp.ts
blob: 270ad68575db040a35f728de0678eb3704a3c408 (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
import { AllowedMentions, BotCommand, emojis, Level, type ArgType, type CommandMessage, type SlashMessage } from '#lib';
import { commas } from '#lib/common/tags.js';
import { input } from '#lib/utils/Format.js';
import assert from 'assert/strict';
import { ApplicationCommandOptionType } from 'discord.js';

export default class SetXpCommand extends BotCommand {
	public constructor() {
		super('setXp', {
			aliases: ['set-xp'],
			category: 'leveling',
			description: 'Sets the xp of a user',
			usage: ['set-xp <user> <xp>'],
			examples: ['set-xp @Moulberry 69k'], //nice
			args: [
				{
					id: 'user',
					description: 'The user to set the xp of.',
					type: 'user',
					prompt: 'What user would you like to change the xp of?',
					retry: '{error} Choose a valid user to change the xp of.',
					slashType: ApplicationCommandOptionType.User
				},
				{
					id: 'xp',
					description: 'The xp to set the user to.',
					type: 'abbreviatedNumber',
					match: 'restContent',
					prompt: 'How much xp should the user have?',
					retry: "{error} Choose a valid number to set the user's xp to.",
					slashType: ApplicationCommandOptionType.Integer
				}
			],
			slash: true,
			channel: 'guild',
			clientPermissions: [],
			userPermissions: ['Administrator']
		});
	}

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

		if (isNaN(xp)) return await message.util.reply(`${emojis.error} Provide a valid number.`);

		if (xp > Level.MAX_XP || xp < 0) {
			return await message.util.reply(
				commas`${emojis.error} Provide an positive integer under **${Level.MAX_XP}** to set the user's xp to.`
			);
		}

		const [levelEntry] = await Level.findOrBuild({
			where: {
				user: user.id,
				guild: message.guild.id
			}
		});

		const res = await levelEntry
			.update({ xp: xp, user: user.id, guild: message.guild.id })
			.catch((e) => (e instanceof Error ? e : null));

		xp = levelEntry.xp;
		const level = Level.convertXpToLevel(xp);

		if (res instanceof Error || res == null) {
			return await message.util.reply({
				content: commas`Unable to set <@${user.id}>'s xp to **${xp}** with error ${input(res?.message ?? '¯\\_(ツ)_/¯')}.`,
				allowedMentions: AllowedMentions.none()
			});
		}

		return await message.util.send({
			content: commas`${emojis.success} Successfully set <@${user.id}>'s xp to **${xp}** (level **${level}**).`,
			allowedMentions: AllowedMentions.none()
		});
	}
}