2019-11-15 21:48:03 +01:00
|
|
|
const { Command } = require('discord-akairo');
|
|
|
|
|
|
|
|
class userInfoCommand extends Command {
|
|
|
|
constructor() {
|
|
|
|
super('userInfo', {
|
|
|
|
aliases: ['userInfo', 'user'],
|
|
|
|
category: 'utility',
|
|
|
|
clientPermissions: ['SEND_MESSAGES', 'EMBED_LINKS'],
|
|
|
|
channelRestriction: 'guild',
|
|
|
|
args: [
|
|
|
|
{
|
|
|
|
id: 'user',
|
|
|
|
type: 'user',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
description: {
|
|
|
|
content: 'Show info about a user',
|
2019-11-15 21:49:34 +01:00
|
|
|
usage: '[@user]',
|
|
|
|
examples: ['@SomeoneReallyCoolInMyGuild']
|
2019-11-15 21:48:03 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async exec(message, args) {
|
|
|
|
let user = message.author;
|
|
|
|
|
|
|
|
if (args.user) {
|
|
|
|
user = args.user;
|
|
|
|
}
|
|
|
|
|
|
|
|
let member = message.guild.member(user);
|
|
|
|
|
2019-11-22 12:30:20 +01:00
|
|
|
const Embed = this.client.util.embed()
|
2019-11-15 21:48:03 +01:00
|
|
|
.setColor(member.displayHexColor)
|
|
|
|
.setAuthor(`${user.tag} (${user.id})`, user.displayAvatarURL())
|
|
|
|
.addField('Current rank hex color', member.displayHexColor, true)
|
|
|
|
.addField('Joined guild at', member.joinedAt, true)
|
|
|
|
.addField('Date when account created', user.createdAt, true)
|
|
|
|
.setTimestamp();
|
|
|
|
|
|
|
|
|
2019-11-15 22:13:33 +01:00
|
|
|
// Show since when this user have been boosting the current guild
|
|
|
|
if (member.premiumSince) Embed.addField('Boosting this guild since', member.premiumSince, true);
|
2019-11-15 21:55:55 +01:00
|
|
|
|
2019-11-15 22:13:33 +01:00
|
|
|
Embed.addBlankField();
|
|
|
|
|
|
|
|
// Show user status
|
|
|
|
if (user.presence.activity) Embed.addField('Presence', user.presence.activity, true);
|
2019-11-15 22:11:24 +01:00
|
|
|
|
|
|
|
// Is the user a bot?
|
|
|
|
if (user.bot) Embed.addField('Is a bot?', '✅', true); else if (!user.bot) Embed.addField('Is a bot?', '❌', true);
|
2019-11-15 21:48:03 +01:00
|
|
|
|
|
|
|
// Show guild nickname
|
|
|
|
if (member.nickname) Embed.addField('Nickname', member.nickname, true);
|
|
|
|
// Show user locale ( i have no idea what it is ) https://discord.js.org/#/docs/main/master/class/User?scrollTo=locale
|
|
|
|
if (user.locale) Embed.addField('Locale settings', user.locale, true);
|
2019-11-15 22:13:33 +01:00
|
|
|
|
|
|
|
// Show on which platform they are using discord from if its not a bot
|
|
|
|
if (user.presence.clientStatus && !user.bot) {
|
|
|
|
Embed.addBlankField();
|
2019-11-15 23:26:16 +01:00
|
|
|
if (user.presence.clientStatus.mobile) Embed.addField('Using discord on', '📱 ' + user.presence.clientStatus.mobile, true);
|
|
|
|
if (user.presence.clientStatus.desktop) Embed.addField('Using discord on', '💻 ' + user.presence.clientStatus.desktop, true);
|
|
|
|
if (user.presence.clientStatus.web) Embed.addField('Using discord on', '☁️ ' + user.presence.clientStatus.web, true);
|
2019-11-15 22:13:33 +01:00
|
|
|
}
|
2019-11-15 21:48:03 +01:00
|
|
|
|
|
|
|
return message.channel.send({ embed: Embed });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = userInfoCommand;
|