mrmBot-Matrix/commands/motivate.js

28 lines
1.5 KiB
JavaScript
Raw Normal View History

const magick = require("../utils/image.js");
2020-02-13 19:29:42 +00:00
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) );
2020-02-13 19:29:42 +00:00
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("<a:processing:479351417102925854> Processing... This might take a while");
const [topText, bottomText] = newArgs.join(" ").split(/(?<!\\),/).map(elem => elem.trim());
const buffer = await magick({
cmd: "motivate",
path: image.path,
top: topText.replace(/&/g, "\\&amp;").replace(/>/g, "\\&gt;").replace(/</g, "\\&lt;").replace(/"/g, "\\&quot;").replace(/'/g, "\\&apos;"),
bottom: bottomText ? bottomText.replace(/&/g, "\\&amp;").replace(/>/g, "\\&gt;").replace(/</g, "\\&lt;").replace(/"/g, "\\&quot;").replace(/'/g, "\\&apos;") : "",
type: image.type.toUpperCase(),
delay: image.delay ? (100 / image.delay.split("/")[0]) * image.delay.split("/")[1] : 0
});
if (processMessage.channel.messages.get(processMessage.id)) await processMessage.delete();
return {
2020-07-22 18:12:38 +00:00
file: buffer,
name: `motivate.${image.type}`
};
2020-02-13 19:29:42 +00:00
};
exports.aliases = ["motivational", "motiv", "demotiv", "demotivational", "poster", "motivation"];
2020-02-13 19:29:42 +00:00
exports.category = 5;
exports.help = "Creates a motivational poster";