2019-09-13 20:02:41 +00:00
|
|
|
const qrcode = require("qrcode");
|
2020-07-27 23:02:59 +00:00
|
|
|
const { PassThrough } = require("stream");
|
2019-09-13 20:02:41 +00:00
|
|
|
|
2020-01-13 16:31:01 +00:00
|
|
|
exports.run = async (message, args, content) => {
|
2019-09-13 20:02:41 +00:00
|
|
|
if (args.length === 0) return `${message.author.mention}, you need to provide some text to generate a QR code!`;
|
|
|
|
message.channel.sendTyping();
|
2020-07-27 23:02:59 +00:00
|
|
|
const writable = new PassThrough();
|
2020-01-13 16:31:01 +00:00
|
|
|
qrcode.toFileStream(writable, content, { margin: 1 });
|
2020-05-17 23:02:30 +00:00
|
|
|
const file = await streamToBuf(writable);
|
|
|
|
return {
|
|
|
|
file: file,
|
|
|
|
name: "qr.png"
|
|
|
|
};
|
2019-12-02 20:47:22 +00:00
|
|
|
};
|
|
|
|
|
2020-05-17 23:02:30 +00:00
|
|
|
function streamToBuf(stream) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const chunks = [];
|
|
|
|
stream.on("data", (chunk) => {
|
|
|
|
chunks.push(chunk);
|
|
|
|
});
|
|
|
|
stream.once("error", (error) => {
|
|
|
|
reject(error);
|
|
|
|
});
|
|
|
|
stream.once("end", () => {
|
|
|
|
resolve(Buffer.concat(chunks));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-12-02 20:47:22 +00:00
|
|
|
exports.category = 1;
|
2019-12-05 16:58:46 +00:00
|
|
|
exports.help = "Generates a QR code";
|
|
|
|
exports.params = "[text]";
|