2022-01-13 01:47:36 +00:00
|
|
|
import jsqr from "jsqr";
|
|
|
|
import fetch from "node-fetch";
|
|
|
|
import sharp from "sharp";
|
|
|
|
import { clean } from "../../utils/misc.js";
|
|
|
|
import Command from "../../classes/command.js";
|
|
|
|
import imageDetect from "../../utils/imagedetect.js";
|
|
|
|
|
|
|
|
class QrReadCommand extends Command {
|
|
|
|
async run() {
|
|
|
|
const image = await imageDetect(this.client, this.message);
|
2022-01-26 18:53:20 +00:00
|
|
|
if (image === undefined) return "You need to provide an image/GIF with a QR code to read!";
|
2022-01-13 01:47:36 +00:00
|
|
|
this.client.sendChannelTyping(this.message.channel.id);
|
|
|
|
const data = await (await fetch(image.path)).buffer();
|
|
|
|
const rawData = await sharp(data).ensureAlpha().raw().toBuffer({ resolveWithObject: true });
|
|
|
|
const qrBuffer = jsqr(rawData.data, rawData.info.width, rawData.info.height);
|
|
|
|
if (!qrBuffer) return "I couldn't find a QR code!";
|
|
|
|
return `\`\`\`\n${await clean(qrBuffer.data)}\n\`\`\``;
|
|
|
|
}
|
|
|
|
|
|
|
|
static description = "Reads a QR code";
|
|
|
|
}
|
|
|
|
|
2022-01-26 18:53:20 +00:00
|
|
|
export default QrReadCommand;
|