mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-05 13:53:12 +02:00
69 lines
3.0 KiB
JavaScript
69 lines
3.0 KiB
JavaScript
const { Command } = require('discord.js-commando');
|
|
const memecodes = require('./memecodes.json');
|
|
|
|
module.exports = class MemeCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'meme',
|
|
aliases: [
|
|
'memegen'
|
|
],
|
|
group: 'imageedit',
|
|
memberName: 'meme',
|
|
description: 'Sends a Meme with text of your choice, and a background of your choice. (x;meme facepalm "I can\'t even" "comprehend this")',
|
|
details: `**Codes:** ${memecodes.join(', ')}`,
|
|
examples: ['x;meme facepalm "I can\'t even" "comprehend this"'],
|
|
args: [{
|
|
key: 'type',
|
|
prompt: 'What meme type do you want to use?',
|
|
type: 'string',
|
|
validate: type => {
|
|
if (memecodes.includes(type.toLowerCase())) {
|
|
return true;
|
|
}
|
|
return `${type.toLowerCase()} is not a valid meme type. Use \`x;help meme\` to view a list of types.`;
|
|
},
|
|
parse: text => {
|
|
return text.toLowerCase();
|
|
}
|
|
}, {
|
|
key: 'toprow',
|
|
prompt: 'What should the top row of the meme to be?',
|
|
type: 'string',
|
|
validate: toprow => {
|
|
if (toprow.match(/^[a-zA-Z0-9.,!?'\s]+$/) && toprow.length < 100) {
|
|
return true;
|
|
}
|
|
return `Please do not use special characters and keep the rows under 100 characters each, you have ${toprow.length}.`;
|
|
},
|
|
parse: text => {
|
|
return text.replace(/[ ]/g, '-').replace(/[?]/g, '~q');
|
|
}
|
|
}, {
|
|
key: 'bottomrow',
|
|
prompt: 'What should the bottom row of the meme to be?',
|
|
type: 'string',
|
|
validate: bottomrow => {
|
|
if (bottomrow.match(/^[a-zA-Z0-9.,!?'\s]+$/) && bottomrow.length < 100) {
|
|
return true;
|
|
}
|
|
return `Please do not use special characters and keep the rows under 100 characters each, you have ${bottomrow.length}.`;
|
|
},
|
|
parse: text => {
|
|
return text.replace(/[ ]/g, '-').replace(/[?]/g, '~q');
|
|
}
|
|
}]
|
|
});
|
|
}
|
|
|
|
run(message, args) {
|
|
if (message.channel.type !== 'dm') {
|
|
if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES'])) return;
|
|
if (!message.channel.permissionsFor(this.client.user).hasPermission('ATTACH_FILES')) return message.say(':x: Error! I don\'t have the Attach Files Permission!');
|
|
}
|
|
const { type, toprow, bottomrow } = args;
|
|
const link = `https://memegen.link/${type}/${toprow}/${bottomrow}.jpg`;
|
|
return message.channel.send({files: [link]}).catch(() => message.say(':x: Error! Something went wrong!'));
|
|
}
|
|
};
|