jeff-downloader/app/Controllers/Http/DownloadController.js

182 lines
6.6 KiB
JavaScript
Raw Normal View History

2019-12-03 21:18:40 +01:00
'use strict'
const youtubedl = require('youtube-dl')
const fs = require('fs')
const ffmpeg = require('fluent-ffmpeg')
2019-12-24 16:19:04 +01:00
const { version } = require('../../../package.json');
2019-12-03 21:18:40 +01:00
let viewCounter = 0;
let files = [];
let day;
let month;
2019-12-19 15:14:54 +01:00
let announcementArray = ['Twitter download seems to work fine now!', 'u lookin hot today vro', 'I am not responsible for what you download', 'If you want to support me you can donate through my paypal at the bottom of the page', 'Did you know this website is open source?', 'Did you know this website can download from other website than youtube?', 'You can mouse hover a video to see a preview of it!']
let announcement
2019-12-24 16:19:04 +01:00
let title = `le epic downloader v${version}`;
2019-12-03 21:18:40 +01:00
class DownloadController {
async index ({ view, response }) {
2019-12-24 16:19:04 +01:00
viewCounter++;
// Get random announcement
announcement = announcementArray[Math.floor(Math.random() * announcementArray.length)];
2019-12-03 21:18:40 +01:00
// Get date for some event
let today = new Date();
day = today.getDay();
month = today.getMonth();
2019-12-24 16:19:04 +01:00
// If legacy link return
if (response.request.url == '/legacy') return view.render('legacy', { title: title, viewCounter: viewCounter, day: day, month: month, announcement: announcement});
2019-12-24 16:19:04 +01:00
2019-12-03 21:18:40 +01:00
files = [];
2019-12-24 16:19:04 +01:00
let file = [];
2019-12-03 21:18:40 +01:00
for (let f of fs.readdirSync('./public/uploads')) {
file.push(f)
}
// get the 5 most recent files
2019-12-24 16:19:04 +01:00
file = file.sort((a, b) => {
if ((a || b).endsWith('.mp4') || (a || b).endsWith('.webm') || (a || b).endsWith('.mp3') || (a || b).endsWith('.flac')) {
2019-12-03 21:18:40 +01:00
let time1 = fs.statSync(`./public/uploads/${b}`).ctime;
let time2 = fs.statSync(`./public/uploads/${a}`).ctime;
if (time1 < time2) return -1;
if (time1 > time2) return 1;
}
return 0;
}).slice(0, 5)
2019-12-24 16:19:04 +01:00
2020-01-21 23:39:30 +01:00
// Save space by deleting file that doesn't appear in the recent feed
for (let f of fs.readdirSync('./public/uploads')) {
if (!file.includes(f) && (f != 'hidden' && f != '.keep')) {
fs.unlinkSync(`./public/uploads/${f}`);
}
}
2019-12-24 16:19:04 +01:00
for (let f of file) {
if (f.endsWith('.mp4') || f.endsWith('.webm')) {
// Send file name, file size in MB relative path for the file
2020-01-21 23:39:43 +01:00
files.push({ name: f, size: (fs.statSync(`./public/uploads/${f}`).size / 1000000.0).toFixed(2), location: `uploads/${f}`, img: '' });
2019-12-24 16:19:04 +01:00
} else if (f.endsWith('.mp3') || f.endsWith('.flac')) {
2019-12-19 15:14:54 +01:00
// Send file name, file size in MB relative path for the file and relative path of music.png
2019-12-24 16:19:04 +01:00
files.push({ name: f, size: (fs.statSync(`./public/uploads/${f}`).size / 1000000.0).toFixed(2), location: `uploads/${f}`, img: `/asset/music.png` });
2019-12-03 21:18:40 +01:00
}
2019-12-24 16:19:04 +01:00
}
return view.render('index', { title: title, viewCounter: viewCounter, file: files, day: day, month: month, announcement: announcement });
2019-12-03 21:18:40 +01:00
}
async download({ view, request, response }) {
let page = 'index';
if (response.request.url == '/legacy') page = 'legacy';
// To be honest i forgot what it does, but i think i need it
response.implicitEnd = false
let option, DLFile
// Get form input
let data = {
url: request.input('URL'),
quality: request.input('quality'),
format: request.input('format'),
alt: request.input('alt'),
feed: request.input('feed')
}
if (!data.url) {
return view.render(page, {
title: title,
2019-12-03 21:18:40 +01:00
viewCounter: viewCounter,
file: files,
day: day, month: month, announcement: announcement ,
error: true,
errormsg: 'bruh moment, you didin\'t input a link.'
});
}
// Youtube-dl quality settings
if (data.quality == 'small')
option = 'worst'
else
option = 'best'
// If alt download ( Quality settings and file format option doesn't work here )
if (data.alt) {
2020-01-16 18:13:27 +01:00
let altFolder;
if (data.feed == 'on') {
altFolder = './public/uploads/hidden/alt.mp4';
} else {
altFolder = './public/uploads/alt.mp4'
}
if (fs.existsSync(altFolder)) {
fs.unlink(altFolder, (err) => {
2019-12-03 21:18:40 +01:00
if (err);
});
}
2020-01-16 18:13:27 +01:00
return youtubedl.exec(data.url, ['--format=mp4', '-o', altFolder], {}, function(err, output) {
2019-12-03 21:18:40 +01:00
if (err) {
return view.render(page, {
title: title,
2019-12-03 21:18:40 +01:00
viewCounter: viewCounter,
file: files,
day: day, month: month, announcement: announcement ,
error: true,
errormsg: 'bruh moment, you didin\'t input a valid link.'
});
}
2020-01-16 18:13:27 +01:00
return response.attachment(altFolder);
2019-12-03 21:18:40 +01:00
});
} else {
// Download as mp4 if possible
2019-12-03 21:18:40 +01:00
let video = youtubedl(data.url, ['--format=mp4', '-f', option]);
video.on('error', function(err) {
console.error(err);
2019-12-03 21:18:40 +01:00
return view.render(page, {
title: title,
2019-12-03 21:18:40 +01:00
viewCounter: viewCounter,
file: files,
day: day, month: month, announcement: announcement ,
error: true,
errormsg: 'bruh moment, you didin\'t input a valid link.'
});
})
let ext;
2019-12-03 21:18:40 +01:00
video.on('info', function(info) {
// Set file name
ext = info.ext;
2020-01-16 18:13:27 +01:00
let title = info.title.slice(0,50);
DLFile = `${title.replace(/\s/g, '_')}.${ext}`;
2019-12-03 21:18:40 +01:00
// If no title use the ID
if (title == '_') title = `_${info.id}`;
// If user want to hide from the feed
if (data.feed == 'on')
2019-12-24 16:19:04 +01:00
DLFile = `hidden/${title.replace(/\s/g, '_')}.${ext}`;
2019-12-03 21:18:40 +01:00
2020-01-23 02:30:14 +01:00
DLFile = DLFile.replace(/[()]|[/]|[\\]/g, '_');
2019-12-03 21:18:40 +01:00
video.pipe(fs.createWriteStream(`./public/uploads/${DLFile}`));
});
video.on('end', function() {
if (data.format == 'mp4' || data.format == 'webm') {
2019-12-03 21:18:40 +01:00
// If user requested mp4 directly attach the file
return response.attachment(`./public/uploads/${DLFile}`)
} else {
// If user requested an audio format, convert it
ffmpeg(`./public/uploads/${DLFile}`)
.noVideo()
.audioChannels('2')
.audioFrequency('44100')
.audioBitrate('320k')
.format(data.format)
2019-12-24 16:19:04 +01:00
.save(`./public/uploads/${DLFile.replace(`.${ext}`, `.${data.format}`)}`)
2019-12-03 21:18:40 +01:00
.on('end', () => {
fs.unlinkSync(`./public/uploads/${DLFile}`);
2019-12-24 16:19:04 +01:00
return response.attachment(`./public/uploads/${DLFile.replace(`.${ext}`, `.${data.format}`)}`);
2019-12-03 21:18:40 +01:00
})
}
});
}
}
}
module.exports = DownloadController