mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 05:04:58 +05:00
checkjar
This commit is contained in:
parent
e08053fc37
commit
0216ab3a3b
2 changed files with 84 additions and 0 deletions
79
commands/IAT/checkjar.js
Normal file
79
commands/IAT/checkjar.js
Normal file
|
@ -0,0 +1,79 @@
|
|||
const { SlashCommandBuilder, EmbedBuilder } = require("discord.js");
|
||||
const BaseCommand = require("../../base/BaseCommand"),
|
||||
fetch = require("node-fetch"),
|
||||
moment = require("moment");
|
||||
|
||||
class Checkjar extends BaseCommand {
|
||||
/**
|
||||
*
|
||||
* @param {import("../base/JaBa")} client
|
||||
*/
|
||||
constructor(client) {
|
||||
super({
|
||||
command: new SlashCommandBuilder()
|
||||
.setName("checkjar")
|
||||
.setDescription(client.translate("iat/checkjar:DESCRIPTION"))
|
||||
.setDMPermission(false),
|
||||
aliases: [],
|
||||
dirname: __dirname,
|
||||
ownerOnly: false,
|
||||
});
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @param {import("../../base/JaBa")} client
|
||||
*/
|
||||
async onLoad() {
|
||||
//...
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @param {import("../../base/JaBa")} client
|
||||
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
||||
* @param {Object} data
|
||||
*/
|
||||
async execute(client, interaction) {
|
||||
if (!interaction.member.roles.cache.has("1039467712633638962")) return interaction.reply({ content: "error", ephemeral: true });
|
||||
|
||||
await interaction.deferReply();
|
||||
|
||||
const jar = "x3VtgmqMXYJ6k-vqdlhmGCejFH9Ej3Y";
|
||||
const data = await fetch(`https://api.monobank.ua/personal/statement/${jar}/${Date.now() - (7 * 24 * 60 * 60 * 1000)}/${Date.now()}`, {
|
||||
method: "GET",
|
||||
headers: {
|
||||
"X-Token": "ugBCz115wxv4VPdtfIlkZtb1lvV2FglPrppAaphVpKwU",
|
||||
},
|
||||
}).then(res => res.json());
|
||||
|
||||
const embed = new EmbedBuilder()
|
||||
.setColor(client.config.embed.color)
|
||||
.setFooter({
|
||||
text: client.config.embed.footer,
|
||||
})
|
||||
.setAuthor({
|
||||
name: "Monobank API",
|
||||
iconURL: "https://api.monobank.ua/docs/logo.png",
|
||||
})
|
||||
.setDescription(`Текущий баланс: **${data[0].balance / Math.pow(10, 2)} грн**`);
|
||||
|
||||
data.length = 10;
|
||||
|
||||
data.forEach(t => {
|
||||
const time = moment.unix(t.time);
|
||||
|
||||
embed.addFields([
|
||||
{
|
||||
name: `${t.description}`,
|
||||
value: `Дата: ${time.locale("uk-UA").format("DD MMMM YYYY, HH:mm")}\nСумма: ${t.amount / Math.pow(10, 2)} грн`,
|
||||
inline: true,
|
||||
},
|
||||
]);
|
||||
});
|
||||
|
||||
interaction.editReply({
|
||||
embeds: [embed],
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Checkjar;
|
5
languages/uk-UA/iat/checkjar.json
Normal file
5
languages/uk-UA/iat/checkjar.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"DESCRIPTION": "Перевірити баланс банки",
|
||||
"USAGE": "",
|
||||
"EXAMPLES": "checkjar"
|
||||
}
|
Loading…
Reference in a new issue