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
|
import { MessageEmbed } from 'discord.js';
import got from 'got';
import { BushCommand, BushMessage } from '../../lib';
export default class ServerStatusCommand extends BushCommand {
public constructor() {
super('serverstatus', {
aliases: ['serverstatus', 'ss'],
category: 'utilities',
description: {
usage: 'serverstatus',
examples: ['serverstatus', 'ss'],
content: "Gives the status of moulberry's server"
},
ratelimit: 4,
cooldown: 4000,
clientPermissions: ['EMBED_LINKS', 'SEND_MESSAGES'],
slash: true
});
}
public async exec(message: BushMessage): Promise<void> {
const msgEmbed: MessageEmbed = new MessageEmbed()
.setTitle('Server status')
.setDescription(`Checking server:\n${this.client.util.emojis.loading}`)
.setColor(this.client.util.colors.default)
.setFooter('Checking https://moulberry.codes/lowestbin.json');
await message.util.reply({ embeds: [msgEmbed] });
let main;
try {
await got.get('https://moulberry.codes/lowestbin.json').json();
main = this.client.util.emojis.success;
} catch (e) {
main = this.client.util.emojis.error;
}
await message.util.edit({ embeds: [msgEmbed.setDescription(`Checking server:\n${main}`)] });
if (main == this.client.util.emojis.success) {
await message.util.edit({
embeds: [
msgEmbed
.addField('Status', 'The server is online, all features related to prices will likely work.')
.setColor(this.client.util.colors.success)
]
});
} else {
await message.util.edit({
embeds: [
msgEmbed
.addField(
'Status',
"It appears Moulberry's server is offline, this means that everything related to prices will likely not work."
)
.setColor(this.client.util.colors.error)
]
});
}
}
}
|