From 500908134cb26d39ba0d87c856f7d3779684f8d7 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Thu, 27 Sep 2018 19:04:42 +0200 Subject: [PATCH] We did it reddit --- commands/fun/reddit.js | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 commands/fun/reddit.js diff --git a/commands/fun/reddit.js b/commands/fun/reddit.js new file mode 100644 index 00000000..8db8353f --- /dev/null +++ b/commands/fun/reddit.js @@ -0,0 +1,41 @@ +const { Command } = require('discord.js-commando'); +const Discord = require('discord.js'); +const snekfetch = require('snekfetch'); +module.exports = class RandoCatCommand 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.crosspost_parent_list == true) { + return message.say('test') + }else if (body.data.children[i].data.over_18 == true) { + return message.say("No nsfw") + } + const dogEmbed = 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(dogEmbed); + } + } \ No newline at end of file