JaBa/commands/General/shorturl.js

38 lines
1 KiB
JavaScript
Raw Normal View History

2021-12-10 21:39:54 +05:00
const Command = require("../../base/Command.js"),
Discord = require("discord.js"),
fetch = require("node-fetch");
class ShortURL extends Command {
constructor (client) {
super(client, {
name: "shorturl",
dirname: __dirname,
enabled: true,
guildOnly: false,
aliases: [ "minimize" ],
memberPermissions: [],
botPermissions: [ "SEND_MESSAGES", "EMBED_LINKS" ],
nsfw: false,
ownerOnly: false,
cooldown: 3000
2021-12-10 21:39:54 +05:00
});
}
async run (message, args, data) {
const url = args[0];
2021-12-11 01:11:50 +05:00
if (!url) return message.error("general/shorturl:MISSING_URL");
2021-12-10 21:39:54 +05:00
const res = await fetch(`https://is.gd/create.php?format=simple&url=${encodeURI(url)}`);
const body = await res.text();
2021-12-11 01:11:50 +05:00
if (body === "Error: Please enter a valid URL to shorten") return message.error("general/shorturl:MISSING_URL");
2021-12-10 21:39:54 +05:00
const embed = new Discord.MessageEmbed()
.setColor(data.config.embed.color)
.setFooter(data.config.embed.footer)
.setDescription(body);
message.channel.send(embed);
}
2021-12-11 01:11:50 +05:00
};
2021-12-10 21:39:54 +05:00
module.exports = ShortURL;