-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.js
127 lines (90 loc) · 4.27 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
import { existsSync } from 'fs';
import express from 'express';
import dotenv from 'dotenv'
import serveIndex from 'serve-index';
import { __filename, __dirname } from './dirname.js';
import { validateUrlRouter, delOldFiles } from './src/middlewares.js'
import ytapi from "./src/youtube/index.js"
import { myhost } from "./src/core.js"
dotenv.config()
const app = express();
const porta = process.env.PORT || 3000
app.set('json spaces', 4)
app.use(express.static(__dirname + "/"))
app.use('/publico', serveIndex((__dirname + '/publico'), { 'icons': true, 'template': (__dirname + '/src/static/arquivos.html'), stylesheet: (__dirname + '/src/static/arquivos.css') }));
app.listen(porta, function () {
console.log("Listening on port ", porta)
if (porta == 3000) { console.log('rodando localmente em http://localhost:3000') }
});
app.get('/url', delOldFiles, async function (req, res) {
res.send(('url base do site: ' + await myhost(req)))
})
app.get('/', delOldFiles, function (req, res) {
res.sendFile((__dirname + '/src/static/home.html'))
})
app.get('/audio', delOldFiles, validateUrlRouter, async function (req, res) {
let { url, itag } = req.query
console.log('audio ', url)
let audio = ytapi({ url: url, itag: itag })
let arquivo = await audio.mp3()
if (!arquivo) return res.json({ success: false, error: `erro ao baixar arquivo` });
let apiUrl = await myhost(req)
res.json({ success: true, file: `${apiUrl}/arquivo/?arquivo=${arquivo}` });
});
app.get('/video', delOldFiles, validateUrlRouter, async function (req, res) {
let { url, itag } = req.query
console.log('video ', url)
let video = ytapi({ url: url, itag: itag })
let arquivo = await video.mp4()
if (!arquivo) return res.json({ success: false, error: `erro ao baixar arquivo` });
let apiUrl = await myhost(req)
res.json({ success: true, file: `${apiUrl}/arquivo/?arquivo=${arquivo}` });
});
app.get('/raw-video', delOldFiles, validateUrlRouter, async function (req, res) {
let { url, itag } = req.query
console.log('video ', url)
let video = ytapi({ url: url, itag: itag })
let arquivo = await video.rawMp4()
if (!arquivo) return res.json({ success: false, error: `erro ao baixar arquivo` });
let apiUrl = await myhost(req)
res.json({ success: true, file: `${apiUrl}/arquivo/?arquivo=${arquivo}` });
});
app.get('/raw-audio', delOldFiles, validateUrlRouter, async function (req, res) {
let { url, itag } = req.query
console.log('video ', url)
let video = ytapi({ url: url, itag: itag })
let arquivo = await video.rawAudio()
if (!arquivo) return res.json({ success: false, error: `erro ao baixar arquivo` });
let apiUrl = await myhost(req)
res.json({ success: true, file: `${apiUrl}/arquivo/?arquivo=${arquivo}` });
});
app.get('/arquivo', delOldFiles, function (req, res) {
let { arquivo } = req.query
if (!arquivo) return res.json({ success: false, error: 'sem arquivo' });
let caminho = `${__dirname}/publico/${arquivo}`
console.log('baixando arquivo ', arquivo)
if (!existsSync(caminho)) return res.json({ success: false, error: 'arquivo nao encontrado' });
res.download(caminho)
})
app.get('/info', delOldFiles, validateUrlRouter, async function (req, res) {
let { url } = req.query
console.log('get info ', url)
let data = await ytapi({ url: url }).getInfo()
if (!data) return res.json({ success: false, error: 'erro ao buscar dados' })
return res.json({ success: true, ...data })
})
app.get('/formats', delOldFiles, validateUrlRouter, async function (req, res) {
let { url } = req.query
console.log('get formats ', url)
let data = await ytapi({ url: url }).getFormats()
if (!data) return res.json({ success: false, error: 'erro ao buscar dados' })
return res.json({ success: true, data: data })
})
app.get('/buscar', delOldFiles, async function (req, res) {
delOldFiles()
let busca = req.query.text
console.log('get buscar ', busca)
if (!busca?.length) return res.json({ success: false, error: 'termo ou frase de busca não fornecido' });
let data = await ytapi().buscar(busca)
return res.json({ success: true, data: data })
})