const fetch = require("node-fetch"); const Command = require("../../classes/command.js"); class AncientCommand extends Command { async run() { this.client.sendChannelTyping(this.message.channel.id); const controller = new AbortController(); // eslint-disable-line no-undef const timeout = setTimeout(() => { controller.abort(); }, 15000); try { const data = await fetch("https://projectlounge.pw/meme/", { redirect: "manual", signal: controller.signal }); clearTimeout(timeout); return { embed: { color: 16711680, image: { url: data.headers.get("location") } } }; } catch (e) { if (e.name === "AbortError") { return "I couldn't get a meme in time. Maybe try again?"; } } } static description = "Gets a random ancient meme"; static aliases = ["old", "oldmeme", "badmeme"]; } module.exports = AncientCommand;