mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
34 lines
1014 B
JavaScript
34 lines
1014 B
JavaScript
const SubredditCommand = require('../../structures/commands/Subreddit');
|
|
const { MessageEmbed } = require('discord.js');
|
|
|
|
module.exports = class RedditCommand extends SubredditCommand {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'reddit',
|
|
aliases: ['subreddit', 'r', 'r/', 'sub'],
|
|
group: 'random',
|
|
memberName: 'reddit',
|
|
description: 'Responds with a random post from a subreddit.',
|
|
clientPermissions: ['EMBED_LINKS'],
|
|
args: [
|
|
{
|
|
key: 'subreddit',
|
|
prompt: 'What subreddit would you like to get a post from?',
|
|
type: 'string',
|
|
parse: subreddit => encodeURIComponent(subreddit)
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
generateText(post, subreddit) {
|
|
return new MessageEmbed()
|
|
.setColor(0xFF4500)
|
|
.setAuthor(`r/${subreddit}`, 'https://i.imgur.com/DSBOK0P.png', `https://www.reddit.com/r/${subreddit}/`)
|
|
.setTitle(post.title)
|
|
.setImage(post.post_hint === 'image' ? post.url : null)
|
|
.setURL(`https://www.reddit.com${post.permalink}`)
|
|
.setFooter(`⬆ ${post.ups}`);
|
|
}
|
|
};
|