forked from Supositware/Haha-Yes
Take images from imgur
This commit is contained in:
parent
e27033392e
commit
4734b5cf4d
1 changed files with 29 additions and 0 deletions
29
commands/fun/badmeme.js
Normal file
29
commands/fun/badmeme.js
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
const { Command } = require('discord.js-commando');
|
||||||
|
const Discord = require('discord.js');
|
||||||
|
const fetch = require('node-fetch')
|
||||||
|
module.exports = class BadMemeCommand extends Command {
|
||||||
|
constructor(client) {
|
||||||
|
super(client, {
|
||||||
|
name: 'badmeme',
|
||||||
|
group: 'fun',
|
||||||
|
memberName: 'badmeme',
|
||||||
|
description: `Show a random dog`,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async run(message) {
|
||||||
|
|
||||||
|
fetch("https://api.imgur.com/3/gallery/hot/top/day?showViral=true&mature=false&perPage=100&album_previews=true", {
|
||||||
|
headers: { "Authorization": "Client-ID e4cb6948f80f295" },
|
||||||
|
}).then((response) => {
|
||||||
|
return response.json();
|
||||||
|
}).then((response) => {
|
||||||
|
if (response.success == 'false')
|
||||||
|
return message.say('An error has occured')
|
||||||
|
|
||||||
|
const i = Math.floor((Math.random() * response.data.length));
|
||||||
|
|
||||||
|
message.say(`**${response.data[i].title}**`)
|
||||||
|
message.say(response.data[i].link);
|
||||||
|
});
|
||||||
|
}};
|
Loading…
Reference in a new issue