const magick = require("../utils/image.js"); exports.run = async (message, args) => { const image = await require("../utils/imagedetect.js")(message); if (image === undefined) return `${message.author.mention}, you need to provide an image/GIF to make a motivational poster!`; const newArgs = args.filter(item => !item.includes(image.url) ); if (args.length === 0) return `${message.author.mention}, you need to provide some text to make a motivational poster!`; const processMessage = await message.channel.createMessage(" Processing... This might take a while"); const [topText, bottomText] = newArgs.join(" ").split(/(? elem.trim()); const { buffer, type } = await magick.run({ cmd: "motivate", path: image.path, top: topText.replaceAll("&", "\\&").replaceAll(">", "\\>").replaceAll("<", "\\<").replaceAll("\"", "\\"").replaceAll("'", "\\'").replaceAll("%", "\\%"), bottom: bottomText ? bottomText.replaceAll("&", "\\&").replaceAll(">", "\\>").replaceAll("<", "\\<").replaceAll("\"", "\\"").replaceAll("'", "\\'").replaceAll("%", "\\%") : "", type: image.type }); if (processMessage.channel.messages.get(processMessage.id)) await processMessage.delete(); return { file: buffer, name: `motivate.${type}` }; }; exports.aliases = ["motivational", "motiv", "demotiv", "demotivational", "poster", "motivation"]; exports.category = 5; exports.help = "Creates a motivational poster";