Flickr sent dicks bye bye

This commit is contained in:
Daniel Odendahl Jr
2017-09-29 20:58:31 +00:00
parent 4c2dee66d4
commit b30d6a94f9
2 changed files with 1 additions and 42 deletions
-41
View File
@@ -1,41 +0,0 @@
const { Command } = require('discord.js-commando');
const snekfetch = require('snekfetch');
const { FLICKR_KEY } = process.env;
module.exports = class FlickrCommand extends Command {
constructor(client) {
super(client, {
name: 'flickr',
aliases: ['flickr-image'],
group: 'search',
memberName: 'flickr',
description: 'Searches Flickr for your query.',
args: [
{
key: 'query',
prompt: 'What photo would you like to search for?',
type: 'string'
}
]
});
}
async run(msg, { query }) {
try {
const { body } = await snekfetch
.get('https://api.flickr.com/services/rest/')
.query({
api_key: FLICKR_KEY,
format: 'json',
method: 'flickr.photos.search',
text: query,
nojsoncallback: true
});
if (!body.photos.photo.length) return msg.say('Could not find any results.');
const data = body.photos.photo[Math.floor(Math.random() * body.photos.photo.length)];
return msg.say(`https://farm${data.farm}.staticflickr.com/${data.server}/${data.id}_${data.secret}.jpg`);
} catch (err) {
return msg.say(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}
}
};
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiaobot",
"version": "42.16.0",
"version": "43.0.0",
"description": "Your personal server companion.",
"main": "Shard.js",
"scripts": {