mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-06 14:20:51 +02:00
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
const { Command } = require('discord.js-commando');
|
|
const snekfetch = require('snekfetch');
|
|
const { promisifyAll } = require('tsubaki');
|
|
const xml = promisifyAll(require('xml2js'));
|
|
|
|
module.exports = class Rule34Command extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'rule34',
|
|
group: 'search',
|
|
memberName: 'rule34',
|
|
description: 'Sends an image from Rule34, with query.',
|
|
args: [
|
|
{
|
|
key: 'query',
|
|
prompt: 'What would you like to search for?',
|
|
type: 'string'
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
async run(msg, args) {
|
|
if (!msg.channel.nsfw) return msg.say('This Command can only be used in NSFW Channels.');
|
|
const { query } = args;
|
|
try {
|
|
const { text } = await snekfetch
|
|
.get('https://rule34.xxx/index.php')
|
|
.query({
|
|
page: 'dapi',
|
|
s: 'post',
|
|
q: 'index',
|
|
tags: query,
|
|
limit: 1
|
|
});
|
|
const { posts } = await xml.parseString(text);
|
|
if (posts.$.count === '0') throw new Error('No Results.');
|
|
return msg.say(`Result for ${query}: https:${posts.post[0].$.file_url}`);
|
|
} catch (err) {
|
|
return msg.say(`${err.name}: ${err.message}`);
|
|
}
|
|
}
|
|
};
|