mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-18 05:49:49 +02:00
Flickr is evil
This commit is contained in:
@@ -1,42 +0,0 @@
|
|||||||
const Command = require('../../structures/Command');
|
|
||||||
const snekfetch = require('snekfetch');
|
|
||||||
const { FLICKR_KEY } = process.env;
|
|
||||||
|
|
||||||
module.exports = class FlickrCommand extends Command {
|
|
||||||
constructor(client) {
|
|
||||||
super(client, {
|
|
||||||
name: 'flickr',
|
|
||||||
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,
|
|
||||||
sort: 'relevance',
|
|
||||||
safe_search: msg.channel.nsfw ? 3 : 1,
|
|
||||||
nojsoncallback: true
|
|
||||||
});
|
|
||||||
if (!body.photos.photo.length) return msg.say('Could not find any results.');
|
|
||||||
const photo = body.photos.photo[Math.floor(Math.random() * body.photos.photo.length)];
|
|
||||||
return msg.say(`https://farm${photo.farm}.staticflickr.com/${photo.server}/${photo.id}_${photo.secret}.jpg`);
|
|
||||||
} catch (err) {
|
|
||||||
return msg.say(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "xiaobot",
|
"name": "xiaobot",
|
||||||
"version": "39.1.1",
|
"version": "40.0.0",
|
||||||
"description": "Your personal server companion.",
|
"description": "Your personal server companion.",
|
||||||
"main": "Shard.js",
|
"main": "Shard.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user