mrmBot-Matrix/commands/sonic.js

18 lines
747 B
JavaScript

const magick = require("../build/Release/image.node");
const { promisify } = require("util");
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!`;
message.channel.sendTyping();
const cleanedMessage = args.join(" ").replace(/&/g, "\\&amp;").replace(/>/g, "\\&gt;").replace(/</g, "\\&lt;").replace(/"/g, "\\&quot;").replace(/'/g, "\\&apos;");
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]";