2018-10-15 11:17:36 +02:00
|
|
|
const { Command } = require('discord.js-commando');
|
|
|
|
const Discord = require('discord.js');
|
|
|
|
const { createCanvas, loadImage, getContext } = require('canvas')
|
|
|
|
const superagent = require('superagent')
|
2018-10-15 20:23:45 +02:00
|
|
|
const blacklist = require('../../json/blacklist.json')
|
|
|
|
|
2018-10-15 11:17:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
module.exports = class humanCommand extends Command {
|
|
|
|
constructor(client) {
|
|
|
|
super(client, {
|
|
|
|
name: 'human',
|
|
|
|
group: 'images',
|
|
|
|
memberName: 'human',
|
|
|
|
description: `HUMAN ?! YOU DARE CALL THAT THING HUMAN?!?!`,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-11-13 20:33:26 +01:00
|
|
|
async run(message) {
|
2018-10-15 20:23:45 +02:00
|
|
|
if(blacklist[message.author.id])
|
|
|
|
return message.channel.send("You are blacklisted")
|
2018-10-15 11:17:36 +02:00
|
|
|
let Attachment = (message.attachments).array();
|
|
|
|
let image = null
|
2018-11-13 20:33:26 +01:00
|
|
|
if (!Attachment[0])
|
|
|
|
image = message.author.displayAvatarURL
|
|
|
|
else if(Attachment[0] && Attachment[0].url.endsWith('gif'))
|
|
|
|
return message.say('Gif dosent work, sorry')
|
2018-10-15 11:17:36 +02:00
|
|
|
else
|
2018-10-16 11:55:57 +02:00
|
|
|
image = Attachment[0].url
|
|
|
|
|
2018-10-15 11:17:36 +02:00
|
|
|
const canvas = createCanvas(578, 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/1539594726-untitled.png').catch(error => {
|
|
|
|
return message.say('An error as occured, please try again')
|
|
|
|
})
|
2018-10-15 11:17:36 +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, 420, 120, 150, 150);
|
|
|
|
|
2018-11-04 20:56:40 +01:00
|
|
|
const attachment = new Discord.Attachment(canvas.toBuffer(), 'human.png');
|
2018-10-15 11:17:36 +02:00
|
|
|
|
2018-10-15 11:23:40 +02:00
|
|
|
message.say(attachment).catch(error => {
|
|
|
|
message.say('an error as occured. Check the bot/channel permissions')
|
|
|
|
})
|
2018-10-15 11:17:36 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
};
|