poke/server.js

53 lines
1.5 KiB
JavaScript
Raw Normal View History

2021-07-07 14:35:33 +02:00
const path = require("path");
const templateDir = path.resolve(`${process.cwd()}${path.sep}html`);
var express = require("express");
var app = express();
app.engine("html", require("ejs").renderFile);
app.set("view engine", "html");
const lyricsFinder = require("lyrics-finder");
const renderTemplate = async (res, req, template, data = {}) => {
res.render(path.resolve(`${templateDir}${path.sep}${template}`), Object.assign(data)
);
2021-07-07 14:35:33 +02:00
};
2022-01-23 21:50:14 +01:00
const fetch = require('node-fetch');
2021-07-07 14:35:33 +02:00
2022-02-13 12:15:42 +01:00
app.get("/watch", async function(req, res) {
2021-07-07 14:35:33 +02:00
var url = req.query.v;
2021-07-11 18:15:06 +02:00
var uu = `https://www.youtube.com/watch?v=${url}`;
2021-07-07 14:35:33 +02:00
2022-02-13 12:15:42 +01:00
const json = await fetch(`https://yt-proxy-api.herokuapp.com/get_player_info?v=${url}`)
.then((res) => res.json());
2022-02-13 12:15:42 +01:00
const lyrics = await lyricsFinder(json.title);
if (lyrics == undefined) lyrics = "Lyrics not found";
renderTemplate(res, req, 'youtube.ejs', {
url: json.formats[1].url,
2022-02-13 12:15:42 +01:00
title: json,
video: json,
date: json.upload_date,
lyrics:lyrics.replace(/\n/g, ' <br> ')
2022-02-13 12:15:42 +01:00
});
2021-07-07 14:35:33 +02:00
});
2022-01-23 21:50:14 +01:00
app.get("/", function(req, res) {
renderTemplate(res, req, "ytmain.ejs")
});
2022-02-13 12:15:42 +01:00
app.get("/youtube/ara", async (req, res) => {
const query = req.query.query
if (!query) {
return res.redirect("/")
}
const result = await fetch(`https://yt-proxy-api.herokuapp.com/search?q=${query}`).then(res => res.json())
for (item of result.results) {
if (item.type == "video") {
const id = item.item.id
return res.redirect(`/watch?v=${id}`)
}
}
})
2021-07-07 14:35:33 +02:00
const listener = app.listen(3000);