mrmBot-Matrix/commands/sonic.js

18 lines
747 B
JavaScript
Raw Normal View History

2020-07-22 18:12:38 +00:00
const magick = require("../build/Release/image.node");
const { promisify } = require("util");
2019-09-13 20:02:41 +00:00
const wrap = require("../utils/wrap.js");
exports.run = async (message, args) => {
if (args.length === 0) return `${message.author.mention}, you need to provide some text to make a Sonic meme!`;
2019-09-13 20:02:41 +00:00
message.channel.sendTyping();
const cleanedMessage = args.join(" ").replace(/&/g, "\\&amp;").replace(/>/g, "\\&gt;").replace(/</g, "\\&lt;").replace(/"/g, "\\&quot;").replace(/'/g, "\\&apos;");
2020-07-22 18:12:38 +00:00
const buffer = await promisify(magick.sonic)(wrap(cleanedMessage, {width: 15, indent: ""}));
return {
file: buffer,
name: "sonic.png"
};
};
exports.category = 4;
exports.help = "Creates a Sonic speech bubble image";
exports.params = "[text]";