Haha-Yes/commands/images/ugly.js

48 lines
1.7 KiB
JavaScript
Raw Normal View History

2018-10-15 12:21:24 +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 12:21:24 +02:00
module.exports = class uglyCommand extends Command {
constructor(client) {
super(client, {
name: 'ugly',
group: 'images',
memberName: 'ugly',
description: `You are very ugly!`,
});
}
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 12:21:24 +02:00
let Attachment = (message.attachments).array();
let image = null
if (!Attachment[0])
image = message.author.displayAvatarURL
2018-10-16 11:55:57 +02:00
else if(Attachment[0] && Attachment[0].url.endsWith('gif'))
return message.say('Gif dosent work, sorry')
2018-10-15 12:21:24 +02:00
else
2018-10-16 11:55:57 +02:00
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 => {
return message.say('An error as occured, please try again')
})
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
message.say(attachment).catch(error => {
message.say('an error as occured. Check the bot/channel permissions')
})
}
};