2018-10-16 01:02:30 +02:00
|
|
|
const { Command } = require('discord.js-commando');
|
|
|
|
const Discord = require('discord.js');
|
|
|
|
const { createCanvas, loadImage, getContext } = require('canvas')
|
|
|
|
const superagent = require('superagent')
|
2018-11-28 01:35:26 +01:00
|
|
|
const SelfReloadJSON = require('self-reload-json');
|
|
|
|
const blacklist = require('../../blacklist');
|
2018-10-16 01:02:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
module.exports = class fetishCommand extends Command {
|
|
|
|
constructor(client) {
|
|
|
|
super(client, {
|
|
|
|
name: 'fetish',
|
|
|
|
group: 'images',
|
|
|
|
memberName: 'fetish',
|
|
|
|
description: `My fetish`,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-11-13 20:33:26 +01:00
|
|
|
async run(message) {
|
2018-11-28 01:35:26 +01:00
|
|
|
let blacklistJson = new SelfReloadJSON('json/blacklist.json');
|
|
|
|
if(blacklistJson[message.author.id])
|
|
|
|
return blacklist(blacklistJson[message.author.id] , message)
|
|
|
|
|
2018-10-16 01:02:30 +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-16 01:02:30 +02:00
|
|
|
else
|
2018-10-16 11:55:57 +02:00
|
|
|
image = Attachment[0].url
|
2018-10-16 01:02:30 +02:00
|
|
|
|
|
|
|
const canvas = createCanvas(528, 559)
|
|
|
|
const ctx = canvas.getContext('2d')
|
|
|
|
const background = await loadImage('https://image.noelshack.com/fichiers/2018/42/2/1539644291-my-fetish-5910119d988512.png').catch(error => {
|
|
|
|
return message.say('An error as occured, please try again')
|
|
|
|
})
|
|
|
|
ctx.drawImage(background, 0, 0, canvas.width, canvas.height);
|
|
|
|
const { body: buffer } = await superagent.get(image);
|
|
|
|
const bg = await loadImage(buffer);
|
|
|
|
ctx.drawImage(bg, 50, 50, 450, 450);
|
|
|
|
|
2018-11-04 20:56:40 +01:00
|
|
|
const attachment = new Discord.Attachment(canvas.toBuffer(), 'myfetish.png');
|
2018-10-16 01:02:30 +02:00
|
|
|
|
|
|
|
message.say(attachment).catch(error => {
|
|
|
|
message.say('an error as occured. Check the bot/channel permissions')
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|