mrmBot-Matrix/commands/qrread.js

14 lines
594 B
JavaScript
Raw Normal View History

2020-07-27 23:02:59 +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) => {
const image = await require("../utils/imagedetect.js")(message);
if (image === undefined) return `${message.author.mention}, you need to provide an image with a QR code to read!`;
2019-09-13 20:02:41 +00:00
message.channel.sendTyping();
2020-07-27 23:02:59 +00:00
const {qrText, missing} = await promisify(magick.qrread)(image.path);
if (missing) return `${message.author.mention}, I couldn't find a QR code!`;
return `\`\`\`\n${qrText}\n\`\`\``;
};
exports.category = 1;
exports.help = "Reads a QR code";