2018-12-30 01:20:24 +01:00
|
|
|
const { Command } = require('discord-akairo');
|
2018-10-15 12:21:24 +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');
|
2018-12-05 00:52:21 +01:00
|
|
|
|
2018-12-30 01:20:24 +01:00
|
|
|
class UglyCommand extends Command {
|
|
|
|
constructor() {
|
|
|
|
super('ugly', {
|
|
|
|
aliases: ['ugly'],
|
|
|
|
category: 'images',
|
|
|
|
args: [
|
|
|
|
{
|
|
|
|
id: 'image',
|
|
|
|
type: 'string',
|
|
|
|
optional: true,
|
|
|
|
}
|
|
|
|
]
|
2018-10-15 12:21:24 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-12-30 01:44:10 +01:00
|
|
|
async exec(message, args) {
|
2018-10-15 12:21:24 +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-15 12:21:24 +02:00
|
|
|
|
|
|
|
const canvas = createCanvas(323, 400)
|
|
|
|
const ctx = canvas.getContext('2d')
|
2018-10-16 00:05:49 +02:00
|
|
|
const background = await loadImage('https://image.noelshack.com/fichiers/2018/42/1/1539598678-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-15 12:21:24 +02:00
|
|
|
ctx.drawImage(background, 0, 0, canvas.width, canvas.height);
|
|
|
|
const { body: buffer } = await superagent.get(image);
|
|
|
|
const bg = await loadImage(buffer);
|
|
|
|
ctx.drawImage(bg, 40, 100, 250, 250);
|
|
|
|
|
2018-11-04 20:56:40 +01:00
|
|
|
const attachment = new Discord.Attachment(canvas.toBuffer(), 'ugly.png');
|
2018-10-15 12:21:24 +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 12:21:24 +02:00
|
|
|
})
|
2018-12-30 01:20:24 +01:00
|
|
|
}
|
|
|
|
}
|
2018-10-15 12:21:24 +02:00
|
|
|
|
2018-12-30 01:20:24 +01:00
|
|
|
module.exports = UglyCommand;
|