Haha-Yes/commands/utility/download.js

139 lines
4.3 KiB
JavaScript
Raw Normal View History

2018-12-30 01:20:24 +01:00
const { Command } = require('discord-akairo');
const fs = require('fs');
const youtubedl = require('youtube-dl');
2019-01-19 17:23:45 +01:00
const hbjs = require('handbrake-js');
2019-09-13 19:06:29 +02:00
const os = require('os');
const { MessageEmbed } = require('discord.js');
2018-12-25 19:17:07 +01:00
2018-12-30 01:20:24 +01:00
class DownloadCommand extends Command {
2019-01-02 08:09:45 +01:00
constructor() {
super('download', {
aliases: ['download', 'dl'],
category: 'utility',
2019-11-09 12:04:01 +01:00
clientPermissions: ['SEND_MESSAGES', 'EMBED_LINKS', 'ATTACH_FILES'],
2019-01-02 08:09:45 +01:00
args: [
{
id: 'link',
type: 'string',
2019-06-23 03:41:59 +02:00
prompt: {
start: 'Send the link of wich video you want to download',
}
},
2019-11-06 20:03:12 +01:00
{
id: 'caption',
type: 'string',
match: 'rest'
},
{
id: 'spoiler',
match: 'flag',
flag: ['--spoil', '--spoiler', '-s']
2019-01-02 08:09:45 +01:00
}
],
description: {
2019-10-25 12:45:05 +02:00
content: 'Download videos from different website from the link you provided, use "-s" to make the vid a spoiler',
2019-11-06 20:03:12 +01:00
usage: '[link] [caption]',
examples: ['https://www.youtube.com/watch?v=6n3pFFPSlW4 Look at this funny gnome']
2019-01-02 08:09:45 +01:00
}
});
}
2019-01-02 08:09:45 +01:00
async exec(message, args) {
2019-11-06 20:03:12 +01:00
if (args.caption == null) args.caption = '';
2019-01-02 08:09:45 +01:00
let link = args.link;
let fileName;
if (args.spoiler) {
2019-09-13 19:06:29 +02:00
fileName = `SPOILER_${message.author.id}_video`;
} else {
2019-09-13 19:06:29 +02:00
fileName = `${message.author.id}_video`;
}
2018-12-30 01:20:24 +01:00
2019-01-02 08:09:45 +01:00
if (link.includes('http') || link.includes('www')) {
2019-10-16 17:47:16 +02:00
let loadingmsg = await message.channel.send('Downloading <a:loadingmin:527579785212329984>');
2019-10-24 18:15:21 +02:00
if (fs.existsSync(`${os.tmpdir()}/${fileName}.mp4`)) {
fs.unlink(`${os.tmpdir()}/${fileName}.mp4`, (err) => {
if (err);
});
}
return youtubedl.exec(link, ['--format=mp4', '-o', `${os.tmpdir()}/${fileName}.mp4`], {}, async function(err) {
2019-10-24 18:15:21 +02:00
if (err) {
console.error(err);
loadingmsg.delete();
return message.channel.send('An error has occured, I can\'t download from the link you provided.');
}
2019-10-24 18:15:21 +02:00
let file = fs.statSync(`${os.tmpdir()}/${fileName}.mp4`);
let fileSize = file.size / 1000000.0;
2019-10-24 18:15:21 +02:00
console.log(fileSize);
2019-10-24 18:15:21 +02:00
//Compress vid if bigger than 8MB
if (fileSize > 8) {
console.log('file bigger than 8MB');
let compressmsg = await message.channel.send('Video bigger than 8MB compressing now <a:loadingmin:527579785212329984> (This can take a long time!)\nWant it to go faster? Donate to the dev with the donate command, so i can get a better server and do it faster!');
loadingmsg.delete();
2019-10-24 18:15:21 +02:00
const options = {
input: `${os.tmpdir()}/${fileName}.mp4`,
output: `${os.tmpdir()}/${fileName}compressed.mp4`,
preset: 'General/Gmail Small 10 Minutes 288p30'
};
let handbrake = hbjs.spawn(options);
handbrake.on('error', err => {
console.error(err);
compressmsg.delete();
return message.channel.send('An error has occured while compressing the video');
});
handbrake.on('progress', progress => {
console.log(
'Percent complete: %s, ETA: %s',
progress.percentComplete,
progress.eta
);
});
handbrake.on('end', async function () {
message.delete();
compressmsg.delete();
const Embed = new MessageEmbed()
.setColor(message.member.displayHexColor)
2019-11-09 12:04:01 +01:00
.setAuthor(`Downloaded by ${message.author.username}`, message.author.displayAvatarURL(), link)
2019-11-06 20:03:12 +01:00
.setDescription(args.caption)
2019-11-09 12:04:01 +01:00
.setFooter('You can get the original video by clicking on the "downloaded by" message!');
return message.channel.send({embed: Embed, files: [`${os.tmpdir()}/${fileName}compressed.mp4`]})
2019-10-24 18:15:21 +02:00
.catch(err => {
console.error(err);
compressmsg.delete();
return message.channel.send('File too big');
});
});
} else {
2019-01-19 17:23:45 +01:00
message.delete();
2019-10-16 17:47:16 +02:00
loadingmsg.delete();
const Embed = new MessageEmbed()
.setColor(message.member.displayHexColor)
2019-11-09 12:04:01 +01:00
.setAuthor(`Downloaded by ${message.author.username}`, message.author.displayAvatarURL(), link)
2019-11-06 20:03:12 +01:00
.setDescription(args.caption)
2019-11-09 12:04:01 +01:00
.setFooter('You can get the original video by clicking on the "downloaded by" message!');
return message.channel.send({embed: Embed, files: [`${os.tmpdir()}/${fileName}.mp4`]})
.catch(err => {
console.error(err);
2019-10-16 17:47:16 +02:00
loadingmsg.delete();
2019-10-24 18:15:21 +02:00
return message.channel.send('File too big');
});
2019-01-19 17:23:45 +01:00
}
2019-01-02 08:09:45 +01:00
});
}
2019-10-24 18:15:21 +02:00
return message.channel.send('You need to input a valid link');
2019-01-02 08:09:45 +01:00
}
2018-12-30 01:20:24 +01:00
}
2018-12-30 01:20:24 +01:00
module.exports = DownloadCommand;