JaBa/commands/General/github.js
2021-12-26 19:37:21 +05:00

48 lines
No EOL
1.4 KiB
JavaScript

const Command = require("../../base/Command.js"),
Discord = require("discord.js"),
fetch = require("node-fetch");
class Github extends Command {
constructor(client) {
super(client, {
name: "github",
dirname: __dirname,
enabled: true,
guildOnly: false,
aliases: ["git"],
memberPermissions: [],
botPermissions: ["SEND_MESSAGES", "EMBED_LINKS"],
nsfw: false,
ownerOnly: false,
cooldown: 3000
});
}
async run(message, args, data) {
const res = await fetch("https://api.github.com/repos/JonnyBro/JaBa-new", {
headers: {
Authorization: data.config.githubToken
}
});
const json = await res.json();
const embed = new Discord.MessageEmbed()
.setAuthor(this.client.user.tag, this.client.user.displayAvatarURL({
size: 512,
dynamic: true,
format: "png"
}))
.setDescription(`[${message.translate("general/github:CLICK_HERE")}](https://github.com/JonnyBro/JaBa-new)`)
.addField("Stars", json.stargazers_count, true)
.addField("Forks", json.forks_count, true)
.addField(message.translate("general/github:LANGUAGE"), json.language, true)
.addField(message.translate("general/github:OWNER"), `[${json.owner.login}](${json.owner.html_url})`)
.setImage(json.owner.avatar_url)
.setColor(data.config.embed.color)
.setFooter(data.config.embed.footer);
message.channel.send(embed);
}
};
module.exports = Github;