aboutsummaryrefslogtreecommitdiff
path: root/src/commands/info/botInfo.ts
blob: 33388247f76969a78df32b86bc7b8d886bf55a5b (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
import { BushCommand, type BushMessage, type BushSlashMessage } from '#lib';
import assert from 'assert';
import { EmbedBuilder, PermissionFlagsBits, version as discordJSVersion } from 'discord.js';
import * as os from 'os';
const { default: prettyBytes } = await import('pretty-bytes');
assert(prettyBytes);
assert(os);

export default class BotInfoCommand extends BushCommand {
	public constructor() {
		super('botInfo', {
			aliases: ['bot-info', 'stats'],
			category: 'info',
			description: 'Shows information about the bot',
			usage: ['bot-info'],
			examples: ['bot-info'],
			slash: true,
			clientPermissions: (m) => util.clientSendAndPermCheck(m, [PermissionFlagsBits.EmbedLinks], true),
			userPermissions: []
		});
	}

	public override async exec(message: BushMessage | BushSlashMessage) {
		enum Platform {
			aix = 'AIX',
			android = 'Android',
			darwin = 'MacOS',
			freebsd = 'FreeBSD',
			linux = 'Linux',
			openbsd = 'OpenBSD',
			sunos = 'SunOS',
			win32 = 'Windows',
			cygwin = 'Cygwin',
			netbsd = 'NetBSD',
			haiku = 'Haiku'
		}

		const developers = (await util.mapIDs(client.config.owners)).map((u) => u?.tag).join('\n');
		const currentCommit = (await util.shell('git rev-parse HEAD')).stdout.replace('\n', '');
		let repoUrl = (await util.shell('git remote get-url origin')).stdout.replace('\n', '');
		if (repoUrl.includes('.git')) repoUrl = repoUrl.substring(0, repoUrl.length - 4);
		const embed = new EmbedBuilder()
			.setTitle('Bot Info:')
			.addFields([
				{ name: '**Uptime**', value: util.humanizeDuration(client.uptime!, 2), inline: true },
				{
					name: '**Memory Usage**',
					value: `System: ${prettyBytes(os.totalmem() - os.freemem(), { binary: true })}/${prettyBytes(os.totalmem(), {
						binary: true
					})}\nHeap: ${prettyBytes(process.memoryUsage().heapUsed, { binary: true })}/${prettyBytes(
						process.memoryUsage().heapTotal,
						{ binary: true }
					)}`,
					inline: true
				},
				{ name: '**CPU Usage**', value: `${client.stats.cpu}%`, inline: true },
				{ name: '**Platform**', value: Platform[process.platform], inline: true },
				{ name: '**Commands Used**', value: `${client.stats.commandsUsed.toLocaleString()}`, inline: true },
				{ name: '**Servers**', value: client.guilds.cache.size.toLocaleString(), inline: true },
				{ name: '**Users**', value: client.users.cache.size.toLocaleString(), inline: true },
				{ name: '**Discord.js Version**', value: discordJSVersion, inline: true },
				{ name: '**Node.js Version**', value: process.version.slice(1), inline: true },
				{ name: '**Commands**', value: client.commandHandler.modules.size.toLocaleString(), inline: true },
				{ name: '**Listeners**', value: client.listenerHandler.modules.size.toLocaleString(), inline: true },
				{ name: '**Inhibitors**', value: client.inhibitorHandler.modules.size.toLocaleString(), inline: true },
				{ name: '**Tasks**', value: client.taskHandler.modules.size.toLocaleString(), inline: true },
				{
					name: '**Current Commit**',
					value: `[${currentCommit.substring(0, 7)}](${repoUrl}/commit/${currentCommit})`,
					inline: true
				},
				{ name: '**Developers**', value: developers, inline: true }
			])
			.setTimestamp()
			.setColor(util.colors.default);
		await message.util.reply({ embeds: [embed] });
	}
}