TravBot-v3/src/commands/utility/shorten.ts

21 lines
693 B
TypeScript

import {Command, NamedCommand} from "../../core";
import * as https from "https";
export default new NamedCommand({
description: "Shortens a given URL.",
run: "Please provide a URL.",
any: new Command({
async run({message, channel, guild, author, member, client, args}) {
https.get("https://is.gd/create.php?format=simple&url=" + encodeURIComponent(args[0]), function (res) {
var body = "";
res.on("data", function (chunk) {
body += chunk;
});
res.on("end", function () {
channel.send(`<${body}>`);
});
});
}
})
});