Haha-Yes/commands/images/fetish.js

50 lines
1.5 KiB
JavaScript
Raw Normal View History

2018-12-30 01:20:24 +01:00
const { Command } = require('discord-akairo');
2019-01-02 08:09:45 +01:00
const { createCanvas, loadImage } = require('canvas');
2018-12-30 01:20:24 +01:00
const superagent = require('superagent');
class FetishCommand extends Command {
2019-01-02 08:09:45 +01:00
constructor() {
super('fetish', {
aliases: ['fetish'],
category: 'images',
args: [
{
id: 'image',
2019-01-15 21:57:33 +01:00
type: 'string',
optional: true,
2019-01-02 08:09:45 +01:00
}
]
});
}
2018-10-16 01:02:30 +02:00
2019-01-02 08:09:45 +01:00
async exec(message, args) {
let Attachment = (message.attachments).array();
let image = args.image;
if (!Attachment[0] && !image)
2019-02-06 03:49:48 +01:00
image = message.author.displayAvatarURL('png');
2019-01-02 08:09:45 +01:00
else if(Attachment[0] && Attachment[0].url.endsWith('gif'))
return message.channel.send('Gif dosent work, sorry');
else if (!image)
image = Attachment[0].url;
message.channel.send('Processing <a:loadingmin:527579785212329984>')
.then(loadingmsg => loadingmsg.delete(1000));
2018-10-16 01:02:30 +02:00
2019-01-02 08:09:45 +01: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(() => {
return message.channel.send('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-10-16 01:02:30 +02:00
2019-01-15 21:57:33 +01:00
message.channel.send({files: [canvas.toBuffer()]}).catch(() => {
2019-01-02 08:09:45 +01:00
message.channel.send('an error as occured. Check the bot/channel permissions');
});
}
2018-12-30 01:20:24 +01:00
}
2018-10-16 01:02:30 +02:00
2018-12-30 01:20:24 +01:00
module.exports = FetishCommand;