mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 12:18:26 +01:00
Update server.js
This commit is contained in:
parent
8099b11cbf
commit
0049f6e5a2
1 changed files with 81 additions and 5 deletions
86
server.js
86
server.js
|
@ -19,6 +19,7 @@ const templateDir = path.resolve(`${process.cwd()}${path.sep}html`);
|
||||||
var express = require("express");
|
var express = require("express");
|
||||||
var app = express();
|
var app = express();
|
||||||
app.engine("html", require("ejs").renderFile);
|
app.engine("html", require("ejs").renderFile);
|
||||||
|
var dislike_api = `https://returnyoutubedislikeapi.com/votes?videoId=`
|
||||||
app.set("view engine", "html");
|
app.set("view engine", "html");
|
||||||
const lyricsFinder = require("lyrics-finder");
|
const lyricsFinder = require("lyrics-finder");
|
||||||
const renderTemplate = async (res, req, template, data = {}) => {
|
const renderTemplate = async (res, req, template, data = {}) => {
|
||||||
|
@ -28,32 +29,60 @@ const renderTemplate = async (res, req, template, data = {}) => {
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
const fetch = require("node-fetch");
|
const fetch = require("node-fetch");
|
||||||
|
const fetcher = require("./src/fetcher.js");
|
||||||
|
|
||||||
|
app.get("/watchnew", async function (req, res) {
|
||||||
|
var url = req.query.v;
|
||||||
|
var uu = `https://www.youtube.com/watch?v=${url}`;
|
||||||
|
|
||||||
|
const json = await fetch(
|
||||||
|
`https://yt-proxy-api.herokuapp.com/get_player_info?v=${url}`
|
||||||
|
).then((res) => res.json());
|
||||||
|
|
||||||
|
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) {
|
app.get("/watch", async function (req, res) {
|
||||||
var url = req.query.v;
|
var url = req.query.v;
|
||||||
|
var e = req.query.e;
|
||||||
|
|
||||||
var uu = `https://www.youtube.com/watch?v=${url}`;
|
var uu = `https://www.youtube.com/watch?v=${url}`;
|
||||||
|
|
||||||
var opts = {
|
var opts = {
|
||||||
maxResults: 1,
|
maxResults: 1,
|
||||||
key: process.env.yt,
|
key: process.env.yt,
|
||||||
};
|
};
|
||||||
//https://gitlab.com/kuylar/lighttube/-/blob/master/YTProxy/Models/YoutubePlayer.cs
|
|
||||||
const json = await fetch(
|
const json = await fetch(
|
||||||
`https://yt-proxy-api.herokuapp.com/get_player_info?v=${url}`
|
`https://yt-proxy-api.herokuapp.com/get_player_info?v=${url}`
|
||||||
).then((res) => res.json());
|
).then((res) => res.json());
|
||||||
//https://gitlab.com/kuylar/lighttube/-/blob/master/YTProxy/Youtube.cs
|
|
||||||
const newapi = await fetch(
|
const newapi = await fetch(
|
||||||
`https://yt-proxy-api.herokuapp.com/video?v=${url}`
|
`https://yt-proxy-api.herokuapp.com/video?v=${url}`
|
||||||
).then((res) => res.json());
|
).then((res) => res.json());
|
||||||
console.log(newapi)
|
const dislike = await fetch(`${dislike_api}${url}`).then((res) => res.json());
|
||||||
|
const dislikes = dislike.dislikes
|
||||||
|
|
||||||
|
|
||||||
|
var s = json.formats
|
||||||
|
const lastItem = s[s.length - 1];
|
||||||
|
|
||||||
const lyrics = await lyricsFinder(json.title);
|
const lyrics = await lyricsFinder(json.title);
|
||||||
if (lyrics == undefined) lyrics = "Lyrics not found";
|
if (lyrics == undefined) lyrics = "Lyrics not found";
|
||||||
renderTemplate(res, req, "youtubenew.ejs", {
|
renderTemplate(res, req, "youtubenew.ejs", {
|
||||||
url: json.formats[1].url,
|
url: lastItem.url,
|
||||||
|
dislikes:dislikes,
|
||||||
title: json,
|
title: json,
|
||||||
a:newapi,
|
a:newapi,
|
||||||
video: json,
|
video: json,
|
||||||
date: json.upload_date,
|
date: json.upload_date,
|
||||||
|
e:e,
|
||||||
lyrics: lyrics.replace(/\n/g, " <br> "),
|
lyrics: lyrics.replace(/\n/g, " <br> "),
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -79,8 +108,55 @@ app.get("/youtube/ara", async (req, res) => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
app.get("/js/:id", (req, res) => {
|
||||||
|
var id = req.params.id;
|
||||||
|
if (id === "vendor.chunk.js") {
|
||||||
|
res.redirect(
|
||||||
|
"https://global-assets.iamashley.xyz/assets/vendor.004560fb.js"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
res.sendFile(__dirname + `/js/${id}`);
|
||||||
|
});
|
||||||
|
|
||||||
app.get("/css/:id", (req, res) => {
|
app.get("/css/:id", (req, res) => {
|
||||||
res.sendFile(__dirname + `/css/${req.params.id}`);
|
res.sendFile(__dirname + `/css/${req.params.id}`);
|
||||||
});
|
});
|
||||||
|
app.get("/search/:id", (req, res) => {
|
||||||
|
res.sendFile(__dirname + `/search/${req.params.id}`);
|
||||||
|
});
|
||||||
|
/* WIP
|
||||||
|
app.get("/proxy", async function (req, res){
|
||||||
|
var url = req.query.v;
|
||||||
|
|
||||||
|
const options = {
|
||||||
|
url: `https://watch.poketalebot.com/fetch?v=${url}`,
|
||||||
|
headers: {
|
||||||
|
'User-Agent': 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:96.0) Gecko/20100101 Firefox/96.0'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const json = await fetch(
|
||||||
|
`https://yt-proxy-api.herokuapp.com/get_player_info?v=${url}`
|
||||||
|
).then((res) => res.json());
|
||||||
|
var s = json.formats
|
||||||
|
const lastItem = s[s.length - 1];
|
||||||
|
var request = require('request');
|
||||||
|
var newurl = `https://watch.poketalebot.com/fetch?v=${url}`;
|
||||||
|
request(options).pipe(res);
|
||||||
|
});
|
||||||
|
|
||||||
|
app.get("/video/upload", (req, res) => {
|
||||||
|
res.redirect("https://youtube.com/upload?from=poketube_utc");
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
app.get("/fetch", async function (req, res) {
|
||||||
|
var url = req.query.v;
|
||||||
|
const js = await fetch(
|
||||||
|
`https://yt-proxy-api.herokuapp.com/get_player_info?v=${url}`
|
||||||
|
).then((res) => res.json());
|
||||||
|
var s = js.formats
|
||||||
|
const lastItem = s[s.length - 1];
|
||||||
|
res.json(lastItem.url)
|
||||||
|
});
|
||||||
|
*/
|
||||||
const listener = app.listen(3000);
|
const listener = app.listen(3000);
|
||||||
|
|
Loading…
Reference in a new issue