mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
45 lines
1.8 KiB
JavaScript
45 lines
1.8 KiB
JavaScript
const { Command } = require('discord.js-commando');
|
|
const { RichEmbed } = require('discord.js');
|
|
const request = require('superagent');
|
|
|
|
module.exports = class YouTubeCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'youtube',
|
|
group: 'search',
|
|
memberName: 'youtube',
|
|
description: 'Searches YouTube for a video.',
|
|
args: [
|
|
{
|
|
key: 'query',
|
|
prompt: 'What would you like to search for?',
|
|
type: 'string',
|
|
parse: text => encodeURIComponent(text)
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
async run(msg, args) {
|
|
if (msg.channel.type !== 'dm')
|
|
if (!msg.channel.permissionsFor(this.client.user).has('EMBED_LINKS'))
|
|
return msg.say('This Command requires the `Embed Links` Permission.');
|
|
const { query } = args;
|
|
try {
|
|
const { body } = await request
|
|
.get(`https://www.googleapis.com/youtube/v3/search?part=snippet&type=video&maxResults=1&q=${query}&key=${process.env.GOOGLE_KEY}`);
|
|
if (body.items.length === 0) throw new Error('No Results.');
|
|
const embed = new RichEmbed()
|
|
.setColor(0xDD2825)
|
|
.setTitle(body.items[0].snippet.title)
|
|
.setDescription(body.items[0].snippet.description)
|
|
.setAuthor(`YouTube - ${body.items[0].snippet.channelTitle}`, 'https://i.imgur.com/hkUafwu.png')
|
|
.setURL(`https://www.youtube.com/watch?v=${body.items[0].id.videoId}`)
|
|
.setThumbnail(body.items[0].snippet.thumbnails.default.url);
|
|
return msg.embed(embed);
|
|
} catch (err) {
|
|
return msg.say(`An Error Occurred: ${err}`);
|
|
}
|
|
}
|
|
};
|