2020-08-28 02:34:12 +00:00
|
|
|
const magick = require("../utils/image.js");
|
2020-08-13 13:47:41 +00:00
|
|
|
const { clean } = require("../utils/misc.js");
|
2019-09-13 20:02:41 +00:00
|
|
|
|
|
|
|
exports.run = async (message) => {
|
|
|
|
const image = await require("../utils/imagedetect.js")(message);
|
2019-12-02 20:47:22 +00:00
|
|
|
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-08-28 02:34:12 +00:00
|
|
|
const {qrText, missing} = await magick({
|
|
|
|
cmd: "qrread",
|
|
|
|
path: image.path
|
|
|
|
});
|
2020-07-27 23:02:59 +00:00
|
|
|
if (missing) return `${message.author.mention}, I couldn't find a QR code!`;
|
2020-08-13 13:47:41 +00:00
|
|
|
return `\`\`\`\n${await clean(qrText)}\n\`\`\``;
|
2019-12-02 20:47:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.category = 1;
|
|
|
|
exports.help = "Reads a QR code";
|