Haha-Yes/commands/images/idubbbzpaint.js

77 lines
2.9 KiB
JavaScript
Raw Normal View History

2018-10-14 18:29:15 +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 18:29:15 +02:00
2018-10-14 22:27:38 +02:00
module.exports = class idubbbzpaintCommand extends Command {
2018-10-14 18:29:15 +02:00
constructor(client) {
super(client, {
2018-10-14 22:27:38 +02:00
name: 'idubbbzpaint',
2018-10-14 18:29:15 +02:00
aliases: ['idubbzpaint', 'edupspaint'],
2018-10-15 00:32:19 +02:00
group: 'images',
2018-10-14 18:29:15 +02:00
memberName: 'painting',
2018-10-15 00:19:11 +02:00
description: `Put the image you send or you in idubbbz painting`,
2018-10-14 18:40:40 +02:00
args: [
{
2018-10-14 22:27:38 +02:00
key: 'text',
2018-10-14 18:40:40 +02:00
prompt: 'What do you the paper to say?',
type: 'string',
default: 'Perfection'
}
]
2018-10-14 18:29:15 +02:00
});
}
2018-11-13 20:33:26 +01:00
async run(message, { text }) {
2018-12-04 16:22:45 +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 18:29:15 +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-14 18:29:15 +02:00
else
2018-10-16 11:55:57 +02:00
image = Attachment[0].url
2018-10-14 18:29:15 +02:00
const canvas = createCanvas(1024, 544)
2018-10-14 18:40:40 +02:00
const applyText = (canvas, text) => {
const ctx = canvas.getContext('2d');
// Declare a base size of the font
let fontSize = 100;
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 18:40:40 +02:00
} while (ctx.measureText(text).width > 800 - 300);
// Return the result to use in the actual canvas
return ctx.font;
};
2018-10-14 18:29:15 +02:00
const ctx = canvas.getContext('2d')
const background = await loadImage(image);
2018-10-16 17:07:29 +02:00
ctx.drawImage(background, 140, 40, 400, 340);
2018-10-16 00:05:49 +02:00
const { body: buffer } = await superagent.get('https://image.noelshack.com/fichiers/2018/41/7/1539533685-untitled.png').catch(error => {
return message.say('An error as occured, please try again')
})
2018-10-14 18:29:15 +02:00
const bg = await loadImage(buffer);
ctx.drawImage(bg, 0, 0, canvas.width, canvas.height);
2018-10-14 22:27:38 +02:00
ctx.font = applyText(canvas, text)
2018-10-14 18:40:40 +02:00
ctx.fillStyle = '#ffffff';
2018-10-14 22:27:38 +02:00
ctx.fillText(text, canvas.width / 3, canvas.height / 1.1);
2018-10-14 18:29:15 +02:00
2018-10-14 18:40:40 +02:00
const attachment = new Discord.Attachment(canvas.toBuffer(), 'edupspaint.png');
2018-10-14 18:29:15 +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 18:29:15 +02:00
}
};