1
Fork 0
poke/server.js

92 lines
2.4 KiB
JavaScript
Raw Normal View History

2021-07-07 08:35:33 -04: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");
2022-02-23 13:54:21 -05:00
const renderTemplate = async (res, req, template, data = {}) => {
res.render(
path.resolve(`${templateDir}${path.sep}${template}`),
Object.assign(data)
);
2021-07-07 08:35:33 -04:00
};
2022-02-23 13:54:21 -05:00
const fetch = require("node-fetch");
app.get("/watchnew", async function (req, res) {
var url = req.query.v;
var uu = `https://www.youtube.com/watch?v=${url}`;
var opts = {
maxResults: 1,
key: process.env.yt,
};
const json = await fetch(
`https://yt-proxy-api.herokuapp.com/get_player_info?v=${url}`
).then((res) => res.json());
2021-07-07 08:35:33 -04:00
2022-02-23 13:54:21 -05:00
const lyrics = await lyricsFinder(json.title);
if (lyrics == undefined) lyrics = "Lyrics not found";
renderTemplate(res, req, "youtubenew.ejs", {
url: json.formats[1].url,
title: json,
video: json,
date: json.upload_date,
lyrics: lyrics.replace(/\n/g, " <br> "),
});
});
app.get("/watch", async function (req, res) {
2021-07-07 08:35:33 -04:00
var url = req.query.v;
2021-07-11 12:15:06 -04:00
var uu = `https://www.youtube.com/watch?v=${url}`;
2021-07-07 08:35:33 -04:00
2022-02-23 13:54:21 -05:00
var opts = {
maxResults: 1,
key: process.env.yt,
};
2022-02-23 13:54:21 -05:00
const json = await fetch(
`https://yt-proxy-api.herokuapp.com/get_player_info?v=${url}`
).then((res) => res.json());
const newapi = await fetch(
`https://yt-proxy-api.herokuapp.com/video?v=${url}`
).then((res) => res.json());
console.log(newapi)
2022-02-13 06:15:42 -05:00
const lyrics = await lyricsFinder(json.title);
if (lyrics == undefined) lyrics = "Lyrics not found";
2022-02-23 13:54:21 -05:00
renderTemplate(res, req, "youtubenew.ejs", {
url: json.formats[1].url,
2022-02-13 06:15:42 -05:00
title: json,
2022-02-23 13:54:21 -05:00
a:newapi,
video: json,
date: json.upload_date,
2022-02-23 13:54:21 -05:00
lyrics: lyrics.replace(/\n/g, " <br> "),
});
});
2022-02-23 13:54:21 -05:00
app.get("/", function (req, res) {
renderTemplate(res, req, "ytmain.ejs");
2021-07-07 08:35:33 -04:00
});
2022-02-23 13:54:21 -05:00
2022-02-13 06:15:42 -05:00
app.get("/youtube/ara", async (req, res) => {
2022-02-23 13:54:21 -05:00
const query = req.query.query;
2022-02-13 06:15:42 -05:00
if (!query) {
2022-02-23 13:54:21 -05:00
return res.redirect("/");
2022-02-13 06:15:42 -05:00
}
2022-02-23 13:54:21 -05:00
const result = await fetch(
`https://yt-proxy-api.herokuapp.com/search?q=${query}`
).then((res) => res.json());
2022-02-13 06:15:42 -05:00
for (item of result.results) {
if (item.type == "video") {
2022-02-23 13:54:21 -05:00
const videoid = item.item.id;
return res.redirect(`/watch?v=${videoid}`);
2022-02-13 06:15:42 -05:00
}
}
2022-02-23 13:54:21 -05:00
});
app.get("/css/:id", (req, res) => {
res.sendFile(__dirname + `/css/${req.params.id}`);
});
2021-07-07 08:35:33 -04:00
const listener = app.listen(3000);