39 lines
No EOL
1.4 KiB
JavaScript
39 lines
No EOL
1.4 KiB
JavaScript
const { Command } = require('discord.js-commando');
|
|
const Discord = require('discord.js');
|
|
const snekfetch = require('snekfetch');
|
|
module.exports = class redditCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'reddit',
|
|
group: 'fun',
|
|
memberName: 'reddit',
|
|
description: `Show a random images from the subreddit you choose`,
|
|
args: [
|
|
{
|
|
key: 'sub',
|
|
prompt: 'Wich subreddit would you like to see?',
|
|
type: 'string',
|
|
default: 'random',
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
async run(message, { sub }) {
|
|
const { body } = await snekfetch.get('https://www.reddit.com/r/' + sub + '.json');
|
|
let /* the bodies hit the floor */ i = Math.floor((Math.random() * 10) + 1);
|
|
console.log(body.data.children[i].data.post_hint)
|
|
while (body.data.children[i].data.post_hint !== 'image') {
|
|
i = Math.floor((Math.random() * 10) + 1);
|
|
}
|
|
if (body.data.children[i].data.over_18 == true) {
|
|
return message.say("No nsfw")
|
|
}
|
|
const redditEmbed = new Discord.RichEmbed()
|
|
.setColor("#ff9900")
|
|
.setTitle(body.data.children[i].data.title)
|
|
.setImage(body.data.children[i].data.preview.images[0].source.url)
|
|
|
|
message.say(redditEmbed);
|
|
}
|
|
} |