mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
40 lines
1.3 KiB
JavaScript
40 lines
1.3 KiB
JavaScript
const { Command } = require('discord.js-commando');
|
|
const request = require('superagent');
|
|
const cheerio = require('cheerio');
|
|
const querystring = require('querystring');
|
|
|
|
module.exports = class GoogleCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'google',
|
|
group: 'search',
|
|
memberName: 'google',
|
|
description: 'Searches Google.',
|
|
args: [
|
|
{
|
|
key: 'query',
|
|
prompt: 'What would you like to search for?',
|
|
type: 'string',
|
|
parse: query => encodeURIComponent(query)
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
async run(msg, args) {
|
|
const { query } = args;
|
|
const message = await msg.say('Searching...');
|
|
try {
|
|
const { text } = await request
|
|
.get(`https://www.google.com/search?q=${query}`);
|
|
const $ = cheerio.load(text);
|
|
let href = $('.r').first().find('a').first().attr('href');
|
|
if (!href) throw new Error('No Results.');
|
|
href = querystring.parse(href.replace('/url?', ''));
|
|
return message.edit(href.q);
|
|
} catch (err) {
|
|
return message.edit('An Error Occurred: No Results.');
|
|
}
|
|
}
|
|
};
|