Haha-Yes/commands/images/idubbbzpaint.js

74 lines
2.7 KiB
JavaScript
Raw Normal View History

2018-12-30 01:20:24 +01:00
const { Command } = require('discord-akairo');
2018-10-14 18:29:15 +02:00
const Discord = require('discord.js');
2018-12-30 01:20:24 +01:00
const { createCanvas, loadImage, getContext } = require('canvas');
const superagent = require('superagent');
class IdubbbzPaintCommand extends Command {
constructor() {
super('idubbbzpaint', {
aliases: ['idubbbzpaint', 'edupspaint'],
category: 'images',
2018-12-30 05:35:51 +01:00
args: [
{
id: 'text',
type: 'string'
},
{
id: 'image',
type: 'string'
}
]
2018-10-14 18:29:15 +02:00
});
}
2018-12-30 01:44:10 +01:00
async exec(message, args) {
2018-12-30 05:35:51 +01:00
let text = args.text;
2018-10-14 18:29:15 +02:00
let Attachment = (message.attachments).array();
2018-12-30 01:20:24 +01:00
let image = args.image;
if (!Attachment[0] && !image)
2018-11-13 20:33:26 +01:00
image = message.author.displayAvatarURL
else if(Attachment[0] && Attachment[0].url.endsWith('gif'))
2018-12-30 01:20:24 +01:00
return message.channel.send('Gif dosent work, sorry')
else if (!image)
image = Attachment[0].url
2018-10-14 18:29:15 +02:00
2018-12-30 05:31:00 +01:00
message.channel.send('Processing <a:loadingmin:527579785212329984>')
2018-12-30 05:37:22 +01:00
.then(loadingmsg => loadingmsg.delete(2000))
2018-12-30 05:31:00 +01:00
2018-10-14 18:29:15 +02:00
const canvas = createCanvas(1024, 544)
2018-10-14 18:40:40 +02:00
const applyText = (canvas, text) => {
const ctx = canvas.getContext('2d');
// Declare a base size of the font
let fontSize = 100;
do {
// Assign the font to the context and decrement it so it can be measured again
2018-11-25 23:56:16 +01:00
ctx.font = `${fontSize -= 10}px ubuntu`;
2018-10-14 18:40:40 +02:00
} while (ctx.measureText(text).width > 800 - 300);
// Return the result to use in the actual canvas
return ctx.font;
};
2018-10-14 18:29:15 +02:00
const ctx = canvas.getContext('2d')
const background = await loadImage(image);
2018-10-16 17:07:29 +02:00
ctx.drawImage(background, 140, 40, 400, 340);
2018-10-16 00:05:49 +02:00
const { body: buffer } = await superagent.get('https://image.noelshack.com/fichiers/2018/41/7/1539533685-untitled.png').catch(error => {
2018-12-30 01:20:24 +01:00
return message.channel.send('An error as occured, please try again')
2018-10-16 00:05:49 +02:00
})
2018-10-14 18:29:15 +02:00
const bg = await loadImage(buffer);
ctx.drawImage(bg, 0, 0, canvas.width, canvas.height);
2018-10-14 22:27:38 +02:00
ctx.font = applyText(canvas, text)
2018-10-14 18:40:40 +02:00
ctx.fillStyle = '#ffffff';
2018-10-14 22:27:38 +02:00
ctx.fillText(text, canvas.width / 3, canvas.height / 1.1);
2018-10-14 18:29:15 +02:00
2018-10-14 18:40:40 +02:00
const attachment = new Discord.Attachment(canvas.toBuffer(), 'edupspaint.png');
2018-10-14 18:29:15 +02:00
2018-12-30 01:20:24 +01:00
message.channel.send(attachment).catch(error => {
message.channel.send('an error as occured. Check the bot/channel permissions')
2018-10-15 11:23:40 +02:00
})
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;