2018-12-30 01:20:24 +01:00
const { Command } = require ( 'discord-akairo' ) ;
2018-11-18 17:58:08 +01:00
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' ) ;
2019-11-06 16:00:54 +01:00
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 : {
2019-11-15 21:39:53 +01:00
start : 'Send the link of which video you want to download' ,
2019-06-23 03:41:59 +02:00
}
2019-03-26 01:19:43 +01:00
} ,
2019-11-06 20:03:12 +01:00
{
id : 'caption' ,
type : 'string' ,
match : 'rest'
} ,
2019-07-11 00:31:15 +02:00
{
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
}
} ) ;
}
2018-11-18 17:58:08 +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 ;
2019-07-11 00:31:15 +02:00
let fileName ;
if ( args . spoiler ) {
2019-09-13 19:06:29 +02:00
fileName = ` SPOILER_ ${ message . author . id } _video ` ;
2019-07-11 00:31:15 +02:00
} else {
2019-09-13 19:06:29 +02:00
fileName = ` ${ message . author . id } _video ` ;
2019-07-11 00:31:15 +02:00
}
2018-12-30 01:20:24 +01:00
2019-11-09 13:38:46 +01:00
const Embed = new MessageEmbed ( )
. setColor ( message . member . displayHexColor )
2019-11-09 15:00:02 +01:00
. setAuthor ( ` Downloaded by ${ message . author . username } ` , message . author . displayAvatarURL ( ) , link )
. setDescription ( args . caption )
. setFooter ( 'You can get the original video by clicking on the "downloaded by" message!' ) ;
2019-11-09 13:38:46 +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 ) ;
2019-03-26 01:19:43 +01:00
} ) ;
}
2019-11-06 16:00:54 +01:00
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-03-26 01:19:43 +01:00
2019-10-24 18:15:21 +02:00
let file = fs . statSync ( ` ${ os . tmpdir ( ) } / ${ fileName } .mp4 ` ) ;
let fileSize = file . size / 1000000.0 ;
2019-03-26 01:19:43 +01:00
2019-10-24 18:15:21 +02:00
console . log ( fileSize ) ;
2019-01-23 02:18:21 +01:00
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-01-23 02:18:21 +01:00
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' ) ;
} ) ;
2019-11-10 22:37:02 +01:00
let percentComplete ;
let eta ;
2019-10-24 18:15:21 +02:00
handbrake . on ( 'progress' , progress => {
2019-11-10 22:37:02 +01:00
percentComplete = progress . percentComplete ;
eta = progress . eta ;
console . log ( ` Percent complete: ${ progress . percentComplete } , ETA: ${ progress . eta } ` ) ;
2019-10-24 18:15:21 +02:00
} ) ;
2019-11-10 22:37:02 +01:00
// Every 5 seconds update the compress message with the %
setInterval ( ( ) => {
compressmsg . edit ( ` Compression status: Percent complete: ${ percentComplete } , ETA: ${ eta } \n Want it to go faster? Donate to the dev with the donate command, so i can get a better server and do it faster! ` ) ;
} , 5000 ) ;
2019-10-24 18:15:21 +02:00
handbrake . on ( 'end' , async function ( ) {
2019-11-10 22:37:02 +01:00
file = fs . statSync ( ` ${ os . tmpdir ( ) } / ${ fileName } compressed.mp4 ` ) ;
fileSize = file . size / 1000000.0 ;
2019-10-24 18:15:21 +02:00
message . delete ( ) ;
compressmsg . delete ( ) ;
2019-11-06 16:00:54 +01:00
2019-11-10 22:37:02 +01:00
if ( fileSize > 8 ) {
return message . channel . send ( 'File too big!' ) ;
}
2019-11-06 16:00:54 +01:00
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 ( ) ;
2019-11-11 18:04:40 +01:00
loadingmsg . delete ( ) ;
2019-10-24 18:15:21 +02:00
return message . channel . send ( 'File too big' ) ;
} ) ;
} ) ;
} else {
2019-10-16 17:47:16 +02:00
loadingmsg . delete ( ) ;
2019-11-11 18:04:40 +01:00
message . delete ( ) ;
2019-11-06 16:00:54 +01:00
return message . channel . send ( { embed : Embed , files : [ ` ${ os . tmpdir ( ) } / ${ fileName } .mp4 ` ] } )
2019-07-11 00:31:15 +02:00
. 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-07-11 00:31:15 +02:00
} ) ;
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-11-18 17:58:08 +01:00
2018-12-30 01:20:24 +01:00
module . exports = DownloadCommand ;