2020-07-20 22:10:04 +00:00
|
|
|
const magick = require("../build/Release/image.node");
|
|
|
|
const { promisify } = require("util");
|
2019-09-13 20:02:41 +00:00
|
|
|
|
|
|
|
exports.run = async (message, args) => {
|
2019-12-02 20:47:22 +00:00
|
|
|
message.channel.sendTyping();
|
2019-09-13 20:02:41 +00:00
|
|
|
const image = await require("../utils/imagedetect.js")(message);
|
|
|
|
if (image === undefined) return `${message.author.mention}, you need to provide an image to generate a meme!`;
|
2020-04-23 22:38:01 +00:00
|
|
|
const newArgs = args.filter(item => !item.includes(image.url) );
|
2019-09-13 20:02:41 +00:00
|
|
|
if (args.length === 0) return `${message.author.mention}, you need to provide some text to generate a meme!`;
|
2020-04-23 22:38:01 +00:00
|
|
|
const [topText, bottomText] = newArgs.join(" ").split(/(?<!\\),/).map(elem => elem.trim());
|
2020-07-20 22:10:04 +00:00
|
|
|
const buffer = await promisify(magick.meme)(image.path, topText.toUpperCase().replace(/&/g, "\\&").replace(/>/g, "\\>").replace(/</g, "\\<").replace(/"/g, "\\"").replace(/'/g, "\\'"), bottomText ? bottomText.toUpperCase().replace(/&/g, "\\&").replace(/>/g, "\\>").replace(/</g, "\\<").replace(/"/g, "\\"").replace(/'/g, "\\'") : "", image.type.toUpperCase(), image.delay ? (100 / image.delay.split("/")[0]) * image.delay.split("/")[1] : 0);
|
2020-04-12 19:51:48 +00:00
|
|
|
return {
|
2020-02-21 00:26:49 +00:00
|
|
|
file: buffer,
|
2020-02-25 20:45:47 +00:00
|
|
|
name: `meme.${image.type}`
|
2020-04-12 19:51:48 +00:00
|
|
|
};
|
2019-12-02 20:47:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.category = 5;
|
2019-12-05 16:58:46 +00:00
|
|
|
exports.help = "Generates a meme from an image (separate top/bottom text with a comma)";
|
|
|
|
exports.params = "[top text], {bottom text}";
|