mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 07:38:24 +01:00
refactor,again
This commit is contained in:
parent
aa57d8922f
commit
f5d7c8ad56
1 changed files with 20 additions and 47 deletions
65
server.js
65
server.js
|
@ -9,80 +9,53 @@ const lyricsFinder = require("lyrics-finder");
|
||||||
res.render(path.resolve(`${templateDir}${path.sep}${template}`), Object.assign(data)
|
res.render(path.resolve(`${templateDir}${path.sep}${template}`), Object.assign(data)
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
const ytSearch = require('youtube-search');
|
|
||||||
const fetch = require('node-fetch');
|
const fetch = require('node-fetch');
|
||||||
const search = require("youtube-search");
|
|
||||||
|
|
||||||
app.get("/watch", function(req, res) {
|
app.get("/watch", async function(req, res) {
|
||||||
var url = req.query.v;
|
var url = req.query.v;
|
||||||
var uu = `https://www.youtube.com/watch?v=${url}`;
|
var uu = `https://www.youtube.com/watch?v=${url}`;
|
||||||
var search = require("youtube-search");
|
|
||||||
|
|
||||||
var opts = {
|
var opts = {
|
||||||
maxResults: 1,
|
maxResults: 1,
|
||||||
key: process.env.yt
|
key: process.env.yt
|
||||||
};
|
};
|
||||||
|
|
||||||
search(uu, opts, async (err, results) => {
|
const json = await fetch(`https://yt-proxy-api.herokuapp.com/get_player_info?v=${url}`)
|
||||||
if (err != undefined)
|
|
||||||
return console.error(err);
|
|
||||||
if (results.length === 0) return;
|
|
||||||
|
|
||||||
const video = results[0];
|
|
||||||
|
|
||||||
const json = await fetch(`https://yt-proxy-api.herokuapp.com/get_player_info?v=${video.id}`)
|
|
||||||
.then((res) => res.json());
|
.then((res) => res.json());
|
||||||
|
|
||||||
const lyrics = await lyricsFinder(video.title);
|
const lyrics = await lyricsFinder(json.title);
|
||||||
|
|
||||||
if (lyrics == undefined) lyrics = "Lyrics not found";
|
if (lyrics == undefined) lyrics = "Lyrics not found";
|
||||||
renderTemplate(res, req, 'youtube.ejs', {
|
renderTemplate(res, req, 'youtube.ejs', {
|
||||||
url: json.formats[1].url,
|
url: json.formats[1].url,
|
||||||
title: video,
|
title: json,
|
||||||
video: json,
|
video: json,
|
||||||
date: json.upload_date,
|
date: json.upload_date,
|
||||||
lyrics:lyrics.replace(/\n/g, ' <br> ')
|
lyrics:lyrics.replace(/\n/g, ' <br> ')
|
||||||
});
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
app.get("/", function(req, res) {
|
app.get("/", function(req, res) {
|
||||||
var url = req.query.url;
|
|
||||||
|
|
||||||
if(url){
|
|
||||||
var opts = {
|
|
||||||
maxResults: 1,
|
|
||||||
key: process.env.yt
|
|
||||||
};
|
|
||||||
|
|
||||||
search(url, opts, function(err, results) {
|
|
||||||
var h = results[0].id;
|
|
||||||
var lmao = results[0];
|
|
||||||
if(err) return
|
|
||||||
res.redirect(`/watch?v=${h}&title=${lmao.title}&channel=${lmao.channelTitle}&searchquery=${url}`);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if(!url){
|
|
||||||
renderTemplate(res, req, "ytmain.ejs")
|
renderTemplate(res, req, "ytmain.ejs")
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
app.get('/youtube/ara', async (req, res) => {
|
|
||||||
var url = req.query.query;
|
|
||||||
|
|
||||||
if (!req.query.query) {
|
|
||||||
return res.redirect(`/`);
|
app.get("/youtube/ara", async (req, res) => {
|
||||||
|
const query = req.query.query
|
||||||
|
|
||||||
|
if (!query) {
|
||||||
|
return res.redirect("/")
|
||||||
}
|
}
|
||||||
|
|
||||||
var opts = {
|
const result = await fetch(`https://yt-proxy-api.herokuapp.com/search?q=${query}`).then(res => res.json())
|
||||||
maxResults: 1,
|
for (item of result.results) {
|
||||||
key: process.env.yt
|
if (item.type == "video") {
|
||||||
};
|
const id = item.item.id
|
||||||
|
return res.redirect(`/watch?v=${id}`)
|
||||||
search(req.query.query, opts, function(err, results) {
|
}
|
||||||
var h = results[0].id;
|
}
|
||||||
res.redirect(`/watch?v=${h}`);
|
})
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
const listener = app.listen(3000);
|
const listener = app.listen(3000);
|
||||||
|
|
Loading…
Reference in a new issue