Haha-Yes/commands/images/idubbbz.js

77 lines
2.8 KiB
JavaScript
Raw Normal View History

2018-10-14 11:51:35 +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');
2018-12-05 00:52:21 +01:00
2018-10-14 11:51:35 +02:00
module.exports = class idubbbzCommand extends Command {
constructor(client) {
super(client, {
name: 'idubbbz',
aliases: ['idubbz', 'edups'],
2018-10-15 00:32:19 +02:00
group: 'images',
2018-10-14 11:51:35 +02:00
memberName: 'idubbbz',
description: `Put the text you send in idubbbz piece of paper`,
args: [
{
2018-10-14 22:27:19 +02:00
key: 'text',
2018-10-14 11:51:35 +02:00
prompt: 'What do you the paper to say?',
type: 'string',
default: 'Nigger Faggot'
}
]
});
}
2018-11-13 20:33:26 +01:00
async run(message, { text }) {
2018-12-06 23:01:40 +01:00
let blacklistJson = new SelfReloadJSON('./json/blacklist.json');
2018-11-28 01:35:26 +01:00
if(blacklistJson[message.author.id])
return blacklist(blacklistJson[message.author.id] , message)
2018-10-14 11:51:35 +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')
else
image = Attachment[0].url
2018-10-14 11:51:35 +02:00
const canvas = createCanvas(1281, 627)
2018-10-14 11:51:35 +02:00
const applyText = (canvas, text) => {
const ctx = canvas.getContext('2d');
// Declare a base size of the font
let fontSize = 50;
do {
// Assign the font to the context and decrement it so it can be measured again
2018-11-25 23:56:16 +01:00
ctx.font = `${fontSize -= 10}px ubuntu`;
2018-10-14 17:38:37 +02:00
} while (ctx.measureText(text).width > 700 - 300);
2018-10-14 11:51:35 +02:00
// Return the result to use in the actual canvas
return ctx.font;
};
const ctx = canvas.getContext('2d')
const background = await loadImage(image);
ctx.drawImage(background, 620, 100, 200, 200);
2018-10-16 00:05:49 +02:00
const { body: buffer } = await superagent.get('https://image.noelshack.com/fichiers/2018/41/7/1539510207-untitled.png').catch(error => {
return message.say('An error as occured, please try again')
})
2018-10-14 11:51:35 +02:00
const bg = await loadImage(buffer);
ctx.drawImage(bg, 0, 0, canvas.width, canvas.height);
2018-10-14 22:27:19 +02:00
ctx.font = applyText(canvas, text)
2018-10-14 11:51:35 +02:00
ctx.fillStyle = '#000000';
2018-10-14 22:27:19 +02:00
ctx.fillText(text, canvas.width / 2.1, canvas.height / 1.5);
2018-10-14 11:51:35 +02:00
2018-10-14 18:40:40 +02:00
const attachment = new Discord.Attachment(canvas.toBuffer(), 'edups.png');
2018-10-14 11:51:35 +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-14 11:51:35 +02:00
}
};