Haha-Yes/commands/utility/stats.js

46 lines
1.5 KiB
JavaScript
Raw Normal View History

2018-12-30 01:20:24 +01:00
const { Command } = require('discord-akairo');
const akairoVersion = require('discord-akairo').version;
const { MessageEmbed, version } = require('discord.js');
2018-12-25 19:17:07 +01:00
2018-12-30 01:20:24 +01:00
class StatsCommand extends Command {
2019-01-02 08:09:45 +01:00
constructor() {
super('stats', {
aliases: ['stats'],
category: 'utility',
description: {
2018-12-30 01:20:24 +01:00
content: 'Show some stats about the bot',
usage: '',
examples: ['']
}
2019-01-02 08:09:45 +01:00
});
}
2018-09-08 16:10:28 +02:00
2019-01-02 08:09:45 +01:00
async exec(message) {
let totalSeconds = (this.client.uptime / 1000);
let days = Math.floor(totalSeconds / 86400);
let hours = Math.floor(totalSeconds / 3600);
totalSeconds %= 3600;
let minutes = Math.floor(totalSeconds / 60);
let seconds = totalSeconds.toFixed(0) % 60;
let uptime = `${days} days, ${hours} hours, ${minutes} minutes and ${seconds} seconds`;
2019-01-02 18:45:53 +01:00
const used = process.memoryUsage().heapUsed / 1024 / 1024;
const statsEmbed = new MessageEmbed()
.setColor('#0099ff')
.setTitle('Bot stats')
.setAuthor('Haha yes')
.addField('Servers', this.client.guilds.size, true)
.addField('Channels', this.client.channels.size, true)
.addField('Users', this.client.users.size, true)
.addField('Uptime', uptime, true)
.addField('Ram usage', `${Math.round(used * 100) / 100} MB`, true)
.addField('Nodejs version', process.version, true)
.addField('Discord.js version', version, true)
.addField('Discord-Akairo version', akairoVersion, true)
2019-01-03 17:28:31 +01:00
.setTimestamp();
2019-01-02 18:45:53 +01:00
return message.channel.send(statsEmbed);
2019-01-02 08:09:45 +01:00
}
2018-12-30 01:20:24 +01:00
}
module.exports = StatsCommand;