const client = require("./client.js"); const fetch = require("node-fetch"); const url = require("url"); const { getType } = require("./image.js"); const execPromise = require("util").promisify(require("child_process").exec); const tenorURLs = [ "tenor.com", "www.tenor.com" ]; const giphyURLs = [ "giphy.com", "www.giphy.com" ]; const imgurURLs = [ "imgur.com", "www.imgur.com", "i.imgur.com" ]; const formats = ["image/jpeg", "image/png", "image/webp", "image/gif"]; // gets the proper image paths const getImage = async (image, image2, gifv = false) => { try { const payload = { url: image2, path: image }; if (gifv) { const host = url.parse(image2).host; if (tenorURLs.includes(host)) { if (process.env.TENOR !== "") { const data = await fetch(`https://api.tenor.com/v1/gifs?ids=${image2.split("-").pop()}&key=${process.env.TENOR}`); const json = await data.json(); payload.path = json.results[0].media[0].gif.url; } else { const delay = (await execPromise(`ffprobe -v 0 -of csv=p=0 -select_streams v:0 -show_entries stream=r_frame_rate ${image}`)).stdout.replace("\n", ""); payload.delay = (100 / delay.split("/")[0]) * delay.split("/")[1]; } } else if (giphyURLs.includes(host)) { payload.path = `https://media0.giphy.com/media/${image2.split("-").pop()}/giphy.gif`; } else if (imgurURLs.includes(host)) { payload.path = image.replace(".mp4", ".gif"); } payload.type = "image/gif"; } else { payload.type = await getType(payload.path); if (!payload.type || !formats.includes(payload.type)) return; } return payload; } catch (error) { if (error.name === "AbortError") { throw Error("Timed out"); } else { throw error; } } }; const checkImages = async (message) => { let type; // first check the embeds if (message.embeds.length !== 0) { // embeds can vary in types, we check for tenor gifs first if (message.embeds[0].type === "gifv") { type = await getImage(message.embeds[0].video.url, message.embeds[0].url, true); // then we check for other image types } else if (message.embeds[0].type === "video" || message.embeds[0].type === "image") { type = await getImage(message.embeds[0].thumbnail.proxy_url, message.embeds[0].thumbnail.url); // finally we check both possible image fields for "generic" embeds } else if (message.embeds[0].type === "rich") { if (message.embeds[0].thumbnail) { type = await getImage(message.embeds[0].thumbnail.proxy_url, message.embeds[0].thumbnail.url); } else if (message.embeds[0].image) { type = await getImage(message.embeds[0].image.proxy_url, message.embeds[0].image.url); } } // then check the attachments } else if (message.attachments.length !== 0 && message.attachments[0].width) { type = await getImage(message.attachments[0].proxy_url, message.attachments[0].url); } // if the file is an image then return it return type ? type : false; }; // this checks for the latest message containing an image and returns the url of the image module.exports = async (cmdMessage) => { // we start by checking the current message for images const result = await checkImages(cmdMessage); if (result !== false) return result; // if there aren't any in the current message then check if there's a reply if (cmdMessage.messageReference) { const replyMessage = await client.getMessage(cmdMessage.messageReference.channelID, cmdMessage.messageReference.messageID); if (replyMessage) { const replyResult = await checkImages(replyMessage); if (replyResult !== false) return replyResult; } } // if there aren't any replies then iterate over the last few messages in the channel const messages = await cmdMessage.channel.getMessages(); // iterate over each message for (const message of messages) { const result = await checkImages(message); if (result === false) { continue; } else { return result; } } };