diff --git a/commands/fun/petittube.js b/commands/fun/petittube.js new file mode 100644 index 00000000..e713172f --- /dev/null +++ b/commands/fun/petittube.js @@ -0,0 +1,30 @@ +const { Command } = require('discord-akairo'); +const fetch = require('node-fetch'); +const cheerio = require('cheerio'); + +class PetitTubeCommand extends Command { + constructor() { + super('petittube', { + aliases: ['petittube', 'pt'], + category: 'fun', + clientPermissions: ['SEND_MESSAGES', 'ATTACH_FILES'], + description: { + content: 'Fetch a video from https://petittube.com/', + usage: '', + examples: [''] + } + }); + } + + async exec(message) { + const response = await fetch('https://petittube.com/'); + const body = await response.text(); + + const $ = cheerio.load(body); + + const url = $('iframe')[0].attribs.src; + + this.client.commandHandler.runCommand(message, this.client.commandHandler.findCommand('download'), { link: new URL(url), proxy: 1, spoiler: true, caption: 'Video might be NSFW as always, be careful!'}); + } +} +module.exports = PetitTubeCommand; \ No newline at end of file