Reformat main file, add embeds :3

This commit is contained in:
Ashley 2022-09-21 08:36:21 +02:00
parent f08e87d3e9
commit 9d75ff1eab

210
server.js
View file

@ -1,4 +1,4 @@
/*
/*
PokeTube is an Free/Libre youtube front-end. this is our main file.
@ -18,7 +18,7 @@
along with this program. If not, see https://www.gnu.org/licenses/.
*/
///////// definitions /////////////////
///////////// DEFINITONS /////////////
const path = require("path");
const htmlParser = require("node-html-parser");
const getColors = require("get-image-colors");
@ -38,11 +38,10 @@ var useragent = require("express-useragent");
const sha384 = require("js-sha512").sha384;
const musicInfo = require("music-info");
const wiki = require('wikipedia');
const wiki = require("wikipedia");
var http = require('http');
var https = require('https');
var http = require("http");
var https = require("https");
http.globalAgent.maxSockets = Infinity;
https.globalAgent.maxSockets = Infinity;
@ -70,7 +69,7 @@ const random_words = [
"how to become a god?",
"is a panda a panda if pandas???",
"Minecraft movie trailer",
"monke"
"monke",
];
/*
@ -82,8 +81,7 @@ const config = {
t_url: "https://t.poketube.fun/", // def matomo url
};
// pages
///////////// PAGES /////////////
function IsJsonString(str) {
try {
@ -94,29 +92,11 @@ function IsJsonString(str) {
return true;
}
app.use(function(req, res, next) {
app.use(function (req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
next();
});
app.get("/api/subtitles", async (req, res) => {
const id = req.query.v;
const l = req.query.h;
const url = `https://tube.kuylar.dev/proxy/caption/${id}/${l}/`
let f = await fetch(url);
const body = await f.text();
res.send(body)
});
app.get("/api/opensearch", async (req, res) => {
res.sendFile(__dirname + `/opensearch.xml`);
});
app.get("/encryption", async function (req, res) {
var v = req.query.v;
@ -155,6 +135,7 @@ app.get("/encryption", async function (req, res) {
res.json(re);
});
///////////// VIDEO PAGES ETC. /////////////
app.get("/watch", async function (req, res) {
/*
* QUERYS
@ -177,7 +158,7 @@ app.get("/watch", async function (req, res) {
const info = await fetch("http://ip-api.com/json/");
const jj = await info.text();
const ip = JSON.parse(jj);
var badges = ""
var badges = "";
for (let i = 0; i < 3; i++) {
try {
@ -195,22 +176,25 @@ app.get("/watch", async function (req, res) {
}
}
var nn = "";
if (n === "none") {badges = "";}
if(IsJsonString(n)){
if (n !== "none") {badges = JSON.parse(n).channel.badges[0]}
if (n === "none") {
badges = "";
}
if (IsJsonString(n)) {
if (n !== "none") {
badges = JSON.parse(n).channel.badges[0];
}
}
var comments = ""
if (n === "none") { comments = ""; }
if(IsJsonString(n)){
if (n !== "none") { comments = JSON.parse(n).commentCount }
var comments = "";
if (n === "none") {
comments = "";
}
if (IsJsonString(n)) {
if (n !== "none") {
comments = JSON.parse(n).commentCount;
}
}
var fetching = await fetcher(v);
@ -244,13 +228,17 @@ app.get("/watch", async function (req, res) {
const tj = JSON.parse(toJson(c));
// lyrics
// const lyrics = await lyricsFinder(json.Title);
// const lyrics = await lyricsFinder(json.Title);
const summary = await wiki.summary(k.Video.Channel.Name);
var w = ""
if(summary.title === "Not found.") { w = "none" }
if(summary.title !== "Not found.") {w = summary}
var w = "";
if (summary.title === "Not found.") {
w = "none";
}
if (summary.title !== "Not found.") {
w = summary;
}
renderTemplate(res, req, "poketube.ejs", {
url: url_e,
@ -262,25 +250,23 @@ app.get("/watch", async function (req, res) {
date: moment(k.Video.uploadDate).format("LL"),
e: e,
k: k,
process:process,
process: process,
sha384: sha384,
isMobile: req.useragent.isMobile,
tj: tj,
r: r,
qua: q,
ip:ip,
wiki:w,
ip: ip,
wiki: w,
f: f,
t: config.t_url,
optout: t,
badges:badges,
comments:comments,
badges: badges,
comments: comments,
lyrics: "",
});
});
app.get("/music", async function (req, res) {
/*
* QUERYS
@ -366,8 +352,8 @@ app.get("/music", async function (req, res) {
`https://i.ytimg.com/vi/${v}/maxresdefault.jpg`
).then((colors) => colors[0].hex()),
engagement: engagement,
process:process,
ip:ip,
process: process,
ip: ip,
video: json,
date: moment(k.Video.uploadDate).format("LL"),
e: e,
@ -422,19 +408,30 @@ app.get("/old/watch", async function (req, res) {
res.redirect(`/watch?v=${v}`);
});
app.get("/", async function (req, res) {
const trends = await fetch(config.tubeApi + `trending`);
const h = await trends.text();
const k = JSON.parse(toJson(h));
renderTemplate(res, req, "main.ejs", {
k: k,
isMobile: req.useragent.isMobile,
app.get("/search", async (req, res) => {
const { toJson } = require("xml2json");
const query = req.query.query;
const search = await fetch(
`https://tube.kuylar.dev/api/search?query=${query}`
);
const text = await search.text();
const j = JSON.parse(toJson(text));
if (!query) {
return res.redirect("/");
}
renderTemplate(res, req, "search.ejs", {
j: j,
q: query,
});
});
app.get("/channel", async (req, res) => {
app.get("/channel/", async (req, res) => {
const ID = req.query.id;
// about
const bout = await fetch(config.tubeApi + `channel?id=${ID}&tab=about`);
const h = await bout.text();
@ -459,7 +456,7 @@ app.get("/channel", async (req, res) => {
});
});
// static
///////////// STATIC /////////////
app.get("/privacy", function (req, res) {
renderTemplate(res, req, "priv.ejs");
});
@ -476,34 +473,6 @@ app.get("/license", function (req, res) {
renderTemplate(res, req, "license.ejs");
});
app.get("/api/search", async (req, res) => {
const query = req.query.query;
if (!query) {
return res.redirect("/");
}
return res.redirect(`/search?query=${query}`);
});
app.get("/search", async (req, res) => {
const { toJson } = require("xml2json");
const query = req.query.query;
const search = await fetch(
`https://tube.kuylar.dev/api/search?query=${query}`
);
const text = await search.text();
const j = JSON.parse(toJson(text));
if (!query) {
return res.redirect("/");
}
renderTemplate(res, req, "search.ejs", {
j: j,
q: query,
});
});
app.get("/css/:id", (req, res) => {
res.sendFile(__dirname + `/css/${req.params.id}`);
});
@ -516,8 +485,21 @@ app.get("/video/upload", (req, res) => {
res.redirect("https://youtube.com/upload");
});
app.get("/discover", async function (req, res) {
res.redirect("/");
///////////// API /////////////
app.get("/embed/:v", async function (req, res) {
var v = req.params.v;
res.redirect(`https://tube.kuylar.dev/proxy/media/${v}/18`);
});
app.get("/api/search", async (req, res) => {
const query = req.query.query;
if (!query) {
return res.redirect("/");
}
return res.redirect(`/search?query=${query}`);
});
app.get("/api/video/download", async function (req, res) {
@ -545,6 +527,45 @@ app.get("/api/video/downloadjson", async function (req, res) {
res.json(url);
});
app.get("/api/subtitles", async (req, res) => {
const id = req.query.v;
const l = req.query.h;
const url = `https://tube.kuylar.dev/proxy/caption/${id}/${l}/`;
let f = await fetch(url);
const body = await f.text();
res.send(body);
});
app.get("/api/opensearch", async (req, res) => {
res.sendFile(__dirname + `/opensearch.xml`);
});
///////////// REDIRECTS / DEPRACATED /////////////
app.get("/discover", async function (req, res) {
res.redirect("/");
});
app.get("/video/upload", (req, res) => {
res.redirect("https://youtube.com/upload");
});
///////////// 404 AND MAIN PAGES ETC /////////////
app.get("/", async function (req, res) {
const trends = await fetch(config.tubeApi + `trending`);
const h = await trends.text();
const k = JSON.parse(toJson(h));
renderTemplate(res, req, "main.ejs", {
k: k,
isMobile: req.useragent.isMobile,
});
});
app.get("*", function (req, res) {
const things = random_words[Math.floor(Math.random() * random_words.length)];
renderTemplate(res, req, "404.ejs", {
@ -552,7 +573,8 @@ app.get("*", function (req, res) {
});
});
////////////////////////////////////////////////////
// listen
app.listen("3000", () => {});