aboutsummaryrefslogtreecommitdiff
path: root/src/commands/moulberry-bush/serverStatus.ts
blob: 8e59c9ffd4fda927dcfa0f3d2c4c032a1bda36f7 (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
import { BotCommand, colors, emojis, type CommandMessage } from '#lib';
import { EmbedBuilder } from 'discord.js';

export default class ServerStatusCommand extends BotCommand {
	public constructor() {
		super('serverStatus', {
			aliases: ['server-status', 'ss'],
			category: "Moulberry's Bush",
			description: "Gives the status of moulberry's server",
			usage: ['server-status'],
			examples: ['server-status', 'ss'],
			clientPermissions: ['EmbedLinks'],
			clientCheckChannel: true,
			userPermissions: [],
			slash: true
		});
	}

	public override async exec(message: CommandMessage) {
		const msgEmbed = new EmbedBuilder()
			.setTitle('Server status')
			.setDescription(`Checking server:\n${emojis.loading}`)
			.setColor(colors.default)
			.setFooter({ text: 'Checking https://moulberry.codes/lowestbin.json' });
		await message.util.reply({ embeds: [msgEmbed] });
		let main;
		try {
			const res = await fetch('https://moulberry.codes/lowestbin.json').then((p) => (p.ok ? p.json() : null));
			main = res ? emojis.success : emojis.error;
		} catch (e) {
			main = emojis.error;
		}
		await message.util.edit({ embeds: [msgEmbed.setDescription(`Checking server:\n${main}`)] });
		if (main == emojis.success) {
			await message.util.edit({
				embeds: [
					msgEmbed
						.addFields({ name: 'Status', value: 'The server is online, all features related to prices will likely work.' })
						.setColor(colors.success)
				]
			});
		} else {
			await message.util.edit({
				embeds: [
					msgEmbed
						.addFields({
							name: 'Status',
							value:
								"It appears Moulberry's server is offline, this means that everything related to prices will likely not work."
						})
						.setColor(colors.error)
				]
			});
		}
	}
}