mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 05:04:58 +05:00
59 lines
1.6 KiB
JavaScript
59 lines
1.6 KiB
JavaScript
const { SlashCommandBuilder } = require("discord.js");
|
|
const BaseCommand = require("../../base/BaseCommand"),
|
|
fetch = require("node-fetch");
|
|
|
|
class Shorturl extends BaseCommand {
|
|
/**
|
|
*
|
|
* @param {import("../base/Client")} client
|
|
*/
|
|
constructor(client) {
|
|
super({
|
|
command: new SlashCommandBuilder()
|
|
.setName("shorturl")
|
|
.setDescription(client.translate("general/shorturl:DESCRIPTION"))
|
|
.setDescriptionLocalizations({
|
|
uk: client.translate("general/shorturl:DESCRIPTION", null, "uk-UA"),
|
|
ru: client.translate("general/shorturl:DESCRIPTION", null, "ru-RU"),
|
|
})
|
|
.setDMPermission(true)
|
|
.addStringOption(option =>
|
|
option
|
|
.setName("url")
|
|
.setDescription(client.translate("common:URL"))
|
|
.setDescriptionLocalizations({
|
|
uk: client.translate("common:URL", null, "uk-UA"),
|
|
ru: client.translate("common:URL", null, "ru-RU"),
|
|
})
|
|
.setRequired(true),
|
|
),
|
|
dirname: __dirname,
|
|
ownerOnly: false,
|
|
});
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param {import("../../base/Client")} client
|
|
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
|
*/
|
|
async execute(client, interaction) {
|
|
await interaction.deferReply({ ephemeral: true });
|
|
|
|
const url = interaction.options.getString("url");
|
|
const res = await fetch("https://plsgo.ru/rest/v3/short-urls", {
|
|
method: "POST",
|
|
headers: {
|
|
"Content-Type": "application/x-www-form-urlencoded",
|
|
"X-Api-Key": client.config.apiKeys.shlink,
|
|
},
|
|
body: new URLSearchParams({ longUrl: url }),
|
|
}).then(res => res.json());
|
|
|
|
interaction.editReply({
|
|
content: `<${res.shortUrl}>`,
|
|
});
|
|
}
|
|
}
|
|
|
|
module.exports = Shorturl;
|