mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-06 06:10:49 +02:00
46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
const { Command } = require('discord.js-commando');
|
|
const snekfetch = require('snekfetch');
|
|
const { stripIndents } = require('common-tags');
|
|
|
|
module.exports = class DanbooruCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'danbooru',
|
|
aliases: ['danbooru-image'],
|
|
group: 'search',
|
|
memberName: 'danbooru',
|
|
description: 'Searches Danbooru for your query.',
|
|
args: [
|
|
{
|
|
key: 'query',
|
|
prompt: 'What image would you like to search for?',
|
|
type: 'string',
|
|
validate: query => {
|
|
if (!query.includes(' ')) return true;
|
|
return 'Invalid query, please only search for one tag at a time.';
|
|
}
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
async run(msg, { query }) {
|
|
if (!msg.channel.nsfw) return msg.say('This command can only be used in NSFW channels.');
|
|
try {
|
|
const { body } = await snekfetch
|
|
.get('https://danbooru.donmai.us/posts.json')
|
|
.query({
|
|
tags: `${query} order:random`,
|
|
limit: 1
|
|
});
|
|
if (!body.length || !body[0].file_url) return msg.say('Could not find any results.');
|
|
return msg.say(stripIndents`
|
|
Result for ${query}:
|
|
https://danbooru.donmai.us${body[0].file_url}
|
|
`);
|
|
} catch (err) {
|
|
return msg.say(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
|
|
}
|
|
}
|
|
};
|