-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.js
208 lines (189 loc) · 5.73 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
require("dotenv").config();
var express = require("express");
var bodyParser = require("body-parser");
var axios = require("axios");
var ytdl = require("ytdl-core");
const yts = require("yt-search");
const ytlist = require("ytpl");
const config = require("./config");
const helper = require("./helper");
var app = express();
app.use(express.static("public"));
app.engine("html", require("ejs").renderFile);
app.set("view engine", "html");
app.set("views", __dirname + "/views");
function getRandomInt(max) {
return Math.floor(Math.random() * Math.floor(max));
}
const download = (url, path, callback) => {
request.head(url, (err, res, body) => {
request(url).pipe(fs.createWriteStream(path)).on("close", callback);
});
};
app.get("/", async (req, res) => {
res.render("lobby.html");
});
app.get("/yt", async (req, res) => {
async function runUrl() {
const hasil = await ytdl.getInfo(req.query.url);
const jsonnya = hasil.formats;
let direct = "";
let long = hasil.videoDetails.thumbnails.length - 1;
let thumb = hasil.videoDetails.thumbnails[long].url;
let title = hasil.videoDetails.title;
for (let i = 0; i < jsonnya.length; i++) {
if (jsonnya[i].hasVideo == false) {
direct = jsonnya[i].url;
}
}
const resLirik = await helper.searchLyrics(title);
const lyrics = resLirik ? encodeURIComponent(resLirik.resFetch) : "";
res.render("index.html", {
direct: direct,
title: title,
thumb: thumb,
lyrics,
id: resLirik ? resLirik.id : "",
});
}
async function runJudul() {
yts(req.query.judul).then(async (result) => {
let url = await result.all[0].url;
const hasil = await ytdl.getInfo(url);
const jsonnya = hasil.formats;
let direct = "";
let long = hasil.videoDetails.thumbnails.length - 1;
let thumb = hasil.videoDetails.thumbnails[long].url;
let title = hasil.videoDetails.title;
for (let i = 0; i < jsonnya.length; i++) {
if (jsonnya[i].hasVideo == false) {
direct = jsonnya[i].url;
}
}
const resLirik = await helper.searchLyrics(req.query.judul);
const lyrics = resLirik ? encodeURIComponent(resLirik.resFetch) : "";
res.render("index.html", {
direct: direct,
title: title,
thumb: thumb,
lyrics,
id: resLirik ? resLirik.id : "",
});
});
}
async function runPlaylist() {
let awal = req.query.playlist;
let link = awal.split("=")[1];
ytlist(link).then(async (oi) => {
let listRandom = getRandomInt(oi.items.length);
let filterUrl = oi.items[listRandom].url.split("&")[0];
const hasil = await ytdl.getInfo(filterUrl);
const jsonnya = hasil.formats;
let direct = "";
let long = hasil.videoDetails.thumbnails.length - 1;
let thumb = hasil.videoDetails.thumbnails[long].url;
let title = hasil.videoDetails.title;
for (let i = 0; i < jsonnya.length; i++) {
if (jsonnya[i].hasVideo == false) {
direct = jsonnya[i].url;
}
}
const resLirik = await helper.searchLyrics(title);
const lyrics = resLirik ? encodeURIComponent(resLirik.resFetch) : "";
res.render("index.html", {
direct: direct,
title: title,
thumb: thumb,
lyrics,
id: resLirik ? resLirik.id : "",
});
});
}
async function runRandom() {
let custom = "";
let list = [
"PLeCdlPO-XhWFzEVynMsmosfdRsIZXhZi0",
"PLhsz9CILh357zA1yMT-K5T9ZTNEU6Fl6n",
custom,
//Put our youtube playlist here
];
let url = list[getRandomInt(2)];
ytlist(url).then(async (oi) => {
let listRandom = getRandomInt(oi.items.length);
let filterUrl = oi.items[listRandom].url.split("&")[0];
const hasil = await ytdl.getInfo(filterUrl);
const jsonnya = hasil.formats;
let direct = "";
let long = hasil.videoDetails.thumbnails.length - 1;
let thumb = hasil.videoDetails.thumbnails[long].url;
let title = hasil.videoDetails.title;
for (let i = 0; i < jsonnya.length; i++) {
if (jsonnya[i].hasVideo == false) {
direct = jsonnya[i].url;
}
}
const resLirik = await helper.searchLyrics(title);
const lyrics = resLirik ? encodeURIComponent(resLirik.resFetch) : "";
res.render("index.html", {
direct: direct,
title: title,
thumb: thumb,
lyrics,
id: resLirik ? resLirik.id : ""
});
});
}
if (req.query.input) {
if (helper.isValidHttpUrl(req.query.input)) {
req.query.url = req.query.input;
await runUrl();
} else {
req.query.judul = req.query.input;
await runJudul();
}
} else {
if (req.query.url) {
await runUrl();
} else if (req.query.judul) {
await runJudul();
} else if (req.query.playlist) {
await runPlaylist();
} else {
await runRandom();
}
}
});
app.get("/api/lirik", async (req, res) => {
if (req.query.q) {
const lyrics = await helper.searchLyrics(req.query.q);
res.json({
data: lyrics ? lyrics.resFetch : "",
});
} else {
res.sendStatus(400);
}
});
app.get("/joox", async (req, res) => {
if (req.query.judul) {
axios
.get(
`https://mnazria.herokuapp.com/api/jooxnich?search=${req.query.judul}`
)
.then(async (hasil) => {
let thumb = hasil.data.result.album_url;
let title = hasil.data.result.msong;
let direct = hasil.data.result.mp3Url;
res.render("index.html", {
direct: direct,
title: title,
thumb: thumb,
});
});
} else {
res.send("Masukkan parameter judul");
}
});
let PORT = config.PORT;
app.listen(PORT, () => {
console.log("Listening on " + PORT);
});