2018-12-30 01:20:24 +01:00
|
|
|
const { Command } = require('discord-akairo');
|
2019-01-02 08:09:45 +01:00
|
|
|
const { createCanvas, loadImage } = require('canvas');
|
2018-12-30 01:20:24 +01:00
|
|
|
const superagent = require('superagent');
|
|
|
|
|
|
|
|
class IdubbbzPaintCommand extends Command {
|
2019-01-02 08:09:45 +01:00
|
|
|
constructor() {
|
|
|
|
super('idubbbzpaint', {
|
|
|
|
aliases: ['idubbbzpaint', 'edupspaint'],
|
|
|
|
category: 'images',
|
2019-11-09 12:04:01 +01:00
|
|
|
clientPermissions: ['SEND_MESSAGES', 'ATTACH_FILES'],
|
2019-01-02 08:09:45 +01:00
|
|
|
args: [
|
|
|
|
{
|
|
|
|
id: 'text',
|
2019-01-02 10:34:04 +01:00
|
|
|
type: 'string',
|
|
|
|
default: 'Perfection'
|
2019-01-02 08:09:45 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'image',
|
|
|
|
type: 'string'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
});
|
|
|
|
}
|
2018-10-14 18:29:15 +02:00
|
|
|
|
2019-01-02 08:09:45 +01:00
|
|
|
async exec(message, args) {
|
|
|
|
let text = args.text;
|
|
|
|
let Attachment = (message.attachments).array();
|
|
|
|
let image = args.image;
|
|
|
|
if (!Attachment[0] && !image)
|
2019-02-06 04:06:18 +01:00
|
|
|
image = message.author.displayAvatarURL().replace('webp', 'png');
|
2019-01-02 08:09:45 +01:00
|
|
|
else if (Attachment[0] && Attachment[0].url.endsWith('gif'))
|
|
|
|
return message.channel.send('Gif dosent work, sorry');
|
|
|
|
else if (!image)
|
|
|
|
image = Attachment[0].url;
|
2018-10-14 18:29:15 +02:00
|
|
|
|
2019-01-02 08:09:45 +01:00
|
|
|
message.channel.send('Processing <a:loadingmin:527579785212329984>')
|
|
|
|
.then(loadingmsg => loadingmsg.delete(2000));
|
2019-01-02 04:35:34 +01:00
|
|
|
|
2019-01-02 08:09:45 +01:00
|
|
|
const canvas = createCanvas(1024, 544);
|
|
|
|
const applyText = (canvas, text) => {
|
|
|
|
const ctx = canvas.getContext('2d');
|
2019-01-02 04:35:34 +01:00
|
|
|
|
2019-01-02 08:09:45 +01:00
|
|
|
// Declare a base size of the font
|
|
|
|
let fontSize = 100;
|
2019-01-02 04:35:34 +01:00
|
|
|
|
2019-01-02 08:09:45 +01:00
|
|
|
do {
|
|
|
|
// Assign the font to the context and decrement it so it can be measured again
|
|
|
|
ctx.font = `${fontSize -= 10}px ubuntu`;
|
|
|
|
} while (ctx.measureText(text).width > 800 - 300);
|
2019-01-02 04:35:34 +01:00
|
|
|
|
2019-01-02 08:09:45 +01:00
|
|
|
// Return the result to use in the actual canvas
|
|
|
|
return ctx.font;
|
|
|
|
};
|
2018-10-14 18:29:15 +02:00
|
|
|
|
2019-01-02 08:09:45 +01:00
|
|
|
const ctx = canvas.getContext('2d');
|
|
|
|
const background = await loadImage(image);
|
|
|
|
ctx.drawImage(background, 140, 40, 400, 340);
|
|
|
|
const { body: buffer } = await superagent.get('https://image.noelshack.com/fichiers/2018/41/7/1539533685-untitled.png').catch(() => {
|
|
|
|
return message.channel.send('An error as occured, please try again');
|
|
|
|
});
|
|
|
|
const bg = await loadImage(buffer);
|
|
|
|
ctx.drawImage(bg, 0, 0, canvas.width, canvas.height);
|
|
|
|
ctx.font = applyText(canvas, text);
|
|
|
|
ctx.fillStyle = '#ffffff';
|
|
|
|
ctx.fillText(text, canvas.width / 3, canvas.height / 1.1);
|
2018-10-14 18:29:15 +02:00
|
|
|
|
2019-01-15 21:57:33 +01:00
|
|
|
message.channel.send({files: [canvas.toBuffer()]}).catch(() => {
|
2019-01-02 08:09:45 +01:00
|
|
|
message.channel.send('an error as occured. Check the bot/channel permissions');
|
|
|
|
});
|
|
|
|
}
|
2018-12-30 01:20:24 +01:00
|
|
|
}
|
2018-10-14 18:29:15 +02:00
|
|
|
|
2018-12-30 01:20:24 +01:00
|
|
|
module.exports = IdubbbzPaintCommand;
|